:root {
    --bg: #f5f7fa;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --surface-soft: #eef8ff;
    --text: #16324a;
    --muted: #587188;
    --line: rgba(74, 144, 226, 0.14);
    --blue: #4a90e2;
    --blue-deep: #2f6fbf;
    --teal: #50e3c2;
    --teal-deep: #1da98c;
    --shadow: 0 24px 70px rgba(27, 57, 87, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(80, 227, 194, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(74, 144, 226, 0.18), transparent 34%),
        linear-gradient(180deg, #fcfeff 0%, #f4f8fb 46%, #eff6fb 100%);
    color: var(--text);
    font-family: "Public Sans", "Segoe UI", sans-serif;
    line-height: 1.65;
    padding-top: 92px;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    filter: blur(32px);
    opacity: 0.18;
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: -6rem;
    left: -5rem;
    background: #50e3c2;
}

body::after {
    right: -7rem;
    bottom: 10rem;
    background: #4a90e2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.75rem;
    line-height: 1.08;
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.25rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
    font-size: clamp(1.15rem, 3vw, 1.55rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(calc(100% - 2rem), 900px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1rem 0;
    backdrop-filter: blur(16px);
    background: rgba(252, 254, 255, 0.8);
    border-bottom: 1px solid rgba(74, 144, 226, 0.08);
}

.header-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark strong,
.footer-title {
    display: block;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1rem;
}

.brand-mark small {
    display: block;
    max-width: 20rem;
    color: var(--muted);
    font-size: 0.76rem;
}

.brand-mark__badge {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(74, 144, 226, 0.25);
}

.site-nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.site-nav a {
    color: var(--muted);
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.9rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(51, 129, 206, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(51, 129, 206, 0.28);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    border: 1px solid rgba(74, 144, 226, 0.16);
    box-shadow: none;
}

.button--small {
    min-height: 2.75rem;
    padding-inline: 1.1rem;
}

.button-label--mobile {
    display: none;
}

.button--block {
    width: 100%;
}

.hero-section,
.page-hero {
    padding: 2.5rem 0 2rem;
}

.hero-grid,
.split-grid,
.two-up,
.offer-grid,
.proof-grid,
.faq-grid,
.process-grid {
    display: grid;
    gap: 1.2rem;
}

.hero-grid,
.split-grid {
    align-items: center;
}

.hero-copy {
    font-size: 1.05rem;
    max-width: 40rem;
}

.eyebrow,
.tag,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-deep);
}

.eyebrow::before,
.tag::before,
.panel-label::before {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 1rem;
}

.microcopy,
.small-copy {
    font-size: 0.94rem;
}

.inline-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.inline-list li,
.card-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text);
}

.inline-list li::before,
.card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
}

.hero-visual,
.feature-card,
.offer-card,
.proof-card,
.process-card,
.faq-card,
.bullet-panel,
.cta-panel,
.scan-shell,
.scan-panel,
.insight-banner {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-visual {
    padding: 1.4rem;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.5;
}

.hero-orb--one {
    top: 1rem;
    right: 0.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(80, 227, 194, 0.6);
}

.hero-orb--two {
    left: -0.8rem;
    bottom: -1rem;
    width: 7rem;
    height: 7rem;
    background: rgba(74, 144, 226, 0.24);
}

.stack-card {
    position: relative;
    z-index: 1;
    padding: 1.2rem;
    border-radius: calc(var(--radius-sm) + 0.1rem);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(74, 144, 226, 0.14);
}

.stack-card + .stack-card,
.stack-card + .stack-arrow,
.stack-arrow + .stack-card {
    margin-top: 0.85rem;
}

.stack-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: "Sora", "Segoe UI", sans-serif;
}

.stack-card__label,
.score-row span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--blue-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stack-card--accent {
    background: linear-gradient(140deg, rgba(74, 144, 226, 0.12) 0%, rgba(80, 227, 194, 0.14) 100%);
}

.stack-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-inline: auto;
    border-radius: 999px;
    background: rgba(74, 144, 226, 0.12);
    color: var(--blue-deep);
    font-weight: 900;
}

.trust-strip,
.ecosystem-line {
    display: grid;
    gap: 0.9rem;
}

.trust-pill,
.ecosystem-node {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.74);
}

.trust-pill {
    font-weight: 600;
}

.ecosystem-node strong {
    display: block;
    margin-bottom: 0.3rem;
    font-family: "Sora", "Segoe UI", sans-serif;
}

.ecosystem-node span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 1rem 0 4rem;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(229, 243, 255, 0.28) 100%);
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.feature-card,
.offer-card,
.proof-card,
.process-card,
.faq-card,
.cta-panel,
.bullet-panel,
.scan-form,
.scan-panel,
.insight-banner {
    padding: 1.35rem;
}

.feature-card h3,
.offer-card h3,
.faq-card h3,
.process-card h3 {
    margin-bottom: 0.7rem;
}

.offer-card__head,
.score-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.offer-price,
.proof-site {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.proof-card strong {
    font-size: 2rem;
    font-family: "Sora", "Segoe UI", sans-serif;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.12);
}

.check-row:last-child {
    border-bottom: 0;
}

.check-row__icon {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(80, 227, 194, 0.18);
    color: var(--teal-deep);
    font-weight: 800;
}

.scan-shell {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.scan-form {
    background: rgba(255, 255, 255, 0.84);
    border-radius: calc(var(--radius) - 10px);
}

.scan-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: calc(var(--radius) - 10px);
    background: linear-gradient(180deg, rgba(233, 243, 253, 0.72) 0%, rgba(232, 251, 247, 0.72) 100%);
}

.scan-form label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text);
    font-weight: 700;
}

.scan-form input {
    width: 100%;
    min-height: 3.2rem;
    margin-bottom: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 1rem;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.scan-form input:focus {
    outline: 2px solid rgba(80, 227, 194, 0.45);
    outline-offset: 2px;
}

.insight-banner strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.2rem;
    word-break: break-word;
}

.cta-panel {
    padding: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(80, 227, 194, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(74, 144, 226, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.92);
}

.site-footer {
    padding: 0 0 2rem;
}

.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border-top: 1px solid rgba(74, 144, 226, 0.12);
}

.footer-copy {
    max-width: 36rem;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 700ms ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 700px) {
    .site-nav {
        display: flex;
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-up,
    .split-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .offer-grid,
    .proof-grid,
    .ecosystem-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
        gap: 1.6rem;
    }

    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scan-shell {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 1.2rem;
    }

    .footer-shell {
        align-items: end;
        justify-content: space-between;
        flex-direction: row;
    }
}

@media (max-width: 520px) {
    body {
        padding-top: 84px;
    }

    .header-shell {
        gap: 0.65rem;
    }

    .brand-mark {
        gap: 0.65rem;
    }

    .brand-mark__badge {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.9rem;
    }

    .brand-mark strong {
        font-size: 0.92rem;
    }

    .brand-mark small {
        display: none;
    }

    .button--small {
        min-height: 2.45rem;
        padding-inline: 0.9rem;
        font-size: 0.86rem;
    }

    .button-label--desktop {
        display: none;
    }

    .button-label--mobile {
        display: inline;
    }
}

@media (min-width: 980px) {
    .section {
        padding-bottom: 5rem;
    }

    .offer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ecosystem-line {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button,
    .reveal {
        transition: none;
        animation: none;
        transform: none;
        opacity: 1;
    }
}
