:root {
    --bg: #070907;
    --bg-soft: #0b0e0b;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-strong: #111511;
    --surface-lime: rgba(202, 255, 49, 0.08);
    --text: #f7f8f4;
    --muted: #9da49b;
    --muted-strong: #c5cac1;
    --lime: #caff31;
    --lime-soft: #dcff73;
    --blue: #8c9cff;
    --border: rgba(255, 255, 255, 0.105);
    --border-lime: rgba(202, 255, 49, 0.28);
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shell: 1200px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 8%, rgba(202, 255, 49, 0.065), transparent 31rem),
        radial-gradient(circle at 88% 26%, rgba(87, 101, 242, 0.055), transparent 32rem),
        var(--bg);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

button {
    color: inherit;
}

img,
svg {
    display: block;
}

::selection {
    color: #070907;
    background: var(--lime);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: #070907;
    background: var(--lime);
    border-radius: 999px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--shell));
    margin: 0 auto;
}

.page-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.ambient-glow {
    position: fixed;
    z-index: -2;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.08;
    pointer-events: none;
}

.ambient-glow-left {
    top: 4rem;
    left: -18rem;
    background: var(--lime);
}

.ambient-glow-right {
    top: 36%;
    right: -20rem;
    background: #7b8cff;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), #7bf2bd);
    transform: scaleX(0);
    transform-origin: left;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 0 24px;
}

.site-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(100%, 1120px);
    min-height: 64px;
    margin: 0 auto;
    padding: 9px 10px 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background: rgba(8, 10, 8, 0.76);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(22px) saturate(130%);
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.site-header.scrolled .site-nav {
    background: rgba(8, 10, 8, 0.93);
    border-color: rgba(255, 255, 255, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.brand img {
    width: 27px;
    height: 27px;
    object-fit: contain;
    filter: invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-links a {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.065);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #080a07;
    background: var(--lime);
    box-shadow: 0 12px 35px rgba(202, 255, 49, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--lime-soft);
    box-shadow: 0 16px 42px rgba(202, 255, 49, 0.24);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.075);
}

.button svg {
    width: 17px;
    height: 20px;
    fill: currentColor;
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 0.78rem;
}

.hero {
    position: relative;
    min-height: 880px;
    padding: 125px 0 100px;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 52%;
    width: 48rem;
    height: 48rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 255, 49, 0.105), transparent 67%);
    transform: translateX(-12%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    align-items: center;
    gap: clamp(56px, 7vw, 105px);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow {
    padding: 9px 13px;
    border: 1px solid var(--border-lime);
    border-radius: 999px;
    background: rgba(202, 255, 49, 0.055);
}

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

.hero h1,
.section-heading h2,
.availability-card h2,
.final-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 680px;
    margin-top: 24px;
    font-size: clamp(3.5rem, 5vw, 5.1rem);
}

.hero h1 span,
.section-heading h2 span,
.availability-card h2 span,
.final-cta h2 span {
    color: var(--lime);
}

.hero-intro {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted-strong);
    font-size: clamp(1.03rem, 1.45vw, 1.18rem);
    line-height: 1.75;
}

.hero-evolution {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-evolution strong {
    color: var(--text);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
}

.text-link span {
    color: var(--lime);
    transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(4px);
}

.trust-microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    max-width: 680px;
    margin-top: 34px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.72rem;
}

.trust-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-microcopy span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
}

.hero-product {
    position: relative;
    padding: 18px 18px 42px;
}

.orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(202, 255, 49, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    inset: -55px -28px 40px -55px;
    transform: rotate(-18deg);
}

.orbit-two {
    inset: 40px -75px -25px 15px;
    border-color: rgba(140, 156, 255, 0.11);
    transform: rotate(22deg);
}

.product-window {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        rgba(8, 11, 8, 0.95);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
}

.product-window::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(202, 255, 49, 0.24), transparent 25%, transparent 74%, rgba(140, 156, 255, 0.18));
    opacity: 0.65;
}

