:root {
    --bg: #05080d;
    --bg-2: #091019;
    --panel: rgba(12, 20, 31, .76);
    --panel-strong: #0b131f;
    --panel-soft: rgba(255, 255, 255, .035);
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .15);
    --text: #f4f7fb;
    --muted: #98a5b5;
    --accent: #64f3bc;
    --accent-2: #53a8ff;
    --accent-3: #8b7cff;
    --danger: #ff8a9b;
    --shadow: 0 28px 70px rgba(0, 0, 0, .32);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

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

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

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 12%, rgba(83, 168, 255, .08), transparent 30%),
        radial-gradient(circle at 75% 4%, rgba(100, 243, 188, .07), transparent 26%),
        var(--bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.site-shell {
    min-height: 100vh;
    overflow: clip;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - 40px), 780px);
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
    background: rgba(5, 8, 13, .82);
    border-color: var(--line);
    backdrop-filter: blur(22px);
}

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    font-weight: 760;
    letter-spacing: -.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    aspect-ratio: 1;
    border: 1px solid rgba(100, 243, 188, .32);
    border-radius: 11px;
    color: #07110c;
    background:
        linear-gradient(135deg, var(--accent), #b7ffe3);
    box-shadow: 0 0 36px rgba(100, 243, 188, .18);
    font-size: 13px;
    font-weight: 900;
}

.brand-name {
    font-size: 20px;
}

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

.primary-nav a {
    color: #c1cad5;
    font-size: 14px;
    transition: color .2s ease;
}

.primary-nav a:hover {
    color: var(--text);
}

.header-cta {
    justify-self: end;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: -.01em;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button-primary {
    color: #06100b;
    background: linear-gradient(135deg, var(--accent), #b9ffe4);
    border-color: transparent;
    box-shadow: 0 10px 38px rgba(100, 243, 188, .18);
}

.button-primary:hover {
    box-shadow: 0 14px 48px rgba(100, 243, 188, .28);
}

.button-ghost {
    background: rgba(255, 255, 255, .025);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, .055);
    border-color: rgba(255, 255, 255, .24);
}

.button-small {
    min-height: 40px;
    padding-inline: 17px;
    font-size: 13px;
}

.hero {
    position: relative;
    min-height: 870px;
    padding: 160px 0 0;
    isolation: isolate;
}

.hero-grid,
.ai-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .17;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-glow {
    position: absolute;
    z-index: -2;
    width: 480px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .17;
    pointer-events: none;
}

.hero-glow-one {
    top: 55px;
    left: -120px;
    background: var(--accent-2);
}

.hero-glow-two {
    top: 70px;
    right: -170px;
    background: var(--accent);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: 68px;
}

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

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(54px, 7.6vw, 104px);
    line-height: .96;
    letter-spacing: -.066em;
    text-wrap: balance;
}

.hero-lead,
.lead {
    max-width: 640px;
    margin: 28px 0 0;
    color: #b8c2cf;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.58;
    letter-spacing: -.015em;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
    color: var(--muted);
    font-size: 13px;
}

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

.hero-badges i {
    width: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.hero-terminal {
    position: relative;
    min-height: 540px;
    padding: 18px;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 25%),
        rgba(6, 12, 20, .84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
    transition: transform .25s ease;
}

.hero-terminal:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0);
}

.hero-terminal::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(100, 243, 188, .38), transparent 34%, rgba(83, 168, 255, .24));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.terminal-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: #8d9bab;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.terminal-dots {
    display: flex;
    gap: 5px;
}

.terminal-dots span {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
}

.live-dot {
    justify-self: end;
    color: var(--accent);
}

.terminal-balance {
    display: grid;
    gap: 2px;
    margin-top: 42px;
}

.terminal-balance span,
.terminal-balance small,
.terminal-trade span,
.quote-card small,
.platform-header small {
    color: var(--muted);
    font-size: 12px;
}

.terminal-balance strong {
    margin-top: 5px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -.055em;
}

.terminal-tabs {
    display: flex;
    gap: 6px;
    margin-top: 28px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    width: fit-content;
    color: var(--muted);
    font-size: 11px;
}

.terminal-tabs span {
    padding: 7px 10px;
    border-radius: 8px;
}

.terminal-tabs .active {
    color: var(--text);
    background: rgba(255, 255, 255, .08);
}

.terminal-chart {
    margin: 28px 0 8px;
    color: var(--accent);
}

.chart-area {
    fill: url(#orchArea);
}

.chart-line {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(100, 243, 188, .45));
}

.terminal-trade {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .025);
}

.terminal-trade > div {
    display: grid;
    gap: 2px;
}

.terminal-trade strong {
    font-size: 15px;
}

.trade-arrow {
    color: var(--accent);
}

.terminal-trade button,
.quote-card button {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    color: #07110c;
    background: var(--accent);
    font-weight: 800;
    opacity: .88;
}

.terminal-disclaimer {
    margin: 10px 2px 0;
    color: #748293;
    font-size: 10px;
}

.ticker-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(5, 8, 13, .72);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 32s linear infinite;
}

.ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 0 30px;
    border-right: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.ticker-track b {
    color: var(--text);
}

.ticker-track i {
    color: var(--accent);
    font-style: normal;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.metric-strip {
    border-bottom: 1px solid var(--line);
}

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

.metric {
    display: grid;
    gap: 2px;
    min-height: 150px;
    place-content: center;
    padding: 24px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.metric:first-child {
    border-left: 1px solid var(--line);
}

.metric strong {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.05em;
}

.metric span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section {
    position: relative;
    padding: 126px 0;
}

.section-tight {
    padding-top: 60px;
}

.section-panel {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .018), transparent),
        var(--bg-2);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 54px;
}

.section-heading h2,
.split-copy h2,
.token-copy h2,
.final-cta h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.02;
    letter-spacing: -.052em;
    text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.split-copy > p:not(.eyebrow),
.token-copy > p:not(.eyebrow),
.final-cta > .container > p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.market-card {
    position: relative;
    min-height: 330px;
    padding: 28px 24px;
    border-right: 1px solid var(--line);
    background: rgba(255, 255, 255, .012);
    transition: background .25s ease, transform .25s ease;
}

.market-card:last-child {
    border-right: 0;
}

.market-card:hover {
    background: rgba(255, 255, 255, .035);
}

.market-number {
    color: #657385;
    font-size: 11px;
}

.market-icon {
    display: grid;
    place-items: center;
    width: 52px;
    aspect-ratio: 1;
    margin-top: 62px;
    border: 1px solid rgba(100, 243, 188, .22);
    border-radius: 15px;
    color: var(--accent);
    background: rgba(100, 243, 188, .05);
    font-size: 22px;
}

.market-card h3 {
    margin: 20px 0 8px;
    font-size: 18px;
}

.market-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.market-meta {
    position: absolute;
    bottom: 24px;
    color: #6f7c8d;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.split-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: start;
    gap: 90px;
}

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

.text-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 26px;
    color: var(--text);
    font-size: 14px;
    font-weight: 750;
}

.text-link span {
    color: var(--accent);
}

.feature-stack {
    border-top: 1px solid var(--line);
}

.feature-row {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border: 1px solid rgba(83, 168, 255, .24);
    border-radius: 13px;
    color: var(--accent-2);
    background: rgba(83, 168, 255, .055);
}

.feature-row h3,
.feature-card h2,
.feature-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -.025em;
}

.feature-row p,
.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.platform-shell {
    display: grid;
    grid-template-columns: 184px 1fr;
    min-height: 600px;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    overflow: hidden;
    background: #07101a;
    box-shadow: var(--shadow);
}

.platform-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 16px;
    border-right: 1px solid var(--line);
    background: rgba(0, 0, 0, .18);
}

