/* ============================================================
   dots — landing styles
   palette: deep purple-black · iridescent violet/magenta/cyan
   ============================================================ */

:root {
    --bg: #08060f;
    --bg-2: #141022;
    --fg: #f5f0ff;
    --fg-dim: rgba(245, 240, 255, 0.58);
    --fg-mute: rgba(245, 240, 255, 0.35);

    --accent: #b47aff;          /* primary violet */
    --accent-dim: #7a3fd6;
    --accent-2: #ff6ad5;        /* hot pink for iridescence */
    --accent-3: #4cc9f0;        /* electric cyan for iridescence */

    --red: #ff4d7d;             /* magenta-red for bad signals */
    --red-dim: #d6376a;

    --border: rgba(180, 122, 255, 0.12);
    --border-soft: rgba(255, 255, 255, 0.06);

    --grad-iridescent: linear-gradient(
        120deg,
        #b47aff 0%,
        #ff6ad5 25%,
        #4cc9f0 50%,
        #9b5cff 75%,
        #ff6ad5 100%
    );

    --f-display: "Unbounded", "Space Grotesk", system-ui, sans-serif;
    --f-body: "Space Grotesk", system-ui, sans-serif;
    --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* iridescent sweep — used on titles, buttons, key accents */
@keyframes iridescent {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes iridescent-slow {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}
/* glow pulse shifting between violet and magenta */
@keyframes glow-shift {
    0%, 100% { box-shadow: 0 0 24px rgba(180, 122, 255, 0.45); }
    50%      { box-shadow: 0 0 36px rgba(255, 106, 213, 0.55); }
}

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

html { scroll-behavior: auto; }

body {
    color: var(--fg);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
    background-color: #08060f;
    position: relative;
    isolation: isolate;
}

/* slow-breathing, barely-there purple haze behind everything.
   rendered as a fixed pseudo on <body> so every section inherits the glow.
   body has isolation: isolate → z-index:-1 pins this below static content. */
body::before {
    content: "";
    position: fixed;
    inset: -15%;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 18% 12%, rgba(70, 28, 130, 0.55), transparent 60%),
        radial-gradient(ellipse 50% 40% at 82% 88%, rgba(125, 36, 135, 0.45), transparent 60%),
        radial-gradient(ellipse 45% 35% at 55% 50%, rgba(30, 80, 160, 0.30), transparent 65%);
    background-size: 160% 160%, 160% 160%, 180% 180%;
    animation: body-breathe 60s ease-in-out infinite;
    filter: blur(30px);
}
@keyframes body-breathe {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%;
    }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }

::selection { background: var(--accent); color: #0a0815; }

/* custom cursor — iridescent conic dot with a soft halo */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 16px; height: 16px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width .25s cubic-bezier(.2,.7,.2,1), height .25s cubic-bezier(.2,.7,.2,1);
    /* transform: translate(x,y) translate(-50%,-50%) — set by JS */
}
.cursor-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #b47aff 0%,
        #ff6ad5 25%,
        #4cc9f0 50%,
        #9b5cff 75%,
        #ff6ad5 100%
    );
    animation: cursor-spin 3s linear infinite;
    box-shadow:
        0 0 6px rgba(180, 122, 255, 0.85),
        0 0 18px rgba(255, 106, 213, 0.45);
}
.cursor-dot::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        rgba(180, 122, 255, 0.55),
        rgba(255, 106, 213, 0.45),
        rgba(76, 201, 240, 0.35),
        rgba(180, 122, 255, 0.55)
    );
    opacity: 0.5;
    filter: blur(14px);
    animation: cursor-spin 6s linear infinite reverse;
    z-index: -1;
}
.cursor-dot.is-hover { width: 44px; height: 44px; }
.cursor-dot.is-hover::before { animation-duration: 1.4s; }
.cursor-dot.is-hover::after { opacity: 0.75; inset: -26px; }

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

@media (max-width: 900px) {
    body { cursor: auto; }
    .cursor-dot { display: none; }
    a, button { cursor: pointer; }
}

