@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --bg: #0c0c0c;
    --bg-elevated: #121212;
    --bg-panel: rgba(18, 18, 18, 0.92);
    --bg-panel-strong: rgba(21, 21, 21, 0.97);
    --bg-soft: rgba(255, 255, 255, 0.03);
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #fafafa;
    --text-soft: rgba(250, 250, 250, 0.74);
    --text-dim: rgba(250, 250, 250, 0.52);
    --accent-cyan: #3fc6ff;
    --accent-blue: #4c7dff;
    --accent-violet: #7b3cff;
    --accent: var(--accent-blue);
    --accent-soft: rgba(76, 125, 255, 0.16);
    --accent-glow: rgba(76, 125, 255, 0.28);
    --accent-glow-strong: rgba(123, 60, 255, 0.34);
    --accent-gradient: linear-gradient(135deg, #3fc6ff 0%, #4c7dff 52%, #7b3cff 100%);
    --mono: 'JetBrains Mono', monospace;
    --display: 'Satoshi', 'DM Sans', sans-serif;
    --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.42);
    --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--body);
    color: var(--text);
    background:
        radial-gradient(circle at 75% 14%, rgba(63, 198, 255, 0.12) 0%, transparent 20%),
        radial-gradient(circle at 14% 30%, rgba(123, 60, 255, 0.08) 0%, transparent 28%),
        linear-gradient(180deg, #090909 0%, #0c0c0c 100%);
    line-height: 1.6;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.34;
}

body::after {
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px);
    background-size: 220px 220px;
    mix-blend-mode: soft-light;
}

a {
    color: inherit;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 240;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: #0c0c0c;
    text-decoration: none;
    transition: top 0.18s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    padding-top: 12px;
}

.site-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0.55) 70%, rgba(12, 12, 12, 0) 100%);
    pointer-events: none;
}

.nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(22, 22, 22, 0.9) 0%, rgba(14, 14, 14, 0.88) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    text-decoration: none;
}

.brand-mark {
    width: 62px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.brand-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-subtitle {
    font-family: var(--mono);
    font-size: 0.71rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.brand-title {
    color: var(--text);
    font-family: var(--display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links {
    gap: 12px;
}

.text-link {
    color: var(--text-soft);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.18s ease;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-family: var(--display);
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: #f8fbff;
    background: var(--accent-gradient);
    box-shadow: 0 14px 30px rgba(76, 125, 255, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 18px 34px rgba(76, 125, 255, 0.3);
}

.btn-secondary,
.btn-dark {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.06);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(250, 250, 250, 0.88);
    font-family: var(--mono);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent-gradient);
    box-shadow: 0 0 20px var(--accent-glow);
}

.hero,
.page-hero {
    position: relative;
    padding-top: 128px;
}

.hero-shell {
    padding-bottom: 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 44px;
    align-items: start;
}

.hero-copy {
    padding-top: 84px;
}

.hero-copy h1,
.page-hero h1,
.legal-header h1 {
    margin: 18px 0 20px;
    color: var(--text);
    font-family: var(--display);
    font-size: clamp(3.2rem, 7vw, 6.3rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    text-wrap: balance;
}

.hero-copy p,
.page-hero p,
.hero-microcopy,
.section-heading p,
.manifesto-item p,
.path-card p,
.assurance-card p,
.next-card p,
.legal-card p,
.legal-card li,
.meta-note,
.form-card > p,
.form-note,
.trust-pill,
.footer-copy,
.footer-links a {
    color: var(--text-soft);
}

.hero-copy p,
.page-hero p {
    max-width: 34rem;
    font-size: 1.08rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 24px;
}

.hero-microcopy {
    max-width: 33rem;
    font-size: 1rem;
}

.hero-proofline {
    max-width: 37rem;
    margin: 14px 0 0;
    color: rgba(250, 250, 250, 0.64);
    font-family: var(--body);
    font-size: 0.94rem;
    line-height: 1.65;
}

.hero-copy > * {
    opacity: 0;
    transform: translateY(18px);
    animation: rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.26s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.32s; }

.hero-visual {
    position: relative;
}

.hero-panel-map {
    position: relative;
    min-height: 660px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(19, 19, 19, 0.98) 0%, rgba(14, 14, 14, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--shadow-lg);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    isolation: isolate;
}

.hero-panel-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(63, 198, 255, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 70% 82%, rgba(123, 60, 255, 0.16) 0%, transparent 24%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.65;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 98%);
}

.map-grid::before,
.map-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.map-grid::before {
    background:
        radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(63, 198, 255, 0.26), transparent 58%),
        radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(123, 60, 255, 0.18), transparent 74%);
    mix-blend-mode: screen;
}

.map-grid::after {
    background:
        linear-gradient(90deg, transparent 0%, rgba(63, 198, 255, 0.5) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(123, 60, 255, 0.4) 50%, transparent 100%);
    background-size: 220px 2px, 2px 220px;
    background-position:
        calc(var(--mx, 50%) - 110px) var(--my, 50%),
        var(--mx, 50%) calc(var(--my, 50%) - 110px);
    background-repeat: no-repeat;
    filter: blur(1.6px);
}

.hero-panel-map:hover .map-grid::before,
.hero-panel-map:hover .map-grid::after {
    opacity: 1;
}

.map-card {
    position: absolute;
    width: 224px;
    min-height: 146px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(24, 24, 24, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 16px 28px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
}

.map-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--display);
    font-size: 1.1rem;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.map-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.52;
}