.platform-logo {
    display: grid;
    place-items: center;
    width: 38px;
    aspect-ratio: 1;
    margin-bottom: 32px;
    border-radius: 12px;
    color: #06100b;
    background: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.platform-sidebar span {
    padding: 10px 12px;
    border-radius: 10px;
    color: #758397;
    font-size: 12px;
}

.platform-sidebar .active {
    color: var(--text);
    background: rgba(255, 255, 255, .055);
}

.platform-main {
    padding: 28px;
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.platform-header h3 {
    margin: 3px 0 0;
    font-size: 22px;
}

.status-pill,
.roadmap-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(100, 243, 188, .18);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(100, 243, 188, .045);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.platform-panels {
    display: grid;
    grid-template-columns: 1fr 230px;
    gap: 16px;
    margin-top: 24px;
}

.platform-chart-card,
.quote-card {
    min-height: 280px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
}

.fake-chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 195px;
    padding-top: 18px;
    border-bottom: 1px solid var(--line);
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 100% 48px;
}

.fake-chart-bars i {
    flex: 1;
    height: var(--bar-height);
    max-width: 28px;
    min-height: 20px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, rgba(83,168,255,.2), var(--accent));
    box-shadow: 0 -4px 16px rgba(100, 243, 188, .09);
}

.chart-axis {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #647184;
    font-size: 9px;
}

.quote-card {
    display: flex;
    flex-direction: column;
}

.quote-card strong {
    margin-top: 20px;
    font-size: 20px;
}

.quote-rate {
    margin-top: 7px;
    font-size: 40px;
    font-weight: 780;
    letter-spacing: -.055em;
}

.quote-card button {
    margin-top: auto;
}

.market-table {
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 17px;
    overflow: hidden;
}

.market-table-head,
.market-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 130px;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
}

.market-table-row:last-child {
    border-bottom: 0;
}

.market-table-head {
    color: #69778a;
    background: rgba(255,255,255,.025);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.market-table-row span {
    color: var(--muted);
}

.table-status {
    justify-self: end;
    color: var(--accent) !important;
}

.section-ai {
    overflow: hidden;
    border-top: 1px solid rgba(83,168,255,.1);
    border-bottom: 1px solid rgba(83,168,255,.1);
    background:
        radial-gradient(circle at 20% 40%, rgba(83,168,255,.085), transparent 32%),
        radial-gradient(circle at 85% 50%, rgba(139,124,255,.075), transparent 30%),
        #060a12;
}

.ai-grid-bg {
    opacity: .1;
    mask-image: none;
}

.ai-layout {
    align-items: center;
}

.ai-layout .split-copy {
    position: static;
}

.mini-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 36px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--line);
}

.mini-stat-grid > div {
    display: grid;
    gap: 3px;
    padding: 18px;
    background: #08101a;
}

.mini-stat-grid strong {
    font-size: 24px;
    letter-spacing: -.04em;
}

.mini-stat-grid span {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.ai-console {
    padding: 20px;
    border: 1px solid rgba(83,168,255,.2);
    border-radius: 22px;
    background: rgba(5,9,16,.8);
    box-shadow: 0 25px 70px rgba(0,0,0,.3);
}

.console-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.console-icon {
    color: var(--accent);
}

.console-status {
    margin-left: auto;
    color: var(--accent-2);
}

.ai-console pre {
    min-height: 180px;
    margin: 24px 0 10px;
    overflow: auto;
    color: #c2d0df;
    font: 12px/1.9 ui-monospace, SFMono-Regular, Menlo, monospace;
    white-space: pre-wrap;
}

.ai-console .muted { color: #718096; }
.ai-console .success { color: var(--accent); }
.ai-console .notice { color: var(--accent-2); }

.signal-lines {
    display: grid;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.signal-lines span {
    display: block;
    width: var(--w);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    opacity: .55;
}

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

.ai-feature-grid {
    margin-top: 64px;
}

.feature-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.018);
}

.feature-card .feature-icon {
    margin-bottom: 38px;
}

.token-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.token-orbit {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 500px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(100,243,188,.15);
    border-radius: 50%;
    animation: orbitFloat 6s ease-in-out infinite alternate;
}

.orbit-one { width: 190px; aspect-ratio: 1; }
.orbit-two { width: 310px; aspect-ratio: 1; animation-delay: -.8s; }
.orbit-three { width: 430px; aspect-ratio: 1; animation-delay: -1.7s; }

.token-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 136px;
    aspect-ratio: 1;
    border: 1px solid rgba(100,243,188,.32);
    border-radius: 50%;
    color: #06100b;
    background:
        radial-gradient(circle at 35% 25%, #d4ffef, var(--accent) 40%, #3fc498 100%);
    box-shadow:
        0 0 0 16px rgba(100,243,188,.025),
        0 0 80px rgba(100,243,188,.18);
}

.token-core span {
    font-weight: 900;
    letter-spacing: -.035em;
}

@keyframes orbitFloat {
    to { transform: scale(1.03) rotate(5deg); }
}

.token-utility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.token-utility-grid > div {
    display: grid;
    gap: 5px;
    min-height: 112px;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.token-utility-grid strong {
    font-size: 14px;
}

.token-utility-grid span {
    color: var(--muted);
    font-size: 12px;
}

.fine-print {
    margin-top: 18px !important;
    color: #667486 !important;
    font-size: 11px !important;
}

.roadmap-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
}

.roadmap-line::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), rgba(255,255,255,.08));
}

.roadmap-step {
    position: relative;
    padding: 36px 28px 0 0;
}

.roadmap-dot {
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    aspect-ratio: 1;
    border: 4px solid var(--bg-2);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(100,243,188,.4), 0 0 18px rgba(100,243,188,.28);
}

.roadmap-index {
    color: #687688;
    font-size: 10px;
}

.roadmap-step small {
    display: block;
    margin-top: 22px;
    color: var(--accent);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.roadmap-step h3 {
    margin: 9px 0 10px;
    font-size: 18px;
}

.roadmap-step p {
    min-height: 88px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12px;
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
}

.faq-layout .split-copy {
    position: sticky;
    top: 140px;
}

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

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

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 0;
    border: 0;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 650;
}

.faq-item button i {
    display: grid;
    place-items: center;
    width: 28px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--accent);
    font-style: normal;
    transition: transform .22s ease;
}

.faq-item.is-open button i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.faq-answer > p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
}

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

.faq-item.is-open .faq-answer > p {
    padding: 0 42px 24px 0;
}

.final-cta {
    padding-top: 70px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 82px 40px;
    border: 1px solid rgba(100,243,188,.18);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(100,243,188,.06), rgba(83,168,255,.035)),
        #081019;
    text-align: center;
}

.cta-panel h2,
.cta-panel p {
    max-width: 760px;
    margin-inline: auto;
}

.cta-panel .hero-actions {
    justify-content: center;
}

.cta-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    width: 540px;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(100,243,188,.12);
    filter: blur(100px);
    pointer-events: none;
}

.site-footer {
    padding: 80px 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: start;
    gap: 10px 22px;
    color: #a4afbd;
    font-size: 12px;
}

.footer-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #657284;
    font-size: 10px;
}

.page-hero {
    padding: 180px 0 70px;
}

.page-hero .lead {
    max-width: 720px;
}

.prose {
    color: #b6c0cc;
}

.prose h1,
.prose h2,
.prose h3 {
    color: var(--text);
    line-height: 1.1;
}

