:root {
    --bg: #f3eee3;
    --surface: #ffffff;
    --surface-soft: #faf6ee;
    --border: #e5decf;
    --text: #2b2832;
    --muted: #7c7688;
    --indigo: #3a45b0;
    --indigo-bright: #5962ce;
    --indigo-wash: rgba(58, 69, 176, .10);
    --ochre: #be5f30;
    --ochre-wash: rgba(190, 95, 48, .12);
    --green: #2e875c;
    --green-wash: rgba(46, 135, 92, .12);
    --gold: #b5821f;
    --gold-wash: rgba(181, 130, 31, .12);
    --dark: #17161d;
    --dark-soft: #201e28;
    --display: "Sora", ui-sans-serif, system-ui, sans-serif;
    --body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
    --shadow: 0 24px 70px rgba(43, 40, 50, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input {
    font: inherit;
}

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

svg {
    display: block;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--indigo);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(229, 222, 207, .9);
    background: rgba(243, 238, 227, .88);
    box-shadow: 0 10px 40px rgba(43, 40, 50, .05);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 24px rgba(58, 69, 176, .08);
}

.brand-mark svg {
    width: 28px;
    height: 28px;
}

.brand-copy {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.brand-copy strong {
    color: var(--indigo);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.site-nav > a:not(.button) {
    transition: color .18s ease;
}

.site-nav > a:not(.button):hover {
    color: var(--text);
}

.site-nav .nav-admin {
    padding-left: 28px;
    border-left: 1px solid var(--border);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 21px;
    border: 1px solid var(--indigo);
    border-radius: 14px;
    color: #fff;
    background: var(--indigo);
    box-shadow: 0 13px 30px rgba(58, 69, 176, .19);
    font-size: 13px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
    background: #30399b;
    box-shadow: 0 16px 36px rgba(58, 69, 176, .25);
    transform: translateY(-2px);
}

.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button-small {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
}

.button-light {
    border-color: #fff;
    color: var(--indigo);
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

.button-light:hover {
    color: var(--indigo);
    background: #f7f5ff;
}

.button-outline {
    color: var(--indigo);
    background: rgba(58, 69, 176, .06);
    box-shadow: none;
}

.button-outline:hover {
    color: var(--indigo);
    background: rgba(58, 69, 176, .12);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 850px;
    padding: 150px 0 94px;
}

.hero::after {
    position: absolute;
    z-index: -3;
    top: 0;
    right: -15%;
    width: 62%;
    height: 100%;
    background: radial-gradient(circle at 55% 45%, rgba(58, 69, 176, .13), transparent 55%);
    content: "";
}

.hero-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(58, 69, 176, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 69, 176, .035) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

.hero-orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(58, 69, 176, .13);
    border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ochre);
    content: "";
}

.hero-orbit-one {
    top: 118px;
    right: -240px;
    width: 720px;
    height: 720px;
}

.hero-orbit-one::before {
    top: 16%;
    left: 12%;
}

.hero-orbit-one::after {
    right: 4%;
    bottom: 27%;
}

.hero-orbit-two {
    top: 230px;
    right: -90px;
    width: 450px;
    height: 450px;
    border-color: rgba(190, 95, 48, .12);
}

.hero-orbit-two::before {
    top: 62%;
    left: -3px;
    background: var(--indigo);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
    align-items: center;
    gap: 62px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--indigo);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(58, 69, 176, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .54);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ochre);
    box-shadow: 0 0 0 4px var(--ochre-wash);
}

.hero h1 {
    max-width: 650px;
    margin: 26px 0 24px;
    font-family: var(--display);
    font-size: clamp(48px, 5.4vw, 76px);
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: 1.02;
}

h1 em,
h2 em {
    color: var(--indigo);
    font-style: normal;
}

.hero-intro {
    max-width: 600px;
    margin-bottom: 31px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    transition: color .18s ease, border-color .18s ease;
}

.text-link:hover {
    border-color: var(--indigo);
    color: var(--indigo);
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-notes svg {
    width: 16px;
    height: 16px;
    padding: 2px;
    border-radius: 50%;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    background: var(--green-wash);
}

.hero-product {
    position: relative;
    z-index: 1;
    min-height: 650px;
}

.product-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px 72px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0;
    text-transform: none;
}