/* film grain */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.035;
    background-image:
        repeating-conic-gradient(
            from 0deg,
            #fff 0deg, transparent 2deg, #fff 4deg, transparent 6deg
        );
    background-size: 3px 3px;
    mix-blend-mode: overlay;
}

/* ========================== NAV ========================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.45);
    border-bottom: 1px solid var(--border);
}
.nav__logo {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
    transition: opacity .25s ease;
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo-img {
    height: 34px;
    width: auto;
    display: block;
    /* shift logo greens toward violet to match theme */
    filter:
        hue-rotate(160deg) saturate(0.9)
        drop-shadow(0 0 14px rgba(180, 122, 255, 0.35));
    transition: transform .4s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.nav__logo:hover .nav__logo-img {
    transform: translateX(4px) rotate(-4deg);
    filter:
        hue-rotate(160deg) saturate(1)
        drop-shadow(0 0 24px rgba(255, 106, 213, 0.55));
}
.nav__logo-img--sm {
    height: 26px;
    filter:
        hue-rotate(160deg) saturate(0.8)
        drop-shadow(0 0 8px rgba(180, 122, 255, 0.2));
}
.nav__links {
    display: flex; gap: 32px;
    font-size: 14px;
    color: var(--fg-dim);
    font-family: var(--f-mono);
}
.nav__links a:hover { color: var(--fg); }

.nav__cta {
    position: relative;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-family: var(--f-mono);
    font-weight: 500;
    color: var(--accent);
    background: rgba(180, 122, 255, 0.06);
    box-shadow: 0 0 0 1px rgba(180, 122, 255, 0.45) inset;
    transition: all .3s ease, color .25s ease;
    overflow: hidden;
    isolation: isolate;
}
.nav__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-iridescent);
    background-size: 250% 100%;
    opacity: 0;
    animation: iridescent 4s ease infinite;
    transition: opacity .3s ease;
    z-index: -1;
}
.nav__cta:hover {
    color: #0a0815;
    box-shadow: 0 10px 30px rgba(180, 122, 255, 0.4);
}
.nav__cta:hover::before { opacity: 1; }

@media (max-width: 780px) {
    .nav { padding: 16px 20px; }
    .nav__links { display: none; }
}

@media (max-width: 600px) {
    .nav {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: calc(14px + env(safe-area-inset-top));
        padding-bottom: 14px;
    }
    .nav__cta {
        padding: 10px 14px;
        font-size: 12px;
    }
    .nav__logo { font-size: 20px; }
    .nav__logo-img { height: 30px; }
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 16px var(--accent); transform: scale(1); }
    50% { box-shadow: 0 0 28px var(--accent); transform: scale(1.15); }
}

