/* ─── Self-hosted Font Declarations ─── */

/* Space Grotesk – Hero headings, impact text */
@font-face {
    font-family: "Space Grotesk";
    src: url("Assets/fonts/SpaceGrotesk/SpaceGrotesk-Variable.ttf") format("truetype");
    font-weight: 300 700;
    font-display: swap;
    font-style: normal;
}

/* Sora – Section headings */
@font-face {
    font-family: "Sora";
    src: url("Assets/fonts/Sora/Sora-Variable.ttf") format("truetype");
    font-weight: 100 800;
    font-display: swap;
    font-style: normal;
}

/* Inter – Body text, UI default */
@font-face {
    font-family: "Inter";
    src: url("Assets/fonts/Inter/Inter-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* Outfit – Brand name, nav links */
@font-face {
    font-family: "Outfit";
    src: url("Assets/fonts/Outfit/Outfit-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* Satoshi – Phone mockup UI, crypto-native surfaces */
@font-face {
    font-family: "Satoshi";
    src: url("Assets/fonts/Satoshi/Satoshi-Variable.woff2") format("woff2");
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

/* General Sans – Captions, labels, secondary text */
@font-face {
    font-family: "General Sans";
    src: url("Assets/fonts/GeneralSans/GeneralSans-Variable.woff2") format("woff2");
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}

/* Cabinet Grotesk – Strategy cards, feature callouts */
@font-face {
    font-family: "Cabinet Grotesk";
    src: url("Assets/fonts/CabinetGrotesk/CabinetGrotesk-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* ─── Design Tokens ─── */

:root {
    --lime: #c6f000;
    --lime-soft: #e8ff63;
    --blue: #1a1fb8;
    --red: #ff3b3f;
    --black: #000000;
    --ink: #000000;
    --white: #ffffff;
    --cream: #f5f5ef;
    --panel: #111111;
    --panel-2: #181818;
    --muted: rgba(0, 0, 0, 0.64);
    --muted-dark: rgba(255, 255, 255, 0.64);
    --line: rgba(0, 0, 0, 0.1);
    --line-dark: rgba(255, 255, 255, 0.12);
    --radius: 28px;
    --radius-sm: 16px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--ink);
    font-family: "Inter", "General Sans", "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body,
button,
input {
    letter-spacing: -0.02em;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.container {
    width: 100%;
    max-width: 1228px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 16px 0 0;
    pointer-events: none;
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 66px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(3, 3, 3, 0.78);
    color: var(--white);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px);
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 14px 0 10px;
    border-radius: 999px;
    color: var(--white);
    font-family: "Outfit", "Sora", sans-serif;
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.brand-mark,
.brand-mark-img {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.brand-mark {
    background: var(--lime);
    color: var(--black);
    font-size: 1.22rem;
    line-height: 1;
}

.brand-mark-img {
    object-fit: contain;
    background: rgba(198, 240, 0, 0.12);
    transform: scale(1.18);
}

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

.site-nav a {
    padding: 11px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    transition:
        background 180ms ease,
        color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    font-family: "Outfit", "Sora", sans-serif;
    font-weight: 500;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.nav-cta {
    padding: 0 18px;
    background: var(--lime);
    color: var(--black);
}

.button {
    min-width: 170px;
    padding: 0 22px;
}

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

.button-primary {
    background: var(--lime);
    color: var(--black);
    box-shadow: 0 18px 40px rgba(198, 240, 0, 0.2);
}

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

.hero {
    position: relative;
    margin-top: -82px;
    padding: 150px 0 72px;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.78) 46%,
            rgba(0, 0, 0, 0.82) 100%),
        url("Assets/twitter-banner.jpg") center / cover no-repeat,
        radial-gradient(circle at 18% 14%,
            rgba(198, 240, 0, 0.16),
            transparent 24%),
        radial-gradient(circle at 84% 20%,
            rgba(26, 31, 184, 0.22),
            transparent 28%),
        var(--black);
    background-position:
        center,
        center,
        18% 14%,
        84% 20%,
        center;
    color: var(--white);
    overflow: hidden;
    animation: heroBackdropShift 18s ease-in-out infinite alternate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.048) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.048) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.55) 78%,
            transparent 100%);
    opacity: 0.82;
    pointer-events: none;
    animation: gridDrift 16s linear infinite;
}

.hero::after {
    content: "";
    position: absolute;
    right: -9%;
    top: 12%;
    z-index: 0;
    width: min(620px, 45vw);
    aspect-ratio: 1;
    background: url("Assets/mascot-glow.svg") center / contain no-repeat;
    opacity: 0.24;
    filter: blur(0.4px) saturate(1.16);
    pointer-events: none;
    animation: mascotFloat 9s ease-in-out infinite;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(580px, 1.06fr);
    align-items: center;
    gap: 120px;
    min-height: 760px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: start;
}

.hero h1,
.section-heading h2 {
    margin: 22px 0 0;
    max-width: 9.5ch;
    font-size: clamp(4.3rem, 8vw, 7.3rem);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.032em;
}

/* Hero uses Space Grotesk for maximum impact */
.hero h1 {
    font-family: "Space Grotesk", "Sora", sans-serif;
}

/* Section headings use Sora for modern premium feel */
.section-heading h2 {
    font-family: "Sora", "Space Grotesk", sans-serif;
}

.hero h1 {
    max-width: 13ch;
    line-height: 0.98;
    letter-spacing: -0.015em;
}

.hero h1 {
    color: var(--white);
}

.hero h1 .hero-accent {
    color: var(--lime);
}

h2 mark {
    background: var(--lime);
    color: var(--black);
    padding: 0.06em 0.12em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    border-radius: 0;
    font-style: normal;
}

.hero-subhead,
.section-heading p {
    width: 100%;
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--muted-dark);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 1.06rem;
    line-height: 1.75;
    letter-spacing: -0.025em;
}

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


.hero-showcase {
    position: relative;
    min-height: 720px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(36px);
    opacity: 0.7;
    pointer-events: none;
}

.glow-orb-lime {
    width: 190px;
    height: 190px;
    left: 12%;
    top: 12%;
    background: rgba(198, 240, 0, 0.42);
}

.glow-orb-blue {
    width: 240px;
    height: 240px;
    right: 2%;
    bottom: 14%;
    background: rgba(26, 31, 184, 0.34);
}

.phone,
.mini-screen,
.extension-preview-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.phone {
    position: absolute;
    width: 290px;
    min-height: 590px;
    padding: 24px 20px;
    border-radius: 38px;
    background: #050505;
    color: var(--white);
    font-family: "Satoshi", "Inter", sans-serif;
}

.phone::before,
.mini-screen::before,
.extension-preview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-onboarding {
    left: 0;
    top: 56px;
    z-index: 3;
    transform: rotate(-2.5deg);
}

.phone-home {
    left: 252px;
    top: 0;
    z-index: 4;
    width: 305px;
    min-height: 615px;
    transform: rotate(1.5deg);
}


.phone-logo,
.phone-topline,
.back-row,
.bottom-nav,
.stat-card,
.auto-card,
.strategy-row,
.vault-card div,
.mock-phone-header,
.mock-line,
.mock-auto,
.mock-route,
.engine-header,
.strategy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.phone-logo {
    justify-content: flex-start;
    gap: 8px;
    font-family: "Outfit", "Satoshi", sans-serif;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.phone-logo span {
    color: var(--lime);
}

.phone-logo-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.phone-logo.dark {
    color: var(--black);
}

.onboarding-headline {
    margin-top: 48px;
    font-family: "Space Grotesk", "Satoshi", sans-serif;
    font-size: 2.25rem;
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.onboarding-headline span {
    color: var(--lime);
}

.phone p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.84rem;
}

.phone-mascot {
    width: 230px;
    margin: 34px auto 22px;
    transform: scale(1.12);
}

.pager {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 0 0 18px;
}

.pager span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
}

.pager span:first-child {
    width: 16px;
    border-radius: 999px;
    background: var(--white);
}

.phone button,
.mini-screen button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--lime);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 400;
}

.phone a {
    display: block;
    margin-top: 13px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 400;
    text-align: center;
}

.light {
    background: #f8f8f4;
    color: var(--black);
}

.light p {
    color: rgba(0, 0, 0, 0.58);
}

.phone-home h3 {
    margin: 4px 0 0;
    font-family: "Space Grotesk", "Satoshi", sans-serif;
    font-size: 2.1rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.phone-home .gain {
    display: block;
    margin-top: 6px;
    color: #18a836;
    font-size: 0.78rem;
    font-weight: 400;
}

.chart-line {
    height: 80px;
    margin: 8px 0 12px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 18% 70%,
            rgba(198, 240, 0, 0.35) 0 2px,
            transparent 3px),
        radial-gradient(circle at 40% 50%,
            rgba(198, 240, 0, 0.35) 0 2px,
            transparent 3px),
        radial-gradient(circle at 68% 30%,
            rgba(198, 240, 0, 0.35) 0 2px,
            transparent 3px),
        linear-gradient(145deg,
            transparent 14%,
            rgba(198, 240, 0, 0.18) 14% 16%,
            transparent 16% 30%,
            rgba(198, 240, 0, 0.22) 30% 32%,
            transparent 32% 46%,
            rgba(198, 240, 0, 0.24) 46% 48%,
            transparent 48% 62%,
            rgba(198, 240, 0, 0.28) 62% 64%,
            transparent 64%);
}

.stat-card,
.auto-card,
.invest-card,
.mock-line,
.mock-route {
    padding: 13px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.055);
}