.prose p {
    margin: 0 0 1.2em;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .primary-nav {
        position: fixed;
        inset: 78px 20px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(7, 12, 19, .97);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .nav-toggle {
        display: grid;
        gap: 4px;
        padding: 9px;
        cursor: pointer;
    }

    .nav-toggle span:not(.screen-reader-text) {
        display: block;
        width: 20px;
        height: 1px;
        background: var(--text);
    }

    .hero-layout,
    .split-layout,
    .token-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 104px;
    }

    .hero-layout {
        gap: 46px;
    }

    .hero-terminal {
        width: min(100%, 680px);
        transform: none;
    }

    .hero-terminal:hover {
        transform: none;
    }

    .ticker-wrap {
        position: absolute;
    }

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

    .market-card {
        border-bottom: 1px solid var(--line);
    }

    .market-card:nth-child(2n) {
        border-right: 0;
    }

    .market-card:last-child {
        grid-column: 1 / -1;
    }

    .split-copy,
    .faq-layout .split-copy {
        position: static;
    }

    .platform-shell {
        grid-template-columns: 120px 1fr;
    }

    .roadmap-line {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 20px;
    }

    .roadmap-line::before {
        display: none;
    }

    .roadmap-step {
        padding-top: 24px;
        border-top: 1px solid var(--line);
    }

    .roadmap-dot {
        top: -8px;
    }
}

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

    .header-inner {
        min-height: 70px;
    }

    .header-cta {
        display: none;
    }

    .primary-nav {
        inset-top: 70px;
    }

    .hero {
        padding-top: 128px;
    }

    .hero h1 {
        font-size: clamp(48px, 16vw, 72px);
    }

    .hero-lead {
        font-size: 17px;
    }

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

    .hero-terminal {
        min-height: 0;
        padding: 14px;
        border-radius: 20px;
    }

    .terminal-balance {
        margin-top: 30px;
    }

    .terminal-balance strong {
        font-size: 34px;
    }

    .terminal-trade {
        grid-template-columns: 1fr auto 1fr;
    }

    .terminal-trade button {
        grid-column: 1 / -1;
    }

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

    .metric {
        min-height: 120px;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 88px 0;
    }

    .market-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .market-card,
    .market-card:nth-child(2n) {
        min-height: 290px;
        border-right: 0;
    }

    .market-card:last-child {
        grid-column: auto;
    }

    .platform-shell {
        grid-template-columns: 1fr;
    }

    .platform-sidebar {
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .platform-logo {
        margin: 0 14px 0 0;
        flex: 0 0 auto;
    }

    .platform-sidebar span {
        flex: 0 0 auto;
    }

    .platform-main {
        padding: 16px;
    }

    .platform-panels {
        grid-template-columns: 1fr;
    }

    .quote-card {
        min-height: 220px;
    }

    .market-table-head,
    .market-table-row {
        grid-template-columns: 1fr 1fr;
    }

    .market-table-head span:last-child,
    .market-table-row .table-status {
        display: none;
    }

    .token-orbit {
        min-height: 390px;
        transform: scale(.82);
    }

    .token-utility-grid,
    .mini-stat-grid,
    .roadmap-line {
        grid-template-columns: 1fr;
    }

    .roadmap-step p {
        min-height: 0;
    }

    .cta-panel {
        padding: 64px 22px;
    }

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

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

    .footer-meta {
        flex-direction: column;
    }
}



/* =========================================================
   Reference fidelity pass 01
   Rebuilds the top-of-page composition around the supplied
   dark protocol/presale reference while remaining brand-neutral.
   ========================================================= */

:root {
    --bg: #070b12;
    --bg-2: #0a0f18;
    --panel: #111822;
    --panel-strong: #101720;
    --line: rgba(139, 159, 190, .18);
    --line-strong: rgba(139, 159, 190, .28);
    --text: #f2f5fa;
    --muted: #929cad;
    --accent: #4f8dff;
    --accent-2: #77a6ff;
    --accent-3: #2f6ee9;
    --container: 1480px;
}

body {
    background:
        radial-gradient(circle at 84% 16%, rgba(68, 118, 210, .08), transparent 31%),
        linear-gradient(180deg, #070b12 0%, #080c13 100%);
}

.announcement-bar {
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    width: 100%;
    height: 34px;
    overflow: hidden;
    border-bottom: 1px solid rgba(84, 103, 132, .2);
    background: #101722;
    color: #8894a7;
}

.announcement-track {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.2fr) minmax(0, 1.25fr);
    align-items: center;
}

.announcement-item {
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-right: 1px solid rgba(84, 103, 132, .14);
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
}

.announcement-item:last-child {
    border-right: 0;
}

.announcement-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 5px;
    color: #7da9ff;
    background: rgba(79, 141, 255, .12);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.announcement-item:last-child .announcement-badge {
    color: #ff7f88;
    background: rgba(255, 84, 96, .12);
}

.announcement-text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header.reference-header {
    top: 34px;
    height: 88px;
    background: rgba(7, 11, 18, .96);
    border-bottom: 1px solid rgba(91, 108, 133, .26);
    backdrop-filter: none;
}

.site-header.reference-header.is-scrolled {
    background: rgba(7, 11, 18, .96);
    border-color: rgba(91, 108, 133, .26);
    backdrop-filter: none;
}

.reference-header-inner {
    min-height: 88px;
    grid-template-columns: 1fr auto 1fr;
    gap: 38px;
}

.reference-brand {
    gap: 13px;
    font-weight: 790;
}

.reference-brand-mark {
    position: relative;
    width: 38px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #75a7ff;
    font-size: 0;
}

.reference-brand-mark::before,
.reference-brand-mark::after,
.reference-brand-mark span::before {
    content: "";
    position: absolute;
    left: 5px;
    width: 28px;
    height: 7px;
    border: 3px solid #4f8dff;
    border-left-width: 5px;
    border-right-width: 5px;
    transform: skewY(31deg);
    opacity: .98;
}

.reference-brand-mark::before {
    top: 7px;
}

.reference-brand-mark span::before {
    top: 16px;
}

.reference-brand-mark::after {
    top: 25px;
}

.reference-brand .brand-name {
    color: #e9edf4;
    font-size: 19px;
    letter-spacing: -.02em;
}

.reference-nav {
    gap: 35px;
}

.reference-nav a {
    color: #a5adba;
    font-size: 13px;
    font-weight: 520;
}

.reference-nav a:hover {
    color: #f1f5fb;
}

.reference-launch-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 49px;
    padding: 0 23px;
    border: 1px solid #5c96ff;
    border-radius: 10px;
    color: #07101d;
    background: #5590ff;
    font-size: 13px;
    font-weight: 780;
    box-shadow: 0 8px 22px rgba(79, 141, 255, .12);
    transition: transform .2s ease, filter .2s ease;
}

.reference-launch-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.hero-reference {
    position: relative;
    min-height: 790px;
    padding: 182px 0 84px;
    overflow: hidden;
    border-bottom: 1px solid rgba(90, 108, 134, .18);
    background:
        radial-gradient(circle at 82% 20%, rgba(61, 105, 185, .08), transparent 34%),
        linear-gradient(180deg, #090d15 0%, #080c13 100%);
    isolation: isolate;
}

.hero-reference-grid {
    position: absolute;
    z-index: -5;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(98, 118, 147, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98, 118, 147, .06) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, transparent 3%, black 30%, black 83%, transparent);
}

.hero-reference-glow {
    position: absolute;
    z-index: -4;
    width: 560px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
}

.hero-reference-glow-left {
    left: -290px;
    bottom: -180px;
    background: rgba(79, 141, 255, .055);
}

.hero-reference-glow-right {
    right: -280px;
    top: 80px;
    background: rgba(79, 141, 255, .05);
}

.hero-market-line {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 42px;
    width: 100%;
    height: 380px;
    opacity: .52;
    pointer-events: none;
}

.hero-line-area {
    fill: url(#heroLineFill);
}

.hero-line-stroke {
    fill: none;
    stroke: #4f8dff;
    stroke-width: 1.7;
    opacity: .76;
}

.hero-reference-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(450px, .87fr);
    align-items: center;
    gap: 92px;
}

.hero-reference-copy {
    max-width: 760px;
    padding-top: 18px;
}

.hero-presale-kicker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
    color: #7f8a9c;
    font-size: 11px;
    font-weight: 720;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.hero-presale-kicker strong {
    color: #c1cad7;
}

.hero-presale-kicker i {
    color: #475469;
    font-style: normal;
}

.hero-presale-dot {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #4f8dff;
    box-shadow: 0 0 13px rgba(79, 141, 255, .75);
}

.reference-hero-title {
    display: grid;
    gap: 3px;
    margin: 0;
    color: #f0f2f5;
    font-size: clamp(52px, 4.45vw, 78px);
    font-weight: 530;
    line-height: 1.02;
    letter-spacing: -.047em;
    text-wrap: balance;
}

