* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #6A4DFF;
    --purple-light: #8B5CFF;
    --purple-dark: #4A36B8;
    --accent-primary: #6A4DFF;
    --accent-secondary: #8B5CFF;
    --accent-rose: #FF4D8D;
    --accent-sky: #36CFFF;
    --accent-coral: #FF7A45;
    --accent-gold: #F4B400;
    --accent-success: #12B981;
    --bg-top: #FCFDFF;
    --bg-main: #F7F9FC;
    --bg-bottom: #EDF3FA;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --surface-soft: #E6ECF4;
    --surface-muted: #D7E1EC;
    --text: #101B2D;
    --text-strong: #0B1020;
    --text-soft: #4D5E73;
    --text-muted: #6D7F95;
    --border: rgba(196, 207, 219, 0.92);
    --border-strong: rgba(122, 137, 160, 0.42);
    --shadow: rgba(16, 27, 45, 0.1);
    --shadow-strong: rgba(16, 27, 45, 0.18);
    --sunset-1: #FFE7DE;
    --sunset-2: #FFD1C0;
    --forest-1: #E4F8F1;
    --forest-2: #CFF0E4;
    --rose-1: #FFEAF3;
    --rose-2: #FFDDEA;
    --radius-xl: 40px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 8% 10%, rgba(106, 77, 255, 0.12), transparent 26%),
        radial-gradient(circle at 92% 12%, rgba(54, 207, 255, 0.16), transparent 24%),
        radial-gradient(circle at 78% 78%, rgba(255, 122, 69, 0.12), transparent 24%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-main) 45%, var(--bg-bottom) 100%);
    color: var(--text);
    font-family: ui-rounded, "SF Pro Rounded", "Avenir Next Rounded", "Nunito", sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body a {
    color: inherit;
}

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