/* ========================== HELPERS ========================== */
.pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse-dot 1.5s infinite;
}
.pulse--red { background: var(--red); box-shadow: 0 0 12px var(--red); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: all .3s cubic-bezier(.2,.7,.2,1);
    border: 1px solid transparent;
    text-transform: lowercase;
}
.btn--primary {
    background: var(--grad-iridescent);
    background-size: 250% 100%;
    color: #0a0815;
    font-weight: 600;
    animation: iridescent 5s ease infinite;
    box-shadow:
        0 8px 30px rgba(180, 122, 255, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.btn--primary:hover {
    animation-duration: 2.2s;
    box-shadow:
        0 14px 60px rgba(255, 106, 213, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-2px);
}
.btn--ghost {
    border-color: var(--border);
    color: var(--fg);
}
.btn--ghost:hover {
    border-color: var(--fg);
    background: rgba(255,255,255,0.04);
}

/* ========================== HERO ========================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.hero__orb--1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, #b47aff 0%, transparent 70%);
    top: -140px; right: -120px;
    opacity: 0.45;
    animation: orb-drift-1 18s ease-in-out infinite;
}
.hero__orb--2 {
    width: 440px; height: 440px;
    background: radial-gradient(circle, #ff6ad5 0%, transparent 70%);
    bottom: -120px; left: -100px;
    opacity: 0.35;
    animation: orb-drift-2 22s ease-in-out infinite;
}
.hero__orb--3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #4cc9f0 0%, transparent 70%);
    top: 40%; left: 45%;
    opacity: 0.20;
    animation: orb-drift-3 26s ease-in-out infinite;
}
@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-40px, 60px) scale(1.1); }
}
@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, -40px) scale(1.15); }
}
@keyframes orb-drift-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-30%, -70%) scale(1.25); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--fg-dim);
    margin-bottom: 32px;
    text-transform: lowercase;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(44px, 9vw, 148px);
    line-height: 0.92;
    letter-spacing: -0.045em;
    text-transform: lowercase;
    margin-bottom: 36px;
}
.hero__title .line {
    display: block;
    overflow: hidden;
}
.hero__title .word {
    display: inline-block;
    transform: translateY(110%);
}
.hero__title-accent {
    background: var(--grad-iridescent);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: iridescent 7s ease-in-out infinite;
    filter: drop-shadow(0 0 22px rgba(180, 122, 255, 0.35));
}

.hero__sub {
    font-size: clamp(16px, 1.6vw, 22px);
    color: var(--fg-dim);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.45;
}
.hero__sub .under {
    color: var(--fg);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    font-weight: 600;
}

.hero__cta-row {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 72px;
}

@media (max-width: 600px) {
    .hero {
        padding: 96px 16px 56px;
    }
    .hero__eyebrow {
        margin-bottom: 22px;
    }
    .hero__title {
        font-size: clamp(38px, 12vw, 72px);
        line-height: 0.95;
        margin-bottom: 22px;
    }
    .hero__sub {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .hero__cta-row {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 44px;
    }
    .hero__cta-row .btn {
        width: 100%;
        justify-content: center;
    }
    .hero__metrics {
        gap: 22px;
        padding-top: 22px;
    }
    .metric__label { font-size: 11px; }
    .scroll-hint { display: none; }
}

.hero__metrics {
    display: inline-flex;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    justify-content: center;
}
.metric__num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.02em;
    background: var(--grad-iridescent);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: iridescent 6s ease infinite;
}
.metric__label {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--fg-mute);
    text-transform: lowercase;
    margin-top: 4px;
}

.scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-mute);
    text-transform: lowercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint__line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--fg-mute), transparent);
    position: relative;
    overflow: hidden;
}
.scroll-hint__line::after {
    content: '';
    position: absolute;
    top: -50%; left: 0;
    width: 100%; height: 50%;
    background: var(--accent);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ========================== PROBLEM ========================== */
.problem {
    position: relative;
    height: 380vh;
    background: transparent;
}
.problem__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.problem__bg-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    transition: opacity 1s ease;
}
.problem__bg-dot--a {
    width: 600px; height: 600px;
    background: var(--red);
    top: -200px; left: -200px;
}
.problem__bg-dot--b {
    width: 500px; height: 500px;
    background: #ff8a3d;
    bottom: -200px; right: -200px;
}

.problem__stage {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 1200px;
    width: 100%;
}

@media (max-width: 600px) {
    .problem {
        /* less scroll distance on mobile to reduce fatigue */
        height: 300vh;
    }
    .problem__stage {
        padding: 0 16px;
    }
    .problem__verdict {
        white-space: normal;
        width: min(520px, calc(100% - 32px));
        text-align: center;
        bottom: 10vh;
    }
    .problem__map {
        max-height: 56svh;
    }
}
.problem__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 77, 125, 0.3);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--red);
    margin-bottom: 24px;
    text-transform: lowercase;
    background: rgba(255, 77, 125, 0.05);
}