.stat-card+.stat-card,
.invest-card+.invest-card,
.mock-line+.mock-line,
.mock-route+.mock-route {
    margin-top: 9px;
}

.stat-card span,
.auto-card span,
.invest-card span,
.mock-line span,
.mock-route span,
.result-card span,
.flow-step span,
.projection-panel span,
.security-list span,
.strategy-card small {
    display: block;
    color: var(--muted);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
}

.stat-card strong {
    display: block;
    margin-top: 2px;
    font-size: 0.86rem;
    white-space: nowrap;
}

.phone-home .stat-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
}

.phone-home .stat-card span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.phone-home .stat-card small {
    white-space: nowrap;
    font-size: 0.72rem;
}

.stat-card small {
    color: #18a836;
    font-weight: 400;
}

.auto-card {
    margin-top: 9px;
    background: var(--white);
}

.auto-card img {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
}

.bottom-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    padding: 8px 12px;
    border-radius: 18px;
    color: rgba(0, 0, 0, 0.56);
    font-size: 0.78rem;
}

.dark-panel .bottom-nav,
.phone-onboarding .bottom-nav {
    color: rgba(255, 255, 255, 0.56);
}

.bottom-nav .active {
    color: var(--lime);
}

.progress {
    height: 9px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lime), var(--white));
}