.product-window-topbar,
.advisor-identity,
.decision-card-heading,
.decision-row,
.decision-total,
.composer,
.weekly-topline,
.weekly-greeting,
.wrap-footer,
.roadmap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advisor-identity {
    justify-content: flex-start;
    gap: 10px;
}

.advisor-mark,
.small-logo {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(202, 255, 49, 0.2);
    border-radius: 13px;
    background: rgba(202, 255, 49, 0.08);
}

.advisor-mark img,
.small-logo img {
    width: 21px;
    height: 21px;
    filter: invert(1);
}

.advisor-identity > span:last-child {
    display: flex;
    flex-direction: column;
}

.advisor-identity strong {
    font-family: var(--font-display);
    font-size: 0.82rem;
}

.advisor-identity small {
    color: var(--muted);
    font-size: 0.61rem;
}

.live-pill,
.stage-label,
.roadmap-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.035);
    font-family: var(--font-display);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.live-pill,
.stage-label.live {
    color: var(--lime);
    border-color: var(--border-lime);
    background: rgba(202, 255, 49, 0.06);
}

.prompt-switcher {
    display: flex;
    gap: 7px;
    margin-top: 22px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
}

.prompt-chip {
    flex: 1;
    min-height: 44px;
    padding: 0 8px;
    border: 0;
    border-radius: 10px;
    color: var(--muted);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.prompt-chip:hover,
.prompt-chip:focus-visible,
.prompt-chip.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.conversation {
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-height: 142px;
    margin-top: 20px;
}

.message {
    padding: 13px 15px;
    border-radius: 17px;
    font-size: 0.77rem;
    line-height: 1.55;
}

.message p {
    margin: 0;
}

.message-user {
    align-self: flex-end;
    max-width: 78%;
    color: #10130d;
    background: var(--text);
    border-bottom-right-radius: 5px;
    font-weight: 600;
}

.message-ai {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 10px;
    align-items: flex-start;
    max-width: 93%;
    padding-left: 10px;
    color: var(--muted-strong);
    background: var(--surface-lime);
    border: 1px solid var(--border-lime);
    border-bottom-left-radius: 5px;
}

.message-ai strong {
    color: var(--lime);
}

.message-avatar {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-top: 1px;
    border-radius: 8px;
    background: rgba(202, 255, 49, 0.12);
}

.message-avatar img {
    width: 14px;
    height: 14px;
    filter: invert(1);
}

.decision-card {
    margin-top: 15px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.22);
}

.decision-card-heading {
    margin-bottom: 12px;
    color: var(--muted-strong);
    font-size: 0.66rem;
    font-weight: 600;
}

.context-badge {
    color: var(--muted);
    font-size: 0.57rem;
    font-weight: 500;
}

.decision-row {
    padding: 7px 0;
    color: var(--muted);
    font-size: 0.68rem;
}

.decision-row strong {
    color: var(--muted-strong);
    font-size: 0.72rem;
}

.decision-total {
    margin-top: 8px;
    padding-top: 13px;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.77rem;
    font-weight: 600;
}

.decision-total strong {
    color: var(--lime);
    font-size: 1.25rem;
}

.composer {
    gap: 12px;
    margin-top: 15px;
    min-height: 46px;
    padding: 6px 7px 6px 15px;
    border: 1px solid var(--border);
    border-radius: 15px;
    color: #6f756d;
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.68rem;
}

.voice-button {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    color: #090b08;
    background: var(--lime);
}

.voice-button svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.illustration-note {
    margin: 10px 0 -3px;
    color: #686e65;
    font-size: 0.55rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.proactive-preview {
    position: absolute;
    right: -26px;
    bottom: -26px;
    z-index: 3;
    width: min(290px, 62%);
    padding: 16px 18px;
    border: 1px solid rgba(140, 156, 255, 0.26);
    border-radius: 19px;
    background: rgba(19, 22, 35, 0.96);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

.preview-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: #c8ceff;
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.preview-label span {
    padding: 3px 6px;
    border-radius: 999px;
    color: #111527;
    background: var(--blue);
}

.proactive-preview strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.78rem;
}

.proactive-preview p {
    margin: 5px 0 0;
    color: #9ca5c7;
    font-size: 0.64rem;
    line-height: 1.5;
}

.status-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.015);
}

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