.reference-hero-accent {
    color: #5d93f6;
}

.reference-hero-lead {
    max-width: 660px;
    margin: 36px 0 0;
    color: #9fa8b8;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: -.012em;
}

.reference-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 40px;
}

.reference-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid #29374b;
    border-radius: 11px;
    color: #eef2f7;
    background: rgba(12, 19, 29, .88);
    font-size: 14px;
    font-weight: 730;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.reference-action:hover {
    transform: translateY(-1px);
    border-color: #416da9;
    background: rgba(16, 26, 40, .94);
}

.reference-action-primary i {
    display: grid;
    place-items: center;
    width: 30px;
    aspect-ratio: 1;
    border: 1px solid rgba(79, 141, 255, .5);
    border-radius: 50%;
    color: #8db5ff;
    background: rgba(79, 141, 255, .1);
    font-style: normal;
}

.reference-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 43px;
    margin-top: 31px;
    padding: 0 17px;
    border: 1px solid #25334a;
    border-radius: 999px;
    color: #b6bfcc;
    background: rgba(13, 20, 31, .72);
    font-size: 12px;
    font-weight: 620;
}

.reference-highlight-pill span {
    color: #4f8dff;
}

.reference-trust-line {
    margin: 25px 0 0;
    color: #7e8999;
    font-size: 12px;
}

.reference-presale-card {
    width: min(100%, 560px);
    justify-self: end;
    border: 1px solid #2a374a;
    border-radius: 13px;
    background: rgba(16, 23, 33, .94);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .19);
    overflow: hidden;
}

.reference-card-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 28px;
    border-bottom: 1px solid #2a374a;
    color: #8996a9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.reference-live-state {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5f96ff;
    font-size: 10px;
}

.reference-live-state i {
    width: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #4f8dff;
    box-shadow: 0 0 9px rgba(79, 141, 255, .7);
}

.reference-card-body {
    padding: 32px 28px 27px;
}

.reference-price-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 26px;
    min-height: 94px;
    padding-bottom: 24px;
    border-bottom: 1px solid #29364a;
}

.reference-price-row > div:not(.reference-price-divider) {
    display: grid;
    gap: 5px;
    align-content: center;
}

.reference-price-row small,
.reference-stage-row small {
    color: #8793a5;
    font-size: 10px;
    letter-spacing: .02em;
}

.reference-price-row strong {
    color: #f3f5f8;
    font: 700 34px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: -.045em;
}

.reference-price-row .muted-price {
    color: #7f8a9a;
}

.reference-price-row em {
    align-self: end;
    margin-left: 4px;
    color: #7f8a9a;
    font-size: 10px;
    font-style: normal;
}

.reference-price-divider {
    width: 1px;
    height: 54px;
    background: #273347;
}

.reference-stage-row {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #29364a;
}

.reference-stage-row strong {
    font: 700 20px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: .02em;
}

.reference-raise {
    padding: 24px 0 26px;
}

.reference-raise-head,
.reference-raise-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.reference-raise-head strong {
    color: #f0f3f8;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.035em;
}

.reference-raise-head span {
    color: #7d8898;
    font-size: 11px;
}

.reference-progress {
    height: 7px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: #263244;
}

.reference-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #4f8dff, #77a6ff);
    box-shadow: 0 0 15px rgba(79, 141, 255, .22);
}

.reference-raise-meta {
    margin-top: 8px;
    align-items: center;
    color: #788497;
    font-size: 10px;
}

.reference-card-cta {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 9px;
    color: #07101d;
    background: #5590ff;
    font-size: 13px;
    font-weight: 820;
}

.reference-card-cta i {
    display: grid;
    place-items: center;
    width: 27px;
    aspect-ratio: 1;
    border: 1px solid rgba(7, 16, 29, .22);
    border-radius: 50%;
    font-style: normal;
}

.reference-card-note {
    margin: 12px 0 0;
    color: #6e7a8c;
    font-size: 10px;
    text-align: center;
}

.reference-trust-strip {
    min-height: 165px;
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(90, 108, 134, .18);
    background: #0a0f17;
}

.reference-trust-strip p {
    margin: 0 0 26px;
    color: #677488;
    font-size: 10px;
    letter-spacing: .15em;
    text-align: center;
    text-transform: uppercase;
}

.reference-trust-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #566174;
    font-size: 15px;
    font-weight: 760;
    letter-spacing: -.015em;
    text-transform: uppercase;
}

.reference-trust-logos span {
    opacity: .66;
}

/* Bring remaining sections into the same cooler blue reference palette. */
.section,
.section-panel,
.section-ai {
    --accent: #4f8dff;
    --accent-2: #77a6ff;
}

.section-heading h2,
.split-copy h2,
.token-copy h2,
.final-cta h2,
.page-hero h1 {
    font-weight: 560;
}

.button-primary {
    color: #07101d;
    background: #5590ff;
    box-shadow: 0 10px 32px rgba(79, 141, 255, .13);
}

.hero-reference .reveal {
    transform: translateY(12px);
}

@media (max-width: 1120px) {
    .announcement-track {
        grid-template-columns: 1fr 1fr;
    }

    .announcement-item:nth-child(3) {
        display: none;
    }

    .reference-nav {
        gap: 22px;
    }

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

    .hero-reference-copy {
        max-width: 820px;
    }

    .reference-presale-card {
        justify-self: start;
        width: min(100%, 610px);
    }

    .hero-market-line {
        opacity: .26;
    }
}

@media (max-width: 1050px) {
    .site-header.reference-header {
        height: 78px;
    }

    .reference-header-inner {
        min-height: 78px;
        grid-template-columns: 1fr auto auto;
    }

    .reference-nav {
        inset: 112px 20px auto;
    }

    .reference-launch-cta {
        min-width: auto;
        min-height: 42px;
        padding-inline: 16px;
    }

    .hero-reference {
        padding-top: 168px;
    }
}

@media (max-width: 760px) {
    .announcement-bar {
        height: 30px;
    }

    .announcement-track {
        display: block;
    }

    .announcement-item {
        height: 30px;
    }

    .announcement-item:not(:first-child) {
        display: none;
    }

    .site-header.reference-header {
        top: 30px;
        height: 70px;
    }

    .reference-header-inner {
        min-height: 70px;
    }

    .reference-brand .brand-name {
        font-size: 17px;
    }

    .reference-brand-mark {
        width: 34px;
        transform: scale(.9);
        transform-origin: left center;
    }

    .reference-launch-cta {
        display: none;
    }

    .reference-nav {
        inset: 100px 14px auto;
    }

    .hero-reference {
        min-height: auto;
        padding: 146px 0 70px;
    }

    .hero-presale-kicker {
        gap: 8px;
        margin-bottom: 27px;
        font-size: 9px;
        letter-spacing: .12em;
    }

    .reference-hero-title {
        font-size: clamp(46px, 14vw, 64px);
        line-height: 1.01;
    }

    .reference-hero-lead {
        margin-top: 27px;
        font-size: 16px;
    }

    .reference-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 31px;
    }

    .reference-action {
        width: 100%;
    }

    .reference-highlight-pill {
        max-width: 100%;
        height: auto;
        min-height: 43px;
        padding-block: 9px;
    }

    .reference-presale-card {
        width: 100%;
    }

    .reference-card-header {
        padding-inline: 18px;
        font-size: 9px;
    }

    .reference-card-body {
        padding: 24px 18px 21px;
    }

    .reference-price-row {
        gap: 16px;
    }

    .reference-price-row strong {
        font-size: 27px;
    }

    .reference-trust-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px 28px;
        font-size: 12px;
    }

    .hero-market-line {
        bottom: 0;
        height: 320px;
        opacity: .2;
    }
}



/* =========================================================
   Reference fidelity pass 02
   Below-the-fold protocol, features and tokenomics.
   ========================================================= */

.reference-overview-section,
.reference-features-section,
.reference-tokenomics-section {
    position: relative;
    padding: 126px 0;
    border-bottom: 1px solid rgba(90, 108, 134, .18);
    background: #090e16;
}