.section {
    padding: 72px 0;
}

.extension-section,
.strategies-section {
    background: var(--cream);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
    align-items: start;
    gap: 18px 56px;
}

.section-heading.compact {
    grid-template-columns: 1fr;
}

.section-heading.compact h2 {
    max-width: none;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.08;
}

.section-heading.compact p {
    max-width: none;
    margin-top: 20px;
    line-height: 1.8;
    color: var(--muted);
}

.section-heading h2 {
    max-width: 16ch;
    font-size: clamp(2.8rem, 5.1vw, 4.9rem);
    line-height: 1.04;
    color: var(--ink);
}

.section-heading p {
    align-self: start;
    margin-top: 6px;
    color: var(--muted);
}

.screen-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
    align-items: stretch;
}

.mini-screen {
    position: relative;
    min-height: 360px;
    padding: 18px;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    font-family: "Satoshi", "Inter", sans-serif;
}

.mini-screen.dark {
    background: var(--black);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
}

.mini-screen.lime-screen {
    background: var(--lime);
    color: var(--black);
}

.mini-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 28px;
    margin-bottom: 16px;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 18px;
    font-size: 0.65rem;
    font-weight: 400;
}

.tabs span {
    display: grid;
    place-items: center;
    min-height: 24px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
}

.tabs .active {
    background: var(--lime);
}