.live-dot::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px var(--green-wash);
    content: "";
}

.phone-stage {
    position: relative;
    display: grid;
    min-height: 620px;
    place-items: center;
    border: 1px solid rgba(58, 69, 176, .10);
    border-radius: 46% 54% 43% 57% / 48% 42% 58% 52%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .95), transparent 35%),
        linear-gradient(145deg, rgba(58, 69, 176, .08), rgba(190, 95, 48, .07));
}

.phone-stage::before {
    position: absolute;
    inset: 35px;
    border: 1px dashed rgba(58, 69, 176, .13);
    border-radius: 50%;
    content: "";
    animation: rotate-orbit 28s linear infinite;
}

.phone {
    position: relative;
    width: 300px;
    height: 606px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 43px;
    background: #25232b;
    box-shadow:
        0 36px 80px rgba(34, 31, 45, .26),
        inset 0 0 0 1px rgba(255, 255, 255, .1);
    transform: rotate(1.5deg);
}

.phone::before {
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 50%;
    width: 86px;
    height: 23px;
    border-radius: 20px;
    background: #1a191f;
    content: "";
    transform: translateX(-50%);
}

.phone-buttons::before,
.phone-buttons::after {
    position: absolute;
    left: -3px;
    width: 3px;
    border-radius: 3px 0 0 3px;
    background: #3b3841;
    content: "";
}

.phone-buttons::before {
    top: 105px;
    height: 55px;
}

.phone-buttons::after {
    top: 174px;
    height: 36px;
}

.phone-screen {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 16px 17px 12px;
    border-radius: 35px;
    background: var(--bg);
}

.phone-screen::before {
    position: absolute;
    top: 72px;
    right: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(58, 69, 176, .10);
    border-radius: 50%;
    content: "";
}

.phone-status {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    color: var(--text);
    font-size: 9px;
    font-weight: 700;
}

.phone-status > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-status svg {
    width: 13px;
    height: 9px;
    fill: var(--text);
    stroke: var(--text);
    stroke-width: 1.2;
}

.battery {
    display: block;
    width: 14px;
    height: 7px;
    border: 1px solid var(--text);
    border-radius: 2px;
}

.battery::after {
    display: block;
    width: 9px;
    height: 3px;
    margin: 1px;
    border-radius: 1px;
    background: var(--text);
    content: "";
}

.phone-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 23px;
}

.phone-brand > strong {
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: -.03em;
}

.phone-brand b {
    color: var(--indigo);
}

.mini-mark {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}

.mini-mark i {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--indigo);
}

.mini-mark i:nth-child(2) {
    top: 2px;
}

.mini-mark i:nth-child(3) {
    top: 14px;
}

.mini-mark i:nth-child(4) {
    left: 2px;
    background: var(--ochre);
}

.mini-mark i:nth-child(5) {
    left: 14px;
    background: var(--ochre);
}

.phone-brand .avatar {
    display: grid;
    width: 25px;
    height: 25px;
    margin-left: auto;
    place-items: center;
    border-radius: 8px;
    color: var(--indigo);
    background: var(--indigo-wash);
    font-size: 7px;
    font-weight: 700;
}

.phone-greeting {
    position: relative;
    z-index: 2;
    margin-top: 23px;
}

.phone-greeting span {
    color: var(--muted);
    font-size: 9px;
}

.phone-greeting h2 {
    margin: 4px 0 0;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -.04em;
}

.phone-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 16px;
}

.phone-stats div {
    padding: 10px 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.phone-stats strong,
.phone-stats span {
    display: block;
}

.phone-stats strong {
    font-family: var(--display);
    font-size: 15px;
}

.phone-stats span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 7px;
}

.green {
    color: var(--green);
}

.ochre {
    color: var(--ochre);
}

.indigo {
    color: var(--indigo);
}

.continue-card {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(58, 69, 176, .25);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(43, 40, 50, .05);
}

