:root {
    --bg: #f5efff;
    --bg-soft: #fbf8ff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #ffffff;
    --surface-dark: #14091e;
    --text: #170d21;
    --muted: #655a72;
    --line: rgba(39, 15, 56, 0.12);
    --accent: #7e42ff;
    --accent-dark: #310043;
    --accent-soft: #eadcff;
    --accent-bright: #c69dff;
    --shadow: 0 22px 56px rgba(55, 24, 75, 0.12);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(126, 66, 255, 0.18), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(198, 157, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #f9f5ff 0%, #f3ecff 48%, #eee5ff 100%);
}

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

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

.page-shell {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    padding-bottom: 48px;
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    background: rgba(251, 248, 255, 0.76);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(52, 22, 74, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    box-shadow: 0 0 0 6px rgba(126, 66, 255, 0.14);
}

.brand-text {
    font-family: "Syne", sans-serif;
    font-size: 1.2rem;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a {
    transition: color 180ms ease;
}

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

.section {
    padding: 76px 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 42px;
    min-height: calc(100vh - 132px);
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-dark);
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.eyebrow-dark {
    color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.section-heading h2,
.statement-copy h2,
.cta-card h2 {
    margin: 18px 0 0;
    font-family: "Syne", sans-serif;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero h1 {
    max-width: 11ch;
    font-size: clamp(3.5rem, 8vw, 7rem);
}

.hero-text,
.feature-card p,
.step-card p,
.pack-card p,
.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.72;
}

.hero-text {
    max-width: 62ch;
    margin: 24px 0 0;
}

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

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

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #6b28ff, #9f65ff);
    box-shadow: 0 14px 28px rgba(99, 49, 182, 0.24);
}

.button-secondary {
    color: #fff;
    background: var(--accent-dark);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 28px rgba(49, 0, 67, 0.22);
}

.button-ghost {
    color: var(--accent-dark);
    background: rgba(234, 220, 255, 0.52);
    border-color: rgba(49, 0, 67, 0.08);
}

.button-light {
    background: #fff;
    color: var(--accent-dark);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.hero-metrics article,
.feature-card,
.step-card,
.pack-card,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: var(--shadow);
}

.hero-metrics article {
    padding: 20px;
}

.hero-metrics strong {
    display: block;
    font-family: "Syne", sans-serif;
    font-size: 1.8rem;
}

.hero-metrics span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    min-height: 640px;
}

.hero-preview,
.cast-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: var(--shadow);
}

.hero-preview {
    position: absolute;
    inset: 0 6% auto 0;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(126, 66, 255, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(242, 235, 255, 0.9), rgba(255, 255, 255, 0.74));
}

.hero-preview img {
    width: 100%;
    filter: drop-shadow(0 18px 28px rgba(21, 10, 35, 0.28));
}

.preview-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(49, 0, 67, 0.08);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-phone {
    position: absolute;
    right: -4%;
    bottom: -3%;
    width: min(76%, 560px);
    z-index: 1;
}

.hero-phone img {
    width: 100%;
    filter: drop-shadow(0 36px 54px rgba(19, 10, 31, 0.34));
}

.cast-section {
    padding-top: 12px;
}

.cast-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 26px;
    align-items: center;
    padding: 30px;
    overflow: hidden;
}

.cast-copy h2 {
    margin: 18px 0 0;
    max-width: 10ch;
    font-family: "Syne", sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.cast-copy p {
    max-width: 44ch;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.cast-visual {
    position: relative;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(126, 66, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(243, 236, 255, 0.85), rgba(255, 255, 255, 0.48));
    padding: 14px;
}

.cast-visual img {
    width: 100%;
    border-radius: 22px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

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

.section-heading h2,
.cta-card h2 {
    max-width: 16ch;
    font-size: clamp(2.1rem, 4vw, 4rem);
}

.feature-grid,
.steps-grid,
.packs-grid,
.faq-list {
    display: grid;
    gap: 18px;
}

.feature-grid,
.packs-grid,
.faq-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.step-card,
.pack-card,
.faq-item {
    padding: 28px;
}

.card-index,
.step-number,
.pack-tone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-index,
.step-number {
    color: var(--accent-dark);
    background: rgba(126, 66, 255, 0.1);
}

.pack-tone {
    color: #5d2cab;
    background: rgba(198, 157, 255, 0.2);
}

.feature-card h3,
.step-card h3,
.pack-card h3,
.faq-item h3 {
    margin: 18px 0 12px;
    font-family: "Syne", sans-serif;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.pack-card {
    min-height: 250px;
    background:
        radial-gradient(circle at top right, rgba(198, 157, 255, 0.18), transparent 28%),
        rgba(255, 255, 255, 0.68);
}

.pack-card.is-featured {
    background:
        radial-gradient(circle at top right, rgba(126, 66, 255, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(250, 246, 255, 0.96), rgba(255, 255, 255, 0.72));
}

.statement-section {
    position: relative;
    left: 50%;
    width: 100vw;
    min-height: 100vh;
    margin-left: -50vw;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(126, 66, 255, 0.16), transparent 38%),
        linear-gradient(180deg, #12061b 0%, #1b0b27 50%, #251034 100%);
}

.statement-track {
    position: absolute;
    left: -10%;
    top: 28%;
    display: flex;
    gap: 36px;
    white-space: nowrap;
    font-family: "Syne", sans-serif;
    font-size: clamp(2.8rem, 7vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.08);
    animation: marquee 22s linear infinite;
}

.statement-track span {
    display: inline-flex;
    align-items: center;
    gap: 36px;
}

.statement-track.reverse {
    top: 56%;
    animation-direction: reverse;
    animation-duration: 26s;
}

.statement-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    text-align: center;
    color: #fff;
}

.statement-copy .eyebrow {
    color: rgba(255, 255, 255, 0.74);
}

.statement-copy h2 {
    max-width: 9ch;
    margin-inline: auto;
    font-size: clamp(4rem, 12vw, 9rem);
}

.faq-section {
    padding-top: 92px;
}

.cta-section {
    padding-bottom: 24px;
}

.cta-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 16% 20%, rgba(126, 66, 255, 0.24), transparent 26%),
        linear-gradient(140deg, #14091e 0%, #1f0d2b 52%, #2b153b 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(32, 12, 46, 0.32);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-22%);
    }
}

@media (max-width: 920px) {
    .site-header {
        position: static;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 28px;
    }

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

    .hero,
    .hero-metrics,
    .feature-grid,
    .steps-grid-two,
    .packs-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1 {
        margin-inline: auto;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-preview {
        inset: 0;
    }

    .hero-phone {
        right: 0;
        left: 0;
        bottom: -2%;
        width: min(72%, 420px);
        margin: 0 auto;
    }

    .cast-card,
    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cast-card {
        display: flex;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .section {
        padding: 56px 0;
    }

    .site-header {
        margin-top: 12px;
        padding: 16px;
    }

    .hero {
        min-height: auto;
        padding-top: 12px;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-preview {
        padding: 16px;
    }

    .hero-phone {
        width: min(86%, 360px);
    }

    .cast-card {
        padding: 20px;
    }

    .statement-section {
        min-height: 78vh;
    }

    .statement-track {
        font-size: clamp(2.4rem, 11vw, 4.4rem);
        gap: 24px;
    }

    .statement-copy h2 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .cta-card {
        padding: 28px;
    }
}

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

    .button,
    .statement-track {
        transition: none;
        animation: none;
    }
}