.map-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.map-card-a { top: 56px; left: 34px; }
.map-card-b { top: 56px; right: 34px; }
.map-card-c { bottom: 156px; left: 74px; }
.map-card-d { bottom: 156px; right: 74px; }

.map-lines .line {
    position: absolute;
    background: linear-gradient(90deg, rgba(63, 198, 255, 0.18), rgba(123, 60, 255, 0.18));
    box-shadow: 0 0 12px rgba(63, 198, 255, 0.12), 0 0 18px rgba(123, 60, 255, 0.08);
}

.map-lines .line-h1 {
    top: 128px;
    left: 258px;
    width: calc(100% - 516px);
    height: 1px;
}

.map-lines .line-h2 {
    bottom: 228px;
    left: 292px;
    width: calc(100% - 584px);
    height: 1px;
}

.map-lines .line-v1,
.map-lines .line-v2 {
    top: 202px;
    width: 1px;
    height: 148px;
}

.map-lines .line-v1 { left: 146px; }
.map-lines .line-v2 { right: 146px; }

.circuit-pulse {
    position: absolute;
    display: block;
    pointer-events: none;
    opacity: 0;
    filter: blur(0.1px);
    z-index: 1;
}

.pulse-h1,
.pulse-h2 {
    width: 108px;
    height: 3px;
    background: linear-gradient(90deg, rgba(63, 198, 255, 0), rgba(63, 198, 255, 0.95), rgba(123, 60, 255, 0));
    box-shadow: 0 0 18px rgba(63, 198, 255, 0.72), 0 0 34px rgba(123, 60, 255, 0.38);
}

.pulse-v1,
.pulse-v2 {
    width: 3px;
    height: 108px;
    background: linear-gradient(180deg, rgba(63, 198, 255, 0), rgba(63, 198, 255, 0.95), rgba(123, 60, 255, 0));
    box-shadow: 0 0 18px rgba(63, 198, 255, 0.72), 0 0 34px rgba(123, 60, 255, 0.38);
}

.pulse-h1 {
    top: 127px;
    left: 258px;
}

.pulse-h2 {
    bottom: 227px;
    left: 292px;
    animation-delay: 0.4s;
}

.pulse-v1 {
    top: 202px;
    left: 145px;
    animation-delay: 0.2s;
}

.pulse-v2 {
    top: 202px;
    right: 145px;
    animation-delay: 0.6s;
}

.hero-panel-map:hover .circuit-pulse {
    opacity: 1;
}

.hero-panel-map:hover .pulse-h1,
.hero-panel-map:hover .pulse-h2 {
    animation: circuit-run-x 1.6s linear infinite;
}

.hero-panel-map:hover .pulse-v1,
.hero-panel-map:hover .pulse-v2 {
    animation: circuit-run-y 1.6s linear infinite;
}