.feed-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 8px;
    padding: 13px 0 13px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.78rem;
}

.feed-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dbe1ff;
}

.feed-row.positive::before {
    background: #bcf6ca;
}

.feed-row span {
    color: #109c32;
    font-weight: 400;
}

.feed-row small {
    grid-column: 1 / -1;
    color: rgba(0, 0, 0, 0.44);
}

.wallet-card {
    padding: 16px;
    border-radius: 18px;
    color: var(--white);
}

.wallet-card+.wallet-card {
    margin-top: 10px;
}

.wallet-card.blue {
    background: var(--blue);
}

.wallet-card.red {
    background: var(--red);
}

.wallet-card.lime {
    background: var(--lime);
    color: var(--black);
}

.wallet-card span,
.wallet-card small {
    display: block;
    opacity: 0.82;
    font-size: 0.76rem;
    font-weight: 750;
}

.wallet-card strong {
    display: block;
    margin: 4px 0;
    font-size: 1.12rem;
}

.add-wallet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 400;
}

.mini-screen label {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.74rem;
    font-weight: 400;
}

.swap-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    margin-top: 5px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.swap-toggle {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin: 9px auto 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--black);
    font-weight: 400;
}

.auto-invest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0;
    padding: 13px;
    border: 1px solid rgba(198, 240, 0, 0.6);
    border-radius: 16px;
    color: var(--lime);
    font-size: 0.8rem;
    font-weight: 850;
}

.diagram-mascot {
    width: 150px;
    height: 150px;
    margin: 2px auto 12px;
    border-radius: 28px;
    object-fit: cover;
}

.flow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    font-size: 0.69rem;
    font-weight: 850;
    text-align: center;
}

.flow-diagram b {
    color: var(--lime);
}

.steps-list {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    counter-reset: step;
    font-size: 0.78rem;
    font-weight: 750;
}

.steps-list li {
    position: relative;
    padding-left: 30px;
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: -1px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 0.66rem;
}

.lime-screen h3 {
    margin: 36px 0 12px;
    text-align: center;
}

.pin-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-bottom: 30px;
}

.pin-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--black);
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.keypad span {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    font-weight: 400;
}

.auto-invest-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 75% at 8% 50%, rgba(198, 240, 0, 0.09), transparent),
        radial-gradient(ellipse 45% 65% at 92% 28%, rgba(26, 31, 184, 0.11), transparent),
        var(--black);
    color: var(--white);
}

.auto-invest-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(198, 240, 0, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 240, 0, 0.14) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(135deg,
            transparent 0%,
            rgba(0, 0, 0, 0.9) 30%,
            rgba(0, 0, 0, 0.9) 70%,
            transparent 100%);
    mask-image: linear-gradient(135deg,
            transparent 0%,
            rgba(0, 0, 0, 0.9) 30%,
            rgba(0, 0, 0, 0.9) 70%,
            transparent 100%);
    -webkit-mask-size: 280% 280%;
    mask-size: 280% 280%;
    animation: gridDraw 6s linear infinite;
}

.auto-invest-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
    gap: 42px;
    align-items: center;
}

.auto-invest-section .section-heading h2,
.auto-invest-section .section-heading p {
    color: var(--white);
}

.auto-invest-section .section-heading p {
    color: var(--muted-dark);
}

.process-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.56fr) 1fr;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.process-card img {
    width: 220px;
    aspect-ratio: 1;
    margin: 0 auto;
    object-fit: contain;
}

.process-grid {
    display: grid;
    gap: 18px;
}

.process-grid div {
    padding: 20px 22px;
    border-radius: 22px;
    background: var(--white);
    color: var(--black);
}

.process-grid span {
    display: inline-block;
    margin-right: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--black);
    color: var(--lime);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    vertical-align: middle;
}

.process-grid strong {
    display: inline;
    font-family: "Sora", "Satoshi", sans-serif;
    font-size: 1.05rem;
    vertical-align: middle;
}

.process-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.92rem;
}

.simulator-section {
    background: #080808;
    color: var(--white);
}