.status-grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
    min-height: 124px;
    padding: 26px 34px;
    border-right: 1px solid var(--border);
}

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

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

.status-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-lime);
    border-radius: 12px;
    color: var(--lime);
    background: rgba(202, 255, 49, 0.05);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
}

.status-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.55;
}

.status-grid strong {
    color: var(--text);
    font-size: 0.8rem;
}

.section {
    position: relative;
    padding: 130px 0;
    scroll-margin-top: 90px;
}

.section-heading {
    max-width: 650px;
}

.section-heading.narrow {
    max-width: 810px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-heading h2,
.availability-card h2,
.final-cta h2 {
    margin-top: 18px;
    font-size: clamp(3rem, 5.4vw, 5.25rem);
}

.section-heading p {
    max-width: 640px;
    margin: 23px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.section-heading.narrow p {
    margin-right: auto;
    margin-left: auto;
}

.comparison-wrap {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.comparison-intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
    padding: 30px;
    border-right: 1px solid var(--border);
    background:
        linear-gradient(to top, rgba(202, 255, 49, 0.09), transparent 62%),
        rgba(255, 255, 255, 0.012);
}

.comparison-intro p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.84rem;
}

.comparison-intro strong {
    max-width: 220px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.35;
}

.comparison-table-wrap {
    min-width: 0;
    overflow-x: auto;
}

.category-table {
    width: 100%;
    min-width: 730px;
    border-collapse: collapse;
    font-size: 0.75rem;
}

.category-table th,
.category-table td {
    padding: 24px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

.category-table tr:last-child th,
.category-table tr:last-child td {
    border-bottom: 0;
}

.category-table th:last-child,
.category-table td:last-child {
    border-right: 0;
}

.category-table thead th {
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 0.64rem;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.category-table tbody th {
    color: var(--muted-strong);
    font-weight: 600;
}

.category-table td {
    color: var(--muted);
}

.category-table .optivault-column {
    color: var(--text);
    background: rgba(202, 255, 49, 0.05);
}

.category-table thead .optivault-column {
    color: var(--lime);
}

.roadmap-tag {
    display: inline-flex;
    margin-right: 5px;
    padding: 4px 6px;
    color: var(--blue);
    border-color: rgba(140, 156, 255, 0.25);
    background: rgba(140, 156, 255, 0.07);
    font-size: 0.5rem;
}

.decisions-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.012);
}

.decisions-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    gap: clamp(60px, 8vw, 110px);
}

.feature-list {
    display: grid;
    gap: 0;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 0 16px 27px;
    border-top: 1px solid var(--border);
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px rgba(202, 255, 49, 0.45);
}

.feature-list span {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
}

.feature-list small {
    color: var(--muted);
    font-size: 0.72rem;
}

.weekly-wrap {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 29px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 55%),
        var(--bg-soft);
    box-shadow: var(--shadow);
}

.weekly-wrap::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    z-index: -1;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(202, 255, 49, 0.13);
    filter: blur(70px);
}

.weekly-topline,
.wrap-footer {
    color: var(--muted);
    font-size: 0.64rem;
}

.weekly-topline span:first-child {
    color: var(--lime);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.weekly-greeting {
    justify-content: flex-start;
    gap: 13px;
    margin-top: 30px;
}

.weekly-greeting > div {
    display: flex;
    flex-direction: column;
}

.weekly-greeting small {
    color: var(--muted);
    font-size: 0.68rem;
}

.weekly-greeting strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
}

.weekly-actions {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.weekly-actions article {
    display: grid;
    grid-template-columns: 31px 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 81px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.022);
}

.action-number {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 9px;
    color: var(--lime);
    background: rgba(202, 255, 49, 0.065);
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
}

.weekly-actions div {
    display: flex;
    flex-direction: column;
}

.weekly-actions strong {
    font-family: var(--font-display);
    font-size: 0.78rem;
}

.weekly-actions p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.64rem;
}

.action-status {
    min-width: 56px;
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.56rem;
    text-align: center;
}

