:root {
    --bg: #fff9f3;
    --bg-alt: #fff2f8;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --ink: #1f1634;
    --muted: #665a7a;
    --line: rgba(67, 31, 95, 0.11);
    --peach: #ff8f70;
    --gold: #ffbf47;
    --teal: #32c7b1;
    --berry: #ff4f87;
    --indigo: #5c44ff;
    --shadow: 0 24px 64px rgba(77, 31, 84, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 159, 112, 0.34), transparent 26%),
        radial-gradient(circle at top right, rgba(92, 68, 255, 0.22), transparent 20%),
        radial-gradient(circle at 18% 72%, rgba(50, 199, 177, 0.18), transparent 24%),
        linear-gradient(180deg, #fffaf7 0%, #fff4fb 42%, #fffaf2 100%);
    font-family: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
}

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

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

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 80px;
}

.topbar {
    position: sticky;
    top: 16px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 42px rgba(83, 45, 98, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--berry), var(--indigo));
    box-shadow: 0 12px 24px rgba(92, 68, 255, 0.24);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--berry), var(--indigo));
    box-shadow: 0 16px 30px rgba(92, 68, 255, 0.28);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(92, 68, 255, 0.16);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(92, 68, 255, 0.12);
}

.section,
.stats-band {
    margin-top: 28px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.58)),
        linear-gradient(135deg, rgba(255, 191, 71, 0.16), rgba(92, 68, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--indigo);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.journey-copy h3,
.beta-panel h2 {
    margin: 0;
    font-family: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    max-width: 11ch;
}

.hero-text,
.section-heading p,
.split-copy p,
.journey-copy p,
.beta-panel p,
.service-card p,
.trust-grid p,
.process-line p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #43314d;
}

.hero-points li::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--indigo));
    box-shadow: 0 0 0 6px rgba(92, 68, 255, 0.08);
}

.hero-art {
    position: relative;
    min-height: 520px;
}

.hero-art img {
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    max-width: 220px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 32px rgba(83, 45, 98, 0.14);
}

.floating-card .metric {
    display: block;
    margin-bottom: 8px;
    color: var(--indigo);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.card-a {
    top: 28px;
    right: -8px;
}

.card-b {
    left: -12px;
    bottom: 30px;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stats-band article {
    position: relative;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.stats-band article:hover,
.stats-band article:focus-within {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(92, 68, 255, 0.18);
    box-shadow:
        0 18px 34px rgba(83, 45, 98, 0.14),
        0 0 0 1px rgba(92, 68, 255, 0.03),
        0 0 0 10px rgba(92, 68, 255, 0.05),
        0 0 34px rgba(255, 191, 71, 0.14);
}

.stats-band article,
.service-card,
.trust-grid article,
.journey-panel,
.beta-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.stats-band strong {
    display: block;
    margin-bottom: 6px;
    font-size: 2rem;
    font-family: "Aptos Display", "Segoe UI Variable Display", sans-serif;
}

.stats-band span {
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.section-heading h2,
.split-copy h2,
.beta-panel h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1;
}

.section-heading.narrow {
    max-width: 640px;
}

.services-grid,
.trust-grid {
    display: grid;
    gap: 18px;
}

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

.trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.trust-grid article {
    position: relative;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.trust-grid article:hover,
.trust-grid article:focus-within {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(92, 68, 255, 0.18);
    box-shadow:
        0 18px 34px rgba(83, 45, 98, 0.14),
        0 0 0 1px rgba(92, 68, 255, 0.03),
        0 0 0 10px rgba(92, 68, 255, 0.05),
        0 0 34px rgba(255, 143, 112, 0.12);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -18% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.service-card img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
}

.service-card h3,
.trust-grid h3,
.process-line h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.tone-coral {
    background: linear-gradient(180deg, rgba(255, 146, 112, 0.18), rgba(255, 255, 255, 0.84));
}

.tone-gold {
    background: linear-gradient(180deg, rgba(255, 191, 71, 0.18), rgba(255, 255, 255, 0.84));
}

.tone-teal {
    background: linear-gradient(180deg, rgba(50, 199, 177, 0.18), rgba(255, 255, 255, 0.84));
}

.trust-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(92, 68, 255, 0.1);
    color: var(--indigo);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 22px;
    align-items: center;
}

.bullet-panels {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.bullet-panels div {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
}

.bullet-panels strong {
    display: block;
    margin-bottom: 8px;
}

.bullet-panels span {
    color: var(--muted);
    line-height: 1.6;
}

.split-art img,
.journey-panel img {
    border-radius: 24px;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 52px;
}

.process-line article {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-line article:hover,
.process-line article:focus-within {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(92, 68, 255, 0.22);
    box-shadow: 0 20px 40px rgba(83, 45, 98, 0.16);
}

.process-line article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -58px;
    width: 64px;
    height: 64px;
    background: url("process-chevron.svg") center / contain no-repeat;
    filter: drop-shadow(0 16px 28px rgba(92, 68, 255, 0.2));
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.journey-panel {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 22px;
    align-items: center;
    margin-top: 20px;
}

.beta-panel {
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(255, 191, 71, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(50, 199, 177, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reveal,
    .reveal.is-visible,
    .button,
    .stats-band article,
    .trust-grid article,
    .process-line article,
    .main-nav a {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 1080px) {
    .hero,
    .split-section,
    .journey-panel,
    .services-grid,
    .trust-grid,
    .stats-band,
    .process-line {
        grid-template-columns: 1fr 1fr;
    }

    .process-line article::after {
        display: none;
    }

    .hero {
        padding: 32px;
    }

    .hero-art {
        min-height: auto;
    }
}

@media (max-width: 820px) {
    .site-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 14px;
    }

    .topbar {
        position: static;
        flex-direction: column;
        align-items: stretch;
        border-radius: 28px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero,
    .split-section,
    .journey-panel,
    .services-grid,
    .trust-grid,
    .stats-band,
    .process-line {
        grid-template-columns: 1fr;
    }

    .process-line article::after {
        display: none;
    }

    .hero {
        padding: 26px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .floating-card {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .hero-art {
        display: grid;
        gap: 14px;
    }

    .beta-panel,
    .stats-band article,
    .service-card,
    .journey-panel,
    .trust-grid article {
        padding: 20px;
    }
}