.simulator-section .section-heading h2 {
    color: var(--white);
}

.simulator-section .section-heading p {
    color: var(--muted-dark);
}

.simulator-section h2 mark {
    color: var(--black);
}

.simulator-tool {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: 18px;
    margin-top: 48px;
}

.sim-tab-bar,
.sim-live-summary {
    display: none;
}

.sim-tab {
    flex: 1;
    min-height: 44px;
    border: 0;
    border-radius: 15px;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.sim-tab.active {
    background: var(--lime);
    color: var(--black);
}

.simulator-controls,
.simulator-results,
.route-engine {
    border: 1px solid var(--line-dark);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
}

.simulator-controls {
    display: grid;
    gap: 24px;
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.control-group {
    display: grid;
    gap: 12px;
}

.control-group label,
.control-label {
    color: rgba(255, 255, 255, 0.78);
    font-family: "General Sans", "Inter", sans-serif;
    font-weight: 500;
}

.amount-input-shell,
.stepper-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 16px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: var(--white);
    color: var(--black);
}

.amount-input-shell span {
    font-size: 1.2rem;
    font-weight: 500;
}

.amount-input-shell input,
.stepper-row input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--black);
    font-weight: 500;
}

.amount-input-shell input {
    font-size: 1.8rem;
}

.stepper-row input {
    max-width: 88px;
    font-size: 1.45rem;
}

.stepper-row span {
    color: rgba(0, 0, 0, 0.58);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.94rem;
    font-weight: 400;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

input[type="range"] {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background:
        linear-gradient(var(--lime), var(--lime)) 0 / var(--slider-progress, 0%) 100% no-repeat,
        rgba(255, 255, 255, 0.2);
    appearance: none;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    width: 23px;
    height: 23px;
    border: 3px solid var(--black);
    border-radius: 50%;
    background: var(--lime);
    appearance: none;
}

input[type="range"]::-moz-range-thumb {
    width: 23px;
    height: 23px;
    border: 3px solid var(--black);
    border-radius: 50%;
    background: var(--lime);
}

.pill-group,
.destination-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.destination-switcher {
    grid-template-columns: 1fr;
}

.addon-pill,
.destination-pill {
    min-height: 52px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 500;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.destination-pill {
    display: grid;
    justify-items: start;
    gap: 3px;
    padding: 13px 15px;
}

.destination-pill small {
    color: rgba(255, 255, 255, 0.58);
    font-family: "General Sans", "Inter", sans-serif;
    font-weight: 400;
}

.addon-pill:hover,
.addon-pill.active,
.destination-pill:hover,
.destination-pill.active {
    transform: translateY(-1px);
    border-color: var(--lime);
    background: var(--lime);
    color: var(--black);
}

.destination-pill.active small,
.destination-pill:hover small {
    color: rgba(0, 0, 0, 0.62);
}

.strategy-card small {
    font-family: "General Sans", "Inter", sans-serif;
    font-weight: 400;
}

.simulator-results {
    display: grid;
    grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1.32fr);
    gap: 14px;
    padding: 14px;
    min-width: 0;
}

.extension-preview-card {
    position: relative;
    grid-row: span 3;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    font-family: "Satoshi", "Inter", sans-serif;
}

.mock-phone-header {
    margin-bottom: 18px;
    font-weight: 400;
}

.mock-phone-header b {
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
}

.mock-line,
.mock-route {
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.07);
}

.mock-line strong,
.mock-route strong {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
}

.mock-auto {
    margin: 12px 0;
    padding: 14px;
    border: 1px solid rgba(198, 240, 0, 0.72);
    border-radius: 17px;
    background: rgba(198, 240, 0, 0.08);
    color: var(--lime);
}

.mock-line.total {
    background: var(--white);
    color: var(--black);
}

.mock-line.total span {
    color: rgba(0, 0, 0, 0.62);
}

.mock-route {
    margin-top: 10px;
}

.result-primary,
.result-card {
    border: 1px solid var(--line-dark);
    border-radius: 26px;
}