.action-status.status-done {
    color: var(--lime);
    border-color: var(--border-lime);
    background: rgba(202, 255, 49, 0.055);
}

.wrap-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.wrap-footer span:last-child {
    color: var(--lime);
}

.roadmap-section {
    overflow: hidden;
}

.roadmap-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    max-width: none;
    align-items: end;
}

.roadmap-heading .section-kicker {
    grid-column: 1 / -1;
}

.roadmap-heading p {
    margin: 0 0 7px;
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(5, minmax(215px, 1fr));
    gap: 12px;
    margin-top: 70px;
    overflow-x: auto;
    padding: 2px 0 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(202, 255, 49, 0.3) transparent;
}

.roadmap-card {
    display: flex;
    flex-direction: column;
    min-height: 385px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.roadmap-card.current {
    border-color: var(--border-lime);
    background: rgba(202, 255, 49, 0.055);
}

.roadmap-card.money-os {
    color: #090b08;
    border-color: var(--lime);
    background: var(--lime);
}

.roadmap-index {
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 700;
}

.roadmap-card.money-os .roadmap-index,
.roadmap-card.money-os p {
    color: rgba(9, 11, 8, 0.65);
}

.roadmap-card.money-os .stage-label {
    color: #090b08;
    border-color: rgba(9, 11, 8, 0.18);
    background: rgba(9, 11, 8, 0.06);
}

.roadmap-card h3 {
    min-height: 72px;
    margin: 50px 0 16px;
    font-family: var(--font-display);
    font-size: 1.33rem;
    letter-spacing: -0.035em;
    line-height: 1.22;
}

.roadmap-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.7;
}

.stage-action {
    display: block;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted-strong);
    font-family: var(--font-display);
    font-size: 0.67rem;
    font-weight: 600;
}

.roadmap-card.current .stage-action {
    color: var(--lime);
    border-color: var(--border-lime);
}

.roadmap-card.money-os .stage-action {
    color: #090b08;
    border-color: rgba(9, 11, 8, 0.2);
}

.evolution-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.018);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
}

.evolution-line i {
    color: #555c52;
    font-style: normal;
}

.evolution-line strong {
    color: var(--lime);
}

.intelligence-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 15% 50%, rgba(202, 255, 49, 0.055), transparent 26rem),
        rgba(255, 255, 255, 0.01);
}

.intelligence-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(65px, 9vw, 130px);
    align-items: center;
}

.control-note {
    padding: 18px 20px;
    border-left: 2px solid var(--lime);
    color: var(--muted-strong) !important;
    background: rgba(202, 255, 49, 0.035);
    font-size: 0.76rem !important;
}

.intelligence-loop {
    position: relative;
    display: grid;
    gap: 10px;
}

.loop-line {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 35px;
    width: 1px;
    background: linear-gradient(var(--lime), rgba(202, 255, 49, 0.05));
}

.intelligence-loop article {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 96px;
    padding: 17px 20px 17px 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(8, 11, 8, 0.93);
}

.intelligence-loop article > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-lime);
    border-radius: 14px;
    color: var(--lime);
    background: #0e130c;
    font-family: var(--font-display);
    font-size: 0.63rem;
    font-weight: 700;
}

.intelligence-loop h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.intelligence-loop p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.trust-heading {
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

.trust-heading p {
    margin-right: auto;
    margin-left: auto;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 65px;
}

.trust-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.023);
}

.trust-card.roadmap-trust {
    border-color: rgba(140, 156, 255, 0.21);
    background: rgba(140, 156, 255, 0.035);
}

.trust-card-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border: 1px solid var(--border-lime);
    border-radius: 14px;
    color: var(--lime);
    background: rgba(202, 255, 49, 0.055);
}

.roadmap-trust .trust-card-icon {
    color: var(--blue);
    border-color: rgba(140, 156, 255, 0.22);
    background: rgba(140, 156, 255, 0.055);
}

.trust-card-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.trust-card h3 {
    margin: auto 0 12px;
    font-family: var(--font-display);
    font-size: 1rem;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.7;
}