.problem__line {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(20px, 2.8vw, 36px);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 6px 0;
    opacity: 0;
    transform: translateY(20px);
    text-transform: lowercase;
}
.problem__line .muted { color: var(--fg-dim); }
.highlight {
    display: inline-block;
    padding: 0 8px;
    border-radius: 6px;
}
.highlight--red {
    background: rgba(255, 77, 125, 0.15);
    color: var(--red);
    border: 1px solid rgba(255, 77, 125, 0.3);
}

.problem__map {
    margin: 24px auto 0;
    max-width: 760px;
    width: 100%;
    aspect-ratio: 600 / 380;
    max-height: 50vh;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 125, 0.28);
    box-shadow:
        0 30px 80px rgba(255, 77, 125, 0.18),
        0 0 0 1px rgba(10, 10, 10, 0.6) inset;
    background: #0c0c0c;
}
.problem__map-head {
    position: absolute;
    top: 14px; left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 77, 125, 0.4);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: lowercase;
    z-index: 3;
    backdrop-filter: blur(10px);
}
.problem__map-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.map-satellite {
    filter: brightness(0.85) contrast(1.1) saturate(1.1);
}
.map-satellite--red {
    filter: brightness(0.75) contrast(1.15) saturate(1.2) hue-rotate(-55deg);
}

.chaos-route {
    filter:
        drop-shadow(0 0 6px rgba(255, 77, 125, 0.9))
        drop-shadow(0 0 14px rgba(255, 106, 213, 0.45));
}

.route-line {
    filter:
        drop-shadow(0 0 6px rgba(180, 122, 255, 0.75))
        drop-shadow(0 0 14px rgba(76, 201, 240, 0.25));
}

.courier {
    filter: drop-shadow(0 0 8px rgba(255, 77, 125, 0.9));
    transition: transform 0.08s linear;
}

.problem__map-price {
    position: absolute;
    right: 18px; bottom: 18px;
    padding: 14px 20px 16px;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(255, 77, 125, 0.35);
    border-radius: 16px;
    text-align: right;
    backdrop-filter: blur(14px);
    z-index: 3;
}
.problem__map-price-label {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--fg-mute);
    text-transform: lowercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}
.problem__map-price-value {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(40px, 6vw, 72px);
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 36px rgba(255, 77, 125, 0.6);
}
.problem__map-price-value .currency {
    font-size: 0.45em;
    margin-left: 4px;
    opacity: 0.8;
}
.problem__map-price-sub {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-dim);
    text-transform: lowercase;
    margin-top: 6px;
}

@media (max-width: 700px) {
    .problem__map { margin-top: 22px; border-radius: 16px; }
    .problem__map-price { right: 10px; bottom: 10px; padding: 10px 14px 12px; }
    .problem__map-head { font-size: 10px; padding: 5px 10px; }
}

.problem__verdict {
    position: absolute;
    bottom: 8vh;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(36px, 7vw, 96px);
    text-transform: lowercase;
    letter-spacing: -0.04em;
    opacity: 0;
    white-space: nowrap;
}
.slashed {
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 4px;
    color: var(--fg-dim);
}

/* ========================== TRANSITION ========================== */
.transition {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 80px 40px;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.transition::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(180, 122, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(180, 122, 255, 0.06), transparent 40%);
}
.transition__inner { text-align: center; position: relative; z-index: 2; }
.transition__small {
    font-family: var(--f-mono);
    font-size: 14px;
    color: var(--accent);
    text-transform: lowercase;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}
.transition__big {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(44px, 8.5vw, 140px);
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-transform: lowercase;
}
.transition__accent {
    background: var(--grad-iridescent);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    animation: iridescent 8s ease-in-out infinite;
    animation-delay: -1.5s;
    filter: drop-shadow(0 0 28px rgba(255, 106, 213, 0.35));
}

/* ========================== HOW ========================== */
.how {
    position: relative;
    height: 320vh;
    background: transparent;
}
.how__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 100px 60px 40px;
    overflow: hidden;
}
.how__side {
    padding-right: 20px;
}
.how__eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--accent);
    text-transform: lowercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}