.result-primary {
    padding: 24px;
    background: var(--lime);
    color: var(--black);
}

.result-primary span {
    color: rgba(0, 0, 0, 0.58);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 850;
}

.result-primary h3 {
    margin: 8px 0;
    font-family: "Cabinet Grotesk", "Space Grotesk", sans-serif;
    font-size: clamp(2.15rem, 3.35vw, 3.05rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.result-primary p {
    margin: 0;
    color: rgba(0, 0, 0, 0.68);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    grid-column: 2;
}

.result-card {
    padding: 18px;
    background: var(--white);
    color: var(--black);
}

.result-card strong {
    display: block;
    margin-top: 8px;
    font-family: "Satoshi", "Inter", sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.route-engine {
    grid-column: 2;
    display: grid;
    gap: 16px;
    padding: 20px;
    background: var(--black);
}

.engine-header strong {
    display: block;
    margin-top: 4px;
    font-family: "Sora", "Satoshi", sans-serif;
    font-size: 1.22rem;
}

.engine-header>span {
    padding: 9px 11px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--black);
    font-size: 0.84rem;
    font-weight: 400;
}

.flow-list,
.projection-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 10px;
}

.flow-step,
.projection-panel>div {
    padding: 15px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.flow-step span,
.projection-panel span,
.engine-header span,
.mock-line span,
.mock-route span {
    color: var(--muted-dark);
}

.flow-step strong,
.projection-panel strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(0.98rem, 1.25vw, 1.04rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
}

#destination-copy {
    font-family: "General Sans", "Inter", sans-serif;
    font-weight: 400;
}

.simulator-footnote {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.9rem;
}

.strategy-grid,
.security-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

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

.strategy-card {
    min-height: 292px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    outline: none;
    font-family: "Cabinet Grotesk", "Sora", sans-serif;
    transition:
        transform 170ms ease,
        border-color 170ms ease,
        background 170ms ease,
        color 170ms ease;
}

.strategy-card:hover,
.strategy-card:focus-visible,
.strategy-card.active {
    transform: translateY(-4px);
    border-color: var(--black);
}

.strategy-card.active {
    background: var(--black);
    color: var(--white);
}

.strategy-card h3 {
    margin: 56px 0 0;
    font-size: 1.6rem;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.strategy-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-family: "General Sans", "Inter", sans-serif;
}

.strategy-card.active p,
.strategy-card.active small {
    color: rgba(255, 255, 255, 0.68);
}

.strategy-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--lime);
    color: var(--black);
    font-weight: 400;
}

.strategy-top strong {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.07);
    color: currentColor;
    font-size: 0.86rem;
}

.security-section {
    background: var(--lime);
    color: var(--black);
}

.security-section .section-heading h2 {
    color: var(--black);
}

.security-section .section-heading p {
    color: rgba(0, 0, 0, 0.68);
}

.security-section h2 mark {
    background: var(--black);
    color: var(--lime);
}

.security-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
}

.security-list div {
    min-height: 184px;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.55);
}

.security-list strong {
    display: block;
    margin-bottom: 12px;
    font-family: "Sora", "Cabinet Grotesk", sans-serif;
    font-size: 1.12rem;
    line-height: 1.12;
}

.security-list span {
    color: rgba(0, 0, 0, 0.62);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.94rem;
}

.waitlist-section {
    background: var(--cream);
}

.waitlist-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 95% 12%,
            rgba(198, 240, 0, 0.32),
            transparent 24%),
        var(--black);
    color: var(--white);
}

.waitlist-section .section-heading h2 {
    color: var(--white);
}

.waitlist-section .section-heading p {
    color: var(--muted-dark);
}

.waitlist-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    max-width: 640px;
}

.waitlist-form .form-caption,
.waitlist-form .form-feedback {
    grid-column: 1 / -1;
}

.waitlist-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.waitlist-form input:focus {
    border-color: var(--lime);
}

.form-caption,
.form-feedback {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.9rem;
}

.form-feedback {
    min-height: 1.35em;
    transition: color 160ms ease;
}

.form-feedback.is-success {
    color: var(--lime);
}