.reference-features-section {
    background:
        linear-gradient(180deg, rgba(79, 141, 255, .018), transparent 36%),
        #070c13;
}

.reference-tokenomics-section {
    background:
        radial-gradient(circle at 78% 50%, rgba(79, 141, 255, .055), transparent 28%),
        #090e16;
}

.reference-section-intro {
    max-width: 770px;
    margin-bottom: 62px;
}

.reference-section-intro-center {
    margin-inline: auto;
    text-align: center;
}

.reference-section-label {
    margin: 0 0 18px;
    color: #5d93f6;
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.reference-section-intro h2,
.reference-tokenomics-copy h2 {
    margin: 0;
    color: #edf1f6;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 530;
    line-height: 1.04;
    letter-spacing: -.048em;
    text-wrap: balance;
}

.reference-section-intro > p:not(.reference-section-label),
.reference-tokenomics-lead {
    max-width: 650px;
    margin: 23px 0 0;
    color: #909bac;
    font-size: 17px;
    line-height: 1.65;
}

.reference-section-intro-center > p:not(.reference-section-label) {
    margin-inline: auto;
}

.reference-overview-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 520px;
    border: 1px solid #253247;
    border-radius: 12px;
    overflow: hidden;
    background: #0d141e;
}

.reference-overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 56px;
    border-right: 1px solid #253247;
}

.reference-index {
    color: #637085;
    font-size: 10px;
    font-weight: 760;
    letter-spacing: .14em;
}

.reference-overview-copy h3 {
    max-width: 520px;
    margin: 35px 0 20px;
    color: #eef2f7;
    font-size: clamp(31px, 3vw, 46px);
    font-weight: 540;
    line-height: 1.06;
    letter-spacing: -.04em;
}

.reference-overview-copy > p {
    max-width: 500px;
    margin: 0;
    color: #8e99aa;
    font-size: 15px;
    line-height: 1.7;
}

.reference-protocol-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 52px;
    border-top: 1px solid #263349;
    border-left: 1px solid #263349;
}

.reference-protocol-stats > div {
    min-height: 96px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 15px 17px;
    border-right: 1px solid #263349;
    border-bottom: 1px solid #263349;
}

.reference-protocol-stats strong {
    color: #ecf1f7;
    font-size: 22px;
    font-weight: 680;
    letter-spacing: -.035em;
}

.reference-protocol-stats span {
    color: #687589;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reference-market-map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        linear-gradient(rgba(82, 103, 135, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 103, 135, .07) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(79, 141, 255, .08), transparent 42%),
        #0a1019;
    background-size: 50px 50px, 50px 50px, auto, auto;
}

.reference-map-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(79, 141, 255, .13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.reference-map-ring-one {
    width: 280px;
    aspect-ratio: 1;
}

.reference-map-ring-two {
    width: 420px;
    aspect-ratio: 1;
    opacity: .58;
}

.reference-map-core {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    width: 112px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(79, 141, 255, .45);
    border-radius: 50%;
    background: #101927;
    box-shadow:
        0 0 0 12px rgba(79, 141, 255, .025),
        0 0 54px rgba(79, 141, 255, .12);
}

.reference-map-core > span {
    color: #78a7ff;
    font-size: 27px;
    font-weight: 900;
}

.reference-map-core > small {
    color: #8c98aa;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reference-market-node {
    position: absolute;
    z-index: 5;
    min-width: 150px;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border: 1px solid #29364b;
    border-radius: 9px;
    background: rgba(13, 20, 31, .96);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.reference-market-node::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 105px;
    height: 1px;
    background: linear-gradient(90deg, rgba(79,141,255,.32), transparent);
    transform-origin: left center;
}

.reference-market-node-1 { left: 9%; top: 13%; }
.reference-market-node-1::after { left: 100%; top: 50%; transform: rotate(27deg); }

.reference-market-node-2 { right: 8%; top: 16%; }
.reference-market-node-2::after { right: 100%; top: 50%; transform: rotate(153deg); }

.reference-market-node-3 { left: 7%; bottom: 14%; }
.reference-market-node-3::after { left: 100%; top: 50%; transform: rotate(-24deg); }

.reference-market-node-4 { right: 7%; bottom: 13%; }
.reference-market-node-4::after { right: 100%; top: 50%; transform: rotate(205deg); }

.reference-market-node-5 { left: 50%; bottom: 4%; transform: translateX(-50%); }
.reference-market-node-5::after { left: 50%; bottom: 100%; width: 68px; transform: rotate(-90deg); }

.reference-market-symbol {
    display: grid;
    place-items: center;
    width: 31px;
    aspect-ratio: 1;
    border: 1px solid rgba(79,141,255,.24);
    border-radius: 7px;
    color: #71a1fb;
    background: rgba(79,141,255,.055);
    font-size: 13px;
}

.reference-market-node > div {
    display: grid;
    gap: 2px;
}

.reference-market-node strong {
    color: #d8dee8;
    font-size: 12px;
}

.reference-market-node small {
    color: #657286;
    font-size: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.reference-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #253247;
    border-radius: 12px;
    background: #253247;
}

.reference-feature-card {
    min-height: 320px;
    padding: 34px 36px 30px;
    background: #0c131d;
    transition: background .22s ease;
}

.reference-feature-card:hover {
    background: #101926;
}

.reference-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reference-feature-index {
    color: #576477;
    font-size: 10px;
    letter-spacing: .13em;
}

.reference-feature-icon {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    border: 1px solid rgba(79,141,255,.24);
    border-radius: 9px;
    color: #6ea0ff;
    background: rgba(79,141,255,.06);
    font-size: 17px;
}

.reference-feature-card h3 {
    max-width: 430px;
    margin: 70px 0 14px;
    color: #edf1f6;
    font-size: 25px;
    font-weight: 560;
    letter-spacing: -.035em;
}

.reference-feature-card p {
    max-width: 470px;
    margin: 0;
    color: #8b96a7;
    font-size: 14px;
    line-height: 1.65;
}

.reference-feature-rule {
    width: 100%;
    height: 1px;
    margin-top: 34px;
    background: #253247;
}

.reference-feature-meta {
    display: block;
    margin-top: 15px;
    color: #5e6c80;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reference-tokenomics-layout {
    display: grid;
    grid-template-columns: 1fr .92fr;
    align-items: center;
    gap: 100px;
}

.reference-tokenomics-copy h2 {
    max-width: 660px;
}

.reference-token-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    overflow: hidden;
    border: 1px solid #263349;
    border-radius: 10px;
}

.reference-token-facts > div {
    min-height: 94px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 15px 19px;
    border-right: 1px solid #263349;
    background: rgba(11,18,28,.72);
}

.reference-token-facts > div:last-child {
    border-right: 0;
}

.reference-token-facts small {
    color: #667388;
    font-size: 9px;
    letter-spacing: .1em;
}

.reference-token-facts strong {
    color: #e8edf4;
    font-size: 18px;
    font-weight: 650;
}

.reference-token-utilities {
    margin-top: 28px;
    border-top: 1px solid #263349;
}

.reference-token-utilities > div {
    min-height: 72px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid #263349;
}

.reference-token-utilities > div > span {
    color: #5d93f6;
}

.reference-token-utilities > div > div {
    display: grid;
    gap: 3px;
}

.reference-token-utilities strong {
    color: #dce2eb;
    font-size: 13px;
}

.reference-token-utilities small {
    color: #788598;
    font-size: 11px;
}

.reference-token-note {
    margin: 20px 0 0;
    color: #657286;
    font-size: 10px;
    line-height: 1.55;
}

.reference-token-chart {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 220px;
    align-items: center;
    gap: 34px;
    min-height: 480px;
    padding: 36px;
    border: 1px solid #253247;
    border-radius: 12px;
    background:
        linear-gradient(rgba(82,103,135,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82,103,135,.055) 1px, transparent 1px),
        #0b121c;
    background-size: 48px 48px;
}