.how__title {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    margin-bottom: 48px;
}
.how__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.how__step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.01);
    transition: all .4s cubic-bezier(.2,.7,.2,1);
    opacity: 0.4;
}
.how__step.is-active {
    background: rgba(180, 122, 255, 0.04);
    border-color: rgba(180, 122, 255, 0.3);
    opacity: 1;
    transform: translateX(6px);
}
.how__step-num {
    font-family: var(--f-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}
.how__step-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    text-transform: lowercase;
}
.how__step-desc {
    font-size: 14px;
    color: var(--fg-dim);
    line-height: 1.5;
}
.chip {
    display: inline-block;
    padding: 2px 8px;
    background: var(--accent);
    color: #000;
    border-radius: 6px;
    font-family: var(--f-mono);
    font-weight: 600;
    font-size: 12px;
    margin: 0 2px;
}

.how__map {
    position: relative;
    aspect-ratio: 1;
    max-width: 640px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 60% 40%, rgba(180, 122, 255, 0.06), transparent 60%),
        #0c0c0c;
    overflow: hidden;
    justify-self: center;
}
.how__map-label {
    position: absolute;
    top: 18px; left: 18px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: lowercase;
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    z-index: 3;
}
.how__map-svg {
    width: 100%; height: 100%;
    display: block;
}
.map-point circle:nth-child(1) { opacity: 0; transition: opacity .5s ease; }
.map-point.is-active circle:nth-child(1) { opacity: 1; }
.map-point circle:nth-child(2) { transition: transform .3s ease; transform-origin: center; }
.map-point.is-active circle:nth-child(2) { transform: scale(1.3); }

.how__map-price {
    position: absolute;
    bottom: 18px; left: 18px;
    right: 18px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 16px;
    z-index: 3;
}
.how__map-price-label {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-mute);
    text-transform: lowercase;
    margin-bottom: 4px;
}
.how__map-price-value {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 40px;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}
.how__map-price-value .currency { font-size: 0.5em; margin-left: 4px; opacity: 0.8; }
.how__map-price-hops {
    display: flex; gap: 6px;
    margin-top: 10px;
    font-family: var(--f-mono);
    font-size: 10px;
}
.how__map-price-hops span {
    padding: 3px 7px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg-mute);
    transition: all .3s ease;
}
.how__map-price-hops span.is-on {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(180, 122, 255, 0.08);
}

@media (max-width: 960px) {
    .how__sticky {
        grid-template-columns: 1fr;
        padding: 100px 20px 40px;
        gap: 30px;
    }
    .how__map { max-width: 100%; }
    .how__title { margin-bottom: 24px; }
}

@media (max-width: 600px) {
    .how {
        height: 280vh;
    }
    .how__sticky {
        padding: 96px 16px 28px;
        gap: 18px;
    }
    .how__steps { gap: 14px; }
    .how__step {
        grid-template-columns: 56px 1fr;
        padding: 14px;
        border-radius: 16px;
    }
    .how__step-title { font-size: 18px; }
    .how__step-desc { font-size: 13px; }
    .how__map-label { top: 12px; left: 12px; }
    .how__map-price { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
    .how__map-price-value { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    body::before { animation: none; }
    .grain { display: none; }
    .hero__orb,
    .scroll-hint__line::after,
    .hero__title-accent,
    .metric__num,
    .btn--primary,
    .nav__cta::before {
        animation: none !important;
    }
}

/* ========================== COMPARE ========================== */
.compare {
    padding: 140px 40px;
    background: transparent;
    position: relative;
}
.compare__head { text-align: center; margin-bottom: 80px; }
.compare__title {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(44px, 7vw, 110px);
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: lowercase;
}
.compare__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}
.compare__card {
    padding: 44px 36px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255,255,255,0.01);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}