.form-feedback.is-error {
    color: #ff8585;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.site-footer {
    padding: 30px 0 42px;
    background: var(--black);
    color: var(--white);
}

.footer-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
}

.footer-brandmark {
    padding-left: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Outfit", "Inter", sans-serif;
    font-weight: 750;
}

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

.footer-caption {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-family: "General Sans", "Inter", sans-serif;
    font-size: 0.9rem;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@keyframes heroBackdropShift {
    0% {
        background-position:
            center,
            center,
            18% 14%,
            84% 20%,
            center;
    }

    100% {
        background-position:
            center,
            54% 47%,
            15% 18%,
            88% 16%,
            center;
    }
}

@keyframes gridDrift {
    from {
        background-position:
            0 0,
            0 0;
    }

    to {
        background-position:
            64px 64px,
            64px 64px;
    }
}

@keyframes gridDraw {
    0% {
        -webkit-mask-position: 150% -50%;
        mask-position: 150% -50%;
    }

    100% {
        -webkit-mask-position: -50% 150%;
        mask-position: -50% 150%;
    }
}

@keyframes mascotFloat {

    0%,
    100% {
        opacity: 0.2;
        transform: translate3d(0, 0, 0) rotate(-4deg) scale(0.98);
    }

    50% {
        opacity: 0.32;
        transform: translate3d(-34px, 20px, 0) rotate(3deg) scale(1.04);
    }
}

@media (max-width: 1120px) {

    .hero-layout,
    .auto-invest-layout,
    .section-heading,
    .waitlist-layout {
        grid-template-columns: 1fr;
    }

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

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

    .hero-showcase {
        min-height: 640px;
    }

    .phone-onboarding {
        left: 2%;
    }

    .phone-home {
        left: 34%;
    }

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

    .simulator-results {
        grid-template-columns: 1fr;
    }

    .extension-preview-card,
    .result-grid,
    .route-engine {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 880px) {
    .container {
        padding: 0 16px;
    }

    .nav-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .site-nav {
        display: none;
    }

    .hero {
        padding-top: 130px;
    }

    .simulator-tool,
    .strategy-grid,
    .security-list,
    .result-grid,
    .flow-list,
    .projection-panel,
    .process-card {
        grid-template-columns: 1fr;
    }

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

    .simulator-controls {
        position: static;
    }

    .sim-tab-bar {
        display: flex;
        grid-column: 1 / -1;
        gap: 5px;
        padding: 5px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--line-dark);
        border-radius: 20px;
    }

    .sim-live-summary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        grid-column: 1 / -1;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--line-dark);
        border-radius: 16px;
        font-size: 0.9rem;
    }

    #summary-addon {
        color: var(--lime);
        font-weight: 600;
    }

    .sim-dot {
        color: rgba(255, 255, 255, 0.28);
    }

    #summary-monthly {
        color: rgba(255, 255, 255, 0.72);
        font-weight: 500;
    }

    .simulator-tool[data-sim-tab="configure"] .simulator-results {
        display: none;
    }

    .simulator-tool[data-sim-tab="results"] .simulator-controls {
        display: none;
    }

    .simulator-results .extension-preview-card {
        display: none;
    }

    .simulator-results {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

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

@media (max-width: 680px) {
    .container {
        padding: 0 12px;
    }

    .site-header {
        padding-top: 10px;
    }

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

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 118px 0 56px;
    }

    .hero h1,
    .section-heading h2 {
        font-size: 3.1rem;
    }

    .hero-subhead,
    .section-heading p {
        font-size: 1rem;
    }

    .button {
        width: 100%;
    }

    .hero-actions {
        display: grid;
        width: 100%;
    }

    .hero-showcase {
        display: grid;
        gap: 16px;
        min-height: auto;
    }

    .phone {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: 100%;
        min-height: 520px;
        transform: none;
    }

    .phone-home {
        min-height: 520px;
    }

    .screen-gallery {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 68px 0;
    }

    .waitlist-layout,
    .simulator-controls,
    .simulator-results,
    .route-engine {
        padding: 24px;
    }

    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0ms !important;
    }
}