.reference-token-donut {
    position: relative;
    width: min(100%, 310px);
    aspect-ratio: 1;
    margin-inline: auto;
    border-radius: 50%;
    background:
        conic-gradient(
            #4f8dff 0 25%,
            #75a4fa 25% 45%,
            #355f9d 45% 65%,
            #273d61 65% 82%,
            #19283f 82% 100%
        );
    box-shadow: 0 0 65px rgba(79,141,255,.08);
}

.reference-token-donut::before {
    content: "";
    position: absolute;
    inset: 44px;
    border-radius: 50%;
    background: #0b121c;
    border: 1px solid #27364c;
}

.reference-token-donut-center {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 4px;
    text-align: center;
}

.reference-token-donut-center span {
    color: #eef2f7;
    font-size: 30px;
    font-weight: 720;
    letter-spacing: -.04em;
}

.reference-token-donut-center small {
    color: #647287;
    font-size: 9px;
    letter-spacing: .14em;
}

.reference-token-legend {
    display: grid;
    gap: 17px;
}

.reference-token-legend > div {
    display: grid;
    grid-template-columns: 11px 1fr auto;
    align-items: center;
    gap: 10px;
    color: #8591a2;
    font-size: 11px;
}

.reference-token-legend strong {
    color: #b7c0cd;
    font-size: 11px;
    font-weight: 570;
}

.reference-token-legend em {
    color: #6c788b;
    font-style: normal;
}

.reference-token-swatch {
    width: 8px;
    aspect-ratio: 1;
    border-radius: 2px;
}

.reference-token-swatch-1 { background: #4f8dff; }
.reference-token-swatch-2 { background: #75a4fa; }
.reference-token-swatch-3 { background: #355f9d; }
.reference-token-swatch-4 { background: #273d61; }
.reference-token-swatch-5 { background: #19283f; }

@media (max-width: 1120px) {
    .reference-overview-grid,
    .reference-tokenomics-layout {
        grid-template-columns: 1fr;
    }

    .reference-overview-copy {
        border-right: 0;
        border-bottom: 1px solid #253247;
    }

    .reference-tokenomics-layout {
        gap: 60px;
    }

    .reference-token-chart {
        max-width: 780px;
    }
}

@media (max-width: 760px) {
    .reference-overview-section,
    .reference-features-section,
    .reference-tokenomics-section {
        padding: 86px 0;
    }

    .reference-section-intro h2,
    .reference-tokenomics-copy h2 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .reference-overview-copy {
        padding: 36px 22px;
    }

    .reference-protocol-stats {
        grid-template-columns: 1fr;
    }

    .reference-market-map {
        min-height: 540px;
    }

    .reference-market-node {
        min-width: 132px;
        padding: 10px 12px;
    }

    .reference-market-node-1 { left: 3%; top: 10%; }
    .reference-market-node-2 { right: 3%; top: 12%; }
    .reference-market-node-3 { left: 3%; bottom: 13%; }
    .reference-market-node-4 { right: 3%; bottom: 12%; }

    .reference-feature-grid {
        grid-template-columns: 1fr;
    }

    .reference-feature-card {
        min-height: 280px;
        padding: 28px 22px;
    }

    .reference-feature-card h3 {
        margin-top: 52px;
    }

    .reference-token-facts {
        grid-template-columns: 1fr;
    }

    .reference-token-facts > div {
        border-right: 0;
        border-bottom: 1px solid #263349;
    }

    .reference-token-facts > div:last-child {
        border-bottom: 0;
    }

    .reference-token-chart {
        grid-template-columns: 1fr;
        padding: 26px 18px;
    }

    .reference-token-donut {
        width: 260px;
    }
}



/* =========================================================
   Reference fidelity completion
   Product, intelligence, roadmap, FAQ, footer, internal pages,
   plus project favicon/logo integration.
   ========================================================= */

.reference-brand-mark::before,
.reference-brand-mark::after,
.reference-brand-mark span::before {
    display: none !important;
}

.reference-brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    transform: none;
}

.reference-brand-mark img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.reference-product-section,
.reference-ai-section,
.reference-roadmap-section,
.reference-faq-section,
.reference-final-cta {
    position: relative;
    padding: 126px 0;
    border-bottom: 1px solid rgba(90, 108, 134, .18);
    background: #080d15;
}

.reference-product-section {
    background:
        radial-gradient(circle at 72% 32%, rgba(79, 141, 255, .05), transparent 32%),
        #080d15;
}

.reference-product-shell {
    display: grid;
    grid-template-columns: 154px 1fr;
    min-height: 690px;
    overflow: hidden;
    border: 1px solid #27354a;
    border-radius: 13px;
    background: #0a111b;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .2);
}

.reference-product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 15px;
    border-right: 1px solid #27354a;
    background: #080e16;
}

.reference-product-brand {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    margin: 0 0 24px 8px;
}

.reference-product-brand img {
    width: 36px;
    height: 36px;
}

.reference-product-sidebar span {
    display: flex;
    align-items: center;
    min-height: 39px;
    padding: 0 12px;
    border-radius: 8px;
    color: #69778a;
    font-size: 11px;
    font-weight: 620;
}

.reference-product-sidebar span.active {
    color: #dce4ef;
    background: rgba(79, 141, 255, .09);
    box-shadow: inset 2px 0 0 #4f8dff;
}

.reference-product-sidebar-spacer {
    flex: 1;
}

.reference-product-main {
    padding: 28px;
}

.reference-product-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reference-product-topbar small {
    color: #667489;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.reference-product-topbar h3 {
    margin: 5px 0 0;
    color: #edf2f8;
    font-size: 22px;
    font-weight: 580;
    letter-spacing: -.03em;
}

.reference-product-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reference-network-pill,
.reference-wallet-pill {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    border: 1px solid #29374c;
    border-radius: 7px;
    color: #738096;
    background: #0c141f;
    font-size: 9px;
    letter-spacing: .06em;
}

.reference-network-pill {
    color: #76a4fa;
}

.reference-product-ticker {
    display: grid;
    grid-template-columns: 1.2fr .9fr .7fr;
    gap: 1px;
    margin-top: 24px;
    border: 1px solid #263349;
    border-radius: 9px;
    overflow: hidden;
    background: #263349;
}

.reference-product-ticker > div {
    min-height: 72px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 14px 17px;
    background: #0c131d;
}

.reference-product-ticker small {
    color: #617084;
    font-size: 8px;
    letter-spacing: .1em;
}

.reference-product-ticker strong {
    color: #dce3ec;
    font-size: 14px;
    font-weight: 650;
}

.reference-positive {
    color: #6f9fff !important;
}

.reference-product-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    margin-top: 16px;
}

.reference-market-chart {
    position: relative;
    min-height: 365px;
    padding: 18px;
    border: 1px solid #263349;
    border-radius: 10px;
    background: #0a111a;
}

.reference-chart-toolbar {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 15px;
    display: flex;
    gap: 4px;
}

.reference-chart-toolbar span {
    display: grid;
    place-items: center;
    min-width: 28px;
    height: 23px;
    border-radius: 5px;
    color: #627084;
    font-size: 8px;
}

.reference-chart-toolbar span.active {
    color: #83acff;
    background: rgba(79, 141, 255, .09);
}

.reference-market-chart svg {
    width: 100%;
    height: 315px;
    margin-top: 18px;
}

.reference-grid-lines {
    fill: none;
    stroke: rgba(96, 116, 145, .13);
    stroke-width: 1;
}

.reference-product-area {
    fill: url(#productArea);
}

.reference-product-line {
    fill: none;
    stroke: #5e96ff;
    stroke-width: 2.2;
    filter: drop-shadow(0 0 6px rgba(79,141,255,.25));
}

.reference-order-card {
    min-height: 365px;
    padding: 17px;
    border: 1px solid #263349;
    border-radius: 10px;
    background: #0c131d;
}

.reference-order-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    border: 1px solid #263349;
    border-radius: 7px;
}

.reference-order-tabs span {
    min-height: 29px;
    display: grid;
    place-items: center;
    border-radius: 5px;
    color: #667388;
    font-size: 9px;
}

.reference-order-tabs span.active {
    color: #d9e1eb;
    background: #151f2d;
}

.reference-order-card label {
    display: block;
    margin-top: 18px;
}

.reference-order-card label small {
    color: #637086;
    font-size: 8px;
    letter-spacing: .09em;
}

.reference-order-card label > div {
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding: 0 13px;
    border: 1px solid #263349;
    border-radius: 8px;
    background: #09111a;
}

.reference-order-card label strong {
    color: #dfe6ef;
    font-size: 13px;
}

.reference-order-card label span {
    color: #647286;
    font-size: 13px;
}

.reference-order-switch {
    width: 32px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin: 10px auto -8px;
    border: 1px solid #2b3a50;
    border-radius: 50%;
    color: #76a4fb;
    background: #101925;
}

.reference-order-card button {
    width: 100%;
    min-height: 47px;
    margin-top: 20px;
    border: 0;
    border-radius: 7px;
    color: #07101e;
    background: #5590ff;
    font-weight: 780;
    opacity: .9;
}

.reference-order-card p {
    margin: 12px 0 0;
    color: #5e6b7d;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.reference-market-table {
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid #263349;
    border-radius: 9px;
}

.reference-market-table-head,
.reference-market-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 110px;
    align-items: center;
    min-height: 45px;
    padding: 0 15px;
    border-bottom: 1px solid #263349;
    font-size: 10px;
}

.reference-market-table-row:last-child {
    border-bottom: 0;
}

.reference-market-table-head {
    color: #59677a;
    background: #0b121c;
    font-size: 8px;
    letter-spacing: .09em;
}

.reference-market-table-row strong {
    color: #cbd4df;
    font-weight: 600;
}

.reference-market-table-row span {
    color: #728094;
}

.reference-market-table-row em {
    justify-self: end;
    color: #6f9fff;
    font-style: normal;
}

.reference-ai-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 50%, rgba(79, 141, 255, .08), transparent 29%),
        radial-gradient(circle at 82% 40%, rgba(66, 93, 148, .08), transparent 29%),
        #070c13;
}