.compare__card--bad {
    border-color: rgba(255, 77, 125, 0.2);
    background: linear-gradient(145deg, rgba(255, 77, 125,0.04), transparent);
}
.compare__card--good {
    border-color: rgba(180, 122, 255, 0.3);
    background: linear-gradient(145deg, rgba(180, 122, 255, 0.06), transparent);
    box-shadow: 0 30px 80px rgba(180, 122, 255, 0.06);
}
.compare__card-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: lowercase;
    letter-spacing: 0.15em;
    color: var(--fg-mute);
    margin-bottom: 14px;
}
.compare__card--bad .compare__card-tag { color: var(--red); }
.compare__card--good .compare__card-tag { color: var(--accent); }

.compare__card-brand {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 24px;
    text-transform: lowercase;
}
.compare__card-price {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(60px, 9vw, 140px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
}
.compare__card--bad .compare__big-num { color: var(--red); }
.compare__card--good .compare__big-num {
    background: var(--grad-iridescent);
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: iridescent 6s ease infinite;
    filter: drop-shadow(0 0 24px rgba(180, 122, 255, 0.4));
}
.compare__card-price .currency { font-size: 0.45em; opacity: 0.75; margin-left: 4px; }

.compare__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.compare__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--fg-dim);
}
.compare__list li .x, .compare__list li .v {
    font-family: var(--f-mono);
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    flex-shrink: 0;
}
.compare__list li .x { background: rgba(255, 77, 125, 0.15); color: var(--red); }
.compare__list li .v { background: rgba(180, 122, 255, 0.15); color: var(--accent); }

.compare__vs {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 48px;
    color: var(--fg-mute);
    text-align: center;
    letter-spacing: -0.05em;
}

.compare__bottom {
    text-align: center;
    margin-top: 80px;
}
.compare__save {
    font-family: var(--f-display);
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--fg-dim);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}
.compare__save-num {
    font-weight: 900;
    font-size: clamp(36px, 5vw, 80px);
    display: inline-block;
    margin-left: 12px;
    letter-spacing: -0.04em;
    background: var(--grad-iridescent);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: iridescent 5s ease infinite;
    filter: drop-shadow(0 0 28px rgba(180, 122, 255, 0.35));
}

@media (max-width: 900px) {
    .compare__grid { grid-template-columns: 1fr; }
    .compare__vs { transform: rotate(90deg); font-size: 32px; }
    .compare { padding: 80px 20px; }
}