.disclosure {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 20px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.disclosure strong {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 0.75rem;
}

.disclosure p {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.availability-section {
    padding-top: 20px;
}

.availability-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: end;
    padding: clamp(38px, 6vw, 70px);
    border: 1px solid var(--border-lime);
    border-radius: 30px;
    background:
        radial-gradient(circle at 5% 95%, rgba(202, 255, 49, 0.12), transparent 23rem),
        linear-gradient(135deg, rgba(202, 255, 49, 0.045), rgba(140, 156, 255, 0.025)),
        #0b0e0b;
    box-shadow: var(--shadow);
}

.availability-card h2 {
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.availability-copy p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9rem;
    line-height: 1.75;
}

.availability-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item button {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    border: 0;
    color: var(--text);
    background: transparent;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-item button i {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1px;
    background: var(--muted-strong);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.faq-item button i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open button i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 250ms ease;
}

.motion-ready .faq-answer {
    grid-template-rows: 0fr;
}

.faq-answer p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.75;
}

.motion-ready .faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding-bottom: 24px;
}

.final-cta {
    position: relative;
    padding: 145px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    text-align: center;
}

.final-cta::before {
    content: "";
    position: absolute;
    bottom: -25rem;
    left: 50%;
    width: 65rem;
    height: 50rem;
    border-radius: 50%;
    background: rgba(202, 255, 49, 0.13);
    filter: blur(120px);
    transform: translateX(-50%);
}

.final-cta-inner {
    max-width: 920px;
}

.final-cta h2 {
    margin-top: 18px;
}

.final-cta p {
    max-width: 600px;
    margin: 26px auto 0;
    color: var(--muted);
}

.final-actions {
    justify-content: center;
    margin-top: 31px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #060806;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 330px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 0.74rem;
}

.footer-links a {
    width: fit-content;
    color: var(--muted);
    font-size: 0.7rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 25px;
    border-top: 1px solid var(--border);
    color: #686e65;
    font-size: 0.65rem;
}

.motion-ready .reveal {
    opacity: 1;
    transform: translateY(16px);
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.product-window .conversation,
.product-window .decision-card {
    transition: opacity 130ms ease, transform 130ms ease;
}

.product-window.demo-changing .conversation,
.product-window.demo-changing .decision-card {
    opacity: 0;
    transform: translateY(4px);
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr 480px;
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 6.8vw, 5.2rem);
    }

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

    .trust-card {
        min-height: 285px;
    }
}