ul {
    padding-left: 1.1rem;
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

.site-background {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

.background-orb {
    border-radius: 999px;
    filter: blur(18px);
    position: absolute;
}

.orb-violet {
    background: rgba(106, 77, 255, 0.12);
    height: 340px;
    left: -80px;
    top: 100px;
    width: 340px;
}

.orb-sky {
    background: rgba(54, 207, 255, 0.14);
    height: 280px;
    right: 0;
    top: 60px;
    width: 280px;
}

.orb-coral {
    background: rgba(255, 122, 69, 0.12);
    bottom: 120px;
    height: 240px;
    right: 14%;
    width: 240px;
}

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 24px;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(247, 249, 252, 0.66);
    border-bottom: 1px solid rgba(196, 207, 219, 0.6);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner,
.footer-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 84px;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    align-items: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(106, 77, 255, 0.24);
    color: #FFFFFF;
    display: inline-flex;
    font-size: 1.3rem;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.brand-text {
    color: var(--text-strong);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-nav,
.footer-links-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav a,
.footer-links-group a,
.text-link,
.back-link {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 14px;
}

.site-nav a:hover,
.footer-links-group a:hover,
.text-link:hover,
.back-link:hover {
    color: var(--text);
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(196, 207, 219, 0.92);
}

.primary-button,
.secondary-button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 800;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    box-shadow: 0 18px 34px rgba(106, 77, 255, 0.24);
    color: #FFFFFF;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    color: var(--text);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.back-link:focus-visible,
.footer-links-group a:focus-visible {
    outline: 3px solid rgba(106, 77, 255, 0.28);
    outline-offset: 3px;
}

main section {
    padding: 52px 0;
}

.hero-section {
    padding: 52px 0 36px;
}

.hero-grid,
.split-layout,
.coach-layout {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.coach-copy h2,
.closing-card h2,
.legal-page h1,
.support-page h1 {
    color: var(--text-strong);
    font-size: clamp(2.45rem, 6vw, 5rem);
    letter-spacing: -0.06em;
    line-height: 0.97;
}

.section-heading h2,
.split-copy h2,
.coach-copy h2,
.closing-card h2,
.legal-page h1,
.support-page h1 {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.eyebrow,
.panel-label,
.story-index,
.flow-step,
.area-chip,
.theme-name,
.coach-kicker,
.plan-name,
.plan-badge {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--accent-primary);
    margin-bottom: 14px;
}

.hero-text,
.section-heading p,
.split-copy p,
.coach-copy p,
.closing-card p,
.legal-page p,
.legal-page li,
.support-page p,
.support-page li {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.hero-text {
    margin-top: 22px;
    max-width: 640px;
}

.hero-actions,
.closing-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-metrics,
.story-grid,
.areas-grid,
.themes-grid,
.plans-grid {
    display: grid;
    gap: 20px;
}

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

.metric-card,
.story-card,
.flow-card,
.area-card,
.theme-card,
.coach-card,
.plan-card,
.closing-card,
.contact-box,
.faq-item,
.legal-page,
.support-page {
    backdrop-filter: blur(14px);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 24px 50px var(--shadow);
}

.metric-card,
.story-card,
.flow-card,
.theme-card {
    border-radius: 24px;
    padding: 22px;
}

.metric-card strong,
.story-card h3,
.flow-card h3,
.area-card h3,
.theme-card h3,
.coach-card h3,
.plan-price,
.contact-box h3,
.faq-item h3 {
    color: var(--text-strong);
}

.metric-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.metric-card span,
.story-card p,
.flow-card p,
.area-card p,
.theme-card p,
.coach-card p,
.plan-description,
.plan-list,
.footer-copy,
.date,
.subtitle {
    color: var(--text-soft);
}

.hero-device {
    min-height: 620px;
    position: relative;
}

.phone-frame {
    background: linear-gradient(180deg, #121A29 0%, #1D2636 100%);
    border-radius: 42px;
    box-shadow: 0 32px 70px rgba(11, 16, 32, 0.26);
    margin: 14px auto 0;
    max-width: 410px;
    padding: 14px;
    position: relative;
    transform: rotate(-5deg);
}

.phone-frame::before {
    background: #121A29;
    border-radius: 0 0 18px 18px;
    content: "";
    height: 22px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 134px;
}

.phone-screen {
    background:
        radial-gradient(circle at top right, rgba(139, 92, 255, 0.24), transparent 28%),
        linear-gradient(180deg, #FAFCFF 0%, #ECF2F9 100%);
    border-radius: 30px;
    min-height: 560px;
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.phone-status,
.progress-labels {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.status-pill,
.status-time {
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 12px;
}

.status-pill {
    background: rgba(18, 185, 129, 0.14);
    color: #0C8760;
}

.status-time {
    background: rgba(106, 77, 255, 0.12);
    color: var(--accent-primary);
}

.ui-panel {
    border-radius: 24px;
    margin-top: 14px;
    padding: 18px;
}

.ui-panel-primary {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 236, 244, 0.95) 100%);
    border: 1px solid rgba(196, 207, 219, 0.94);
    box-shadow: 0 18px 30px rgba(16, 27, 45, 0.08);
}

.ui-panel h2 {
    font-size: 1.8rem;
    letter-spacing: -0.05em;
    line-height: 1;
    margin: 10px 0 10px;
}

.ui-panel p,
.ui-progress span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.ui-row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ui-panel-wide {
    min-height: 96px;
}

.theme-sunset,
.story-card-sunset,
.theme-card-sunset,
.coach-card-sunset {
    background: linear-gradient(135deg, var(--sunset-1) 0%, var(--sunset-2) 100%);
}

.theme-forest,
.story-card-forest,
.theme-card-forest,
.coach-card-forest {
    background: linear-gradient(135deg, var(--forest-1) 0%, var(--forest-2) 100%);
}

.theme-rose,
.story-card-rose,
.theme-card-rose {
    background: linear-gradient(135deg, var(--rose-1) 0%, var(--rose-2) 100%);
}

.ui-progress {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(196, 207, 219, 0.84);
    border-radius: 20px;
    margin-top: 14px;
    padding: 14px;
}

.progress-bar {
    background: rgba(196, 207, 219, 0.55);
    border-radius: 999px;
    height: 10px;
    margin-top: 12px;
    overflow: hidden;
}

.progress-bar span {
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-sky) 100%);
    border-radius: inherit;
    display: block;
    height: 100%;
    width: 72%;
}

.floating-tag {
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    box-shadow: 0 18px 28px rgba(16, 27, 45, 0.14);
    font-size: 0.84rem;
    font-weight: 800;
    padding: 10px 16px;
    position: absolute;
}

.floating-tag-violet {
    background: rgba(238, 232, 255, 0.94);
    left: 8px;
    top: 78px;
}

.floating-tag-sky {
    background: rgba(220, 248, 255, 0.94);
    bottom: 82px;
    right: 6px;
}

.floating-tag-coral {
    background: rgba(255, 236, 227, 0.96);
    right: 34px;
    top: 20px;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.narrow {
    max-width: 780px;
}

.story-grid,
.areas-grid,
.themes-grid,
.plans-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-index,
.flow-step,
.panel-label,
.theme-name,
.coach-kicker,
.plan-name {
    color: var(--text-muted);
}

.flow-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-card {
    border-radius: 28px;
    min-height: 220px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.area-card::after {
    border-radius: 999px;
    content: "";
    height: 140px;
    position: absolute;
    right: -24px;
    top: -24px;
    width: 140px;
}

.area-body {
    background: linear-gradient(180deg, rgba(214, 246, 255, 0.62) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.area-body::after {
    background: rgba(14, 165, 233, 0.12);
}

.area-mind {
    background: linear-gradient(180deg, rgba(255, 234, 243, 0.72) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.area-mind::after {
    background: rgba(217, 70, 239, 0.12);
}

.area-focus {
    background: linear-gradient(180deg, rgba(232, 241, 255, 0.74) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.area-focus::after {
    background: rgba(37, 99, 235, 0.12);
}

.area-growth {
    background: linear-gradient(180deg, rgba(241, 236, 255, 0.76) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.area-growth::after {
    background: rgba(124, 58, 237, 0.12);
}

.area-chip {
    color: var(--text-strong);
    display: inline-block;
    margin-bottom: 12px;
}

.cards-cloud {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.card-pill {
    border-radius: 999px;
    box-shadow: 0 14px 24px rgba(16, 27, 45, 0.08);
    color: var(--text-strong);
    font-size: 0.94rem;
    font-weight: 800;
    padding: 12px 18px;
}

.pill-sky { background: rgba(214, 246, 255, 0.92); }
.pill-mint { background: rgba(220, 252, 237, 0.96); }
.pill-coral { background: rgba(255, 237, 229, 0.96); }
.pill-blue { background: rgba(224, 238, 255, 0.96); }
.pill-violet { background: rgba(238, 232, 255, 0.96); }
.pill-cyan { background: rgba(221, 251, 255, 0.96); }
.pill-purple { background: rgba(242, 233, 255, 0.96); }
.pill-rose { background: rgba(255, 232, 242, 0.96); }
.pill-indigo { background: rgba(231, 236, 255, 0.96); }
.pill-gold { background: rgba(255, 245, 210, 0.96); }
.pill-teal { background: rgba(220, 247, 243, 0.96); }
.pill-red { background: rgba(255, 230, 235, 0.96); }
.pill-green { background: rgba(230, 249, 234, 0.96); }
.pill-amber { background: rgba(255, 243, 220, 0.96); }
.pill-deep { background: rgba(234, 230, 255, 0.96); }
.pill-emerald { background: rgba(223, 250, 239, 0.96); }

.theme-card {
    min-height: 220px;
}

.coach-board {
    display: grid;
    gap: 18px;
}

.coach-card {
    border-radius: 28px;
    padding: 22px;
}

.coach-card-main {
    background: linear-gradient(135deg, rgba(244, 240, 255, 0.96) 0%, rgba(235, 241, 255, 0.96) 100%);
}

.coach-card-soft {
    min-height: 140px;
}

.plans-grid {
    align-items: stretch;
}

.plan-card {
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px;
    position: relative;
}

.plan-card-featured {
    background: linear-gradient(180deg, rgba(244, 240, 255, 0.92) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(139, 92, 255, 0.3);
    box-shadow: 0 30px 56px rgba(106, 77, 255, 0.16);
}

.plan-badge {
    color: var(--accent-primary);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.plan-price span {
    color: var(--text-soft);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-left: 6px;
}

.plan-alt-price {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.plan-list {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.closing-card {
    align-items: center;
    border-radius: 34px;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 28px;
}

.site-footer {
    padding: 0 0 36px;
}

.footer-inner {
    border-top: 1px solid rgba(196, 207, 219, 0.78);
    padding-top: 24px;
}

.footer-copy {
    font-size: 0.97rem;
    margin-top: 12px;
    max-width: 340px;
}

.brand-footer .brand-mark {
    height: 38px;
    width: 38px;
}

.legal-page,
.support-page {
    border-radius: 34px;
    margin: 40px auto;
    max-width: 880px;
    padding: 30px;
}

.back-link {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 18px;
}

.date,
.subtitle {
    margin-top: 12px;
}

.legal-page h2,
.support-page h2 {
    color: var(--text-strong);
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    margin: 26px 0 12px;
}

.legal-page p + p,
.support-page p + p,
.legal-page ul,
.support-page ul {
    margin-top: 12px;
}

.contact-box,
.faq-item {
    border-radius: 24px;
    margin-top: 18px;
    padding: 22px;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .hero-grid,
    .split-layout,
    .coach-layout {
        grid-template-columns: 1fr;
    }

    .hero-device {
        margin-top: 10px;
        min-height: auto;
    }

    .hero-metrics,
    .story-grid,
    .areas-grid,
    .themes-grid,
    .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    main section {
        padding: 40px 0;
    }

    .container {
        padding: 0 18px;
    }

    .header-inner,
    .footer-inner,
    .closing-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav,
    .footer-links-group {
        gap: 8px;
    }

    .hero-metrics,
    .story-grid,
    .flow-grid,
    .areas-grid,
    .themes-grid,
    .plans-grid,
    .ui-row {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .phone-frame {
        max-width: 100%;
        transform: none;
    }

    .floating-tag {
        display: none;
    }

    .legal-page,
    .support-page {
        border-radius: 26px;
        margin: 24px 18px;
        padding: 22px;
    }
}