.hero-panel-copy {
    position: absolute;
    left: 22px;
    right: auto;
    bottom: 22px;
    z-index: 3;
    width: min(540px, calc(100% - 44px));
    padding: 18px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.94) 0%, rgba(8, 8, 10, 0.9) 100%);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 44px rgba(0, 0, 0, 0.34);
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.hero-panel-copy::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(63, 198, 255, 0.4), rgba(123, 60, 255, 0.32), transparent);
    pointer-events: none;
}

.hero-panel-copy strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--display);
    font-size: 1.1rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-panel-copy span {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding-top: 28px;
}

.hero-logos span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-logos span:first-child {
    color: var(--text-soft);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.hero-stat {
    padding: 18px 20px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stat span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-stat strong {
    display: block;
    color: var(--text);
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.section {
    position: relative;
    padding: 30px 0 84px;
}

.section-form {
    padding-bottom: 156px;
}

.section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.section-heading h2,
.form-card h2,
.success-cta h2,
.legal-card h2,
.path-card h3,
.assurance-card h3,
.next-card strong {
    color: var(--text);
    font-family: var(--display);
    letter-spacing: -0.05em;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.4vw, 4.4rem);
    line-height: 0.95;
    text-wrap: balance;
}

.manifesto-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.9fr);
    gap: 54px;
}

.manifesto-copy .section-heading {
    max-width: 42rem;
}

.manifesto-rail {
    display: grid;
    gap: 22px;
    padding-top: 10px;
}

.manifesto-item {
    position: relative;
    padding: 2px 0 22px 24px;
    border-left: 1px solid var(--line);
}

.manifesto-item::before {
    content: "";
    position: absolute;
    top: 0.45rem;
    left: -5px;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--accent-gradient);
    box-shadow: 0 0 16px var(--accent-glow);
}

.manifesto-item span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.manifesto-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.28rem;
    line-height: 1.06;
}

.path-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
    gap: 34px;
    align-items: start;
}

.path-column {
    display: grid;
    gap: 24px;
    padding-top: 12px;
    border-left: 1px solid var(--line);
}

.path-card {
    position: relative;
    padding: 0 0 0 28px;
    background: transparent;
    border: 0;
    overflow: visible;
}

.path-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    margin-left: -46px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-cyan);
    font-family: var(--mono);
    font-size: 0.86rem;
}

.path-card h3,
.form-card h2,
.success-cta h2,
.legal-card h2 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.02;
}

.path-card.featured,
.form-card,
.success-cta,
.next-card,
.legal-card {
    border: 1px solid var(--line);
    background: var(--bg-panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--shadow-md);
}

.path-card.featured {
    min-height: 100%;
    padding: 30px;
    border-radius: 22px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
    gap: 44px;
    align-items: start;
}

.form-side {
    display: grid;
    gap: 24px;
    padding-top: 8px;
}

.assurance-card {
    position: relative;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
}

.assurance-card:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.assurance-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

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