.card-kicker,
.progress-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-kicker > span:first-child {
    color: var(--ochre);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.level-pill {
    padding: 4px 6px;
    border-radius: 5px;
    color: var(--indigo);
    background: var(--indigo-wash);
    font-size: 6px;
    font-weight: 700;
}

.continue-card h3 {
    margin: 10px 0 13px;
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: -.02em;
}

.progress-track {
    overflow: hidden;
    height: 5px;
    border-radius: 5px;
    background: var(--surface-soft);
}

.progress-track span {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: var(--indigo);
}

.progress-copy {
    margin-top: 6px;
    color: var(--muted);
    font-size: 7px;
}

.progress-copy strong {
    color: var(--indigo);
}

.next-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    padding: 11px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.next-icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 9px;
    color: var(--indigo);
    background: var(--indigo-wash);
}

.next-icon svg {
    width: 14px;
    fill: currentColor;
}

.next-copy {
    min-width: 0;
    flex: 1;
}

.next-copy small,
.next-copy strong {
    display: block;
}

.next-copy small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 7px;
}

.next-copy strong {
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.next-arrow {
    color: var(--indigo);
    font-size: 13px;
}

.phone-tabs {
    position: absolute;
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 26px rgba(43, 40, 50, .14);
}

.phone-tabs span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 32px;
    border-radius: 15px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.phone-tabs span b {
    display: none;
    font-weight: 700;
}

.phone-tabs svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Active tab expands into an indigo pill (icon + label), mirroring the mobile dock. */
.phone-tabs .active {
    flex: 1;
    color: var(--indigo);
    background: var(--indigo-wash);
    border: 1px solid rgba(58, 69, 176, .16);
}

.phone-tabs .active b {
    display: inline;
}

.float-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 160px;
    padding: 11px 13px;
    border: 1px solid rgba(229, 222, 207, .9);
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 40px rgba(43, 40, 50, .12);
    backdrop-filter: blur(14px);
}

.float-card-level {
    top: 123px;
    left: -18px;
    animation: float 6s ease-in-out infinite;
}

.float-card-coach {
    right: -20px;
    bottom: 118px;
    animation: float 6s ease-in-out -3s infinite;
}

.float-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
}

.float-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.float-icon-gold {
    color: var(--gold);
    background: var(--gold-wash);
}

.float-icon-green {
    color: var(--green);
    background: var(--green-wash);
}

.float-card small,
.float-card strong {
    display: block;
}

.float-card small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 8px;
}

.float-card strong {
    font-size: 10px;
}

.signal-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .48);
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.signal-grid > div {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    padding: 24px 32px;
    border-right: 1px solid var(--border);
}

.signal-grid > div:first-child {
    padding-left: 0;
}

.signal-grid > div:last-child {
    border-right: 0;
}

.signal-number {
    color: var(--ochre);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
}

.signal-grid strong,
.signal-grid small {
    display: block;
}

.signal-grid strong {
    margin-bottom: 5px;
    font-family: var(--display);
    font-size: 13px;
}

.signal-grid small {
    color: var(--muted);
    font-size: 10px;
}

.section {
    padding: 120px 0;
}

.section-heading h2,
.journey-copy h2,
.cta-content h2 {
    font-family: var(--display);
    font-size: clamp(38px, 4.5vw, 58px);
    letter-spacing: -.055em;
    line-height: 1.08;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 55px;
}

.split-heading h2 {
    max-width: 760px;
    margin: 16px 0 0;
}

.split-heading > p,
.centered > p {
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

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

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 50px rgba(43, 40, 50, .04);
}

.feature-card::after {
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(58, 69, 176, .08);
    border-radius: 50%;
    content: "";
}

.feature-copy {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.feature-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
}

.feature-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon-ochre {
    color: var(--ochre);
    background: var(--ochre-wash);
}

.feature-icon-indigo {
    color: var(--indigo);
    background: var(--indigo-wash);
}

.feature-icon-green {
    color: var(--green);
    background: var(--green-wash);
}

.feature-icon-gold {
    color: var(--gold);
    background: var(--gold-wash);
}

.card-number {
    position: absolute;
    top: 7px;
    right: 0;
    color: rgba(43, 40, 50, .18);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
}

.feature-card h3 {
    max-width: 430px;
    margin: 22px 0 12px;
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: -.04em;
    line-height: 1.25;
}

.feature-card p {
    max-width: 450px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.ai-preview {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: 90px;
    z-index: 2;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 18px 45px rgba(43, 40, 50, .08);
    transform: rotate(-1.5deg);
}

.ai-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--indigo);
    background: var(--indigo-wash);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
}

.ai-head strong,
.ai-head small {
    display: block;
}