@media (max-width: 900px) {
    .site-nav {
        grid-template-columns: auto auto 1fr auto;
    }

    .menu-toggle {
        position: relative;
        display: block;
        width: 38px;
        height: 38px;
        margin-left: 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
        cursor: pointer;
    }

    .menu-toggle span {
        position: absolute;
        left: 10px;
        width: 16px;
        height: 1px;
        background: var(--text);
        transition: transform 180ms ease, top 180ms ease;
    }

    .menu-toggle span:first-child { top: 14px; }
    .menu-toggle span:last-child { top: 21px; }
    .menu-toggle[aria-expanded="true"] span:first-child { top: 18px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { top: 18px; transform: rotate(-45deg); }

    .nav-links {
        position: fixed;
        top: 92px;
        right: 24px;
        left: 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 19px;
        background: rgba(8, 10, 8, 0.97);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        padding: 13px 14px;
        font-size: 0.85rem;
    }

    .nav-download {
        grid-column: 4;
    }

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

    .hero-grid,
    .decisions-grid,
    .intelligence-grid,
    .availability-card,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 720px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-intro,
    .trust-microcopy {
        margin-right: auto;
        margin-left: auto;
    }

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

    .hero-product {
        width: min(100%, 590px);
        margin: 20px auto 0;
    }

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

    .status-grid > div,
    .status-grid > div:first-child,
    .status-grid > div:last-child {
        min-height: 98px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

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

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

    .comparison-intro {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .comparison-intro strong {
        max-width: 520px;
    }

    .roadmap-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .roadmap-heading p {
        margin: 0;
    }

    .availability-card,
    .faq-grid {
        gap: 45px;
    }

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

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

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

    .site-nav {
        min-height: 58px;
        padding: 8px 8px 8px 13px;
        border-radius: 18px;
    }

    .brand {
        gap: 8px;
        font-size: 1rem;
    }

    .brand img {
        width: 24px;
        height: 24px;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
        margin-left: 8px;
    }

    .menu-toggle span:first-child { top: 13px; }
    .menu-toggle span:last-child { top: 20px; }
    .menu-toggle[aria-expanded="true"] span:first-child,
    .menu-toggle[aria-expanded="true"] span:last-child { top: 17px; }

    .nav-download {
        min-height: 39px;
        gap: 7px;
        padding: 0 12px;
    }

    .nav-download span {
        display: inline;
        font-size: 0.64rem;
    }

    .nav-download svg {
        width: 15px;
        height: 18px;
    }

    .nav-links {
        top: 80px;
        right: 12px;
        left: 12px;
    }

    .hero {
        padding: 125px 0 80px;
    }

    .hero::before {
        top: 25%;
        left: 8%;
        width: 34rem;
        height: 34rem;
    }

    .eyebrow {
        padding: 8px 10px;
        font-size: 0.58rem;
        letter-spacing: 0.09em;
    }

    .hero h1 {
        margin-top: 24px;
        font-size: clamp(3.05rem, 14.4vw, 4.45rem);
        line-height: 0.97;
    }

    .hero-intro {
        margin-top: 24px;
        font-size: 0.95rem;
    }

    .hero-evolution {
        font-size: 0.78rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        min-height: 52px;
        padding: 0 18px;
    }

    .trust-microcopy {
        display: grid;
        justify-content: start;
        gap: 10px;
        text-align: left;
    }

    .hero-product {
        padding: 5px 0 58px;
    }

    .product-window {
        padding: 16px;
        border-radius: 23px;
    }

    .advisor-identity small {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .live-pill {
        padding: 5px 7px;
        font-size: 0.5rem;
    }

    .prompt-switcher {
        margin-top: 17px;
    }

    .conversation {
        min-height: 157px;
    }

    .message {
        font-size: 0.72rem;
    }

    .message-user {
        max-width: 88%;
    }

    .message-ai {
        max-width: 100%;
    }

    .proactive-preview {
        right: -2px;
        bottom: -5px;
        width: 76%;
    }

    .section {
        padding: 95px 0;
    }

    .section-heading h2,
    .availability-card h2,
    .final-cta h2 {
        font-size: clamp(2.7rem, 12.7vw, 4rem);
    }

    .section-heading p {
        font-size: 0.9rem;
    }

    .section-heading.narrow {
        margin-bottom: 45px;
        text-align: left;
    }

    .comparison-wrap {
        border-radius: 22px;
    }

    .comparison-intro {
        min-height: 190px;
        padding: 23px;
    }

    .comparison-table-wrap {
        margin-right: -1px;
    }

    .category-table {
        min-width: 650px;
    }

    .category-table th,
    .category-table td {
        padding: 19px 14px;
    }

    .decisions-grid,
    .intelligence-grid {
        gap: 55px;
    }

    .weekly-wrap {
        padding: 19px;
        border-radius: 22px;
    }

    .weekly-actions article {
        grid-template-columns: 31px 1fr;
    }

    .action-status {
        grid-column: 2;
        width: fit-content;
    }

    .wrap-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .roadmap {
        grid-template-columns: repeat(5, 82vw);
        margin-top: 48px;
        padding-right: 16px;
        scroll-snap-type: x proximity;
    }

    .roadmap-card {
        min-height: 350px;
        scroll-snap-align: start;
    }

    .evolution-line {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }

    .trust-cards {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .trust-card {
        min-height: 270px;
    }

    .disclosure {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .availability-section {
        padding-top: 0;
    }

    .availability-card {
        padding: 31px 23px;
        border-radius: 24px;
    }

    .availability-actions,
    .final-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .faq-grid {
        gap: 35px;
    }

    .final-cta {
        padding: 105px 0;
    }

    .footer-grid {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .motion-ready .reveal {
        opacity: 1;
        transform: none;
    }
}