.reference-ai-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 92px;
}

.reference-ai-copy h2 {
    margin: 0;
    color: #edf1f7;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 530;
    line-height: 1.04;
    letter-spacing: -.048em;
}

.reference-ai-copy > p:not(.reference-section-label) {
    max-width: 560px;
    margin: 23px 0 0;
    color: #8f9aab;
    font-size: 16px;
    line-height: 1.65;
}

.reference-ai-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
    border-top: 1px solid #263349;
    border-left: 1px solid #263349;
}

.reference-ai-stats > div {
    min-height: 90px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 15px;
    border-right: 1px solid #263349;
    border-bottom: 1px solid #263349;
}

.reference-ai-stats strong {
    color: #dfe6ef;
    font-size: 23px;
    font-weight: 680;
}

.reference-ai-stats span {
    color: #687588;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reference-ai-terminal {
    overflow: hidden;
    border: 1px solid #29374b;
    border-radius: 11px;
    background: #0a111a;
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.reference-ai-terminal-head {
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    border-bottom: 1px solid #29374b;
    color: #8d99ab;
    font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.reference-ai-terminal-head i {
    color: #6e9eff;
    font-size: 8px;
    font-style: normal;
    letter-spacing: .11em;
}

.reference-ai-terminal-body {
    padding: 8px 21px;
}

.reference-ai-prompt {
    min-height: 61px;
    display: grid;
    grid-template-columns: 33px 1fr auto;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #253247;
}

.reference-ai-prompt:last-child {
    border-bottom: 0;
}

.reference-ai-prompt > span {
    color: #4f5e72;
    font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.reference-ai-prompt strong {
    color: #b8c2d0;
    font-size: 11px;
    font-weight: 550;
}

.reference-ai-prompt em {
    color: #6f9fff;
    font-size: 8px;
    font-style: normal;
    letter-spacing: .09em;
}

.reference-ai-prompt em.disabled {
    color: #6a7585;
}

.reference-ai-wave {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 6px;
    padding: 20px 22px;
    border-top: 1px solid #29374b;
    background:
        linear-gradient(rgba(82,103,135,.06) 1px, transparent 1px),
        #09101a;
    background-size: 100% 29px;
}

.reference-ai-wave i {
    flex: 1;
    height: var(--signal-height);
    max-width: 13px;
    min-height: 8px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, rgba(79,141,255,.18), #5e96ff);
}

.reference-ai-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 58px;
    overflow: hidden;
    border: 1px solid #253247;
    border-radius: 10px;
    background: #253247;
}

.reference-ai-feature {
    min-height: 220px;
    padding: 26px;
    background: #0b121c;
}

.reference-ai-feature > span {
    display: grid;
    place-items: center;
    width: 37px;
    aspect-ratio: 1;
    border: 1px solid rgba(79,141,255,.24);
    border-radius: 8px;
    color: #72a1fa;
    background: rgba(79,141,255,.055);
}

.reference-ai-feature h3 {
    margin: 46px 0 10px;
    color: #dfe5ed;
    font-size: 17px;
    font-weight: 560;
}

.reference-ai-feature p {
    margin: 0;
    color: #778598;
    font-size: 12px;
    line-height: 1.6;
}

.reference-roadmap-section {
    background: #090e16;
}

.reference-roadmap-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 58px;
    border-top: 1px solid #29364a;
}

.reference-roadmap-step {
    position: relative;
    min-height: 330px;
    padding: 28px 28px 30px 0;
    border-right: 1px solid #29364a;
}

.reference-roadmap-step:not(:first-child) {
    padding-left: 28px;
}

.reference-roadmap-step:last-child {
    border-right: 0;
}

.reference-roadmap-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reference-roadmap-step-head > span {
    color: #59677b;
    font-size: 10px;
    letter-spacing: .12em;
}

.reference-roadmap-step-head em {
    padding: 5px 8px;
    border: 1px solid #2a394e;
    border-radius: 999px;
    color: #718098;
    font-size: 7px;
    font-style: normal;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reference-roadmap-step small {
    display: block;
    margin-top: 58px;
    color: #5e93f5;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reference-roadmap-step h3 {
    margin: 10px 0 13px;
    color: #e1e7ef;
    font-size: 20px;
    font-weight: 560;
}

.reference-roadmap-step p {
    margin: 0;
    color: #7c899b;
    font-size: 12px;
    line-height: 1.65;
}

.reference-roadmap-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #1e2a3b;
}

.reference-roadmap-line i {
    display: block;
    width: 46%;
    height: 100%;
    background: #4f8dff;
}

.reference-roadmap-step:nth-child(n+2) .reference-roadmap-line i {
    width: 12%;
    opacity: .45;
}

.reference-faq-section {
    background: #070c13;
}

.reference-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 94px;
}

.reference-faq-heading {
    position: sticky;
    top: 150px;
    align-self: start;
}

.reference-faq-heading h2 {
    margin: 0;
    color: #edf1f7;
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 530;
    line-height: 1.04;
    letter-spacing: -.048em;
}

.reference-faq-heading > p:not(.reference-section-label) {
    margin: 22px 0 0;
    color: #8895a6;
    font-size: 15px;
    line-height: 1.6;
}

.reference-faq-list {
    border-top: 1px solid #29364a;
}

.reference-faq-item {
    border-bottom: 1px solid #29364a;
}

.reference-faq-item button {
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: 40px 1fr 30px;
    align-items: center;
    gap: 14px;
    padding: 0;
    border: 0;
    color: #dbe2eb;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.reference-faq-number {
    color: #536174;
    font-size: 9px;
    letter-spacing: .1em;
}

.reference-faq-item button strong {
    font-size: 15px;
    font-weight: 560;
}

.reference-faq-item button i {
    display: grid;
    place-items: center;
    width: 28px;
    aspect-ratio: 1;
    border: 1px solid #29374c;
    border-radius: 50%;
    color: #6f9fff;
    font-style: normal;
    transition: transform .2s ease;
}