.ai-head strong {
    font-size: 11px;
}

.ai-head small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 8px;
}

.ai-head i {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px var(--green-wash);
}

.ai-message {
    margin-top: 13px;
    padding: 13px;
    border-radius: 13px;
    background: var(--surface-soft);
    font-size: 11px;
    line-height: 1.65;
}

.ai-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.ai-options span {
    padding: 6px 8px;
    border: 1px solid rgba(58, 69, 176, .14);
    border-radius: 7px;
    color: var(--indigo);
    background: var(--indigo-wash);
    font-size: 7px;
    font-weight: 700;
}

.diagnostic-preview {
    position: absolute;
    right: 28px;
    bottom: 20px;
    left: 28px;
    z-index: 2;
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    border-radius: 22px;
    background: var(--surface-soft);
}

.score-ring {
    position: relative;
    display: grid;
    place-items: center;
}

.score-ring svg {
    width: 145px;
    height: 145px;
    transform: rotate(-90deg);
}

.score-ring circle {
    fill: none;
    stroke: var(--border);
    stroke-width: 8;
}

.score-ring .score-value {
    stroke: var(--indigo);
    stroke-dasharray: 257 314;
    stroke-linecap: round;
}

.score-ring > span {
    position: absolute;
    text-align: center;
}

.score-ring strong,
.score-ring small {
    display: block;
}

.score-ring strong {
    color: var(--indigo);
    font-family: var(--display);
    font-size: 31px;
}

.score-ring small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 8px;
}

.skill-bars {
    display: grid;
    gap: 15px;
}

.skill-bars span,
.skill-bars small,
.skill-bars i,
.skill-bars b {
    display: block;
}

.skill-bars small {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
}

.skill-bars i {
    overflow: hidden;
    height: 7px;
    border-radius: 6px;
    background: var(--surface);
}

.skill-bars b {
    height: 100%;
    border-radius: inherit;
    background: var(--indigo);
}

.path-preview {
    position: absolute;
    right: 34px;
    bottom: 26px;
    left: 34px;
    z-index: 2;
    display: grid;
    gap: 10px;
}

.path-line {
    position: absolute;
    z-index: -1;
    top: 30px;
    bottom: 30px;
    left: 22px;
    border-left: 1px dashed var(--border);
}

.path-step {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 10px 13px 10px 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.path-step > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--muted);
    background: var(--surface-soft);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
}

.path-step small,
.path-step strong {
    display: block;
}

.path-step small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 7px;
    text-transform: uppercase;
}

.path-step strong {
    font-size: 10px;
}

.path-step em {
    color: var(--muted);
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.path-step.done > span {
    color: var(--green);
    background: var(--green-wash);
}

.path-step.done em {
    color: var(--green);
}

.path-step.current {
    border-color: rgba(58, 69, 176, .35);
    box-shadow: 0 12px 30px rgba(58, 69, 176, .08);
}

.path-step.current > span {
    color: #fff;
    background: var(--indigo);
}

.path-step.current em {
    color: var(--indigo);
}

.progress-preview {
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    z-index: 2;
    padding: 20px 22px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
}

.progress-stat {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.progress-stat small,
.progress-stat strong {
    display: block;
}

.progress-stat small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 8px;
}

.progress-stat strong {
    font-family: var(--display);
    font-size: 19px;
}

.progress-stat em {
    color: var(--green);
    font-family: var(--display);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.week-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 110px;
    margin-top: 13px;
    padding-top: 10px;
    border-bottom: 1px solid var(--border);
}

.week-bars > span {
    position: relative;
    flex: 1;
    min-height: 10px;
    border-radius: 5px 5px 0 0;
    background: var(--indigo-wash);
}

.week-bars > span::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--indigo);
    opacity: .5;
    content: "";
}

.week-bars .today::before {
    opacity: 1;
}

.week-bars small {
    position: absolute;
    bottom: -20px;
    left: 50%;
    color: var(--muted);
    font-size: 7px;
    transform: translateX(-50%);
}

.journey-section {
    position: relative;
    overflow: hidden;
    color: #f3f0e9;
    background:
        radial-gradient(circle at 15% 35%, rgba(107, 114, 214, .18), transparent 33%),
        var(--dark);
}

.journey-pattern {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 56px 56px;
}