.form-card {
    position: sticky;
    top: 102px;
    padding: 30px;
    border-radius: 22px;
    backdrop-filter: blur(14px);
    color-scheme: dark;
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    color: rgba(250, 250, 250, 0.9);
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.optional {
    color: var(--text-dim);
    font-weight: 500;
}

input[type="email"],
input[type="text"],
select,
textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

input[type="email"],
input[type="text"],
textarea,
select {
    -webkit-text-fill-color: var(--text);
}

textarea {
    min-height: 124px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(250, 250, 250, 0.36);
}

select {
    appearance: none;
    -webkit-appearance: none;
    color-scheme: dark;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23A1A1AA' d='M7 10 .938 0h12.124z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

select option,
select optgroup {
    color: #f3f6fb;
    background-color: #15171d;
}

select option:disabled {
    color: rgba(243, 246, 251, 0.42);
}

input[type="email"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible {
    outline: none;
    border-color: rgba(76, 125, 255, 0.6);
    box-shadow: 0 0 0 4px rgba(76, 125, 255, 0.12);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.radio-option:has(input:checked) {
    border-color: rgba(76, 125, 255, 0.4);
    background: linear-gradient(135deg, rgba(63, 198, 255, 0.12), rgba(123, 60, 255, 0.12));
    transform: translateY(-1px);
}

.form-actions {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.form-actions .btn-primary {
    width: 100%;
    min-height: 54px;
}

.helper-link {
    color: #8fdcff;
    text-decoration: none;
}

.helper-link:hover,
.helper-link:focus-visible {
    text-decoration: underline;
}

#form-error {
    min-height: 20px;
    margin: 0;
    color: #ff8f8f;
    font-size: 0.92rem;
}

#loading-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

.trust-strip {
    padding: 6px 0 72px;
}

.trust-inner {
    display: flex;
    align-items: center;
}

.trust-marquee {
    overflow: hidden;
    width: 100%;
}

.trust-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent-gradient);
    box-shadow: 0 0 18px var(--accent-glow);
    flex-shrink: 0;
}

.page-hero {
    padding-bottom: 36px;
}

.success-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 22px;
}

.success-cta,
.legal-card {
    padding: 30px;
    border-radius: 22px;
}

.next-stack {
    display: grid;
    gap: 16px;
}

.next-card {
    padding: 24px;
    border-radius: 18px;
}

.next-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.08rem;
    line-height: 1.08;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.54fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 80px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h2 {
    margin-top: 26px;
}

.legal-card ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.legal-card li + li {
    margin-top: 8px;
}

.legal-aside {
    position: sticky;
    top: 102px;
    display: grid;
    gap: 18px;
}

.site-footer {
    padding: 30px 0 42px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-copy,
.footer-links a {
    font-size: 0.92rem;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

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

.spotlight-surface {
    position: relative;
}

.spotlight-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(63, 198, 255, 0.16), transparent 66%),
        radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(123, 60, 255, 0.12), transparent 78%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.spotlight-surface:hover::after {
    opacity: 1;
}

.tilt-surface {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.magnetic-button {
    transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.hero-panel-copy.spotlight-surface:hover {
    border-color: rgba(76, 125, 255, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 0 1px rgba(63, 198, 255, 0.1), 0 18px 34px rgba(13, 17, 32, 0.34);
    background: rgba(13, 13, 16, 0.94);
}

body.nav-light .site-nav::before,
body.nav-dark .site-nav::before {
    opacity: 1;
}

body.nav-light .nav-shell,
body.nav-dark .nav-shell {
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.9) 0%, rgba(14, 14, 14, 0.88) 100%);
    border-color: var(--line);
}

body.nav-light .site-nav .text-link,
body.nav-dark .site-nav .text-link,
body.nav-light .site-nav .brand-subtitle,
body.nav-dark .site-nav .brand-subtitle {
    color: var(--text-soft);
}

body.nav-light .site-nav .brand-title,
body.nav-dark .site-nav .brand-title {
    color: var(--text);
}

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

@keyframes rise-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes circuit-run-x {
    0% {
        transform: translate3d(-24px, 0, 0);
    }
    100% {
        transform: translate3d(104px, 0, 0);
    }
}

@keyframes circuit-run-y {
    0% {
        transform: translate3d(0, -24px, 0);
    }
    100% {
        transform: translate3d(0, 104px, 0);
    }
}

.hidden {
    display: none !important;
}

.results-page {
    padding-top: 148px;
    padding-bottom: 96px;
}

.results-shell {
    display: grid;
    gap: 28px;
}

.results-auth-card,
.result-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.94) 0%, rgba(13, 13, 13, 0.96) 100%);
    box-shadow: var(--shadow-md);
}

.results-auth-card h2,
.result-card h2,
.result-card h3,
.result-card h4 {
    margin: 0;
    font-family: var(--display);
    letter-spacing: -0.03em;
}

.results-auth-card p,
.result-card p,
.result-card li,
.result-card dd {
    color: var(--text-soft);
}

.results-auth-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.results-auth-form label,
.results-search label {
    display: block;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.results-auth-row,
.results-toolbar {
    display: flex;
    gap: 14px;
    align-items: end;
}

.results-auth-row input,
.results-search input {
    flex: 1 1 auto;
}

.results-message {
    min-height: 1.5em;
    margin-top: 10px;
    color: #ff8ea1;
}

.results-toolbar {
    justify-content: space-between;
    align-items: end;
}

.results-search {
    flex: 1 1 420px;
    display: grid;
    gap: 10px;
}

.results-actions {
    display: flex;
    gap: 12px;
}

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

.results-list {
    display: grid;
    gap: 18px;
}

.result-header,
.result-columns {
    display: grid;
    gap: 18px;
}

.result-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.result-header h2 {
    font-size: 1.5rem;
}

.result-header p {
    margin: 6px 0 0;
}

.result-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: end;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(76, 125, 255, 0.28);
    background: rgba(76, 125, 255, 0.12);
    color: var(--text);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 18px;
}