/* ========================== MANIFESTO (marquee) ========================== */
.manifesto {
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.manifesto__track {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.manifesto__line {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(48px, 10vw, 160px);
    letter-spacing: -0.05em;
    line-height: 0.9;
    white-space: nowrap;
    text-transform: lowercase;
    animation: marquee 30s linear infinite;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--fg);
}
.manifesto__line--alt {
    -webkit-text-stroke: 0;
    background: var(--grad-iridescent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: marquee 40s linear infinite reverse, iridescent 9s ease infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========================== WAITLIST ========================== */
.waitlist {
    padding: 160px 40px;
    background:
        radial-gradient(circle at 50% 30%, rgba(180, 122, 255, 0.10), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 106, 213, 0.06), transparent 45%);
    text-align: center;
    position: relative;
}
.waitlist__inner { max-width: 720px; margin: 0 auto; }
.waitlist__title {
    font-family: var(--f-display);
    font-weight: 900;
    font-size: clamp(40px, 6vw, 96px);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 18px 0 24px;
    text-transform: lowercase;
}
.waitlist__sub {
    color: var(--fg-dim);
    font-size: clamp(15px, 1.3vw, 18px);
    margin-bottom: 40px;
    line-height: 1.5;
}
.waitlist__sub strong { color: var(--accent); font-weight: 700; }

@property --form-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.waitlist__form {
    --form-angle: 0deg;
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 10px;
    border-radius: 100px;
    border: 2px solid transparent;
    background:
        linear-gradient(rgba(20, 14, 36, 0.85), rgba(20, 14, 36, 0.85)) padding-box,
        conic-gradient(
            from var(--form-angle),
            rgba(180, 122, 255, 0.45) 0deg,
            rgba(255, 106, 213, 0.40) 90deg,
            rgba(76, 201, 240, 0.40) 180deg,
            rgba(155, 92, 255, 0.45) 270deg,
            rgba(180, 122, 255, 0.45) 360deg
        ) border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow .45s ease;
    animation: form-angle-idle 22s linear infinite;
}
.waitlist__form:focus-within {
    animation: form-angle-active 3s linear infinite;
    border-width: 2px;
    background:
        linear-gradient(rgba(20, 14, 36, 0.88), rgba(20, 14, 36, 0.88)) padding-box,
        conic-gradient(
            from var(--form-angle),
            #b47aff 0deg,
            #ff6ad5 90deg,
            #4cc9f0 180deg,
            #9b5cff 270deg,
            #b47aff 360deg
        ) border-box;
    box-shadow:
        0 0 0 1px rgba(180, 122, 255, 0.25),
        0 20px 50px rgba(180, 122, 255, 0.25),
        0 40px 100px rgba(255, 106, 213, 0.18);
}

@keyframes form-angle-idle {
    to { --form-angle: 360deg; }
}
@keyframes form-angle-active {
    to { --form-angle: 360deg; }
}
.waitlist__input, .waitlist__select {
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg);
    font-family: var(--f-mono);
    font-size: 15px;
    padding: 14px 20px;
}
.waitlist__input::placeholder { color: var(--fg-mute); }
.waitlist__input { min-width: 0; }
.waitlist__select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 34px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23d8ff3a' d='M0 0l5 6 5-6z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    color: var(--accent);
    text-transform: lowercase;
    cursor: pointer;
}
.waitlist__select option { background: #111; color: var(--fg); }

.waitlist__btn {
    border-radius: 100px;
    padding: 14px 24px;
    white-space: nowrap;
}

.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline; }
.htmx-request .htmx-indicator-hide { display: none; }

.waitlist__foot {
    margin-top: 20px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--fg-mute);
    text-transform: lowercase;
}

@media (max-width: 700px) {
    .waitlist__form {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 12px;
    }
    .waitlist__btn { width: 100%; justify-content: center; }
}

.waitlist__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 24px;
    border: 1px solid rgba(180, 122, 255, 0.3);
    border-radius: 28px;
    background: rgba(180, 122, 255, 0.05);
    animation: pop-in .5s cubic-bezier(.2,.9,.2,1.1);
}
@keyframes pop-in {
    from { transform: scale(.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.waitlist__success-check svg circle {
    stroke-dasharray: 152;
    stroke-dashoffset: 152;
    animation: draw-circle .6s ease forwards;
}
.waitlist__success-check svg path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-check .4s .6s ease forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }

.waitlist__success-title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 32px;
    text-transform: lowercase;
    letter-spacing: -0.03em;
}
.waitlist__success-sub {
    color: var(--fg-dim);
    font-size: 15px;
    line-height: 1.5;
}
.waitlist__success-sub code {
    font-family: var(--f-mono);
    color: var(--accent);
    background: rgba(180, 122, 255, 0.08);
    padding: 2px 8px;
    border-radius: 6px;
}
.waitlist__error {
    padding: 14px 20px;
    border-radius: 100px;
    background: rgba(255, 77, 125, 0.1);
    border: 1px solid rgba(255, 77, 125, 0.3);
    color: var(--red);
    font-family: var(--f-mono);
    font-size: 13px;
    text-align: center;
    animation: shake .3s ease;
}
@keyframes shake {
    0%,100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    60% { transform: translateX(8px); }
}

/* ========================== FOOTER ========================== */
.footer {
    padding: 40px 40px 60px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--fg-dim);
    text-transform: lowercase;
    flex-wrap: wrap;
    gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__links { display: flex; gap: 28px; }
.footer__links a:hover { color: var(--accent); }
.footer__attribution {
    flex-basis: 100%;
    font-size: 10px;
    color: var(--fg-mute);
    opacity: 0.6;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .footer { padding: 30px 20px; flex-direction: column; text-align: center; }
}