.journey-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 110px;
}

.section-kicker.light {
    color: #d07b47;
}

.journey-copy {
    position: sticky;
    top: 140px;
}

.journey-copy h2 {
    margin: 20px 0 24px;
}

.journey-copy h2 em,
.cta-content h2 em {
    color: #7e86e9;
}

.journey-copy > p {
    max-width: 450px;
    margin-bottom: 30px;
    color: #a6a1b0;
    font-size: 14px;
    line-height: 1.8;
}

.journey-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-steps li {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    gap: 18px;
    min-height: 152px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.journey-steps li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.step-index {
    color: #d07b47;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
}

.journey-steps h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 19px;
    letter-spacing: -.03em;
}

.journey-steps p {
    max-width: 500px;
    margin: 0;
    color: #a6a1b0;
    font-size: 12px;
    line-height: 1.7;
}

.step-glyph {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    color: #a6a1b0;
    background: rgba(255, 255, 255, .035);
}

.step-glyph svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-steps .active .step-glyph {
    border-color: rgba(107, 114, 214, .32);
    color: #7e86e9;
    background: rgba(107, 114, 214, .14);
}

.why-section {
    background: var(--surface-soft);
}

.centered {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.centered h2 {
    margin: 18px 0 20px;
}

.centered > p {
    max-width: 620px;
    margin-inline: auto;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: stretch;
    max-width: 1010px;
    margin-inline: auto;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.comparison-side {
    padding: 40px;
}

.comparison-label {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.comparison-old .comparison-label {
    color: var(--muted);
    background: var(--surface-soft);
}

.comparison-new .comparison-label {
    color: var(--green);
    background: var(--green-wash);
}

.comparison ul {
    display: grid;
    gap: 17px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.comparison li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
}

.comparison li span {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.comparison-old li span {
    color: var(--ochre);
    background: var(--ochre-wash);
}

.comparison-new li {
    color: var(--text);
}

.comparison-new li span {
    color: var(--green);
    background: var(--green-wash);
}

.comparison-divider {
    display: grid;
    place-items: center;
}

.comparison-divider::before {
    position: absolute;
    height: 210px;
    border-left: 1px solid var(--border);
    content: "";
}

.comparison-divider span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 10px 25px rgba(43, 40, 50, .08);
}

.comparison-divider svg {
    width: 31px;
    fill: var(--indigo);
    stroke: var(--indigo);
    stroke-width: 1.5;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 70px;
}

.audience-grid article {
    padding: 30px;
    border-top: 1px solid var(--border);
}

.audience-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 13px;
    color: var(--indigo);
    background: var(--indigo-wash);
}

.audience-icon svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.audience-grid h3 {
    margin: 21px 0 10px;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: -.03em;
}

.audience-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    color: #fff;
    background: var(--indigo);
}

.cta-section::before {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, #000, transparent 72%);
    content: "";
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-mark {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 22px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
}

.cta-mark svg {
    width: 39px;
    fill: #fff;
    stroke: #fff;
    stroke-width: 1.5;
}

.cta-content .section-kicker {
    color: #f0b18d;
}

.cta-content h2 {
    margin: 18px auto 18px;
    font-size: clamp(42px, 5vw, 66px);
}

.cta-content h2 em {
    color: #f0b18d;
}

.cta-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .70);
    font-size: 14px;
}

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.cta-orbit-one {
    top: 50%;
    left: -280px;
    width: 620px;
    height: 620px;
    transform: translateY(-50%);
}

.cta-orbit-two {
    top: 50%;
    right: -180px;
    width: 420px;
    height: 420px;
    border-color: rgba(240, 177, 141, .25);
    transform: translateY(-50%);
}

.site-footer {
    padding: 72px 0 26px;
    color: #f3f0e9;
    background: var(--dark);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    padding-bottom: 55px;
}

.footer-brand .brand-mark {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
}

.footer-brand .brand-copy strong {
    color: #7e86e9;
}

.footer-main > div:first-child > p {
    margin: 17px 0 0;
    color: #a6a1b0;
    font-size: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 55px;
}

.footer-links div {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: #fff;
    font-family: var(--display);
    font-size: 11px;
}