.result-columns-secondary {
    border-top: 1px solid var(--line);
    margin-top: 18px;
}

.result-section {
    display: grid;
    gap: 14px;
}

.result-details {
    display: grid;
    gap: 12px;
    margin: 0;
}

.result-details div {
    display: grid;
    gap: 6px;
}

.result-details dt {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.result-details dd {
    margin: 0;
    font-size: 1rem;
}

.result-copy h4 {
    margin-bottom: 8px;
}

.result-copy p {
    margin: 0;
}

.result-proposal {
    margin: 0;
    padding: 18px;
    min-height: 240px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    white-space: pre-wrap;
    word-break: break-word;
    font-family: var(--body);
    line-height: 1.65;
}

.result-task-list,
.result-recommendations {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
}

.result-task-list li,
.result-recommendations li {
    display: grid;
    gap: 6px;
}

.result-task-list strong {
    font-weight: 700;
    color: var(--text);
}

.result-task-list span:last-child {
    color: var(--text-dim);
}

.result-footnote {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.92rem;
}

.result-empty {
    padding: 22px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    color: var(--text-dim);
    text-align: center;
}

@media (max-width: 980px) {
    .hero-grid,
    .manifesto-layout,
    .path-grid,
    .split-section,
    .success-layout,
    .legal-layout,
    .field-row,
    .hero-stats,
    .results-summary,
    .result-columns,
    .result-header {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 18px;
    }

    .hero-panel-map {
        min-height: 560px;
        padding: 22px;
    }

    .map-card {
        position: relative;
        width: auto;
    }

    .map-card-a,
    .map-card-b,
    .map-card-c,
    .map-card-d {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .hero-panel-map {
        display: grid;
        gap: 14px;
    }

    .map-lines {
        display: none;
    }

    .hero-panel-copy {
        position: relative;
        inset: auto;
        width: auto;
    }

    .form-card,
    .legal-aside {
        position: static;
    }

    .section-form {
        padding-bottom: 84px;
    }

    .result-meta {
        justify-content: start;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1200px);
    }

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

    .nav-shell {
        min-height: 64px;
        padding: 0 12px;
        border-radius: 18px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .nav-links,
    .nav-actions .text-link {
        display: none;
    }

    .brand-mark {
        width: 52px;
        border-radius: 14px;
    }

    .brand-lockup {
        gap: 12px;
        min-width: 0;
        display: contents;
    }

    .brand-mark {
        justify-self: start;
    }

    .brand-meta {
        display: flex;
        grid-column: 2;
        justify-self: center;
        align-items: center;
        text-align: center;
    }

    .brand-subtitle {
        font-size: 0.78rem;
        letter-spacing: 0.16em;
        line-height: 1;
    }

    .brand-title {
        display: none;
    }

    .nav-actions {
        grid-column: 3;
        flex: 0 0 auto;
    }

    .nav-actions .btn {
        width: auto;
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .hero,
    .page-hero {
        padding-top: 104px;
    }

    .hero-copy h1,
    .page-hero h1,
    .legal-header h1 {
        font-size: clamp(2.9rem, 16vw, 4.8rem);
    }

    .hero-actions,
    .radio-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .radio-option {
        width: 100%;
    }

    .path-column {
        border-left: 0;
        padding-top: 0;
    }

    .path-card {
        padding-left: 0;
    }

    .path-card strong {
        margin-left: 0;
    }

    .hero-panel-map {
        min-height: auto;
    }

    .hero-logos {
        gap: 10px;
    }

    .hero-logos span {
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat {
        padding: 16px 16px 18px;
    }

    .form-card,
    .success-cta,
    .legal-card,
    .next-card,
    .results-auth-card,
    .result-card {
        padding: 22px;
    }

    .trust-track {
        animation-duration: 34s;
    }

    .results-auth-row,
    .results-toolbar,
    .results-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