.reference-faq-item.is-open button i {
    transform: rotate(45deg);
}

.reference-faq-answer {
    padding-left: 54px;
}

.reference-faq-answer > p {
    color: #7f8c9e;
    font-size: 13px;
    line-height: 1.65;
}

.reference-faq-item.is-open .reference-faq-answer > p {
    padding: 0 45px 24px 0;
}

.reference-final-cta {
    padding-bottom: 140px;
    background:
        radial-gradient(circle at 50% 20%, rgba(79,141,255,.06), transparent 34%),
        #080d15;
}

.reference-final-panel {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
    padding: 62px;
    border: 1px solid #2a384c;
    border-radius: 12px;
    background:
        linear-gradient(130deg, rgba(79,141,255,.05), transparent 42%),
        #0d141e;
}

.reference-final-panel h2 {
    max-width: 760px;
    margin: 0;
    color: #eef2f7;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 530;
    line-height: 1.03;
    letter-spacing: -.048em;
}

.reference-final-panel > div > p:not(.reference-section-label) {
    max-width: 650px;
    margin: 22px 0 0;
    color: #8d98a8;
    font-size: 15px;
    line-height: 1.65;
}

.reference-final-actions {
    display: grid;
    gap: 10px;
    min-width: 180px;
}

.reference-final-primary,
.reference-final-secondary {
    min-width: 180px;
    min-height: 50px;
}

.reference-footer {
    padding: 70px 0 34px;
    background: #060a10;
}

.reference-footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(130px, .55fr));
    gap: 56px;
    padding-bottom: 50px;
    border-bottom: 1px solid #253247;
}

.reference-footer-brand > p {
    max-width: 430px;
    margin: 22px 0 16px;
    color: #788598;
    font-size: 12px;
    line-height: 1.6;
}

.reference-footer-tagline {
    color: #5f6d80;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reference-footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.reference-footer-column strong {
    margin-bottom: 6px;
    color: #aab5c4;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reference-footer-column a {
    color: #687689;
    font-size: 11px;
    transition: color .2s ease;
}

.reference-footer-column a:hover {
    color: #d5dde8;
}

.reference-footer-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 21px 0;
    border-bottom: 1px solid #253247;
}

.reference-footer-inline a {
    color: #657286;
    font-size: 10px;
}

.reference-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 23px;
    color: #536174;
    font-size: 9px;
    line-height: 1.5;
}

.reference-page-hero {
    padding: 205px 0 95px;
    border-bottom: 1px solid #27354a;
    background:
        radial-gradient(circle at 76% 20%, rgba(79,141,255,.07), transparent 30%),
        #080d15;
}

.reference-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 54px;
    color: #59677a;
    font-size: 9px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.reference-page-breadcrumb a {
    color: #6f9fff;
}

.reference-page-breadcrumb em {
    font-style: normal;
}

.reference-page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 100px;
}

.reference-page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #eef2f7;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 530;
    line-height: 1.02;
    letter-spacing: -.052em;
}

.reference-page-intro > p {
    margin: 0;
    color: #8f9aaa;
    font-size: 16px;
    line-height: 1.7;
}

.reference-page-intro > a {
    display: inline-flex;
    gap: 8px;
    margin-top: 25px;
    color: #dce4ee;
    font-size: 12px;
    font-weight: 620;
}

.reference-page-intro > a span {
    color: #6f9fff;
}

.reference-page-cards,
.reference-page-body {
    padding: 94px 0;
    border-bottom: 1px solid #27354a;
    background: #090e16;
}

.reference-page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #27354a;
    border-radius: 11px;
    background: #27354a;
}

.reference-page-card {
    min-height: 320px;
    padding: 30px;
    background: #0c131d;
}

.reference-page-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reference-page-card-top > span {
    color: #59677a;
    font-size: 9px;
    letter-spacing: .12em;
}

.reference-page-card-top i {
    display: grid;
    place-items: center;
    width: 39px;
    aspect-ratio: 1;
    border: 1px solid rgba(79,141,255,.24);
    border-radius: 8px;
    color: #71a1fb;
    background: rgba(79,141,255,.055);
    font-style: normal;
}

.reference-page-card h2 {
    margin: 76px 0 14px;
    color: #e4eaf1;
    font-size: 22px;
    font-weight: 560;
    letter-spacing: -.035em;
}

.reference-page-card p {
    margin: 0;
    color: #798699;
    font-size: 13px;
    line-height: 1.65;
}

.reference-page-body {
    background: #070c13;
}

.reference-page-body-grid {
    display: grid;
    grid-template-columns: .45fr 1.55fr;
    gap: 70px;
}

.reference-page-body .prose {
    max-width: 820px;
    color: #8591a2;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 1120px) {
    .reference-product-shell {
        grid-template-columns: 118px 1fr;
    }

    .reference-product-workspace,
    .reference-ai-layout,
    .reference-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .reference-ai-layout {
        gap: 58px;
    }

    .reference-roadmap-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-roadmap-step:nth-child(2) {
        border-right: 0;
    }

    .reference-roadmap-step:nth-child(n+3) {
        border-top: 1px solid #29364a;
    }

    .reference-faq-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .reference-faq-heading {
        position: static;
    }

    .reference-final-panel {
        grid-template-columns: 1fr;
    }

    .reference-final-actions {
        grid-template-columns: repeat(2, minmax(160px, 220px));
    }

    .reference-footer-top {
        grid-template-columns: 1.2fr repeat(2, .7fr);
    }

    .reference-footer-column:last-child {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    .reference-product-section,
    .reference-ai-section,
    .reference-roadmap-section,
    .reference-faq-section,
    .reference-final-cta {
        padding: 86px 0;
    }

    .reference-product-shell {
        grid-template-columns: 1fr;
    }

    .reference-product-sidebar {
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid #27354a;
    }

    .reference-product-brand {
        flex: 0 0 auto;
        margin: 0 10px 0 0;
    }

    .reference-product-sidebar span {
        flex: 0 0 auto;
    }

    .reference-product-sidebar-spacer {
        display: none;
    }

    .reference-product-main {
        padding: 17px;
    }

    .reference-product-topbar,
    .reference-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .reference-product-top-actions {
        width: 100%;
    }

    .reference-product-ticker {
        grid-template-columns: 1fr;
    }

    .reference-product-workspace {
        grid-template-columns: 1fr;
    }

    .reference-market-chart {
        min-height: 290px;
    }

    .reference-market-chart svg {
        height: 240px;
    }

    .reference-market-table-head,
    .reference-market-table-row {
        grid-template-columns: 1fr 1fr;
    }

    .reference-market-table-head span:last-child,
    .reference-market-table-row em {
        display: none;
    }

    .reference-ai-stats,
    .reference-ai-feature-row {
        grid-template-columns: 1fr;
    }

    .reference-roadmap-track {
        grid-template-columns: 1fr;
    }

    .reference-roadmap-step,
    .reference-roadmap-step:not(:first-child) {
        min-height: 260px;
        padding: 26px 0;
        border-right: 0;
        border-top: 1px solid #29364a;
    }

    .reference-roadmap-step:first-child {
        border-top: 0;
    }

    .reference-faq-item button {
        grid-template-columns: 28px 1fr 28px;
    }

    .reference-faq-answer {
        padding-left: 42px;
    }

    .reference-final-panel {
        min-height: 0;
        padding: 38px 22px;
    }

    .reference-final-panel h2 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .reference-final-actions {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .reference-final-primary,
    .reference-final-secondary {
        width: 100%;
        min-width: 0;
    }

    .reference-footer-top,
    .reference-page-card-grid,
    .reference-page-body-grid {
        grid-template-columns: 1fr;
    }

    .reference-footer-column:last-child {
        grid-column: auto;
    }

    .reference-footer-bottom {
        display: flex;
    }

    .reference-page-hero {
        padding: 165px 0 76px;
    }

    .reference-page-hero-grid {
        gap: 36px;
    }

    .reference-page-card {
        min-height: 270px;
    }

    .reference-page-card h2 {
        margin-top: 55px;
    }
}