.footer-links a {
    color: #a6a1b0;
    font-size: 11px;
    transition: color .18s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #77727f;
    font-size: 9px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes rotate-orbit {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav .nav-admin {
        padding-left: 18px;
    }

    .hero-layout {
        grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
        gap: 30px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .float-card-level {
        left: -4px;
    }

    .float-card-coach {
        right: -6px;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 72px;
        right: 24px;
        left: 24px;
        display: none;
        align-items: stretch;
        gap: 0;
        padding: 13px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255, 255, 255, .96);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav > a:not(.button) {
        padding: 12px;
    }

    .site-nav .nav-admin {
        padding-left: 12px;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .site-nav .button {
        margin-top: 6px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .hero-copy {
        max-width: 720px;
        text-align: center;
        justify-self: center;
    }

    .hero h1,
    .hero-intro {
        margin-inline: auto;
    }

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

    .hero-product {
        width: min(620px, 100%);
        justify-self: center;
    }

    .product-label {
        margin-left: 0;
    }

    .signal-grid > div {
        padding-inline: 20px;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .split-heading > p {
        max-width: 560px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 500px;
    }

    .journey-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .journey-copy {
        position: static;
        max-width: 650px;
    }

    .comparison {
        grid-template-columns: 1fr 70px 1fr;
    }

    .comparison-side {
        padding: 30px 24px;
    }
}

@media (max-width: 700px) {
    .shell {
        width: min(calc(100% - 30px), 1180px);
    }

    .nav-shell {
        min-height: 72px;
    }

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

    .brand-copy {
        font-size: 16px;
    }

    .hero {
        min-height: 0;
        padding: 112px 0 70px;
    }

    .hero h1 {
        margin-top: 21px;
        font-size: clamp(40px, 12.4vw, 55px);
    }

    .hero-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-notes {
        display: grid;
        justify-content: center;
        text-align: left;
    }

    .hero-product {
        min-height: 580px;
    }

    .phone-stage {
        min-height: 560px;
        border-radius: 34px;
    }

    .phone-stage::before {
        inset: 20px;
    }

    .phone {
        width: 276px;
        height: 560px;
    }

    .float-card {
        min-width: 138px;
        padding: 9px;
    }

    .float-card-level {
        top: 88px;
        left: -5px;
    }

    .float-card-coach {
        right: -5px;
        bottom: 77px;
    }

    .product-label {
        padding-inline: 4px;
    }

    .signal-grid {
        grid-template-columns: 1fr;
        padding-block: 12px;
    }

    .signal-grid > div,
    .signal-grid > div:first-child {
        min-height: 96px;
        padding: 19px 10px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .signal-grid > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 84px 0;
    }

    .section-heading h2,
    .journey-copy h2,
    .cta-content h2 {
        font-size: 38px;
    }

    .split-heading {
        margin-bottom: 35px;
    }

    .feature-card {
        min-height: 500px;
        padding: 25px;
        border-radius: 22px;
    }

    .feature-card h3 {
        font-size: 21px;
    }

    .ai-preview {
        right: 22px;
        bottom: 25px;
        left: 44px;
    }

    .diagnostic-preview {
        right: 20px;
        bottom: 20px;
        left: 20px;
        grid-template-columns: 125px 1fr;
        gap: 14px;
        padding: 17px;
    }

    .score-ring svg {
        width: 115px;
        height: 115px;
    }

    .score-ring strong {
        font-size: 25px;
    }

    .path-preview,
    .progress-preview {
        right: 22px;
        left: 22px;
    }

    .journey-steps li {
        grid-template-columns: 38px 1fr;
        min-height: 0;
        padding: 26px 0;
    }

    .step-glyph {
        display: none;
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .comparison-side {
        padding: 28px;
    }

    .comparison-divider {
        min-height: 70px;
    }

    .comparison-divider::before {
        width: 70%;
        height: auto;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .audience-grid article {
        padding: 25px 10px;
    }

    .cta-section {
        padding: 90px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
    }
}

@media (max-width: 390px) {
    .phone {
        width: 252px;
        height: 530px;
    }

    .phone-screen {
        padding-inline: 14px;
    }

    .float-card {
        min-width: 125px;
    }

    .float-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
    }

    .feature-card {
        min-height: 520px;
    }

    .diagnostic-preview {
        grid-template-columns: 1fr;
    }

    .score-ring {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
