:root {
    --ink: #18222d;
    --deep: #1b2132;
    --surface: #252535;
    --orange: #fdad00;
    --green: #58bd7d;
    --white: #fff;
    --muted: #89919c;
    --line: #ffffff24;
    --dark-line: #18222d24;

    --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --mono: "IBM Plex Mono", "Courier New", Courier, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; min-width: 320px;
    background: var(--white); color: var(--ink);
    font-family: var(--sans);
    font-synthesis: none; text-rendering: optimizeLegibility; font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; background: none; border: 0; color: inherit; }
input, select, textarea, button { font-family: inherit; border-radius: 0; }
img, svg { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.site-shell { background: var(--white); color: var(--ink); overflow-x: clip; }

.imp-bar {
    display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
    padding: 8px 16px; background: #fdad00; color: #18222d;
    font-size: 13px; font-weight: 500; text-align: center; position: relative; z-index: 60;
}
.imp-bar form { margin: 0; }
.imp-bar button {
    background: #18222d; color: #fff; border: 0; padding: 5px 12px;
    font-size: 12px; font-weight: 600; cursor: pointer; border-radius: 2px;
}
.section-wrap { width: min(1180px, 100% - 96px); margin: 0 auto; }

.eyebrow, .section-index, .stage-label, .signal-kicker, .fact-label, .bonus-label,
.join-meta, .visual-topline, .visual-foot, .hero-bottom, .site-footer, .footer-copy,
.page-index, .side-label, .data-head, .cell-mono {
    letter-spacing: .12em; text-transform: uppercase; font-family: var(--mono);
}

.site-header {
    position: fixed; top: 0; left: 0; z-index: 20;
    width: 100%; min-height: 76px; display: flex; flex-wrap: wrap; align-items: center;
    padding: 12px 48px; color: var(--white);
}

.site-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(15, 21, 30, .9);
    border-bottom: 1px solid #ffffff14;
    backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
    opacity: 0; transition: opacity .4s ease;
}
.site-header.is-scrolled::before { opacity: 1; }
body.page-solid .site-header { position: sticky; }
body.page-solid .site-header::before { opacity: 1; }
.brand { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.brand-mark { position: relative; display: inline-flex; align-items: flex-end; gap: 3px; width: 21px; height: 20px; }
.brand-mark i { display: block; width: 5px; background: var(--orange); transform: skew(-21deg); }
.brand-mark i:first-child { height: 9px; opacity: .65; }
.brand-mark i:nth-child(2) { height: 15px; }
.brand-mark i:last-child { height: 20px; background: var(--green); }
.brand-logo { width: 22px; height: 22px; display: inline-flex; }
.brand-logo svg { width: 100%; height: 100%; display: block; }
.brand-word { font-size: 14px; font-weight: 700; letter-spacing: .2em; }
.brand-tag {
    font-family: var(--mono); font-size: 7px; letter-spacing: .13em; color: #fff9;
    border-left: 1px solid #ffffff4d; margin-left: 4px; padding-left: 15px;
}
.main-nav { position: relative; order: 1; flex-basis: 100%; display: flex; align-items: center; justify-content: center; gap: 26px; margin: 10px 0 0; padding-top: 12px; border-top: 1px solid #ffffff14; }
.main-nav a {
    position: relative; font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
    text-transform: uppercase; color: #ffffffb3; transition: color .25s; padding: 4px 0;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.nav-underline {
    position: absolute; bottom: 0; left: 0; height: 1.5px; width: 0; opacity: 0;
    background: var(--orange); pointer-events: none;
    transition: transform .34s cubic-bezier(.4, .05, .15, 1), width .34s cubic-bezier(.4, .05, .15, 1), opacity .25s;
}
.header-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-auth { display: inline-flex; align-items: center; gap: 18px; margin-left: 18px; }
.header-cta, .header-login { white-space: nowrap; }
.lang-select { position: relative; }
.lang-current {
    display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
    background: transparent; border: 1px solid #ffffff30; padding: 6px 9px; color: #ffffffcc;
    font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
    transition: border-color .2s, color .2s;
}
.lang-current:hover { border-color: #ffffff5c; color: #fff; }
.lang-caret { opacity: .7; transition: transform .25s; }
.lang-select.is-open .lang-caret { transform: rotate(180deg); }
.lang-flag { width: 21px; height: 15px; object-fit: cover; display: block; box-shadow: 0 0 0 1px #00000021; flex: none; }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 90; margin: 0;
    display: none; flex-direction: column; width: 232px; max-height: 340px; overflow-y: auto;
    background: #10161f; border: 1px solid #ffffff1f; box-shadow: 0 26px 60px -20px #000000cf;
}
.lang-select.is-open .lang-menu { display: flex; }
.lang-opt {
    display: flex; align-items: center; gap: 10px; width: 100%; cursor: pointer; text-align: left;
    background: none; border: 0; border-bottom: 1px solid #ffffff0f; padding: 10px 13px; color: #ffffffb3;
    transition: background .16s, color .16s;
}
.lang-opt:last-child { border-bottom: 0; }
.lang-opt:hover { background: #ffffff0d; color: #fff; }
.lang-opt.is-current { color: var(--orange); }
.lang-name { flex: 1; min-width: 0; font-size: 12.5px; font-weight: 300; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lang-opt-code { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff4d; flex: none; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .lang-opt, html[dir="rtl"] .lang-current { text-align: right; }
.menu-button { display: none; color: var(--white); }

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 23px;
    min-height: 52px; padding: 0 19px; border: 1px solid transparent;
    font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
    transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover { background: #ffc23d; }
.button-ghost { border-color: var(--dark-line); color: var(--ink); }
.button-ghost:hover { background: #18222d0d; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #24313f; }
.button-line-light { border-color: #ffffff3d; color: var(--white); }
.button-line-light:hover { background: #ffffff14; }
.button-sm { min-height: 38px; gap: 12px; padding: 0 14px; font-size: 9px; }
.button-block { width: 100%; }
.button[disabled] { opacity: .45; pointer-events: none; }
.text-link, .arrow-button {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
    transition: color .25s, gap .25s;
}
.text-link { color: #ffffffb3; }
.text-link:hover, .arrow-button:hover { color: var(--orange); gap: 17px; }
.arrow-button { color: var(--ink); }
.arrow-button.muted { color: #18222d94; }
.on-light .text-link { color: #18222d94; }

.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 27px; font-size: 10px; line-height: 1.4; color: var(--orange); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px #58bd7d1f; }

.hero-section {
    position: relative; isolation: isolate; display: grid; grid-template-columns: 46fr 54fr;
    column-gap: clamp(28px, 3.4vw, 64px);
    align-items: center; min-height: 760px; padding: 120px 7.4% 100px;
    background: var(--ink); color: var(--white);
}
.hero-section::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(circle at 74% 49%, #fdad001f, #0000 25%),
                linear-gradient(111deg, #18222d, #1b2132 51%, #252535);
}
.hero-section::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 190px; z-index: -1;
    pointer-events: none; background: linear-gradient(#0000, #18222da8);
}
.hero-copy { position: relative; z-index: 2; max-width: 640px; padding-top: 20px; }
.hero-copy h1 { max-width: 650px; font-size: clamp(52px, 6vw, 91px); font-weight: 300; line-height: .96; letter-spacing: -.065em; }
.hero-copy h1 em { font-style: normal; color: var(--green); }
.hero-description { max-width: 430px; margin: 32px 0 0; color: #ffffffad; font-size: 16px; font-weight: 300; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 29px; margin-top: 39px; }

.hero-visual { position: relative; min-width: 0; }
.network-visual { position: relative; width: min(100%, 690px); margin-left: auto; padding: 26px 0 22px 30px; color: #ffffff8c; }
.network-visual::before, .network-visual::after { content: ""; position: absolute; pointer-events: none; }
.network-visual::before { left: 0; top: 46px; bottom: 44px; width: 1px; background: linear-gradient(#0000, #ffffff40, #0000); }
.network-visual::after { right: 0; top: 46px; width: 58%; height: 1px; background: linear-gradient(90deg, #fff3, #0000); }
.visual-topline, .visual-foot { display: flex; justify-content: space-between; font-size: 9px; color: #ffffff6b; }
.visual-live { display: inline-flex; align-items: center; gap: 7px; color: var(--green); }
.visual-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.network-svg { display: block; width: 100%; margin: 17px 0 8px; overflow: visible; }
.orbit ellipse { stroke: #ffffff21; stroke-width: 1px; stroke-dasharray: 2 12; }
.orbit-one { transform-origin: 50%; animation: spin 28s linear infinite; }
.network-lines path { stroke-width: 1px; stroke-dasharray: 1 7; animation: dash 16s linear infinite; }
.network-points circle { fill: var(--orange); animation: pulse 2.8s ease-in-out infinite; }
.network-points circle:nth-child(2n) { fill: var(--green); animation-delay: -1s; }
.core-node circle:first-child { fill: #fdad0009; stroke: #fdad0066; stroke-width: 1px; stroke-dasharray: 2 7; transform-origin: 380px 320px; animation: spinReverse 22s linear infinite; }
.core-node circle:nth-child(2) { stroke: #fdad00a6; stroke-width: 1px; }
.core-node circle:nth-child(3) { stroke: #fdad0057; stroke-width: 1px; }
.crosshair { stroke: #ffffff45; stroke-width: 1px; }
.hero-bottom {
    position: absolute; bottom: 31px; left: 7.4%; right: 7.4%;
    display: flex; justify-content: space-between; align-items: center; font-size: 9px; color: #ffffff61;
}
.hero-bottom span:nth-child(2) { display: flex; align-items: center; gap: 8px; color: #fff9; }
.hero-bottom span:last-child { margin-left: auto; }
.hero-bottom b { color: var(--orange); font-weight: 400; }

.section-index { font-size: 10px; color: var(--orange); }
.section-index span { display: block; margin-top: 10px; font-size: 9px; line-height: 1.6; color: #18222d7a; }
.on-dark .section-index span { color: #ffffff6b; }

.intro-section { position: relative; display: grid; grid-template-columns: 16% 1fr; gap: 4%; padding: 152px 0 155px; }
.intro-content h2, .stages-heading h2, .rules-intro h2, .early-layout h2, .join-content h2 {
    font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: .99; letter-spacing: -.06em;
}
.intro-content h2 span, .stages-heading h2 span, .rules-intro h2 span, .early-layout h2 span { color: var(--green); }
.intro-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 730px; margin-top: 52px; }
.intro-body p, .fact-copy p, .bonus-content p, .early-lead { margin: 0; color: #18222da6; font-size: 15px; font-weight: 300; line-height: 1.75; }
.intro-body p + p { margin-top: 19px; }
.intro-body strong, .fact-copy strong, .bonus-content strong { color: var(--ink); font-weight: 500; }

.signal-section {
    position: relative; overflow: hidden; color: var(--white);

    background:
        radial-gradient(58% 120% at 86% 18%, rgba(253, 173, 0, .16), transparent 56%),
        radial-gradient(52% 130% at 10% 88%, rgba(88, 189, 125, .12), transparent 56%),
        linear-gradient(118deg, #171f2c 0%, #212a3c 52%, #2b3247 100%);
}
.signal-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 19% 1fr 22%; align-items: center; min-height: 355px; padding: 88px 0; }
.signal-kicker { display: flex; align-items: center; gap: 8px; font-size: 9px; color: var(--orange); }
.signal-statement { margin: 0; font-size: clamp(32px, 4vw, 57px); font-weight: 250; line-height: 1.04; letter-spacing: -.045em; }
.signal-statement span { color: var(--green); }
.signal-mark { display: flex; flex-direction: column; align-items: flex-start; justify-self: end; }
.signal-mark span { font-size: clamp(63px, 8vw, 110px); font-weight: 250; line-height: .8; letter-spacing: -.09em; color: var(--orange); text-shadow: 0 0 48px #fdad0059; }
.signal-mark small { margin-top: 18px; font-family: var(--mono); font-size: 9px; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; color: #ffffff7a; }

.stages-section { padding: 143px 0 150px; }
.stages-section > .section-index, .rules-section > .section-index, .early-section > .section-index { margin-bottom: 58px; }
.stages-heading { display: grid; grid-template-columns: 58% 28%; justify-content: space-between; align-items: center; margin-bottom: 76px; }
.stages-heading p { align-self: center; }
.stages-heading p, .rules-intro p { margin: 0 0 4px; color: #18222d8c; font-size: 14px; font-weight: 300; line-height: 1.7; }
.stage-list { border-top: 1px solid var(--dark-line); }
.stage-row { display: grid; grid-template-columns: 13% 1fr 28%; gap: 5%; padding: 48px 0 53px; border-bottom: 1px solid var(--dark-line); }
.stage-number { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; color: var(--orange); }
.stage-label { margin: 0 0 20px; font-size: 9px; color: #18222d78; }
.stage-main h3 { font-size: clamp(35px, 4vw, 57px); font-weight: 350; line-height: 1; letter-spacing: -.055em; }
.stage-main h3 i { font-style: normal; color: var(--green); }
.stage-text { max-width: 500px; margin: 24px 0 28px; color: #18222da3; font-size: 14px; font-weight: 300; line-height: 1.75; }
.stage-aside {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding-left: 31px; border-left: 1px solid var(--dark-line);
    font-family: var(--mono); font-size: 9px; line-height: 1.55; letter-spacing: .09em; text-transform: uppercase; color: #18222d8c;
}
.stage-big { margin-bottom: 9px; font-family: var(--sans); font-size: clamp(38px, 4vw, 61px); font-weight: 250; line-height: .9; letter-spacing: -.08em; color: var(--orange); }
.stage-big.green, .green-text { color: var(--green); }
.stage-reward { display: flex; align-items: baseline; gap: 7px; margin-top: 35px; font-family: var(--sans); font-size: 23px; letter-spacing: -.04em; color: var(--orange); }
.stage-reward b { color: #18222d59; font-size: 15px; font-weight: 300; }
.stage-reward small { font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; color: #18222d80; }

.facts-section { background: var(--ink); color: var(--white); }
.facts-grid { display: grid; grid-template-columns: 18% 1fr 29%; align-items: center; min-height: 304px; padding: 88px 0; }
.fact-label { display: flex; flex-direction: column; align-self: start; gap: 9px; padding-top: 40px; font-size: 9px; line-height: 1.5; color: #ffffff6b; }
.fact-label span:first-child { color: var(--orange); }
.fact-hero { display: flex; align-items: baseline; gap: 20px; }
.fact-number { font-size: clamp(72px, 10vw, 142px); font-weight: 250; line-height: .7; letter-spacing: -.1em; color: var(--orange); white-space: nowrap; }
.fact-unit { font-family: var(--mono); font-size: 9px; line-height: 1.6; letter-spacing: .1em; color: #ffffff78; }
.fact-copy { padding-left: 31px; border-left: 1px solid var(--line); }
.fact-copy p { color: #ffffffa1; font-size: 14px; }
.fact-copy strong { color: var(--white); }
.fact-copy .text-link { margin-top: 25px; color: var(--orange); }

.rules-section { padding: 145px 0 155px; }
.rules-intro { display: grid; grid-template-columns: 58% 28%; justify-content: space-between; align-items: end; margin-bottom: 74px; }
.rules-list { border-top: 1px solid var(--dark-line); }
.rule-line { display: grid; grid-template-columns: 9% 28% 1fr; align-items: center; gap: 2%; min-height: 94px; border-bottom: 1px solid var(--dark-line); }
.rule-number { font-family: var(--mono); font-size: 10px; color: var(--orange); }
.rule-line h3 { font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.rule-line p { margin: 0; color: #18222d91; font-size: 13px; font-weight: 300; line-height: 1.5; }

.bonus-section {
    position: relative; overflow: hidden; color: var(--white);
    background: radial-gradient(80% 130% at 84% 12%, #27354e, transparent 56%), var(--deep);
}

.bonus-orbit { position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; border: 1px solid; top: 50%; translate: 0 -50%; }
.bonus-orbit-one { width: 664px; height: 664px; right: -184px; border-color: #58bd7d26; }
.bonus-orbit-two { width: 428px; height: 428px; right: -62px; border-color: #fdad0040; border-style: dashed; animation: sigSpinBonus 120s linear infinite; }
@keyframes sigSpinBonus { to { transform: rotate(360deg); } }
@keyframes orbitDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-22px, 16px) scale(1.05); } }
.bonus-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 18% 44% 1fr; gap: 5%; align-items: center; min-height: 535px; padding: 108px 0; }
.bonus-label { display: flex; align-items: center; align-self: start; gap: 9px; padding-top: 76px; font-size: 9px; line-height: 1.5; color: var(--green); }
.bonus-content h2 { margin: 0 0 36px; font-size: clamp(52px, 6vw, 86px); font-weight: 250; line-height: .9; letter-spacing: -.07em; }
.bonus-content h2 em { font-style: normal; color: var(--orange); }
.bonus-content p { max-width: 440px; margin: 0 0 17px; color: #ffffffa3; font-size: 14px; line-height: 1.7; }
.bonus-content strong { color: var(--white); }
.bonus-amount { display: flex; flex-direction: column; align-items: flex-start; justify-self: end; padding-right: 13%; }
.bonus-amount span { font-size: clamp(125px, 17vw, 245px); font-weight: 200; line-height: .7; letter-spacing: -.13em; color: var(--orange); text-shadow: 0 0 80px #fdad0047; }
.bonus-amount b { margin-top: 26px; font-family: var(--mono); font-size: 13px; font-weight: 400; letter-spacing: .2em; color: var(--green); }
.bonus-amount small { margin-top: 7px; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff6e; }

.early-section { padding: 147px 0 155px; }
.early-layout { display: grid; grid-template-columns: 48% 45%; justify-content: space-between; }
.early-lead { max-width: 385px; margin-top: 47px; }
.benefit-list { border-top: 1px solid var(--dark-line); }
.benefit-item { display: grid; grid-template-columns: 10% 1fr; align-items: center; gap: 4%; min-height: 64px; border-bottom: 1px solid var(--dark-line); }
.benefit-item span { font-family: var(--mono); font-size: 9px; color: var(--orange); }
.benefit-item p { margin: 0; font-size: 13px; font-weight: 400; }

.join-section { position: relative; min-height: 760px; padding: 32px 0 140px; }
.join-rule { width: 100%; height: 1px; background: var(--dark-line); }
.join-meta, .join-footer { display: flex; justify-content: space-between; font-size: 9px; color: #18222d6b; }
.join-meta { margin-top: 21px; }
.join-meta span:first-child { color: var(--orange); }
.join-content { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 750px; margin: 117px auto 0; }
.join-content .eyebrow { margin-bottom: 25px; }
.join-content h2 { font-size: clamp(58px, 8vw, 110px); }
.join-content h2 em { font-style: normal; color: var(--green); }
.join-content > p:not(.eyebrow) { max-width: 490px; margin: 34px 0 35px; color: #18222d94; font-size: 15px; font-weight: 300; line-height: 1.7; }
.join-content .button { min-width: 235px; }
.join-footer { position: absolute; bottom: 32px; left: 0; right: 0; }
.join-footer span:last-child { color: var(--green); }

.site-footer { display: flex; align-items: center; gap: 32px; min-height: 87px; padding: 0 48px; background: var(--ink); color: #ffffff80; font-size: 9px; margin-top: 48px; }
.footer-brand .brand-word { color: var(--white); }
.footer-copy { margin-left: auto; font-size: 9px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes dash { to { stroke-dashoffset: -70px; } }
@keyframes pulse { 50% { opacity: .5; } }
@keyframes revealUp { 0% { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes revealFade { 0% { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.reveal-up { animation: revealUp .8s .15s both; }
.reveal-fade { animation: revealFade 1.2s .25s both; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

.panel { position: relative; width: min(100%, 530px); margin: 0 auto; background: var(--white); color: var(--ink); padding: 52px 54px 55px; box-shadow: 0 24px 80px #0000004d; border: 1px solid var(--dark-line); }
.panel h1, .panel h2 { margin: 0; font-size: 46px; font-weight: 300; line-height: .94; letter-spacing: -.07em; }
.panel h1 em, .panel h2 em { font-style: normal; color: var(--green); }
.panel-intro { margin: 22px 0 34px; color: #18222d94; font-size: 14px; line-height: 1.6; }
.field { margin-top: 18px; }
.field label, .form-label {
    display: block; margin-bottom: 8px; font-family: var(--mono); font-size: 9px;
    letter-spacing: .1em; text-transform: uppercase; color: #18222d8f;
}
input[type=text], input[type=password], input[type=email], input[type=number], textarea, select.form-control {
    display: block; width: 100%; height: 45px; padding: 0 13px; margin: 0;
    background: #fbfbfa; border: 1px solid var(--dark-line); border-radius: 0; outline: 0;
    color: var(--ink); font-family: var(--sans); font-size: 14px; letter-spacing: 0; text-transform: none;
    transition: border .2s, box-shadow .2s;
}
textarea { height: auto; padding: 12px 13px; line-height: 1.6; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px #fdad001f; }
input::placeholder, textarea::placeholder { color: #18222d52; }
.errorlist { margin: 8px 0 0; color: #c0392b; font-size: 12px; }
.helptext { margin-top: 8px; color: #18222d85; font-size: 12px; line-height: 1.5; }
.consent { display: flex; align-items: center; gap: 9px; margin-top: 20px; color: #18222d85; font-size: 11px; }
.consent input { accent-color: var(--orange); width: auto; height: auto; }
.success-icon { display: grid; place-items: center; width: 53px; height: 53px; margin-bottom: 38px; border-radius: 50%; background: #58bd7d26; color: var(--green); }

.auth-main { display: grid; place-items: center; min-height: calc(100vh - 84px - 87px); padding: 70px 20px 90px; background: #f4f4f2; }
.auth-links { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--dark-line); display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d8f; }
.auth-links a { color: var(--ink); }
.auth-links a:hover { color: var(--orange); }
.auth-actions { margin-top: 10px; display: flex; flex-direction: column; gap: 12px; }
.preset-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }

.messages { width: min(1180px, 100% - 96px); margin: 24px auto 0; display: flex; flex-direction: column; gap: 8px; }
.alert { padding: 13px 16px; border: 1px solid var(--dark-line); border-left-width: 2px; font-size: 13px; background: #fbfbfa; }
.alert-success { border-left-color: var(--green); }
.alert-error, .alert-danger { border-left-color: #c0392b; }
.alert-warning { border-left-color: var(--orange); }
.alert-info { border-left-color: var(--ink); }

.page-main { padding: 56px 0 90px; }
.app-shell { display: grid; grid-template-columns: 210px 1fr; gap: 64px; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.side-top { display: block; }
.cab-toggle {
    display: none; flex: none; width: 42px; height: 42px; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    background: none; border: 1px solid var(--dark-line); cursor: pointer;
}
.cab-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.side-label { font-size: 9px; color: #18222d7a; margin-bottom: 18px; }
.side-nav { display: flex; flex-direction: column; border-top: 1px solid var(--dark-line); }
.side-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0; border-bottom: 1px solid var(--dark-line);
    font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
    color: #18222d8c; transition: color .25s, padding .25s;
}
.side-nav a:hover { color: var(--ink); padding-left: 5px; }
.side-nav a.active { color: var(--orange); }
.side-nav a.active b { color: var(--orange); }
.side-nav a b { margin-left: auto; font-weight: 400; color: #18222d40; font-size: 9px; }
.nav-ic { flex: none; width: 17px; height: 17px; display: inline-flex; opacity: .7; }
.nav-ic svg { width: 100%; height: 100%; }
.side-nav a:hover .nav-ic, .side-nav a.active .nav-ic { opacity: 1; }
.side-nav a:last-child { border-bottom: 0; }
.side-foot { margin-top: 18px; padding-top: 0; border-top: 0; }
.side-foot .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d7a; }
.side-foot .val { margin-top: 8px; font-size: 27px; font-weight: 300; letter-spacing: -.05em; color: var(--orange); }

.page-index { font-size: 10px; color: var(--orange); margin-bottom: 14px; }
.page-index span { color: #18222d7a; }
.page-head { margin-bottom: 44px; }
.page-head h1 { font-size: 48px; font-weight: 300; line-height: 1; letter-spacing: -.055em; }
.page-head .sub { margin-top: 16px; color: #18222d8c; font-size: 14px; font-weight: 300; }
.page-head .sub .sub-em { color: var(--ink); font-weight: 500; }

.balance-block { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; padding: 34px 0 30px; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.balance-block .lbl { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #18222d7a; }
.balance-block .amount { margin-top: 12px; font-size: clamp(56px, 8vw, 96px); font-weight: 250; line-height: .8; letter-spacing: -.09em; color: var(--orange); }
.balance-actions { display: flex; gap: 12px; }

.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--dark-line); }
.data-grid-2 { grid-template-columns: repeat(2, 1fr); }
.data-cell { padding: 26px 0; border-bottom: 1px solid var(--dark-line); }
.data-cell + .data-cell { border-left: 1px solid var(--dark-line); padding-left: 26px; }
.data-cell .k { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #18222d7a; }
.data-cell .v { margin-top: 12px; font-size: 34px; font-weight: 300; letter-spacing: -.05em; }
.data-cell .v.orange { color: var(--orange); }
.data-cell .v.green { color: var(--green); }
.data-cell .v.small { font-size: 19px; letter-spacing: -.02em; }

.block-title { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 60px 0 22px; }
.block-title h2 { font-size: 26px; font-weight: 400; letter-spacing: -.04em; }

.copybox { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fbfbfa; border: 1px solid var(--dark-line); }
.copybox + .data-grid { border-top: 0; margin-top: 24px; }
.copybox code { flex: 1; font-family: var(--mono); font-size: 12px; word-break: break-all; color: var(--ink); }

table { width: 100%; border-collapse: collapse; }
thead th {
    padding: 0 0 12px; text-align: left; border-bottom: 1px solid var(--dark-line);
    font-family: var(--mono); font-size: 9px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: #18222d7a;
}
tbody td { padding: 17px 0; border-bottom: 1px solid var(--dark-line); font-size: 13px; font-weight: 300; color: #18222dc7; overflow-wrap: anywhere; }
tbody tr:hover td { color: var(--ink); }
tr.row-link { cursor: pointer; transition: background .18s; }
tr.row-link:hover { background: #fdad0008; }
tr.row-link:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }
tr.row-link td:first-child { position: relative; }
td.num { font-size: 14px; letter-spacing: -.02em; }
.pos { color: var(--green); }
.neg { color: #c0392b; }
.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 9px; border: 1px solid var(--dark-line); }
.tag-orange { color: var(--orange); border-color: #fdad0066; }
.tag-green { color: var(--green); border-color: #58bd7d66; }
.tag-muted { color: #18222d8c; }


.empty-note { padding: 40px 0; color: #18222d7a; font-size: 13px; font-weight: 300; }

.thread { border-top: 1px solid var(--dark-line); }
.msg { padding: 24px 0; border-bottom: 1px solid var(--dark-line); }
.msg .who { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d7a; }
.msg .who b { color: var(--ink); font-weight: 400; }
.msg.staff .who b { color: var(--orange); }
.msg .body { margin-top: 12px; font-size: 14px; font-weight: 300; line-height: 1.7; white-space: pre-wrap; }

.creds-row { padding: 18px 0; border-bottom: 1px solid var(--dark-line); }
.creds-row .k { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d8f; margin-bottom: 8px; }

.toast-stack {
    position: fixed; right: 26px; bottom: 26px; z-index: 400;
    display: flex; flex-direction: column; gap: 12px; pointer-events: none;
    perspective: 900px;
}
.toast {
    position: relative; overflow: hidden; pointer-events: auto;
    display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
    width: 372px;

    padding: 16px 20px 16px 18px;
    background: linear-gradient(118deg, #18222d 0%, #1b2132 58%, #252535 100%);
    box-shadow: 0 30px 70px -18px #000000c2, 0 0 0 1px #fdad0014 inset;
    opacity: 0; transform: translateY(10px) translateX(22px) scale(.97);
    filter: blur(5px);
    transition: opacity .72s cubic-bezier(.22,.61,.24,1),
                transform .72s cubic-bezier(.22,.61,.24,1),
                filter .5s ease-out;
}
.toast.is-in { opacity: 1; transform: none; filter: none; }
.toast.is-out {
    opacity: 0; transform: translateX(16px) scale(.98); filter: blur(3px);
    transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}

.toast-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 12% 50%, #fdad0026, transparent 52%);
}

.toast-scan {
    position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; pointer-events: none; opacity: 0;
    background: linear-gradient(100deg, transparent, #ffffff14 48%, transparent);
    transform: skewX(-18deg);
}
.toast.is-in .toast-scan { opacity: 1; animation: toastScan 1.35s .42s cubic-bezier(.3,.6,.3,1) 1; }
@keyframes toastScan { to { left: 130%; } }

.toast > .toast-id, .toast > .toast-body { position: relative; z-index: 1; }

.toast-id {
    width: 46px; height: 46px; flex: none; display: grid; place-items: center;
    background: #0d141d; border: 1px solid #ffffff1f;
    box-shadow: 0 0 0 3px #fdad000f;
}
.toast-id svg { width: 30px; height: 30px; display: block; image-rendering: pixelated; }

.toast-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.toast-kicker {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
}
.toast-idx {
    font-family: var(--mono); font-size: 8px; letter-spacing: .1em; color: #ffffff5c;
    border: 1px solid #ffffff1f; padding: 3px 7px;
}
.toast-login {
    margin-top: 7px; font-family: var(--mono); font-size: 15px; letter-spacing: .04em;
    color: #fff; font-weight: 500;
}
.toast-sub { margin-top: 5px; font-size: 11.5px; font-weight: 300; color: #ffffff8c; }
.toast-sub b { color: #fff; font-weight: 500; font-variant-numeric: tabular-nums; }
.toast-bonus {
    display: flex; align-items: center; gap: 7px; margin-top: 9px; padding-top: 9px;
    border-top: 1px solid #ffffff14;
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff6b;
}
.toast-bonus i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }
.toast-bonus b { color: var(--green); font-weight: 500; }

.toast-timer {
    position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
    background: linear-gradient(90deg, var(--orange), #ffc23d);
    transform-origin: left; transform: scaleX(1);
}
.toast.is-in .toast-timer { animation: toastTimer 7.2s linear forwards; }
@keyframes toastTimer { to { transform: scaleX(0); } }

.toast .ticks::before, .toast .ticks::after { width: 7px; height: 7px; }

@media (max-width: 760px) {
    .toast-stack { right: 12px; left: 12px; bottom: 12px; }
    .toast { width: auto; }
}

.inviter-card {
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
    margin: 0 0 26px; padding: 14px 16px;
    background: linear-gradient(118deg, #18222d, #1b2132 70%, #252535);
    border: 1px solid #ffffff1f; color: #fff;
}
.inviter-card::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 10% 50%, #58bd7d1f, transparent 55%);
}
.inviter-card > * { position: relative; z-index: 1; }
.inviter-card .avatar { background: #0d141d; border-color: #ffffff1f; }
.ic-k {
    display: inline-flex; align-items: center; gap: 7px; line-height: 1;
    font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--green);
}
.ic-login { margin-top: 7px; font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: .04em; line-height: 1.1; }
.ic-sub { margin-top: 4px; font-size: 11px; font-weight: 300; color: #ffffff8c; }
.ic-code {
    font-family: var(--mono); font-size: 9px; letter-spacing: .12em; color: var(--orange);
    border: 1px solid #fdad0059; padding: 5px 8px; align-self: start;
}

.avatar {
    display: inline-grid; place-items: center; flex: none; padding: 5px;
    background: var(--ink); border: 1px solid var(--dark-line);
}
.avatar .idc { display: block; }
.avatar-xs { padding: 3px; }
.avatar-lg { padding: 7px; box-shadow: 0 0 0 3px #fdad000f; }
.side-user { display: flex; align-items: center; gap: 11px; margin-bottom: 26px; }
.side-user-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.side-user-meta b {
    font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .04em;
    overflow: hidden; text-overflow: ellipsis;
}
.side-user-meta i {
    display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-top: 5px;
    font-style: normal; font-family: var(--mono); font-size: 8px; font-weight: 500; letter-spacing: .18em;
    text-transform: uppercase; color: #18222d85;
}
.side-user-meta i svg { width: 12px; height: 12px; flex: none; color: #18222d6b; }
.side-user-meta i.is-priority { color: var(--green); }
.side-user-meta i.is-priority svg { color: var(--green); filter: drop-shadow(0 0 4px #58bd7d80); }
.page-head-id { display: flex; align-items: center; gap: 20px; }
.page-head.page-head-id h1 { font-size: clamp(25px, 3vw, 33px); }
.page-head.page-head-id .sub { margin-top: 6px; font-size: 13px; }
.user-cell { display: inline-flex; align-items: center; gap: 10px; }
.who-id { display: inline-flex; align-items: center; gap: 9px; }

.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 40;
    background: var(--orange); transform: scaleX(0); transform-origin: left;
    will-change: transform; pointer-events: none;
}

.js [data-reveal] {
    opacity: 0; transform: translateY(16px);
    transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js [data-mask] { overflow: hidden; padding-bottom: .09em; }
.js [data-mask] > span { display: block; transform: translateY(112%); transition: transform 1.05s cubic-bezier(.22,.8,.2,1); }
.js [data-mask].is-in > span { transform: none; }

.ticks { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.ticks::before, .ticks::after { content: ""; position: absolute; width: 10px; height: 10px; }
.ticks::before { top: 0; left: 0; border-top: 1px solid var(--orange); border-left: 1px solid var(--orange); }
.ticks::after { bottom: 0; right: 0; border-bottom: 1px solid var(--orange); border-right: 1px solid var(--orange); }
.ticks-green::before { border-color: var(--green); }
.ticks-green::after { border-color: var(--green); }

.ticker {
    position: relative; overflow: hidden; background: var(--ink);
    border-top: 1px solid #ffffff14; border-bottom: 1px solid #ffffff14;
}
.ticker-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
    display: flex; align-items: center; gap: 13px; padding: 15px 30px; white-space: nowrap;
    font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: #ffffff6b;
}
.ticker-item b { color: var(--white); font-weight: 500; }
.ticker-item em { font-style: normal; color: var(--orange); font-weight: 500; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex: none; }
.ticker-dot.g { background: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), #18222d00); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink), #18222d00); }

.packets { visibility: hidden; }
@supports (offset-path: path("M0 0 L1 1")) { .packets { visibility: visible; } }
.pk { fill: var(--orange); filter: url(#glow); }
.pk1 { offset-path: path("M88 157 210 95 335 172 454 83 664 161 584 278 683 415 518 513 424 591 248 553 108 442 177 331 88 157Z"); animation: flow 24s linear infinite; }
.pk2 { offset-path: path("M664 161 L108 442"); animation: flow 9s linear infinite 1s; fill: var(--green); }
.pk3 { offset-path: path("M88 157 L584 278"); animation: flow 7.5s linear infinite .4s; }
.pk4 { offset-path: path("M683 415 L335 172"); animation: flow 8.5s linear infinite 2s; fill: var(--green); }
.pk5 { offset-path: path("M108 442 L683 415"); animation: flow 11s linear infinite 1.6s; }
@keyframes flow { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.stages-section, .rules-section, .early-section { position: relative; }
.paper {
    position: absolute; inset: -14% 0; z-index: 0; pointer-events: none; will-change: transform;
    background-image: radial-gradient(#18222d0d 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(62% 52% at 82% 16%, #000, transparent 72%);
    mask-image: radial-gradient(62% 52% at 82% 16%, #000, transparent 72%);
}
.intro-section > *:not(.paper), .stages-section > *:not(.paper), .rules-section > *:not(.paper),
.early-section > *:not(.paper), .join-section > *:not(.paper) { position: relative; z-index: 1; }
.network-points circle:nth-child(3n) { animation-delay: -.6s; }
.network-points circle:nth-child(4n) { animation-delay: -1.5s; }
.network-points circle:nth-child(5n) { animation-delay: -2.2s; }
.stage-row .stage-number { transition: transform .3s; }
.stage-row:hover .stage-number { transform: translateX(4px); }

h1, h2, h3, .signal-statement, .hero-copy h1 { text-wrap: balance; }
p { text-wrap: pretty; }
.stage-big, .fact-number, .bonus-amount span, .signal-mark span, .balance-block .amount,
.data-cell .v, td.num, .bp-amount, .side-foot .val, .stage-reward {
    font-variant-numeric: tabular-nums;
}
::selection { background: var(--orange); color: var(--ink); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.hero-section ::selection, .facts-section ::selection, .bonus-section ::selection,
.signal-section ::selection { background: var(--orange); color: var(--ink); }

.core-ping circle {
    fill: none; stroke: var(--orange); stroke-width: 1.4; vector-effect: non-scaling-stroke;
    transform-origin: 380px 320px; animation: ping 5s cubic-bezier(.15,.6,.3,1) infinite;
}
.core-ping circle:nth-child(2) { animation-delay: 2.5s; }
@keyframes ping {
    0% { transform: scale(.28); opacity: 0; }
    12% { opacity: .85; }
    100% { transform: scale(10.4); opacity: 0; }
}

.hero-bottom span:nth-child(2) svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

.stage-row { transition: background .35s; }
.stage-row:hover { background: #18222d05; }
.rule-line { transition: background .35s; }
.rule-line:hover { background: #fdad0008; }
.benefit-item { transition: background .35s; }
.benefit-item:hover { background: #fdad0008; }
tbody tr { transition: background .2s; }
tbody tr:hover { background: #fdad0008; }
.is-copied { color: var(--green) !important; border-color: #58bd7d66 !important; }

.dash-promo {
    display: flex; align-items: center; justify-content: space-between; gap: 28px;
    margin-bottom: 26px; padding: 26px 30px; text-decoration: none; color: var(--ink);
    background: #fdad000a; border: 1px solid var(--dark-line); border-left: 3px solid var(--orange);
    transition: transform .25s ease, box-shadow .25s ease;
}
.dash-promo:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -28px #18222d3d; }
.dash-promo-tx { min-width: 0; }
.dash-promo-k { font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.dash-promo-h { margin: 10px 0 9px; font-size: 25px; font-weight: 300; letter-spacing: -.03em; line-height: 1.1; color: var(--ink); }
.dash-promo-h b { font-weight: 500; color: var(--orange); }
.dash-promo-p { margin: 0; font-size: 12.5px; line-height: 1.6; color: #18222dab; }
.dash-promo-cta { flex: none; display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--orange); padding: 15px 24px; white-space: nowrap; transition: background .2s; }
.dash-promo:hover .dash-promo-cta { background: #ffc23d; }
.dash-promo-cta svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
    .dash-promo { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }
    .dash-promo-cta { width: 100%; justify-content: center; }
}

/* Old-account migration: a light card above the balance panel. It asks for two values
   and then never asks again, so it is deliberately quiet — a request form, not an offer. */
.lgm {
    display: grid; grid-template-columns: 1fr minmax(300px, 420px); gap: 30px; align-items: center;
    margin-bottom: 26px; padding: 24px 28px;
    background: var(--white); border: 1px solid var(--dark-line); border-left: 3px solid var(--orange);
}
.lgm-k { font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.lgm-tx { min-width: 0; }
.lgm-tx h2 { margin: 9px 0 8px; font-size: 19px; font-weight: 300; letter-spacing: -.02em; line-height: 1.25; color: var(--ink); }
.lgm-tx p { margin: 0; font-size: 12.5px; line-height: 1.65; color: #18222dab; max-width: 60ch; }

.lgm-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; }
.lgm-fields label { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lgm-fields label span { font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d85; }
.lgm-fields input {
    width: 100%; padding: 11px 12px; font-size: 13px; font-family: var(--mono);
    color: var(--ink); background: #18222d05; border: 1px solid var(--dark-line); border-radius: 0;
    transition: border-color .18s, background .18s;
}
.lgm-fields input:focus { outline: none; border-color: var(--orange); background: var(--white); }
.lgm-fields input::placeholder { color: #18222d40; letter-spacing: .05em; }
/* The old login is case-insensitive and stored upper — show it that way as it is typed. */
.lgm-login { text-transform: uppercase; letter-spacing: .12em; }
.lgm-login::placeholder { text-transform: none; letter-spacing: .05em; }
.lgm-fields button { grid-column: 1 / -1; justify-content: center; }
/* The complaint line under the fields. Present only when there is something to say — the
   native validation bubble is turned off (novalidate) because it lands over the layout and
   cannot be styled or translated well. */
.lgm-msg { grid-column: 1 / -1; margin: -2px 0 0; font-size: 11.5px; line-height: 1.5; color: #b3261e; }
.lgm-msg[hidden] { display: none; }
.lgm-fields input.is-bad { border-color: #b3261e; background: #b3261e08; }

/* Filed: the same footprint, stated as a fact and never asked again. */
.lgm-done { grid-template-columns: auto 1fr; gap: 20px; align-items: start; border-left-color: #58bd7d; background: #58bd7d08; }
.lgm-ico { display: grid; place-items: center; width: 34px; height: 34px; color: #3d9b5f; border: 1px solid #58bd7d4d; }
.lgm-ico svg { width: 17px; height: 17px; }
.lgm-done h2 { margin: 0 0 7px; }

@media (max-width: 860px) {
    .lgm { grid-template-columns: 1fr; gap: 20px; padding: 22px; }
}
@media (max-width: 520px) {
    .lgm-fields { grid-template-columns: 1fr; }
}

/* Priority confirmation, inside the balance panel. The badge above already names the
   status, so this only answers what happens next — a settled fact, not an offer, which is
   why it is a quiet rule under the badge rather than another coloured card. */
.bp-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid #ffffff1c; max-width: 66ch; }
.bp-note h2 { margin: 0 0 9px; font-size: 17px; font-weight: 300; letter-spacing: -.02em; line-height: 1.3; color: var(--white); }
.bp-note p { margin: 0 0 7px; font-size: 12.5px; line-height: 1.7; color: #ffffff9e; }
.bp-note p:last-child { margin-bottom: 0; }
.bp-note a { display: inline-flex; align-items: center; gap: 7px; margin-left: 6px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--white); text-decoration: none; border-bottom: 1px solid var(--orange); padding-bottom: 2px; transition: color .2s; }
.bp-note a:hover { color: var(--orange); }
@media (max-width: 720px) {
    .bp-note { margin-top: 20px; padding-top: 18px; }
    .bp-note h2 { font-size: 15.5px; }
}

.balance-panel {
    position: relative; isolation: isolate; overflow: hidden;
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
    padding: 38px 40px; background: var(--ink); color: var(--white);
}
.balance-panel::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(circle at 84% 42%, #fdad0026, #0000 44%),
                linear-gradient(111deg, #18222d, #1b2132 60%, #252535);
}
.bp-lbl { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #ffffff6b; }
.bp-amount {
    margin-top: 14px; font-size: clamp(44px, 6vw, 74px); font-weight: 250;
    line-height: .85; letter-spacing: -.07em; color: var(--orange);
}
.bp-amount i {
    font-style: normal; font-family: var(--mono); font-size: .3em; letter-spacing: .12em;
    color: #ffffff8c; margin-left: 12px; vertical-align: middle;
}
.bp-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.bp-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.bp-actions { display: flex; gap: 10px; }
.tag-light { border-color: #ffffff2e; color: #ffffffad; }
.tag-green-d { color: var(--green); border-color: #58bd7d59; }
.tag-orange-d { color: var(--orange); border-color: #fdad0059; }

.sparkline { display: block; }
.sparkline .sl-line {
    fill: none; stroke: var(--orange); stroke-width: 1.5; stroke-linejoin: round; stroke-linecap: round;
    stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 1.8s .35s cubic-bezier(.2,.7,.2,1) forwards;
}
.sparkline .sl-fill { fill: url(#slGrad); opacity: 0; animation: fadeIn .9s 1.3s forwards; }
.sparkline .sl-dot { fill: var(--orange); opacity: 0; animation: fadeIn .5s 1.6s forwards; }
.sparkline .sl-axis { stroke: #ffffff1f; stroke-width: 1; stroke-dasharray: 2 6; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
.sl-caption { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #ffffff5c; text-align: right; }

.js .js [data-reveal].is-in 
.phase-section { padding: 128px 0 150px; }
.phase-section .section-index { margin-bottom: 32px; }
.phase-head { display: grid; grid-template-columns: 58% 30%; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.phase-head h2 { font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: .99; letter-spacing: -.06em; }
.phase-head h2 span { color: var(--green); }
.phase-head p { margin: 0; align-self: center; color: #18222d8c; font-size: 14px; font-weight: 300; line-height: 1.7; }

.phase-live {
    position: relative; overflow: hidden; color: var(--white);
    background: var(--ink);
    padding: 62px 0 56px;
    border-top: 1px solid #ffffff12; border-bottom: 1px solid #ffffff12;
}
.pl-glow {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(60% 150% at 85% 14%, #fdad001f, transparent 55%),
                radial-gradient(46% 130% at 9% 94%, #58bd7d12, transparent 55%);
}
.pl-inner { position: relative; z-index: 1; }
.pl-top { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.pl-label { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #ffffff78; }
.pl-num { margin-top: 20px; font-size: clamp(54px, 7.6vw, 96px); font-weight: 250; line-height: .82; letter-spacing: -.06em; color: var(--orange); font-variant-numeric: tabular-nums; }
.pl-num i { font-style: normal; font-family: var(--mono); font-size: .18em; letter-spacing: .1em; color: #ffffff6b; margin-left: 18px; vertical-align: middle; }
.pl-right { text-align: right; }
.pl-pct { font-size: clamp(36px, 4.4vw, 60px); font-weight: 250; letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.pl-sub { margin-top: 12px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #ffffff5c; }
.pl-bar { position: relative; height: 6px; margin: 44px 0 30px; overflow: hidden; background: #ffffff14; }
.pl-bar i {
    display: block; height: 100%; transform-origin: left;
    background: linear-gradient(90deg, #fdad00, #ffc23d);
    box-shadow: 0 0 10px #fdad0080;
    animation: barIn 1.5s .35s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes barIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.pl-readout { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #ffffff12; border: 1px solid #ffffff12; }
.pl-readout > div { display: flex; flex-direction: column; gap: 9px; padding: 20px 22px; background: var(--ink); }
.pl-readout .k { font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: #ffffff45; }
.pl-readout .v { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: #fff; }

.phase-map { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; margin-top: 72px; }
.phase-step { position: relative; display: flex; flex-direction: column; padding: 42px 34px 34px 0; transition: opacity .45s cubic-bezier(.2,.7,.2,1); }
.phase-step + .phase-step { padding-left: 34px; border-left: 1px solid var(--dark-line); }
.ps-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--dark-line); }
.phase-step.is-done .ps-line, .phase-step.is-current .ps-line { background: var(--orange); }
.ps-dot { position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--white); border: 1px solid var(--dark-line); }
.phase-step + .phase-step .ps-dot { left: 34px; }
.phase-step.is-done .ps-dot { background: var(--green); border-color: var(--green); }
.phase-step.is-current .ps-dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 5px #fdad0026; animation: pulse 2.4s ease-in-out infinite; }
.ps-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.ps-index { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.ps-status { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d61; border: 1px solid var(--dark-line); padding: 4px 8px; }
.phase-step.is-current .ps-status { color: var(--orange); border-color: #fdad0059; }
.phase-step.is-done .ps-status { color: var(--green); border-color: #58bd7d59; }
.phase-step h3 { margin-bottom: 14px; font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.phase-step p { color: #18222d91; font-size: 13.5px; font-weight: 300; line-height: 1.75; }
.ps-meta { margin-top: auto; padding-top: 26px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.ps-meta b { color: var(--ink); font-weight: 500; }
.phase-step.is-next { opacity: .58; }
.phase-step:hover { opacity: 1; }

.phase-compact {
    position: relative; isolation: isolate; overflow: hidden;
    background: var(--ink); color: var(--white); padding: 28px 30px; margin-top: 26px;
}
.pc-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.pc-num { margin-top: 14px; font-size: 34px; font-weight: 250; letter-spacing: -.05em; color: var(--orange); font-variant-numeric: tabular-nums; }
.pc-num i { font-style: normal; font-family: var(--mono); font-size: .29em; letter-spacing: .1em; color: #ffffff6b; margin-left: 10px; }
.phase-compact .pl-pct { font-size: 22px; }
.phase-compact .pl-bar { margin: 20px 0 22px; }
.pc-steps { border-top: 1px solid #ffffff14; }
.pc-steps li {
    display: grid; grid-template-columns: auto 26px 1fr auto; align-items: center; gap: 10px;
    padding: 12px 0; border-bottom: 1px solid #ffffff0f;
    font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff5c;
}
.pc-steps li:last-child { border-bottom: 0; }
.pc-dot { width: 5px; height: 5px; border-radius: 50%; background: #ffffff2e; }
.pc-steps li.is-current { color: var(--white); }
.pc-steps li.is-current .pc-dot { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.pc-steps li.is-done { color: #ffffff8c; }
.pc-steps li.is-done .pc-dot { background: var(--green); }
.pc-n { color: var(--orange); }
.pc-s { display: inline-flex; justify-content: flex-end; }
.pc-s svg { width: 13px; height: 13px; color: #ffffff33; }
.pc-steps li.is-current .pc-s svg { color: var(--orange); filter: drop-shadow(0 0 5px #fdad0080); }
.pc-steps li.is-done .pc-s svg { color: var(--green); }

.bonus-section::after {
    content: ""; position: absolute; z-index: 0; pointer-events: none;
    top: 50%; right: 2%; width: 560px; height: 560px; translate: 0 -50%; border-radius: 50%;
    background: radial-gradient(circle, #fdad0016, transparent 60%);
}

.facts-section { position: relative; overflow: hidden; }
.facts-section::before {
    content: ""; position: absolute; inset: -10%; pointer-events: none;
    background: radial-gradient(circle at 76% 42%, #fdad001a, transparent 46%);
    animation: driftGlow 18s ease-in-out infinite;
}
@keyframes driftGlow { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-34px, 22px); } }
.facts-grid { position: relative; z-index: 1; }

.button { transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s, color .35s, border-color .35s; }
.rule-line, .benefit-item, .stage-row, .data-cell { position: relative; }
.rule-line::before, .benefit-item::before {
    content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 2px; background: var(--orange);
    transform: scaleY(0); transform-origin: center; opacity: 0;
    transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.rule-line:hover::before, .benefit-item:hover::before { transform: scaleY(1); opacity: 1; }

.rule-line > *, .benefit-item > * { transition: transform .55s cubic-bezier(.2,.7,.2,1), color .35s; }
.rule-line:hover > *, .benefit-item:hover > * { transform: translateX(18px); }
.rule-line:hover .rule-number, .benefit-item:hover span:first-child { color: var(--orange); }
.stage-row::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
    background: linear-gradient(90deg, #fdad0012, #fdad0000 60%);
    transition: opacity .8s cubic-bezier(.22,.61,.24,1);
}
.stage-row:hover::after { opacity: 1; }
.rule-line, .benefit-item { transition: background .45s cubic-bezier(.2,.7,.2,1); }

.stage-row { transition: background .8s cubic-bezier(.22,.61,.24,1); }
.stage-row:hover { background: #18222d05; }
.stage-row .stage-number,
.stage-row .stage-label,
.stage-row .stage-main h3 { transition: transform .8s cubic-bezier(.22,.61,.24,1), color .8s cubic-bezier(.22,.61,.24,1); }
.stage-row:hover .stage-number { transform: translateX(6px); }
.stage-row:hover .stage-label { color: var(--orange); transform: translateX(3px); }
.data-cell { transition: background .4s; }
.data-cell:hover { background: #fdad0006; }
tbody tr { transition: background .3s cubic-bezier(.2,.7,.2,1); }

.page-main { padding: 72px 0 96px; }
.page-head { margin-bottom: 34px; }
.page-head h1 { font-size: 34px; }
.page-head .sub { margin-top: 14px; }
.page-head-id .avatar-lg { display: none; }
.page-head.page-head-id { display: block; }
.block-title { flex-direction: column; align-items: flex-start; gap: 6px; margin: 36px 0 18px; }
.data-cell { padding: 32px 0; }
.data-cell + .data-cell { padding-left: 30px; }
.data-cell .v { margin-top: 14px; font-size: 36px; }
.balance-panel { padding: 44px 46px; gap: 40px; }
.balance-block { padding: 38px 0 34px; }
.side-nav a { padding: 17px 0; }
.side-foot { margin-top: 32px; padding-top: 24px; }
.copybox { padding: 18px 20px; }
.auth-main { align-items: start; min-height: 0; padding: 30px 20px 70px; }
tbody td { padding: 19px 0; }
.helptext { margin-top: 12px; }

.prose p { font-size: 15px; line-height: 1.8; }
.stage-text { font-size: 15px; }
.rule-line p { font-size: 13.5px; }
tbody td { font-size: 13.5px; }
.panel-intro { font-size: 14.5px; line-height: 1.65; }
.empty-note { font-size: 13.5px; padding: 24px 0; }

@media (max-width: 1050px) {
    .site-header { padding: 12px 32px; }
    .main-nav { gap: 20px; }
    .brand-tag { display: none; }
    .hero-section { padding-left: 5%; padding-right: 5%; }
    .hero-bottom { left: 5%; right: 5%; }
    .section-wrap, .messages { width: min(100% - 64px, 900px); }
    .intro-section { grid-template-columns: 14% 1fr; }
    .signal-inner { grid-template-columns: 18% 1fr 21%; }
    .bonus-inner { grid-template-columns: 18% 48% 1fr; }
    .app-shell { grid-template-columns: 180px 1fr; gap: 40px; }
}
@media (max-width: 760px) {
    .section-wrap, .messages { width: calc(100% - 40px); }
    .site-header { height: auto; min-height: 64px; flex-wrap: wrap; padding: 9px 20px; row-gap: 10px; }
    .header-right { gap: 13px; }
    .menu-button { display: grid; place-items: center; position: relative; z-index: 45; }
    .menu-button .ic-close { display: none; }
    .header-auth { order: 5; flex-basis: 100%; width: 100%; margin-left: 0; display: flex; gap: 10px; }
    .header-auth .header-login { flex: 1; justify-content: center; min-height: 42px; gap: 0; border: 1px solid #ffffff33; color: #fff; }
    .header-auth .header-cta { flex: 1; justify-content: center; min-height: 42px; padding: 0 14px; font-size: 9px; }
    .lang-menu { position: fixed; top: 64px; right: 16px; left: auto; width: min(240px, calc(100vw - 32px)); max-height: 66vh; }
    .main-nav {
        position: fixed; top: 46px; left: 0; right: 0; z-index: 40;
        display: flex; flex-flow: row wrap; align-content: flex-start;
        gap: 0; margin: 0; padding: 0 14px; background: #10161f; border-top: 1px solid #ffffff1f;
        box-shadow: 0 26px 50px -20px #000000a6;
        max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
        transition: max-height .42s cubic-bezier(.22,.61,.24,1), opacity .3s ease, padding .42s cubic-bezier(.22,.61,.24,1), visibility 0s linear .42s;
    }
    .main-nav.is-open { max-height: calc(100vh - 46px); padding: 12px 14px 22px; opacity: 1; visibility: visible; overflow-y: auto; transition-delay: 0s; }
    .main-nav a { flex: 0 0 50%; padding: 15px 10px; text-align: center; font-size: 12px; letter-spacing: .06em; border-bottom: 1px solid #ffffff12; }
    .main-nav a:nth-child(odd) { border-right: 1px solid #ffffff12; }
    body.nav-open .menu-button .ic-burger { display: none; }
    body.nav-open .menu-button .ic-close { display: block; }
    .nav-underline { display: none; }
    .hero-section { display: flex; flex-direction: column; align-items: stretch; min-height: 835px; padding: 125px 20px 83px; }
    .hero-copy { padding: 0; }
    .hero-copy h1 { font-size: clamp(51px, 14vw, 75px); }
    .hero-description { margin-top: 25px; font-size: 14px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 23px; margin-top: 30px; }
    .hero-visual { margin-top: 28px; }
    .network-visual { width: 100%; padding-left: 13px; }
    .visual-topline, .visual-foot { font-size: 7px; }
    .network-svg { min-height: 280px; }
    .hero-bottom { left: 20px; right: 20px; bottom: 25px; font-size: 7px; }
    .hero-bottom span:nth-child(2) { display: none; }
    .intro-section { display: block; padding: 88px 0 90px; }
    .section-index { margin-bottom: 32px; }
    .intro-content h2, .stages-heading h2, .rules-intro h2, .early-layout h2, .join-content h2 { font-size: clamp(45px, 13vw, 66px); }
    .intro-body { display: block; margin-top: 34px; }
    .signal-inner { display: block; min-height: 0; padding: 62px 0 58px; }
    .signal-statement { margin-top: 34px; font-size: clamp(32px, 9vw, 50px); }
    .signal-mark { margin-top: 42px; }
    .signal-mark span { font-size: 68px; }
    .signal-mark small { margin-top: 12px; }
    .stages-section, .rules-section, .early-section { padding: 87px 0 90px; }
    .stages-section > .section-index, .rules-section > .section-index, .early-section > .section-index { margin-bottom: 35px; }
    .stages-heading, .rules-intro { display: block; margin-bottom: 48px; }
    .stages-heading p, .rules-intro p { max-width: 350px; margin-top: 27px; }
    .stage-row { display: block; padding: 31px 0 38px; }
    .stage-number { margin-bottom: 27px; }
    .stage-label { margin-bottom: 16px; font-size: 8px; }
    .stage-text { margin: 20px 0 25px; font-size: 13px; }
    .stage-aside { display: flex; flex-direction: column; align-items: flex-start; margin-top: 30px; padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--dark-line); }
    .stage-big { grid-row: auto; align-self: auto; margin-bottom: 8px; font-size: 58px; line-height: .95; }
    .stage-aside > span:not(.stage-big):not(.stage-reward) { font-size: 13px; line-height: 1.5; }
    .stage-reward { margin-top: 16px; }
    .facts-grid { display: block; min-height: 350px; padding: 39px 0 44px; }
    .fact-label { padding-top: 0; }
    .fact-hero { margin-top: 71px; }
    .fact-number { font-size: 78px; }
    .fact-copy { margin-top: 42px; padding: 0; border: 0; }

    .rule-line { grid-template-columns: 11% 1fr; gap: 0 4%; min-height: 0; padding: 24px 0; align-items: start; }
    .rule-line .rule-number { grid-column: 1; grid-row: 1; }
    .rule-line h3 { grid-column: 2; grid-row: 1; margin-bottom: 9px; font-size: 15px; }
    .rule-line p { grid-column: 2; grid-row: 2; margin: 0; font-size: 12.5px; }
    .bonus-orbit-one { width: 600px; height: 600px; top: -80px; right: -320px; }
    .bonus-orbit-two { width: 500px; height: 500px; top: -40px; right: -260px; }
    .bonus-inner { display: block; padding: 80px 0 70px; }
    .bonus-content { margin-top: 56px; }
    .bonus-amount { justify-self: start; margin-top: 50px; padding-right: 0; }
    .early-layout { display: block; }
    .benefit-list { margin-top: 48px; }
    .join-content { margin-top: 80px; }
    .join-meta span:last-child { max-width: 120px; text-align: right; }
    .site-footer { flex-wrap: wrap; gap: 12px; padding: 20px; }
    .panel { padding: 43px 25px 32px; }
    .panel h1, .panel h2 { font-size: 40px; }
    .page-main { padding-top: 0; }
    .app-shell { display: block; }
    .sidebar { position: sticky; top: 64px; z-index: 15; margin: 0 -20px 24px; padding: 12px 20px; background: #fffffff2; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--dark-line); }
    .side-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .side-top .side-user { margin-bottom: 0; min-width: 0; }
    .wl-search input, .sec-form .field input { font-size: 16px; }
    .cab-toggle { display: flex; }
    .side-label, .side-nav, .side-foot { display: none; }
    .sidebar.is-open .side-label { display: block; margin: 24px 0 14px; }
    .sidebar.is-open .side-nav { display: flex; }
    .sidebar.is-open .side-foot { display: block; margin-top: 20px; }
    .sidebar.is-open .cab-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .sidebar.is-open .cab-toggle span:nth-child(2) { opacity: 0; }
    .sidebar.is-open .cab-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .data-grid { grid-template-columns: 1fr; }
    .data-cell + .data-cell { border-left: 0; padding-left: 0; }
    .balance-block { grid-template-columns: 1fr; }
    .balance-panel { grid-template-columns: 1fr; gap: 26px; padding: 28px 22px; }
    .balance-panel::after { display: none; }
    .bp-right { align-items: flex-start; }
    .sparkline { width: 100%; }

    .phase-section { padding: 87px 0 90px; }
    .phase-section > .section-index { margin-bottom: 35px; }
    .phase-head { display: block; margin-bottom: 38px; }
    .phase-head p { max-width: 350px; margin-top: 24px; }
    .phase-live { padding: 26px 22px 22px; }
    .pl-top { display: block; }
    .pl-right { margin-top: 22px; text-align: left; display: flex; align-items: baseline; gap: 12px; }
    .pl-sub { margin-top: 0; }
    .phase-map { grid-template-columns: 1fr; margin-top: 48px; }
    .phase-step { padding: 32px 0 28px; }
    .phase-step + .phase-step { padding-left: 0; border-left: 0; }
    .phase-step + .phase-step .ps-dot { left: 0; }
    .phase-step.is-next { opacity: 1; }
    .phase-compact { padding: 22px 20px; }
    .pc-steps li { grid-template-columns: auto 24px 1fr auto; font-size: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
        .network-visual { transform: none !important; }
}

.flux-divider { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; padding: 30px 0; }
.fd-line { position: relative; height: 1px; background: var(--dark-line); overflow: hidden; }
.fd-line::after {
    content: ""; position: absolute; top: 0; height: 100%; width: 34%;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.fd-line-l::after { left: 100%; animation: fdEmitL 3.6s cubic-bezier(.45,0,.55,1) infinite; }
.fd-line-r::after { left: -34%; animation: fdEmitR 3.6s cubic-bezier(.45,0,.55,1) infinite; }
@keyframes fdEmitL { 0% { left: 100%; opacity: 0; } 16% { opacity: 1; } 84% { opacity: 1; } 100% { left: -34%; opacity: 0; } }
@keyframes fdEmitR { 0% { left: -34%; opacity: 0; } 16% { opacity: 1; } 84% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.fd-node { position: relative; width: 9px; height: 9px; transform: rotate(45deg); border: 1px solid #fdad0059; }
.fd-node::before { content: ""; position: absolute; inset: 2px; background: var(--orange); box-shadow: 0 0 12px 2px #fdad0080; animation: pulse 2.6s ease-in-out infinite; }

.faq-section { position: relative; padding: 130px 0 138px; }
.faq-section > .section-index { margin-bottom: 46px; }
.faq-layout { display: grid; grid-template-columns: 32% 1fr; gap: 66px; align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h, 120px) + 20px); }
.faq-aside h2 { font-size: clamp(34px, 3.6vw, 52px); font-weight: 300; line-height: 1.02; letter-spacing: -.04em; }
.faq-aside h2 span span { color: var(--green); }
.faq-aside p { margin: 22px 0 28px; max-width: 300px; color: #18222d8c; font-size: 14px; font-weight: 300; line-height: 1.75; }
.faq-list { border-top: 1px solid var(--dark-line); }
.faq-item { border-bottom: 1px solid var(--dark-line); }
.faq-q {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
    width: 100%; padding: 27px 0; text-align: left; background: none; border: 0; cursor: pointer;
}
.faq-idx { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--orange); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.faq-qt { font-size: 17px; font-weight: 400; letter-spacing: -.012em; color: var(--ink); transition: transform .45s cubic-bezier(.2,.7,.2,1), color .3s; }
.faq-q:hover .faq-qt { transform: translateX(5px); }
.faq-q:hover .faq-idx { transform: translateX(3px); }
.faq-ic { position: relative; width: 13px; height: 13px; flex: none; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--ink); transition: transform .45s cubic-bezier(.2,.7,.2,1), background .3s; }
.faq-ic::before { top: 6px; left: 0; width: 13px; height: 1px; }
.faq-ic::after { left: 6px; top: 0; width: 1px; height: 13px; }
.faq-item.is-open .faq-ic::after { transform: scaleY(0); }
.faq-item.is-open .faq-ic::before, .faq-item.is-open .faq-ic::after { background: var(--orange); }
.faq-item.is-open .faq-qt { color: #000; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s cubic-bezier(.2,.7,.2,1); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 30px 30px 32px; max-width: 640px; color: #18222d9e; font-size: 14.5px; font-weight: 300; line-height: 1.8; }
.faq-a strong { color: var(--ink); font-weight: 500; }
.faq-a .mono { font-size: 13px; color: var(--orange); letter-spacing: .02em; }

.site-footer { display: block; margin-top: 0; padding: 0; background: var(--ink); color: #ffffff80; border-top: 1px solid #ffffff14; }
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 26px 48px; padding: 70px 0 54px; }
.footer-brand-col .brand { margin-bottom: 22px; }
.footer-tag { max-width: 290px; font-size: 12px; font-weight: 300; line-height: 1.8; letter-spacing: .01em; color: #ffffff85; }
.footer-h { margin-bottom: 24px; font-family: var(--mono); font-size: 8px; letter-spacing: .24em; text-transform: uppercase; color: #ffffff4a; }
.footer-stat { display: flex; align-items: baseline; gap: 9px; margin-bottom: 17px; }
.footer-stat b { font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--orange); font-variant-numeric: tabular-nums; }
.footer-stat span { font-family: var(--mono); font-size: 8.5px; letter-spacing: .11em; text-transform: uppercase; color: #ffffff5c; }
.footer-list { display: flex; flex-direction: column; gap: 15px; }
.footer-list li { position: relative; padding-left: 18px; font-size: 11.5px; font-weight: 300; letter-spacing: .01em; color: #ffffffab; }
.footer-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 7px #fdad00aa; }
.footer-links { display: flex; flex-direction: column; gap: 15px; align-items: flex-start; }
.footer-links a { font-size: 11.5px; font-weight: 300; letter-spacing: .01em; color: #ffffffb3; transition: color .25s; }
.footer-links a:hover { color: var(--orange); }
.footer-base {
    display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    padding: 20px 0; border-top: 1px solid #ffffff14;
    font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: #ffffff54;
}
.footer-base b { color: #ffffff9e; font-weight: 400; }
.footer-base a { color: #ffffff8c; }
.footer-base a:hover { color: var(--orange); }

@media (max-width: 980px) {
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-aside { position: static; }
    .faq-aside p { max-width: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 40px; }
    .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
    .phase-live { padding: 44px 0 40px; }
    .pl-top { grid-template-columns: 1fr; gap: 22px; }
    .pl-right { text-align: left; }
    .pl-readout { grid-template-columns: 1fr 1fr; }
    .flux-divider { gap: 16px; padding: 22px 0; }
    .faq-section { padding: 80px 0 84px; }
    .faq-qt { font-size: 15px; }
    .faq-a p { padding-left: 0; padding-right: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 46px 0 36px; }
    .footer-brand-col { grid-column: auto; }
    .footer-base { flex-direction: column; align-items: flex-start; gap: 10px; }
}

* { scrollbar-width: thin; scrollbar-color: #565f6e #00000012; }
::-webkit-scrollbar { width: 13px; height: 13px; }
::-webkit-scrollbar-track { background: #00000012; }
::-webkit-scrollbar-thumb {
    background: #565f6e; border: 3px solid transparent; background-clip: padding-box; border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: #6b7686; background-clip: padding-box; border: 3px solid transparent; }
::-webkit-scrollbar-thumb:active { background: var(--orange); background-clip: padding-box; border: 3px solid transparent; }
::-webkit-scrollbar-corner { background: transparent; }

.app-band {
    position: relative; overflow: hidden; color: var(--white);
    background: linear-gradient(115deg, #141b26 0%, #1c2433 55%, #232b3e 100%);
    border-top: 1px solid #ffffff12; border-bottom: 1px solid #ffffff12;
}
.app-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.app-glow { position: absolute; inset: 0;
    background: radial-gradient(50% 120% at 82% 28%, rgba(253,173,0,.16), transparent 55%),
                radial-gradient(42% 120% at 14% 92%, rgba(88,189,125,.10), transparent 55%); }
.app-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 38%; gap: 60px; align-items: center; padding: 100px 0; }
.app-copy .eyebrow { color: var(--orange); margin-bottom: 24px; }
.app-copy h2 { font-size: clamp(34px, 4vw, 58px); font-weight: 250; line-height: 1.02; letter-spacing: -.04em; }
.app-copy h2 em { font-style: normal; color: var(--green); }
.app-copy > p { max-width: 460px; margin: 24px 0 0; color: #ffffffab; font-size: 15px; font-weight: 300; line-height: 1.75; }
.app-unlock { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; padding-top: 22px; border-top: 1px solid #ffffff12; color: #ffffff8c; font-size: 13px; line-height: 1.6; }
.app-unlock strong { color: #fff; font-weight: 500; }
.app-lock { flex: none; margin-top: 2px; color: var(--orange); display: inline-flex; }

.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.store-btn {
    position: relative; display: inline-flex; align-items: center; gap: 12px;
    padding: 11px 18px 11px 15px; border: 1px solid #ffffff26; background: #ffffff0a;
    transition: border-color .3s, background .3s, transform .3s;
}
.store-btn.is-locked { cursor: help; }
.store-btn:hover { border-color: #ffffff45; background: #ffffff12; transform: translateY(-2px); }
.store-tip {
    position: absolute; left: 50%; bottom: calc(100% + 12px); z-index: 4;
    width: max-content; max-width: 232px; padding: 10px 12px;
    background: #fff; border-top: 2px solid var(--orange); text-align: left;
    font-family: var(--mono); font-size: 8px; letter-spacing: .11em;
    line-height: 1.7; text-transform: uppercase; color: #18222d8c;
    opacity: 0; visibility: hidden; transform: translate(-50%, 5px);
    transition: opacity .26s, transform .26s, visibility .26s;
}
.store-tip b { display: block; margin-bottom: 3px; font-size: 9px; font-weight: 500; letter-spacing: .09em; color: var(--ink); }
.store-tip::after {
    content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px;
    border: 5px solid transparent; border-top-color: #fff;
}
.store-btn:hover .store-tip, .store-btn:focus-visible .store-tip {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.store-btn:focus-visible { outline: 1px solid var(--orange); outline-offset: 2px; }
.store-ic { width: 25px; height: 25px; color: #fff; flex: none; }
.store-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-txt small { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff7a; }
.store-txt b { font-size: 16px; font-weight: 500; letter-spacing: -.01em; }
.store-soon { margin-left: 4px; align-self: center; font-family: var(--mono); font-size: 7px; letter-spacing: .12em; color: var(--ink); background: var(--orange); padding: 3px 6px; }

.app-visual { display: flex; justify-content: center; }
.phone {
    position: relative; width: 242px; height: 500px; border-radius: 38px; padding: 12px;
    background: linear-gradient(160deg, #0d131c, #171e2b);
    border: 1px solid #ffffff1f;
    box-shadow: 0 55px 100px -34px #000000d9, 0 0 0 8px #05070c;
    animation: phoneFloat 6.5s ease-in-out infinite;
}
@keyframes phoneFloat { 0%, 100% { transform: translateY(0) rotate(-.7deg); } 50% { transform: translateY(-15px) rotate(.7deg); } }
.phone-notch { position: absolute; top: 12px; left: 50%; translate: -50% 0; width: 98px; height: 20px; border-radius: 0 0 13px 13px; background: #05070c; z-index: 2; }
.phone-screen { position: relative; height: 100%; border-radius: 27px; overflow: hidden; padding: 36px 20px 22px; display: flex; flex-direction: column;
    background: radial-gradient(130% 80% at 50% 0%, #1e2634, #0f141e 72%); }
.pv-top { display: flex; align-items: center; justify-content: space-between; }
.pv-brand { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; font-weight: 500; color: #fff; }
.pv-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; color: var(--green); }
.pv-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2.2s ease-in-out infinite; }

.pv-core { position: relative; height: 128px; margin: 16px 0 6px; display: grid; place-items: center; }
.pv-halo {
    position: absolute; width: 112px; height: 112px; border-radius: 50%;
    background: radial-gradient(circle, #fdad0026, transparent 66%);
    animation: pvHalo 3.6s ease-in-out infinite;
}
.pv-sweep {
    position: absolute; width: 108px; height: 108px; border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 288deg, #fdad001f 340deg, #fdad0000 360deg);
    -webkit-mask: radial-gradient(circle, transparent 46%, #000 48%);
    mask: radial-gradient(circle, transparent 46%, #000 48%);
    animation: spin 5.5s linear infinite;
}
.pv-ring { position: absolute; border-radius: 50%; }
.pv-ring-outer { width: 108px; height: 108px; border: 1px solid #ffffff14; }
.pv-ring-inner { width: 74px; height: 74px; border: 1px dashed #ffffff24; animation: spin 18s linear infinite; }
.pv-orbit { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.pv-orbit i { position: absolute; width: 6px; height: 6px; margin: -3px; border-radius: 50%; }
.pv-orbit-a { animation: spin 13s linear infinite; }
.pv-orbit-a i:nth-child(1) { transform: rotate(0deg) translateY(-54px); background: var(--orange); box-shadow: 0 0 8px #fdad00cc; }
.pv-orbit-a i:nth-child(2) { transform: rotate(120deg) translateY(-54px); background: var(--green); box-shadow: 0 0 8px #58bd7dcc; }
.pv-orbit-a i:nth-child(3) { transform: rotate(240deg) translateY(-54px); background: #fff; box-shadow: 0 0 7px #ffffffb3; }
.pv-orbit-b { animation: spin 9s linear infinite reverse; }
.pv-orbit-b i:nth-child(1) { transform: rotate(60deg) translateY(-37px); width: 4px; height: 4px; margin: -2px; background: #fdad00; box-shadow: 0 0 6px #fdad00b3; }
.pv-orbit-b i:nth-child(2) { transform: rotate(240deg) translateY(-37px); width: 4px; height: 4px; margin: -2px; background: var(--green); box-shadow: 0 0 6px #58bd7db3; }
.pv-orb { position: relative; width: 46px; height: 46px; display: grid; place-items: center; animation: pvBeat 2.6s ease-in-out infinite; z-index: 1; }
.pv-orb::before {
    content: ""; position: absolute; inset: -9px; border-radius: 50%;
    background: radial-gradient(circle, #0f141ecc, #0f141e00 70%);
}
.pv-orb svg { position: relative; width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 12px #fdad0099); }
@keyframes pvHalo { 0%, 100% { opacity: .55; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes pvBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.pv-status { text-align: center; font-family: var(--mono); font-size: 9px; letter-spacing: .2em; color: var(--orange); }

.pv-hashes { display: flex; flex-direction: column; gap: 7px; margin: 20px 0 auto; }
.pv-hash {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 7px 9px; border: 1px solid #ffffff0f; background: #ffffff05;
}
.pv-hash b { font-family: var(--mono); font-size: 8.5px; font-weight: 400; letter-spacing: .04em; color: #ffffff54; transition: color .35s; }
.pv-hash i {
    position: relative; flex: none; width: 12px; height: 12px; border-radius: 50%;
    border: 1px solid #ffffff1f; transition: border-color .35s, background .35s;
}
.pv-hash.is-working b { color: #ffffffb3; }
.pv-hash.is-working i { border-color: var(--orange); border-top-color: transparent; animation: spin .7s linear infinite; }
.pv-hash.is-ok b { color: #fff; }
.pv-hash.is-ok i { border-color: var(--green); background: var(--green); }
.pv-hash.is-ok i::after {
    content: ""; position: absolute; inset: 0; background: var(--ink);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/8px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/8px no-repeat;
}

.pv-reward { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 13px; border-top: 1px solid #ffffff12; }
.pv-rk { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #ffffff7a; }
.pv-rv { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; color: #ffffff7a; }
.pv-rv b { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--green); font-variant-numeric: tabular-nums; transition: transform .25s; display: inline-block; }
.pv-rv b.bump { transform: translateY(-2px) scale(1.06); }

@media (max-width: 860px) {
    .app-inner { grid-template-columns: 1fr; gap: 46px; padding: 74px 0 80px; }
    .app-visual { order: -1; }
    .phone { width: 212px; height: 438px; }
}

@media (max-width: 760px) {
    .store-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex-wrap: nowrap; }
    .store-btn { padding: 11px 10px; gap: 8px; min-width: 0; }
    .store-ic { width: 20px; height: 20px; }
    .store-txt { min-width: 0; }
    .store-txt small { font-size: 7px; }
    .store-txt b { font-size: 13px; white-space: nowrap; }
    .store-soon { margin-left: auto; font-size: 6px; padding: 2px 4px; }
}

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

.field.has-error input, .field.has-error textarea { border-color: #c0392b; box-shadow: 0 0 0 3px #c0392b1f; }
.errorlist.is-live { list-style: none; margin: 8px 0 0; padding: 0; color: #c0392b; font-size: 12px; }
form[data-auth] > .errorlist.is-live { margin: 0 0 18px; padding: 11px 13px; border: 1px solid #c0392b40; border-left-width: 2px; background: #c0392b0a; }
.errorlist.is-live { animation: errIn .22s ease; }
.errorlist.is-live li { display: flex; align-items: flex-start; gap: 6px; line-height: 1.45; }
.errorlist.is-live .err-ic { flex: none; margin-top: 1px; }
.errorlist-nonfield li { display: block; }
.field.has-error input, .field.has-error textarea { animation: fieldNudge .3s ease; }
@keyframes errIn { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }
@keyframes fieldNudge { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }

[data-submit] { position: relative; }
[data-submit].is-busy { pointer-events: none; opacity: .85; }
[data-submit].is-busy .btn-label { visibility: hidden; }
[data-submit].is-busy svg { opacity: 0; }
[data-submit].is-busy::after {
    content: ""; position: absolute; top: 50%; left: 50%; width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px;
    border: 1.5px solid #18222d40; border-top-color: var(--ink); border-radius: 50%;
    animation: spin .7s linear infinite;
}
form[data-auth].is-done { opacity: .55; pointer-events: none; transition: opacity .4s; }

@keyframes authShake {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}
form[data-auth].shake, form[data-pwchange].shake { animation: authShake .5s cubic-bezier(.36,.07,.19,.97) both; }

.toast-flat { grid-template-columns: 1fr; }
.toast-flat.is-ok::before { background: var(--green); }
.toast-flat.is-bad::before { background: #c0392b; }
.toast-flat.is-ok .toast-kicker { color: var(--green); }
.toast-flat.is-bad .toast-kicker { color: #c0392b; }
.toast-flat.is-bad .toast-flat .toast-sub { margin-top: 7px; }
.toast-flat.is-bad .toast-timer { background: linear-gradient(90deg, #c0392b, #e05a4b); }

.panel-creds { width: min(100%, 560px); padding: 38px 38px 34px; }
.creds-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.creds-badge {
    flex: none; display: grid; place-items: center; width: 42px; height: 42px;
    color: var(--green); background: #58bd7d1a; border: 1px solid #58bd7d40;
}
.panel-creds h1 { font-size: 34px; letter-spacing: -.05em; }

.creds-warn {
    display: flex; align-items: flex-start; gap: 9px; margin-bottom: 24px;
    padding: 11px 13px; border: 1px solid #fdad0040; border-left-width: 2px; background: #fdad000a;
    font-size: 12px; line-height: 1.5; color: #18222d99;
}
.creds-warn svg { color: var(--orange); margin-top: 1px; }

.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.creds-cell { background: #fbfbfa; padding: 13px 14px; min-width: 0; }
.creds-cell.is-wide { grid-column: 1 / -1; }
.cc-k { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d7a; margin-bottom: 7px; }
.cc-v { display: flex; align-items: center; gap: 8px; }
.cc-v code {
    flex: 1; min-width: 0; font-family: var(--mono); font-size: 13px; letter-spacing: .02em; color: var(--ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cc-v code.is-phrase { white-space: normal; font-size: 11.5px; line-height: 1.6; }
.cc-copy {
    flex: none; display: grid; place-items: center; width: 26px; height: 26px;
    border: 1px solid var(--dark-line); color: #18222d8c; background: #fff; transition: .2s;
}
.cc-copy:hover { color: var(--ink); border-color: var(--ink); }
.cc-copy.is-copied { color: var(--green); border-color: #58bd7d80; }

.panel-creds [data-copy-all] { margin-top: 14px; min-height: 40px; font-size: 9px; }
.creds-consent { margin-top: 22px; align-items: flex-start; }
.creds-consent input { margin-top: 1px; }
.creds-mustconfirm { margin: 12px 0 0; font-size: 12.5px; color: var(--orange); }
.panel-creds #go { margin-top: 18px; }
.panel-creds #go[disabled] { cursor: not-allowed; }

/* Post-registration "did you save your keys?" confirm modal */
.cmodal { position: fixed; inset: 0; z-index: 260; display: none; }
.cmodal.is-open { display: block; }
.cmodal-backdrop { position: absolute; inset: 0; background: #0b1017e6; backdrop-filter: blur(4px); animation: pvFade .28s ease; }
.cmodal-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(460px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow-y: auto;
    background: var(--ink); color: #fff; border-top: 3px solid var(--orange);
    padding: 32px 34px 28px; box-shadow: 0 30px 90px #0009; animation: cmPop .3s cubic-bezier(.2, .7, .2, 1);
}
.cmodal-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px; border: 1px solid #ffffff2b; color: var(--orange); }
.cmodal-kicker { margin: 0 0 12px; color: var(--orange); }
.cmodal-card h2 { margin: 0 0 14px; font-size: 27px; font-weight: 300; line-height: 1.05; letter-spacing: -.04em; }
.cmodal-body { margin: 0 0 26px; font-size: 13.5px; line-height: 1.62; color: #ffffffc2; }
.cmodal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cmodal-actions .button { flex: 1; justify-content: center; min-width: 150px; white-space: nowrap; }
#creds-confirm { background: none; border: 1px solid #ffffff2e; color: #ffffffd1; }
#creds-confirm:hover { border-color: #ffffff5c; color: #fff; }
@keyframes cmPop { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }

@media (max-width: 480px) {
    .cmodal-card { padding: 26px 20px 22px; }
    .cmodal-card h2 { font-size: 23px; }
    .cmodal-actions { flex-direction: column-reverse; }
    .cmodal-actions .button { min-width: 0; width: 100%; }
}

@media (max-width: 760px) {
    .panel-creds { padding: 28px 20px 26px; }
    .creds-grid { grid-template-columns: 1fr; }
    .panel-creds h1 { font-size: 28px; }
}

.essence {
    margin-top: 60px; padding: 42px 0 0;
    border-top: 1px solid var(--dark-line);
}
.es-say {
    margin: 0 0 46px; max-width: 640px;
    font-size: clamp(26px, 3.1vw, 40px); font-weight: 300; line-height: 1.16; letter-spacing: -.045em;
    color: var(--ink);
}
.es-say em { font-style: normal; color: var(--orange); }

.es-figs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.es-fig { padding: 0 26px; border-left: 1px solid var(--dark-line); }
.es-fig:first-child { padding-left: 0; border-left: 0; }
.es-num {
    display: block; font-size: clamp(46px, 5.4vw, 72px); font-weight: 200; line-height: .82;
    letter-spacing: -.07em; color: var(--orange); font-variant-numeric: tabular-nums;
}
.es-fig.is-green .es-num { color: var(--green); }
.es-unit {
    display: block; margin-top: 14px;
    font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink);
}
.es-note {
    display: block; margin-top: 7px;
    font-family: var(--mono); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; color: #18222d7a;
}

.es-foot {
    display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
    margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--dark-line);
}
.es-foot .button { min-width: 236px; }
.es-fine { font-size: 12.5px; font-weight: 300; line-height: 1.55; color: #18222d8c; }

@media (max-width: 760px) {
    .essence { margin-top: 44px; padding-top: 28px; }
    .es-say { margin: 0 0 34px; }
    .es-figs { grid-template-columns: 1fr; }
    .es-fig { padding: 22px 0; border-left: 0; border-top: 1px solid var(--dark-line); }
    .es-fig:first-child { padding-top: 0; border-top: 0; }
    .es-foot { margin-top: 30px; gap: 18px; }
    .es-foot .button { width: 100%; }
}

.senior-section { position: relative; padding: 118px 0 124px; }
.senior-layout { display: grid; grid-template-columns: 50% 42%; justify-content: space-between; gap: 40px; align-items: center; }
.senior-copy h2 { font-size: clamp(38px, 4.6vw, 62px); font-weight: 300; line-height: 1.02; letter-spacing: -.05em; margin: 16px 0 26px; }
.senior-copy h2 em { font-style: normal; color: var(--green); }
.senior-lead { max-width: 470px; margin: 0 0 15px; color: #18222da6; font-size: 15px; font-weight: 300; line-height: 1.75; }
.senior-lead strong { color: var(--ink); font-weight: 500; }

.rank-ladder { margin: 30px 0 28px; border-top: 1px solid var(--dark-line); }
.rank-step {
    display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 14px;
    padding: 15px 0; border-bottom: 1px solid var(--dark-line); transition: background .5s cubic-bezier(.22,.61,.24,1);
}
.rank-step:hover { background: #18222d05; }
.rk-n { font-family: var(--mono); font-size: 10px; color: #18222d5c; }
.rk-t { font-weight: 300; letter-spacing: -.01em; line-height: 1.1; }
.rk-d { font-family: var(--mono); font-size: 8.5px; letter-spacing: .09em; text-transform: uppercase; color: #18222d80; text-align: right; }
.rank-step:nth-child(1) .rk-t { font-size: 15px; }
.rank-step:nth-child(2) .rk-t { font-size: 20px; }
.rank-step:nth-child(3) .rk-t { font-size: 29px; letter-spacing: -.045em; }
.rank-step.is-top { padding: 24px 0; border-bottom: 0; }
.rank-step.is-top .rk-n { color: var(--orange); }
.rank-step.is-top .rk-d { color: #2f7d52; }

.sn-frame { position: relative; padding: 18px 18px 14px; background: var(--ink); color: #fff; overflow: hidden; }
.sn-top, .sn-foot {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #ffffff5c;
}
.sn-foot { padding-top: 12px; border-top: 1px solid #ffffff12; }
.sn-live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.sn-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2.2s ease-in-out infinite; }
.sn-svg { display: block; width: 100%; margin: 10px 0 6px; }
.sn-links path { stroke-width: 1; stroke-dasharray: 2 6; animation: dash 14s linear infinite; }
.sn-leaves circle { fill: var(--green); animation: pulse 2.8s ease-in-out infinite; }
.sn-leaves circle:nth-child(2n) { animation-delay: -1s; }
.sn-leaves circle:nth-child(3n) { animation-delay: -1.8s; }
.sn-mids circle { fill: var(--orange); }
.sn-senior circle:first-child { fill: none; stroke: #fdad0059; stroke-width: 1; stroke-dasharray: 2 7; transform-origin: 160px 44px; animation: spin 20s linear infinite; }
.sn-senior circle:nth-child(2) { fill: #fdad0014; stroke: #fdad00a6; stroke-width: 1; }
.sn-pool { fill: #58bd7d14; stroke: #58bd7d59; stroke-width: 1; }
.sn-pool-t { fill: var(--green); font-family: var(--mono); font-size: 9px; letter-spacing: .18em; }

@media (max-width: 1050px) {
    .senior-layout { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 760px) {
    .senior-section { padding: 76px 0 84px; }
    .rank-step { grid-template-columns: 28px 1fr; row-gap: 4px; }
    .rk-d { grid-column: 2; text-align: left; }
}

.pv-granted {
    display: flex; align-items: center; gap: 22px; margin-top: 44px;
    padding: 30px; border: 1px solid var(--dark-line); background: #58bd7d0f;
}
.pv-granted-mark { flex: none; width: 52px; height: 52px; display: grid; place-items: center; background: var(--green); color: #fff; }
.pv-granted-mark svg { width: 26px; height: 26px; }
.pv-granted h2 { margin: 0; font-size: 22px; font-weight: 300; letter-spacing: -.02em; }
.pv-granted p { margin: 6px 0 0; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #18222d80; }

.pv-offer {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 26px;
    margin-top: 44px; padding: 32px; border: 1px solid var(--dark-line); background: #18222d05;
}
.pv-price { display: flex; flex-direction: column; }
.pv-price-lbl { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: #18222d80; }
.pv-price-val { font-size: 58px; font-weight: 200; line-height: 1; letter-spacing: -.05em; color: var(--ink); margin: 8px 0 4px; }
.pv-price-sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.pv-offer-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.pv-mock { font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: #b3541e; }
.pv-tiers { margin: 12px 0 44px; padding: 22px 32px 26px; border: 1px solid var(--dark-line); background: #18222d03; }
.pv-tiers-lbl { margin-bottom: 15px; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; line-height: 1.55; text-transform: uppercase; color: #18222d7a; }
.pv-tiers-list { display: flex; flex-direction: column; gap: 3px; }
.pv-tiers-list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 15px; border: 1px solid var(--dark-line); }
.pv-tiers-list li.is-current { border-color: var(--orange); background: #fdad000f; }
.pv-tier-range { font-family: var(--mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; color: #18222d94; }
.pv-tier-range b { display: block; margin-bottom: 4px; font-weight: 500; color: var(--ink); }
.pv-tiers-list li.is-current .pv-tier-range { color: var(--ink); }
.pv-tier-price { font-size: 20px; font-weight: 300; letter-spacing: -.03em; color: var(--ink); white-space: nowrap; }
.pv-tiers-list li.is-current .pv-tier-price { color: var(--orange); }
.pv-tier-price em { margin-right: 5px; font-style: normal; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }

.pv-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.pv-benefit { background: var(--white); padding: 24px; }
.pv-benefit span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--orange); }
.pv-benefit b { display: block; margin: 12px 0 7px; font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.pv-benefit p { margin: 0; font-size: 12.5px; line-height: 1.55; color: #18222dad; }

.pv-table-wrap { margin-top: 20px; border: 1px solid var(--dark-line); overflow-x: auto; }
.pv-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.pv-table thead th {
    text-align: left; padding: 13px 16px; background: #18222d05; border-bottom: 1px solid var(--dark-line);
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; font-weight: 400; white-space: nowrap;
}
.pv-table td { padding: 15px 16px; border-bottom: 1px solid var(--dark-line); vertical-align: middle; }
.pv-table tbody tr:last-child td { border-bottom: 0; }
.pv-table tbody tr.is-open { background: #fdad0008; }
.pv-c-date { white-space: nowrap; }
.pv-date { display: block; font-size: 12.5px; color: var(--ink); }
.pv-time { display: block; font-family: var(--mono); font-size: 10px; color: #18222d80; margin-top: 2px; }
.pv-c-cur { white-space: nowrap; }
.pv-asset { display: block; font-size: 13px; font-weight: 600; letter-spacing: -.01em; }
.pv-net { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: .05em; text-transform: uppercase; color: #18222d80; margin-top: 3px; }
.pv-c-amt { white-space: nowrap; }
.pv-amt-n { font-family: var(--mono); font-size: 12.5px; color: var(--ink); }
.pv-amt-t { font-family: var(--mono); font-size: 10px; color: #18222d80; }
.pv-c-ref { white-space: nowrap; }
.pv-ref { font-family: var(--mono); font-size: 10px; letter-spacing: .03em; color: #a86f00; }
.pv-c-addr { width: 100%; max-width: 0; }
.pv-addr-cell { display: flex; align-items: center; gap: 8px; }
.pv-addr-cell code {
    flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-family: var(--mono); font-size: 11px; color: #18222dc4;
}
.pv-addr-cell code.is-masked { color: #18222d70; letter-spacing: .04em; }
.pv-copy:disabled { opacity: .32; cursor: not-allowed; }
.pv-copy:disabled:hover { color: #18222d80; border-color: var(--dark-line); }
.pv-c-stat { white-space: nowrap; }
.pv-badge {
    display: inline-flex; align-items: center; height: 22px; padding: 0 9px;
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase;
    border: 1px solid currentColor; white-space: nowrap;
}
.pv-badge em { font-style: normal; opacity: .8; }
.pv-badge-waiting, .pv-badge-partially_paid { color: #b3801e; }
.pv-badge-confirming { color: #2f6bb3; }
.pv-badge-finished { color: #2f7d52; }
.pv-badge-failed { color: #b33a2f; }
.pv-badge-expired, .pv-badge-closed { color: #8a8f98; }
.pv-c-act { white-space: nowrap; text-align: right; }
.pv-row-actions { display: inline-flex; gap: 8px; }
.pv-rowbtn {
    background: none; border: 1px solid var(--dark-line); color: #18222dad; cursor: pointer;
    padding: 6px 12px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
    transition: border-color .18s, color .18s, background .18s;
}
.pv-rowbtn:hover { border-color: #18222d5c; color: var(--ink); }
.pv-rowbtn.is-accent { border-color: var(--orange); color: #a86f00; }
.pv-rowbtn.is-accent:hover { background: var(--orange); color: var(--ink); }
.pv-rowbtn.is-busy { opacity: .5; pointer-events: none; }

@media (max-width: 640px) {
    .pv-table-wrap { border: 0; overflow: visible; margin-top: 14px; }
    .pv-table { min-width: 0; }
    .pv-table thead { display: none; }
    .pv-table tbody tr { display: block; border: 1px solid var(--dark-line); margin-top: -1px; padding: 5px 0; }
    .pv-table td { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: auto; max-width: none; padding: 10px 15px; border-bottom: 0; white-space: normal; }
    .pv-table td::before { content: attr(data-label); flex: none; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
    .pv-c-addr { flex-direction: column; align-items: stretch; gap: 7px; max-width: none; }
    .pv-addr-cell { width: 100%; justify-content: space-between; gap: 10px; align-items: flex-start; }
    .pv-addr-cell code { flex: 1; white-space: normal; overflow: visible; text-overflow: clip; overflow-wrap: anywhere; font-size: 11.5px; line-height: 1.55; }
    .pv-c-act { display: block; padding: 4px 15px 8px; }
    .pv-c-act::before { content: none; }
    .pv-table tbody tr:not(.is-open) .pv-c-act { display: none; }
    .pv-row-actions { display: flex; width: 100%; gap: 10px; }
    .pv-rowbtn { flex: 1; text-align: center; padding: 12px; }
}

.pv-copy {
    position: relative; flex: none; width: 30px; height: 30px; display: grid; place-items: center;
    background: none; border: 1px solid var(--dark-line); color: #18222d80; cursor: pointer; transition: color .2s, border-color .2s;
}
.pv-copy:hover { color: var(--orange); border-color: var(--orange); }
.pv-copy-sm { width: 26px; height: 26px; }
.pv-copy .ico-copy, .pv-copy .ico-check { grid-area: 1 / 1; }
.pv-copy .ico-check { opacity: 0; color: var(--green); transform: scale(.6); transition: opacity .18s, transform .18s; }
.pv-copy.is-copied { color: var(--green); border-color: var(--green); }
.pv-copy.is-copied .ico-copy { opacity: 0; }
.pv-copy.is-copied .ico-check { opacity: 1; transform: scale(1); }

body.pv-lock { overflow: hidden; }

.pv-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.pv-modal.is-open { display: block; }
.pv-modal-scrim { position: absolute; inset: 0; background: #18222dd4; backdrop-filter: blur(3px); animation: pvFade .25s ease; }
.pv-modal-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(560px, calc(100vw - 32px)); max-height: calc(100vh - 48px); overflow-y: auto;
    background: var(--white); color: var(--ink); border-top: 3px solid var(--orange);
    padding: 34px; box-shadow: 0 40px 90px -30px #000000a6; animation: pvRise .3s cubic-bezier(.16,.84,.44,1);
}
.pv-modal-x {
    position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; display: grid; place-items: center;
    background: none; border: 1px solid var(--dark-line); color: #18222d80; cursor: pointer; transition: color .2s, border-color .2s;
}
.pv-modal-x:hover { color: var(--ink); border-color: #18222d5c; }
.pv-step { display: none; }
.pv-step.is-active { display: block; }
.pv-back {
    display: flex; width: fit-content; align-items: center; gap: 7px; margin: 0 0 20px;
    background: none; border: 0; cursor: pointer; padding: 4px 0;
    font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; transition: color .2s;
}
.pv-back:hover { color: var(--orange); }
.pv-back svg { flex: none; }
.pv-modal-kicker { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.pv-modal-kicker em { font-style: normal; color: #18222d80; }
.pv-modal-h { margin: 12px 0 8px; font-size: 24px; font-weight: 300; letter-spacing: -.03em; }
.pv-modal-note { margin: 0 0 22px; font-size: 12px; line-height: 1.55; color: #18222d99; }
.pv-modal-err { margin: 14px 0 0; font-family: var(--mono); font-size: 10px; letter-spacing: .05em; color: #b33a2f; }

/* Two per row: with our own addresses the list is four rails, and three columns left a
   lone tile stranded on a second row. Two makes an even block whatever the count. */
.pv-coins { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 24px; }
.pv-coin {
    display: flex; align-items: center; gap: 10px; min-width: 0;
    padding: 11px 12px; background: none; border: 1px solid var(--dark-line); cursor: pointer; text-align: left;
    transition: border-color .18s, background .18s, transform .18s;
}
.pv-coin:hover { border-color: #18222d5c; transform: translateY(-1px); }
.pv-coin.is-selected { border-color: var(--orange); background: #fdad000f; }
.pv-coin-ic { flex: none; width: 30px; height: 30px; display: block; }
.pv-coin-ic svg { width: 100%; height: 100%; display: block; border-radius: 50%; }
.pv-coin-t { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pv-coin b { font-size: 13px; font-weight: 600; letter-spacing: -.01em; line-height: 1; }
.pv-coin i {
    display: flex; align-items: center; gap: 5px; min-width: 0;
    font-style: normal; font-family: var(--mono); font-size: 9px; letter-spacing: .02em;
    text-transform: uppercase; color: #18222d9c; line-height: 1;
}
.pv-net-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pv-net-dot { flex: none; width: 6px; height: 6px; border-radius: 50%; }
.pv-connect { width: 100%; justify-content: center; }
.pv-connect:disabled { opacity: .4; cursor: not-allowed; }

.pv-pay { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; margin-bottom: 18px; }
.pv-qr { position: relative; width: 156px; height: 156px; padding: 10px; border: 1px solid var(--dark-line); background: #fff; }
.pv-qr [data-qr], .pv-qr svg { display: block; width: 100%; height: 100%; }
.pv-qr-logo {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 23%; height: 23%; display: grid; place-items: center;
    background: #fff; box-shadow: 0 0 0 2px #fff;
}
.pv-qr-logo svg { width: 100%; height: 100%; }
.pv-pay-fields { display: flex; flex-direction: column; gap: 15px; min-width: 0; }
.pv-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pv-field-k { font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d7a; }
.pv-field-v { font-size: 16px; }
.pv-field-v b { font-weight: 600; letter-spacing: -.01em; }
.pv-field-v em { font-style: normal; color: #18222d99; font-size: 12px; }
.pv-addr-row { display: flex; align-items: center; gap: 8px; min-width: 0; }
.pv-addr-row code { flex: 1; min-width: 0; font-family: var(--mono); font-size: 10.5px; word-break: break-all; color: var(--ink); line-height: 1.45; }

.pv-paystatus { margin: 0 0 20px; padding: 11px 13px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .04em; line-height: 1.5; background: #18222d08; border-left: 2px solid #18222d3d; color: #18222d99; display: none; }
.pv-paystatus.is-shown { display: block; }
.pv-paystatus-partially_paid { border-left-color: var(--orange); color: #a86f00; background: #fdad000d; }
.pv-paystatus-finished { border-left-color: var(--green); color: #2f7d52; background: #58bd7d0f; }
.pv-paystatus-failed { border-left-color: #b33a2f; color: #b33a2f; background: #b33a2f0d; }
.pv-paystatus-checking { border-left-color: #2f6bb3; color: #2f6bb3; }

.pv-pay-actions { display: flex; flex-direction: column; gap: 10px; }
.pv-verify, .pv-cancel { width: 100%; justify-content: center; }
.pv-verify:disabled { opacity: .55; cursor: not-allowed; }
.button-ghost { background: none; color: var(--ink); border: 1px solid var(--dark-line); }
.button-ghost:hover { border-color: #18222d5c; background: #18222d05; }
.pv-cancel { color: #18222d99; }
.pv-fine { margin: 20px 0 0; font-size: 10.5px; color: #18222d80; }

.button.is-busy { position: relative; color: transparent; pointer-events: none; }
.button.is-busy > * { visibility: hidden; }
.button.is-busy::after {
    content: ""; position: absolute; top: 50%; left: 50%; width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px;
    border: 1.5px solid #18222d40; border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite;
}

.pv-success { position: fixed; inset: 0; z-index: 300; display: none; background: var(--ink); color: #fff; }
.pv-success.is-open { display: grid; place-items: center; animation: pvFade .4s ease; }
.pv-success-in { position: relative; text-align: center; padding: 40px; max-width: 480px; overflow: hidden; }
.pv-success-mark {
    width: 82px; height: 82px; margin: 0 auto 26px; display: grid; place-items: center;
    border: 2px solid var(--green); color: var(--green); border-radius: 50%; animation: pvPop .5s cubic-bezier(.16,.84,.44,1) .1s both;
}
.pv-success-mark svg { width: 40px; height: 40px; }
.pv-success-kicker { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--orange); }
.pv-success-h { margin: 14px 0 16px; font-size: 44px; font-weight: 200; letter-spacing: -.03em; }
.pv-success-sub { margin: 0 auto 32px; max-width: 340px; font-size: 13px; line-height: 1.65; color: #ffffffab; }

@keyframes pvFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pvRise { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }

.p2-modal { position: fixed; inset: 0; z-index: 240; display: none; }
.p2-modal.is-open { display: block; }
.p2-scrim { position: absolute; inset: 0; background: #0b1017e6; backdrop-filter: blur(4px); animation: pvFade .3s ease; }
.p2-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(720px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow-y: auto;
    background: var(--ink); color: #fff; border-top: 3px solid var(--orange);
    padding: 32px 36px 28px; box-shadow: 0 50px 120px -28px #000;
    animation: p2Rise .42s cubic-bezier(.16, .84, .44, 1);
}
@keyframes p2Rise { from { opacity: 0; transform: translate(-50%, calc(-50% + 26px)); } to { opacity: 1; transform: translate(-50%, -50%); } }
.p2-x { position: absolute; top: 15px; right: 15px; width: 34px; height: 34px; display: grid; place-items: center; background: none; border: 1px solid #ffffff26; color: #ffffff80; cursor: pointer; transition: color .2s, border-color .2s; }
.p2-x:hover { color: #fff; border-color: #ffffff59; }
.p2-kicker { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.p2-title { margin: 13px 0 9px; font-size: 27px; font-weight: 300; letter-spacing: -.03em; line-height: 1.12; color: #fff; }
.p2-lead { margin: 0; font-size: 13px; line-height: 1.55; color: #ffffffc2; }
.p2-perks { margin: 18px 0 15px; }
.p2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #ffffff12; border: 1px solid #ffffff12; }
.p2-perk-wide { grid-column: 1 / -1; }
.p2-perk { display: flex; gap: 11px; align-items: center; padding: 12px 13px; background: var(--ink); }
.p2-perk-ic { flex: none; width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid #fdad0038; background: #fdad000d; color: var(--orange); }
.p2-perk-ic svg { width: 15px; height: 15px; }
.p2-perk-tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.p2-perk-tx b { font-size: 12px; font-weight: 500; letter-spacing: -.01em; color: #fff; line-height: 1.25; }
.p2-perk-tx i { font-style: normal; font-size: 11px; line-height: 1.42; color: #ffffff85; }
.p2-unlock { display: flex; gap: 10px; align-items: center; margin: 0 0 16px; padding: 12px 14px; border: 1px solid #fdad0038; background: #fdad000d; }
.p2-unlock svg { flex: none; width: 17px; height: 17px; color: var(--orange); }
.p2-unlock span { font-size: 12px; line-height: 1.5; color: #ffffffce; }
.p2-seats { margin: 0 0 20px; }
.p2-seats-bar { position: relative; height: 5px; background: #ffffff14; overflow: hidden; }
.p2-seats-bar span { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, #fdad00, #ffc23d); transition: width 1.2s cubic-bezier(.2, .7, .3, 1); }
.p2-seats-cap { display: flex; justify-content: space-between; gap: 12px; margin-top: 9px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff70; }
.p2-seats-cap b { color: #fff; }
.p2-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.p2-cta { flex: 1; justify-content: center; min-width: 210px; white-space: nowrap; }
.p2-later { flex: none; background: none; border: 1px solid #ffffff2e; color: #ffffffcc; white-space: nowrap; }
.p2-later:hover { border-color: #ffffff59; color: #fff; }
@media (max-width: 560px) {
    .p2-card { padding: 30px 20px 24px; }
    .p2-title { font-size: 23px; }
    .p2-grid { grid-template-columns: 1fr; }
    .p2-actions { flex-wrap: nowrap; }
    .p2-cta { min-width: 0; }
    .p2-cta, .p2-later { font-size: 9px; letter-spacing: .04em; padding: 0 13px; gap: 10px; }
}
@keyframes pvPop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 640px) {
    .pv-benefits { grid-template-columns: 1fr; }
    .pv-coins { grid-template-columns: 1fr; }
    .pv-pay { grid-template-columns: 1fr; }
    .pv-qr { width: 168px; height: 168px; margin: 0 auto; }
    .pv-success-h { font-size: 34px; }
    .pv-verify { min-width: 0; flex: 1; }
    .pv-pay-actions { flex-wrap: wrap; }
}


.info-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.info-modal.is-open { display: block; }
.info-modal .im-scrim { position: absolute; inset: 0; background: #18222dd4; backdrop-filter: blur(3px); animation: pvFade .25s ease; }
.info-modal .im-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(460px, calc(100vw - 32px)); max-height: calc(100vh - 24px); overflow-y: auto;
    background: var(--white); color: var(--ink);
    border-top: 3px solid var(--orange); padding: 36px 34px 32px; box-shadow: 0 40px 90px -30px #000000a6;
    animation: pvRise .3s cubic-bezier(.16,.84,.44,1);
}
.info-modal .im-x { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; display: grid; place-items: center; background: none; border: 1px solid var(--dark-line); color: #18222d80; cursor: pointer; transition: color .2s, border-color .2s; }
.info-modal .im-x:hover { color: var(--ink); border-color: #18222d5c; }
.im-mark { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--dark-line); color: var(--orange); margin-bottom: 20px; }
.im-mark svg { width: 22px; height: 22px; }
.im-kicker { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }
.im-h { margin: 10px 0 12px; font-size: 24px; font-weight: 300; letter-spacing: -.03em; line-height: 1.15; }
.im-body { font-size: 13px; line-height: 1.66; color: #18222dad; }
.im-body b { color: var(--ink); font-weight: 500; }
.im-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--dark-line); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }

.wd-balance { display: flex; align-items: baseline; gap: 12px; margin: 44px 0 28px; padding: 30px 32px; border: 1px solid var(--dark-line); background: #18222d05; }
.wd-balance .wd-n { font-size: 52px; font-weight: 200; letter-spacing: -.05em; line-height: 1; }
.wd-balance .wd-t { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: #18222d7a; }
.wd-lock { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: #a86f00; }
.wd-lock svg { width: 13px; height: 13px; }

.avatar .agent-logo { display: block; width: 24px; height: 24px; line-height: 0; }
.avatar .agent-logo svg { width: 100%; height: 100%; display: block; }

.wd-btn { margin-left: auto; }

.im-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.im-head .im-mark { margin: 0; }
.im-head-t { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.im-head-t .im-kicker { margin: 0; }
.im-head-t .im-h { margin: 0; font-size: 22px; }

.im-card.im-split { width: min(680px, calc(100vw - 32px)); padding: 0; overflow: hidden auto; max-height: calc(100vh - 24px); }
.im-split-grid { display: grid; grid-template-columns: 240px 1fr; }
.im-phone { display: grid; place-items: center; padding: 34px 10px; background: linear-gradient(150deg, #18222d 0%, #1b2132 60%, #252535 100%); }
.im-phone .phone { width: 188px; height: 388px; animation: none; }
.im-phone .phone-screen { padding: 30px 17px 20px; }
.im-split-body { padding: 40px 34px 34px; position: relative; }
.im-split-body .im-x { top: 14px; right: 14px; }

@media (max-width: 620px) {
    .im-split-grid { grid-template-columns: 1fr; }
    .im-phone { padding: 26px 10px 8px; }
    .im-phone .phone { width: 168px; height: 346px; }
}

@media (max-width: 640px) {
    .pv-modal-card,
    .p2-card,
    .info-modal .im-card,
    .info-modal .im-card.im-split {
        top: 0; left: 0; right: 0; bottom: 0; transform: none;
        width: 100%; max-width: none; height: 100%; max-height: 100%;
        overflow-y: auto; animation: pvFade .2s ease;
    }
}

.wallet { margin-top: 4px; }
.wl-controls { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; }
.wl-search { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 9px; padding: 0 13px; height: 42px; border: 1px solid var(--dark-line); background: #18222d04; }
.wl-search svg { color: #18222d70; flex: none; }
.wl-search input { flex: 1; min-width: 0; border: 0; background: none; outline: none; font-family: var(--sans); font-size: 13px; color: var(--ink); }
.wl-search input::placeholder { color: #18222d70; }
.wl-selects { display: flex; gap: 10px; }
.wl-selects select {
    height: 42px; padding: 0 34px 0 13px; border: 1px solid var(--dark-line); background: #18222d04; cursor: pointer;
    font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: #18222dc4;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2318222d80' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat; background-position: right 12px center;
}
.wl-selects select:hover { border-color: #18222d40; }

.wl-table { width: 100%; border-collapse: collapse; }
.wl-table thead th {
    text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--dark-line);
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; font-weight: 400;
}
.wl-table thead .wl-amt-h { text-align: right; }
.wl-table td { padding: 15px 14px; border-bottom: 1px solid var(--dark-line); font-size: 13px; vertical-align: middle; }
.wl-table tbody tr { transition: background .25s ease; }
.wl-table tbody tr:hover { background: #fdad0008; }
.wl-table tbody td { transition: color .25s ease; }
.wl-tag { display: inline-block; font-family: var(--mono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 8px; border: 1px solid currentColor; white-space: nowrap; color: #8a8f98; }
.wl-tag-referral_bonus { color: #2f7d52; }
.wl-tag-activation_fee { color: #a86f00; }
.wl-tag-system_credit { color: #2f6bb3; }
.wl-tag-merchant_topup { color: #2f6bb3; }
.wl-tag-adjustment { color: #8a8f98; }
.wl-desc { color: #18222dab; max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wl-amt { text-align: right; font-family: var(--mono); font-size: 12.5px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.wl-amt.is-pos { color: #2f7d52; }
.wl-amt.is-neg { color: #b33a2f; }
.wl-date { color: #18222d80; font-size: 10px; white-space: nowrap; }

@media (max-width: 640px) {
    .wl-controls { flex-direction: column; align-items: stretch; }
    .wl-selects { flex-direction: column; }
    .wl-selects select { width: 100%; }
    .wl-table { display: block; overflow-x: auto; white-space: nowrap; }
}

.sec-list { display: flex; flex-direction: column; border: 1px solid var(--dark-line); }
.sec-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--dark-line); }
.sec-item:last-child { border-bottom: 0; }
.sec-item.is-current { background: #58bd7d0a; }
.sec-ic { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--dark-line); color: #18222d99; }
.sec-ic svg { width: 20px; height: 20px; }
.sec-item.is-current .sec-ic { color: var(--green); border-color: #58bd7d45; }
.sec-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sec-meta b { font-size: 14px; font-weight: 500; letter-spacing: -.01em; }
.sec-sub { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: #18222d80; }
.sec-current { flex: none; font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.sec-current::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px #58bd7dcc; }
.sec-kill { flex: none; background: none; border: 1px solid var(--dark-line); color: #b33a2f; cursor: pointer; padding: 8px 14px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; transition: border-color .2s, background .2s; }
.sec-kill:hover { border-color: #b33a2f; background: #b33a2f0d; }

.sec-apps { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--dark-line); background: #18222d04; }
.sec-apps-ic { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--dark-line); color: var(--orange); }
.sec-apps-ic svg { width: 22px; height: 22px; }
.sec-apps b { display: block; font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.sec-apps p { margin: 0; font-size: 12.5px; line-height: 1.6; color: #18222dad; }

.sec-form { max-width: 460px; }
.sec-form .field { margin-bottom: 18px; }
.sec-form .field label { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; margin-bottom: 8px; }
.sec-form .field input { width: 100%; height: 46px; padding: 0 14px; border: 1px solid var(--dark-line); background: #18222d04; font-family: var(--mono); font-size: 13px; color: var(--ink); outline: none; transition: border-color .2s; }
.sec-form .field input:focus { border-color: var(--orange); }
.sec-form .field.has-error input, .sec-form .field.has-error textarea { border-color: #b33a2f; }
.sec-form .field.has-error label { color: #b33a2f; }
.sec-form .field .errorlist { list-style: none; padding: 0; margin: 8px 0 0; font-size: 11px; color: #b33a2f; }
.sec-form .helptext { display: none; }

.errorlist-nonfield { list-style: none; margin: 6px 0 16px; padding: 11px 14px; border-left: 2px solid #b33a2f; background: #b33a2f0d; }
.errorlist-nonfield li { font-size: 12px; color: #b33a2f; line-height: 1.5; }

.sec-hint { margin: -6px 0 20px; font-size: 12.5px; line-height: 1.55; color: #18222dab; max-width: 460px; }
.sec-form .field textarea { width: 100%; min-height: 58px; padding: 12px 14px; border: 1px solid var(--dark-line); background: #18222d04; font-family: var(--mono); font-size: 12px; line-height: 1.5; color: var(--ink); outline: none; resize: vertical; transition: border-color .2s; }
.sec-form .field textarea:focus { border-color: var(--orange); }

.wl-from { color: #18222d70; }

.lvls { border-top: 1px solid var(--dark-line); }
.lvls-head, .lvls-row { display: grid; grid-template-columns: 38px 1fr 74px 74px 108px; align-items: center; gap: 14px; }
.lvls-head { padding: 12px 6px; border-bottom: 1px solid var(--dark-line); }
.lvls-head span { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d70; text-align: right; }
.lvls-head span:nth-child(1), .lvls-head span:nth-child(2) { text-align: left; }
.lvls-row { padding: 16px 6px; border-bottom: 1px solid var(--dark-line); transition: background .2s; }
.lvls-row:hover { background: #fdad0006; }
.lvls-lv { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--orange); }
.lvls-name { font-size: 14px; font-weight: 400; letter-spacing: -.01em; }
.lvls-n { text-align: right; font-size: 16px; font-weight: 300; letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: var(--ink); }
.lvls-n.is-green { color: var(--green); }
.lvls-n.is-bonus { font-family: var(--mono); font-size: 12.5px; color: var(--orange); }

.rt { margin-top: 4px; border: 1px solid var(--dark-line); }
.rt-root { display: flex; align-items: center; gap: 13px; padding: 16px 18px; background: linear-gradient(100deg, #18222d 0%, #1f2a37 100%); color: #fff; }
.rt-root-ic { flex: none; width: 36px; height: 36px; display: grid; place-items: center; background: var(--orange); color: var(--ink); }
.rt-root-ic svg { width: 18px; height: 18px; }
.rt-root b { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.rt-root-n { margin-left: auto; font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: #ffffff73; }

.rt-tree, .rt-children-in { list-style: none; margin: 0; padding: 0; }
.rt-tree { padding: 5px; }
.rt-children { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.4, 0, .2, 1); }
.rt-node.is-open > .rt-children { grid-template-rows: 1fr; }
.rt-children-in { overflow: hidden; min-height: 0; padding-left: 26px; }

.rt-row {
    display: flex; align-items: center; gap: 11px; padding: 8px 12px 8px 8px; margin: 1px 0;
    border: 1px solid transparent; transition: background .18s, border-color .18s;
}
.rt-row[data-rt-toggle] { cursor: pointer; }
.rt-row[data-rt-toggle]:hover { background: #fdad000a; border-color: var(--dark-line); }
.rt-row[data-rt-toggle]:focus-visible { outline: 1px solid var(--orange); outline-offset: -1px; }
.rt-caret { flex: none; width: 14px; height: 14px; display: grid; place-items: center; color: #18222d70; transition: transform .28s cubic-bezier(.4,0,.2,1), color .2s; }
.rt-node.is-open > .rt-row .rt-caret { transform: rotate(90deg); color: var(--orange); }
.rt-leaf { flex: none; width: 14px; height: 14px; display: grid; place-items: center; }
.rt-leaf::before { content: ""; width: 6px; height: 1px; background: var(--dark-line-2); }
.rt-av { flex: none; display: inline-grid; place-items: center; padding: 3px; background: var(--ink); border: 1px solid var(--dark-line); }
.rt-av .idc { display: block; }
.rt-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rt-name { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rt-date { font-family: var(--mono); font-size: 8.5px; letter-spacing: .05em; color: #18222d70; }
.rt-lvl { margin-right: 7px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.rt-status {
    margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--mono); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80;
    padding: 4px 9px; border: 1px solid var(--dark-line);
}
.rt-status svg { width: 11px; height: 11px; }
.rt-status.is-priority { color: var(--green); border-color: #58bd7d40; background: #58bd7d0d; }
.rt-branch {
    flex: none; width: 58px; display: inline-flex; align-items: center; justify-content: flex-end; gap: 6px;
    font-family: var(--mono); font-size: 11px; font-variant-numeric: tabular-nums; color: #18222d99;
}
.rt-branch svg { width: 13px; height: 13px; color: #18222d59; }
.rt-branch.is-empty { visibility: hidden; }
.rt-more { margin-top: 16px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: #18222d80; }

@media (max-width: 640px) {
    .lvls-head, .lvls-row { grid-template-columns: 30px 1fr 46px 46px 74px; gap: 8px; }
    .lvls-n { font-size: 14px; }
    .rt-status { display: none; }
    .rt-branch { width: 44px; }
    .rt-children-in { padding-left: 13px; }
    .rt-id { flex: 1; }
    .rt-row { gap: 8px; }
}

.pact { display: block; }

.pact-hero {
    display: flex; align-items: stretch; gap: 0; margin-top: 8px;
    border: 1px solid var(--dark-line); background: #18222d04;
}
.pact-hero-l { flex: 1; min-width: 0; padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.pact-hero-r { flex: none; width: 300px; display: flex; }
.pact-kick { font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); }
.pact-title { margin: 14px 0 12px; font-size: 34px; font-weight: 300; letter-spacing: -.03em; line-height: 1.08; color: var(--ink); }
.pact-title b { font-weight: 300; color: var(--orange); }
.pact-hero.is-granted .pact-title b { color: var(--green); }
.pact-lead { margin: 0; max-width: 440px; font-size: 13.5px; line-height: 1.6; color: #18222dab; }
.pact-slots { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--dark-line); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pact-slots-k { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.pact-slots-v { font-size: 15px; font-weight: 500; letter-spacing: -.01em; color: var(--orange); font-variant-numeric: tabular-nums; }

.pact-head { display: grid; grid-template-columns: 1fr 300px; gap: 12px; margin-top: 8px; align-items: stretch; }
.pact-intro { grid-column: 1; grid-row: 1; border: 1px solid var(--dark-line); background: #18222d04; padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.pact-head .pact-pricebox { grid-column: 2; grid-row: 1; }
.pact-head .pact-tiers { grid-column: 1 / -1; grid-row: 2; margin-top: 28px; }
@media (max-width: 860px) {
    .pact-head { grid-template-columns: 1fr; }
    .pact-intro { grid-column: 1; grid-row: 1; padding: 26px; }
    .pact-head .pact-tiers { grid-column: 1; grid-row: 2; margin-top: 24px; }
    .pact-head .pact-pricebox { grid-column: 1; grid-row: 3; }
    /* Both jump to the pricebox on tap (see site.js) — the box sits below them here. */
    .pact-step, .pact-intro { cursor: pointer; }
    .pact-intro { -webkit-tap-highlight-color: #fdad0014; }
}

.pact-pricebox {
    flex: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
    padding: 30px 32px; background: var(--ink); color: #fff;
}
.pact-pb-k { font-family: var(--mono); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: #ffffff70; }
.pact-pb-v { font-size: 52px; font-weight: 200; letter-spacing: -.05em; line-height: 1; margin: 6px 0 3px; color: #fff; }
.pact-pb-s { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.pact-pb-cta { width: 100%; justify-content: center; margin-top: 20px; }
.pact-mock { margin-top: 10px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #ffc23d; }


.pact-hero.is-granted { background: #58bd7d0d; border-color: #58bd7d40; }
.pact-hero.is-granted .pact-hero-r { align-items: stretch; justify-content: stretch; padding: 0; }
.pact-seal { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; }
.pact-seal svg { width: 36px; height: 36px; }

.pact-depositbox { flex: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding: 30px 32px; background: var(--ink); }
.pact-db-k { font-family: var(--mono); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: #ffffff70; }
.pact-db-v { font-size: 46px; font-weight: 200; letter-spacing: -.05em; line-height: 1; margin: 6px 0 3px; color: #fff; }
.pact-db-s { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.pact-db-cta-wrap { position: relative; width: 100%; margin-top: 20px; outline: none; }
.pact-db-cta { width: 100%; justify-content: center; }
.pact-tip {
    position: absolute; left: 50%; bottom: calc(100% + 12px); z-index: 6;
    width: max-content; max-width: 252px; padding: 11px 13px;
    background: #fff; border-top: 2px solid var(--orange); text-align: left;
    font-family: var(--mono); font-size: 8px; letter-spacing: .09em; line-height: 1.7;
    text-transform: uppercase; color: #18222d8c; box-shadow: 0 22px 55px -22px #000000b0;
    opacity: 0; visibility: hidden; transform: translate(-50%, 5px); pointer-events: none;
    transition: opacity .24s, transform .24s, visibility .24s;
}
.pact-tip b { display: block; margin-bottom: 4px; font-size: 9px; font-weight: 500; letter-spacing: .07em; color: var(--ink); }
.pact-tip::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border: 5px solid transparent; border-top-color: #fff; }
.pact-db-cta-wrap:hover .pact-tip, .pact-db-cta-wrap:focus-within .pact-tip { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.pact-deposit {
    margin-top: 20px; padding: 20px 22px;
    border: 1px solid var(--dark-line); border-left: 2px solid var(--orange); background: #fdad0007;
}
.pact-deposit-tx { display: flex; flex-direction: column; gap: 8px; }
.pact-deposit-tx p { margin: 0; font-size: 13.5px; line-height: 1.62; font-weight: 300; color: #18222dbf; }
.pact-deposit-why { margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--dark-line); display: flex; flex-direction: column; gap: 12px; }
.pact-deposit-why-k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); line-height: 1.5; margin-bottom: 2px; }
.pact-deposit-why p { margin: 0; font-size: 12.5px; line-height: 1.62; font-weight: 300; color: #18222dab; }
.pact-deposit-why em { font-style: normal; font-weight: 500; color: var(--ink); }
.pact-hl { font-weight: 500; color: #2f7d52; }
.pact-warn { font-weight: 600; color: var(--ink); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; }

.pact-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 20px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.pact-meta-cell { background: var(--white); padding: 18px 20px; display: flex; flex-direction: column; gap: 7px; }
.pact-meta-k { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.pact-meta-v { font-size: 15px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.pact-meta-v.is-green { color: var(--green); }
.pact-meta-v.is-orange { color: var(--orange); }

.pact-tiers { margin-top: 40px; }
.pact-tiers-head h2 { margin: 0 0 6px; font-size: 20px; font-weight: 300; letter-spacing: -.02em; }
.pact-tiers-head p { margin: 0 0 18px; font-size: 12.5px; line-height: 1.55; color: #18222d99; }
/* Header + footnote that frame the strip as a PRICE CALENDAR (one payment), never a
   payment plan — five priced cards in a row otherwise read as five charges. */
.pact-steps-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.pact-steps-k { font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.pact-once {
    display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px;
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase;
    color: #a86f00; background: #fdad0014; border: 1px solid #fdad0059;
}
.pact-once svg { flex: none; color: var(--orange); }
.pact-steps-note { display: flex; align-items: flex-start; gap: 8px; margin: 12px 0 0; font-size: 12px; line-height: 1.55; color: #18222d99; }
.pact-steps-note svg { flex: none; margin-top: 2px; color: var(--orange); }
.pact-steps-note b { color: var(--ink); font-weight: 500; }
.pact-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
/* Only the live price is full-strength ink, so one amount reads as "yours". */
.pact-step:not(.is-current):not(.is-done) .pact-step-p { color: #18222d80; }
.pact-step { position: relative; padding: 22px 16px 20px; border: 1px solid var(--dark-line); background: var(--white); display: flex; flex-direction: column; gap: 8px; }
.pact-step.is-current { border-color: var(--orange); background: #fdad000a; box-shadow: inset 0 2px 0 var(--orange); }
.pact-step.is-done { background: #18222d05; }  /* already-filled tiers: muted + Filled badge */
.pact-step.is-done .pact-step-n { color: #18222d59; }
.pact-step.is-done .pact-step-p { color: #18222d47; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.pact-step.is-done .pact-step-r { color: #18222d47; }
.pact-step-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 15px; }
.pact-step-done { display: inline-flex; align-items: center; gap: 3px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: #23794a; padding: 3px 6px 3px 5px; white-space: nowrap; }
.pact-step-done svg { width: 9px; height: 9px; }
.pact-step-n { font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.pact-step.is-current .pact-step-n { color: #a86f00; }
.pact-step-p { font-size: 30px; font-weight: 300; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.pact-step.is-current .pact-step-p { color: var(--orange); }
.pact-step-r { font-family: var(--mono); font-size: 8px; letter-spacing: .02em; text-transform: uppercase; color: #18222d80; white-space: nowrap; }
.pact-step-live { font-family: var(--mono); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; color: #18222d; background: var(--orange); padding: 3px 7px; white-space: nowrap; }
.pact-step-prog { display: none; }
.pact-step-bar { position: relative; width: 100%; height: 4px; background: #18222d12; overflow: hidden; }
.pact-step-bar span { position: absolute; inset: 0 auto 0 0; height: 100%; background: #18222d26; transition: width 1s cubic-bezier(.2, .7, .3, 1); }
.pact-step.is-current .pact-step-bar span { background: linear-gradient(90deg, #fdad00, #ffc23d); }
.pact-step.is-done .pact-step-bar span { background: #23794a; }
.pact-step-fill { display: block; margin-top: 5px; font-family: var(--mono); font-size: 8px; letter-spacing: .04em; color: #18222d80; font-variant-numeric: tabular-nums; }

.pact-unlocks { margin-top: 40px; }
.pact-ulist { list-style: none; margin: 0; padding: 0; border: 1px solid var(--dark-line); }
.pact-ulist li { display: flex; gap: 18px; padding: 20px 22px; border-bottom: 1px solid var(--dark-line); }
.pact-ulist li:last-child { border-bottom: 0; }
.pact-ul-n { flex: none; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--orange); padding-top: 2px; }
.pact-ulist b { display: block; margin-bottom: 6px; font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.pact-ulist p { margin: 0; font-size: 12.5px; line-height: 1.55; color: #18222dad; }
.pact-ulist-note { margin: 14px 0 0; padding-left: 14px; border-left: 2px solid var(--orange); font-size: 12px; line-height: 1.55; color: #18222d9c; }

.pact-note { display: flex; gap: 16px; align-items: center; margin-top: 40px; padding: 22px 24px; border: 1px solid #58bd7d40; background: #58bd7d0d; }
.pact-note-ic { flex: none; width: 34px; height: 34px; display: grid; place-items: center; color: var(--green); }
.pact-note-ic svg { width: 22px; height: 22px; }
.pact-note p { margin: 0; font-size: 13px; line-height: 1.55; color: #18222dc4; }

.pact-requests { margin-top: 40px; }

.pact .pv-badge { border: 0; color: #fff; height: 23px; padding: 0 10px; }
.pact .pv-badge em { color: #fff; }
.pact .pv-badge-waiting, .pact .pv-badge-partially_paid { background: #b3801e; }
.pact .pv-badge-confirming { background: #2f6bb3; }
.pact .pv-badge-finished { background: var(--green); }
.pact .pv-badge-failed { background: #b33a2f; }
.pact .pv-badge-expired, .pact .pv-badge-closed { background: #8a8f98; }

.pact .pv-modal-top { padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--dark-line); }
.pact .pv-modal-top .pv-modal-note { margin-bottom: 0; }
.pact .pv-coin { position: relative; }
.pact .pv-coin-pick { position: absolute; top: 50%; right: 11px; transform: translateY(-50%); width: 16px; height: 16px; color: var(--orange); opacity: 0; transition: opacity .15s; }
.pact .pv-coin-pick svg { width: 100%; height: 100%; }
.pact .pv-coin.is-selected .pv-coin-pick { opacity: 1; }
.pact .pv-coin.is-selected { padding-right: 32px; }
.pact .pv-pay { grid-template-columns: 1fr auto; }
.pact .pv-field-amt .pv-field-v b { color: var(--orange); }
.pact .pv-field-net { font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; }

.pact .pv-stat-wrap { display: inline-flex; align-items: center; gap: 10px; }
.pact .pv-countdown {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--mono); font-size: 9.5px; letter-spacing: .03em;
    color: #18222d80; font-variant-numeric: tabular-nums;
}
.pact .pv-countdown .pv-cd-ic { flex: none; opacity: .7; }
.pact .pv-countdown.is-expired { color: #b33a2f; }
.pact .pv-countdown.is-expired .pv-cd-ic { display: none; }

.pact .pv-cd-modal {
    display: flex; align-items: center; gap: 8px; margin: 0 0 16px; padding: 9px 12px;
    border: 1px solid var(--dark-line); background: #18222d05;
    font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: #18222d99;
}
.pact .pv-cd-modal .pv-cd-ic { flex: none; color: #18222d70; }
.pact .pv-cd-modal .pv-cd-lbl { text-transform: uppercase; letter-spacing: .1em; font-size: 8.5px; color: #18222d80; }
.pact .pv-cd-modal b { font-variant-numeric: tabular-nums; color: var(--ink); }
.pact .pv-cd-modal.is-expired { border-color: #b33a2f; background: #b33a2f0d; color: #b33a2f; }
.pact .pv-cd-modal.is-expired .pv-cd-ic, .pact .pv-cd-modal.is-expired .pv-cd-lbl { display: none; }

@media (max-width: 860px) {
    .pact-hero { flex-direction: column; }
    .pact-hero-r { width: auto; }
    .pact-hero-l { padding: 28px 26px; }
    .pact-pricebox { padding: 26px; }
}
@media (max-width: 640px) {
    .pact-meta { grid-template-columns: 1fr; }
    .pact-steps { grid-template-columns: 1fr; }
    .pact-title { font-size: 27px; }
    .pact-pb-v { font-size: 44px; }
    .pact-ulist li { gap: 14px; padding: 18px; }
    .pact .pv-pay { grid-template-columns: 1fr; }
}

/* ============ Crypto forecasts ============ */
.fcx-head { margin: 6px 0 22px; }
.fcx-head h1 { font-size: 30px; font-weight: 300; letter-spacing: -.03em; margin: 8px 0 8px; }
.fcx-head p { margin: 0; max-width: 640px; font-size: 13.5px; line-height: 1.6; color: #18222dab; }

.fc-layout { display: grid; grid-template-columns: 300px 1fr; gap: 16px; align-items: start; }

.fc-picker { border: 1px solid var(--dark-line); background: #18222d03; display: flex; flex-direction: column; max-height: 780px; }
.fc-search { display: flex; align-items: center; gap: 9px; padding: 0 13px; height: 46px; border-bottom: 1px solid var(--dark-line); flex: none; }
.fc-search svg { color: #18222d70; flex: none; }
.fc-search input { flex: 1; min-width: 0; border: 0; background: none; outline: none; font-family: var(--sans); font-size: 13px; color: var(--ink); }
.fc-search input::placeholder { color: #18222d70; }
.fc-coins { overflow-y: auto; }
.fc-coin-row { display: flex; align-items: center; gap: 10px; padding: 10px 13px; border-bottom: 1px solid var(--dark-line); cursor: pointer; transition: background .15s; }
.fc-coin-row:last-child { border-bottom: 0; }
.fc-coin-row img { width: 26px; height: 26px; flex: none; border-radius: 50%; }
.fc-coin-row:hover { background: #18222d07; }
.fc-coin-row.is-active { background: #fdad0012; box-shadow: inset 3px 0 0 var(--orange); }
.fc-row-id { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }
.fc-row-id b { font-size: 12.5px; font-weight: 600; letter-spacing: .01em; }
.fc-row-id i { font-style: normal; font-size: 10.5px; color: #18222d80; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px; }
.fc-row-chg { font-family: var(--mono); font-size: 10px; flex: none; direction: ltr; }
.fc-row-chg.is-up { color: #2f7d52; }
.fc-row-chg.is-down { color: #b33a2f; }
.fc-empty { padding: 24px; text-align: center; font-size: 12px; color: #18222d80; }

.fc-main { min-width: 0; transition: opacity .15s; }
.fc-main.is-loading { opacity: .45; }
.fc-card { border: 1px solid var(--dark-line); background: var(--white); }

.fc-hero { display: grid; grid-template-columns: 1fr 250px; border-bottom: 1px solid var(--dark-line); }
.fc-hero-l { padding: 26px 28px; min-width: 0; }
.fc-hero-r { padding: 24px; border-left: 1px solid var(--dark-line); display: flex; flex-direction: column; gap: 6px; background: #18222d04; }
.fc-coin { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.fc-coin-ic { width: 36px; height: 36px; border-radius: 50%; flex: none; background: #18222d08; }
.fc-coin-id b { display: block; font-size: 16px; font-weight: 600; }
.fc-coin-id span { font-size: 11px; color: #18222d80; }
.fc-kick { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }
.fc-verdict { margin: 8px 0 12px; font-size: 30px; font-weight: 300; letter-spacing: -.03em; line-height: 1.05; }
.fc-bull .fc-verdict { color: #2f7d52; }
.fc-bear .fc-verdict { color: #b3801e; }
.fc-neutral .fc-verdict { color: var(--ink); }
.fc-summary { margin: 0; font-size: 13.5px; line-height: 1.62; color: #18222dc9; }
.fc-price { font-size: 29px; font-weight: 300; letter-spacing: -.03em; direction: ltr; }
.fc-24h { font-family: var(--mono); font-size: 11px; direction: ltr; }
.fc-24h em { font-style: normal; color: #18222d80; letter-spacing: .1em; }
.fc-24h.is-up { color: #2f7d52; }
.fc-24h.is-down { color: #b33a2f; }
.fc-conf { margin-top: auto; }
.fc-conf-k { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.fc-conf-bar { height: 5px; background: #18222d12; margin: 6px 0 5px; }
.fc-conf-bar span { display: block; height: 100%; background: var(--orange); }
.fc-conf-v { font-family: var(--mono); font-size: 10px; color: #18222d99; }

.fc-block { padding: 22px 28px; border-bottom: 1px solid var(--dark-line); }
.fc-block .block-title { margin-bottom: 14px; }
.fc-scn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fc-scn { border: 1px solid var(--dark-line); padding: 13px 14px; }
.fc-scn-top { display: flex; justify-content: space-between; align-items: baseline; }
.fc-scn-lbl { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.fc-scn.is-bull .fc-scn-lbl { color: #2f7d52; }
.fc-scn.is-bear .fc-scn-lbl { color: #b3801e; }
.fc-scn.is-base .fc-scn-lbl { color: #18222d80; }
.fc-scn-prob { font-size: 15px; font-weight: 500; direction: ltr; }
.fc-scn-range { margin: 8px 0 9px; font-size: 12.5px; font-variant-numeric: tabular-nums; direction: ltr; }
.fc-scn-bar { height: 4px; background: #18222d12; }
.fc-scn-bar span { display: block; height: 100%; }
.fc-scn.is-bull .fc-scn-bar span { background: var(--green); }
.fc-scn.is-base .fc-scn-bar span { background: #18222d55; }
.fc-scn.is-bear .fc-scn-bar span { background: var(--orange); }
.fc-expected { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; padding: 11px 14px; border: 1px solid var(--dark-line); background: #18222d04; }
.fc-expected .k { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.fc-expected .v { font-size: 13px; font-variant-numeric: tabular-nums; direction: ltr; }

.fc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); }
.fc-cell { background: var(--white); padding: 12px 14px; display: flex; flex-direction: column; gap: 5px; }
.fc-cell .k { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; }
.fc-cell .v { font-size: 14px; font-variant-numeric: tabular-nums; direction: ltr; }
.fc-cell.is-spot { background: var(--ink); }
.fc-cell.is-spot .k { color: #ffffff80; }
.fc-cell.is-spot .v { color: #fff; }
.fc-cell.is-inval .v { color: #b33a2f; }
.fc-cell.is-support .v { color: #2f7d52; }
.fc-cell.is-resist .v { color: #b3801e; }

.fc-metrics { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 16px; }
.fc-metric { display: flex; flex-direction: column; gap: 3px; }
.fc-metric .k { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; }
.fc-metric .v { font-size: 13px; }

.fc-lists { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 22px 28px; border-bottom: 1px solid var(--dark-line); }
.fc-list ul { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.fc-list li { position: relative; padding-left: 16px; font-size: 12.5px; line-height: 1.5; color: #18222dc4; }
.fc-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--green); }
.fc-list.is-risk li::before { background: var(--orange); }

.fc-foot { padding: 20px 28px; }
.fc-stamp { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: #18222d80; }
.fc-tag { background: var(--ink); color: #fff; padding: 3px 8px; letter-spacing: .12em; }
.fc-agree { margin: 14px 0 0; font-size: 12.5px; line-height: 1.55; color: #18222d99; font-style: italic; }
.fc-agents { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; font-family: var(--mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: #18222d94; }
.fc-agents-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px #58bd7d1f; flex: none; }
.fc-disclaimer { margin: 12px 0 0; padding-top: 14px; border-top: 1px solid var(--dark-line); font-size: 11px; line-height: 1.55; color: #18222d80; }

.fc-state { padding: 60px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fc-state .fc-hero-pick { margin: 0 auto 4px; }
.fc-state-h { margin: 0; font-size: 17px; font-weight: 400; }
.fc-state-p { margin: 0; max-width: 430px; font-size: 13px; line-height: 1.6; color: #18222d99; }
.fc-spinner { width: 26px; height: 26px; border: 2px solid #18222d18; border-top-color: var(--orange); border-radius: 50%; animation: fcspin .8s linear infinite; }
@keyframes fcspin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
    .fc-layout { grid-template-columns: 1fr; }
    .fc-picker { max-height: 320px; }
    .fc-hero { grid-template-columns: 1fr; }
    .fc-hero-r { border-left: 0; border-top: 1px solid var(--dark-line); flex-direction: row; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
    .fc-conf { margin-top: 0; width: 100%; }
    .fc-scn-grid { grid-template-columns: 1fr; }
    .fc-lists { grid-template-columns: 1fr; gap: 18px; }
    .fcx-head h1 { font-size: 25px; }
    .fc-hero-l, .fc-block, .fc-lists, .fc-foot { padding-left: 20px; padding-right: 20px; }
}

[dir="rtl"] .fc-row-id { margin-right: 0; margin-left: auto; }
[dir="rtl"] .fc-coin-row.is-active { box-shadow: inset -3px 0 0 var(--orange); }
[dir="rtl"] .fc-hero-r { border-left: 0; border-right: 1px solid var(--dark-line); }
[dir="rtl"] .fc-list li { padding-left: 0; padding-right: 16px; }
[dir="rtl"] .fc-list li::before { left: auto; right: 0; }

/* ===== Crypto forecasts — redesign (top selector, modal, live, ladder) ===== */
.fcx-head p { max-width: none; }

/* sharp, non-clipping coin icons (design system = sharp corners) */
.fc-coin-ic, .fc-coin-row img, .fc-select-ic, .fc-state .fc-coin-ic { border-radius: 0 !important; object-fit: contain; background: transparent; }

.fc-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.fc-select { display: inline-flex; align-items: center; gap: 11px; padding: 9px 14px; border: 1px solid var(--dark-line); background: var(--white); cursor: pointer; transition: border-color .18s, background .18s; }
.fc-select:hover { border-color: #18222d40; background: #18222d04; }
.fc-select-ic { width: 30px; height: 30px; flex: none; }
.fc-select-id { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.fc-select-id b { font-size: 15px; font-weight: 600; }
.fc-select-id i { font-style: normal; font-size: 10.5px; color: #18222d80; }
.fc-select-chev { color: #18222d80; flex: none; }
.fc-select-hint { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-left: 4px; }
.fc-updated { text-align: right; }
.fc-updated .k { display: block; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.fc-updated .v { font-size: 12.5px; color: #18222dc4; direction: ltr; }

.fc-modal { position: fixed; inset: 0; z-index: 220; display: none; }
.fc-modal[aria-hidden="false"] { display: block; }
.fc-modal-scrim { position: absolute; inset: 0; background: #18222dcc; backdrop-filter: blur(3px); }
.fc-modal-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(460px, calc(100vw - 28px)); max-height: min(660px, calc(100vh - 40px)); display: flex; flex-direction: column; background: var(--white); border-top: 3px solid var(--orange); box-shadow: 0 40px 90px -30px #000000a6; animation: pvRise .28s cubic-bezier(.16,.84,.44,1); }
.fc-modal-top { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--dark-line); flex: none; }
.fc-modal-top .fc-search { flex: 1; border: 0; height: auto; padding: 0; }
.fc-modal-x { flex: none; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--dark-line); color: #18222d80; cursor: pointer; }
.fc-modal-x:hover { color: var(--ink); border-color: #18222d55; }
.fc-modal-scroll { overflow-y: auto; }
.fc-modal-lbl { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; padding: 12px 16px 5px; }

.fc-star { flex: none; width: 30px; height: 30px; display: grid; place-items: center; border: 0; background: none; cursor: pointer; color: #18222d38; transition: color .15s; }
.fc-star svg { width: 17px; height: 17px; fill: none; }
.fc-star:hover { color: var(--orange); }
.fc-star.is-on { color: var(--orange); }
.fc-star.is-on svg { fill: var(--orange); }

.fc-price-wrap { display: flex; align-items: center; gap: 9px; }
.fc-live { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #2f7d52; }
.fc-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px #58bd7d24; animation: fcpulse 1.6s ease-in-out infinite; }
@keyframes fcpulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.fc-hviz { margin: 2px 0; }
.fc-hviz-k { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; }
.fc-hviz-track { position: relative; height: 8px; margin: 8px 0 6px; }
.fc-hviz-band { position: absolute; inset: 0; background: linear-gradient(90deg, #b3801e2e, #18222d10 50%, #58bd7d2e); }
.fc-hviz-dot { position: absolute; top: 50%; left: 50%; width: 10px; height: 10px; transform: translate(-50%, -50%); background: var(--ink); box-shadow: 0 0 0 3px var(--white); }
.fc-hviz-ends { display: flex; justify-content: space-between; font-size: 11px; font-variant-numeric: tabular-nums; direction: ltr; color: #18222d99; }

.fc-ladder { border: 1px solid var(--dark-line); }
.fc-lad { display: flex; align-items: center; gap: 12px; padding: 11px 15px; border-bottom: 1px solid var(--dark-line); }
.fc-lad:last-child { border-bottom: 0; }
.fc-lad-tag { font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; min-width: 96px; }
.fc-lad-line { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, #18222d1f 0 5px, transparent 5px 10px); }
.fc-lad-v { font-size: 14px; font-variant-numeric: tabular-nums; direction: ltr; min-width: 100px; text-align: right; }
.fc-lad.is-resist .fc-lad-tag, .fc-lad.is-resist .fc-lad-v { color: #b3801e; }
.fc-lad.is-support .fc-lad-tag, .fc-lad.is-support .fc-lad-v { color: #2f7d52; }
.fc-lad.is-inval .fc-lad-tag, .fc-lad.is-inval .fc-lad-v { color: #b33a2f; }
.fc-lad.is-spot { background: var(--ink); }
.fc-lad.is-spot .fc-lad-tag { color: #ffffff9c; }
.fc-lad.is-spot .fc-lad-v { color: #fff; font-size: 16px; }
.fc-lad.is-spot .fc-lad-line { background: repeating-linear-gradient(90deg, #ffffff30 0 5px, transparent 5px 10px); }

@media (max-width: 700px) {
    .fc-lad-tag { min-width: 0; }
    .fc-lad-v { min-width: 0; }
    .fc-top { gap: 10px; }
    .fc-updated { text-align: left; }
}
[dir="rtl"] .fc-lad-v { text-align: left; }
[dir="rtl"] .fc-select-id { text-align: right; }
[dir="rtl"] .fc-updated { text-align: left; }

/* ===== Crypto forecasts — v3 (richer visuals, tighter spacing) ===== */
.fc-hero-l { display: flex; gap: 24px; padding: 22px 26px; align-items: flex-start; }
.fc-coin { flex: none; display: flex; flex-direction: column; gap: 6px; width: 88px; margin-bottom: 0; align-items: flex-start; }
.fc-coin-ic { width: 46px; height: 46px; }
.fc-coin-id { display: flex; flex-direction: column; gap: 1px; }
.fc-coin-id b { font-size: 16px; font-weight: 600; }
.fc-coin-id span { font-size: 10.5px; color: #18222d80; }
.fc-coin-rank { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; color: #18222d6b; }
.fc-hero-body { flex: 1; min-width: 0; }
.fc-kick { display: block; }
.fc-kick em { font-style: normal; color: #18222d80; }
.fc-verdict { margin: 7px 0 11px; }
.fc-hero-r { padding: 22px 24px; gap: 11px; justify-content: flex-start; }
.fc-conf { margin-top: 4px; }

.fc-spark { position: relative; height: 38px; }
.fc-spark svg { width: 100%; height: 34px; display: block; }
.fc-bull .fc-spark { color: #2f7d52; }
.fc-bear .fc-spark { color: #b3801e; }
.fc-neutral .fc-spark { color: #18222d80; }
.fc-spark-lbl { position: absolute; top: 0; right: 0; font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; color: #18222d6b; }

.fc-block { padding: 18px 26px; }
.fc-block .block-title { margin-bottom: 12px; }
.fc-lists { padding: 18px 26px; }

.fc-snap { display: grid; grid-template-columns: 1.1fr 1.1fr .9fr; gap: 24px; padding: 16px 26px; border-bottom: 1px solid var(--dark-line); background: #18222d03; }
.fc-snap-cell { min-width: 0; }
.fc-snap-k { display: block; font-family: var(--mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; color: #18222d80; margin-bottom: 9px; }
.fc-mtf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.fc-mtf-chip { display: flex; flex-direction: column; gap: 2px; padding: 7px 6px; border: 1px solid var(--dark-line); text-align: center; }
.fc-mtf-chip .t { font-family: var(--mono); font-size: 8px; letter-spacing: .05em; color: #18222d80; }
.fc-mtf-chip .n { font-size: 11px; font-variant-numeric: tabular-nums; direction: ltr; }
.fc-mtf-chip.is-up { background: #58bd7d0d; } .fc-mtf-chip.is-up .n { color: #2f7d52; }
.fc-mtf-chip.is-down { background: #b33a2f0a; } .fc-mtf-chip.is-down .n { color: #b33a2f; }

.fc-range { position: relative; height: 8px; background: linear-gradient(90deg, #b33a2f2e, #fdad002e 50%, #58bd7d2e); margin-bottom: 8px; }
.fc-range-fill { display: none; }
.fc-range-dot { position: absolute; top: 50%; width: 12px; height: 12px; transform: translate(-50%, -50%); background: var(--ink); box-shadow: 0 0 0 3px var(--white); }
.fc-range-cap { display: flex; justify-content: space-between; font-size: 10.5px; font-variant-numeric: tabular-nums; direction: ltr; color: #18222d94; }

.fc-snap-stats { display: flex; flex-direction: column; gap: 9px; }
.fc-stat { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.fc-stat .k { font-family: var(--mono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; color: #18222d80; }
.fc-stat .val { font-size: 13px; font-variant-numeric: tabular-nums; direction: ltr; }
.fc-stat .val.is-down { color: #b33a2f; }

.fc-probbar { display: flex; height: 8px; margin-bottom: 13px; overflow: hidden; }
.fc-probbar .seg { display: block; height: 100%; }
.fc-probbar .is-bull { background: var(--green); }
.fc-probbar .is-base { background: #18222d38; }
.fc-probbar .is-bear { background: var(--orange); }

.fc-cols { display: grid; grid-template-columns: 1fr 1fr; }
.fc-col { border-bottom: 1px solid var(--dark-line); }
.fc-cols .fc-col:first-child { border-right: 1px solid var(--dark-line); }

.fc-ladder { border: 1px solid var(--dark-line); }
.fc-lad { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 14px; border-bottom: 1px solid var(--dark-line); border-left: 3px solid transparent; }
.fc-lad:last-child { border-bottom: 0; }
.fc-lad-tag { min-width: 0; font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: #18222d70; }
.fc-lad-v { min-width: 0; text-align: right; font-size: 13.5px; font-weight: 500; font-variant-numeric: tabular-nums; direction: ltr; }
.fc-lad.is-resist { border-left-color: #b3801e; } .fc-lad.is-resist .fc-lad-tag, .fc-lad.is-resist .fc-lad-v { color: #b3801e; }
.fc-lad.is-support { border-left-color: #2f7d52; } .fc-lad.is-support .fc-lad-tag, .fc-lad.is-support .fc-lad-v { color: #2f7d52; }
.fc-lad.is-inval { border-left-color: #b33a2f; } .fc-lad.is-inval .fc-lad-tag, .fc-lad.is-inval .fc-lad-v { color: #b33a2f; }
.fc-lad.is-spot { background: var(--ink); border-left-color: var(--orange); }
.fc-lad.is-spot .fc-lad-tag { color: #ffffff94; } .fc-lad.is-spot .fc-lad-v { color: #fff; font-size: 15px; }

.fc-gauge { margin-bottom: 16px; }
.fc-gauge-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.fc-gauge-n { font-size: 12px; font-variant-numeric: tabular-nums; color: var(--ink); }
.fc-gauge-track { position: relative; height: 8px; background: #18222d0d; }
.fc-gauge-os { position: absolute; left: 0; top: 0; bottom: 0; width: 30%; background: #58bd7d24; }
.fc-gauge-ob { position: absolute; right: 0; top: 0; bottom: 0; width: 30%; background: #fdad0026; }
.fc-gauge-mark { position: absolute; top: -3px; bottom: -3px; width: 3px; background: var(--ink); transform: translateX(-50%); }
.fc-gauge-cap { display: flex; justify-content: space-between; margin-top: 5px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; color: #18222d70; }

.fc-ma { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 9px; }
.fc-ma-chip { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; padding: 8px 10px; border: 1px solid var(--dark-line); border-left: 3px solid #18222d20; }
.fc-ma-chip .k { font-family: var(--mono); font-size: 8.5px; letter-spacing: .07em; color: #18222d80; }
.fc-ma-chip .v { font-size: 12px; font-variant-numeric: tabular-nums; direction: ltr; margin-right: auto; }
.fc-ma-chip .t { font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.fc-ma-chip.is-above { border-left-color: #2f7d52; } .fc-ma-chip.is-above .t { color: #2f7d52; }
.fc-ma-chip.is-below { border-left-color: #b33a2f; } .fc-ma-chip.is-below .t { color: #b33a2f; }
.fc-ma-sum { font-size: 11.5px; color: #18222d99; margin: 0 0 14px; }

.fc-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 20px; margin-top: 4px; }
.fc-metric .v em { font-style: normal; color: #18222d80; font-size: 10px; }
.fc-badge.is-up { color: #2f7d52; } .fc-badge.is-down { color: #b3801e; }

.fc-list.is-watch li::before { background: #18222d55; }

.fc-foot { padding: 16px 26px; }
.fc-agree { display: flex; gap: 11px; align-items: stretch; margin: 0 0 12px; font-size: 12.5px; line-height: 1.55; color: #18222db0; font-style: normal; }
.fc-agree-mark { flex: none; width: 3px; background: var(--orange); }
.fc-disclaimer { margin: 0; padding-top: 12px; }

.fc-noresult { padding: 40px 20px; text-align: center; font-size: 13px; color: #18222d99; }

@media (max-width: 820px) {
    .fc-snap { grid-template-columns: 1fr; gap: 16px; }
    .fc-cols { grid-template-columns: 1fr; }
    .fc-cols .fc-col:first-child { border-right: 0; }
}
@media (max-width: 620px) {
    .fc-hero-l { flex-direction: column; gap: 14px; padding: 20px; }
    .fc-coin { flex-direction: row; align-items: center; width: auto; }
    .fc-ma { grid-template-columns: 1fr; }
    .fc-metrics { grid-template-columns: 1fr; }
    .fc-mtf { grid-template-columns: repeat(2, 1fr); }
}
[dir="rtl"] .fc-lad { border-left: 0; border-right: 3px solid transparent; }
[dir="rtl"] .fc-lad.is-resist { border-right-color: #b3801e; }
[dir="rtl"] .fc-lad.is-support { border-right-color: #2f7d52; }
[dir="rtl"] .fc-lad.is-inval { border-right-color: #b33a2f; }
[dir="rtl"] .fc-lad.is-spot { border-right-color: var(--orange); }
[dir="rtl"] .fc-lad-v { text-align: left; }
[dir="rtl"] .fc-ma-chip { border-left: 1px solid var(--dark-line); border-right: 3px solid #18222d20; }
[dir="rtl"] .fc-cols .fc-col:first-child { border-right: 0; border-left: 1px solid var(--dark-line); }

/* ===== Crypto forecasts — v4 (spacing, height-match, AI icons, advice) ===== */
.fc-kick { margin-bottom: 2px; }
.fc-verdict { margin: 13px 0 11px; }
.fc-block { padding: 15px 26px; }
.fc-block .block-title { margin-bottom: 10px; }
.fc-lists { padding: 15px 26px; }

/* sparkline: label sits above the chart, no overlap */
.fc-spark { position: static; height: auto; margin: 2px 0; }
.fc-spark-lbl { position: static; display: block; margin: 0 0 3px; text-align: right; }
.fc-spark svg { height: 30px; }

/* Key levels fills its column so its height matches Momentum & structure */
.fc-cols .fc-col { display: flex; flex-direction: column; }
.fc-cols .fc-col > .block-title { flex: none; }
.fc-cols .fc-col .fc-ladder { flex: 1; display: flex; flex-direction: column; }
.fc-cols .fc-col .fc-lad { flex: 1; }
.fc-lad-v { font-size: 13px; }
.fc-lad.is-spot .fc-lad-v { font-size: 14px; }

/* AI "mind" icon on the synthesis note (replaces the orange bar) */
.fc-agree { display: flex; gap: 11px; align-items: flex-start; }
.fc-agree-ic { flex: none; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--dark-line); color: var(--orange); }
.fc-agree-ic svg { width: 18px; height: 18px; }
.fc-agree p { margin: 0; }

/* holders & traders advice callout */
.fc-advice { display: flex; gap: 13px; align-items: flex-start; padding: 15px 26px; border-bottom: 1px solid var(--dark-line); background: #58bd7d0a; }
.fc-advice-ic { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #58bd7d45; color: #2f7d52; background: var(--white); }
.fc-advice-ic svg { width: 19px; height: 19px; }
.fc-advice-tx { min-width: 0; }
.fc-advice-k { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #2f7d52; margin-bottom: 4px; }
.fc-advice-tx p { margin: 0; font-size: 13px; line-height: 1.55; color: #18222dcc; }

@media (max-width: 620px) {
    .fc-advice { padding: 14px 20px; }
    .fc-cols .fc-col .fc-lad { flex: none; }
}

/* v5 — Updated date sits under the coin selector */
.fc-top { flex-direction: column; align-items: flex-start; gap: 8px; }
.fc-updated { text-align: left; }
.fc-updated .k { display: inline; }
.fc-updated .v { display: inline; margin-left: 5px; }

/* v6 — coin selector + date as the card header; hero without the coin logo */
.fc-cardtop { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; padding: 14px 26px; border-bottom: 1px solid var(--dark-line); }
.fc-hero-l { display: block; padding: 20px 26px; }
.fc-agree-ic svg { width: 20px; height: 20px; display: block; }
.fc-card .block-title { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin: 0 0 18px; }

/* v7 — coin selector in hero-left (next to the outlook); centered icons */
.fc-hero-l { display: flex; gap: 22px; padding: 20px 26px; align-items: flex-start; }
.fc-hero-pick { flex: none; width: 122px; display: flex; flex-direction: column; gap: 8px; }
.fc-hero-body { flex: 1; min-width: 0; }
.fc-select-v { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; padding: 12px; border: 1px solid var(--dark-line); background: var(--white); cursor: pointer; text-align: left; transition: border-color .18s, background .18s; }
.fc-select-v:hover { border-color: #18222d40; background: #18222d04; }
.fc-select-v .fc-select-ic { width: 38px; height: 38px; }
.fc-select-v .fc-select-id { display: flex; flex-direction: column; gap: 1px; }
.fc-select-v .fc-select-id b { font-size: 15px; font-weight: 600; }
.fc-select-v .fc-select-id i { font-style: normal; font-size: 10.5px; color: #18222d80; line-height: 1.25; }
.fc-select-v .fc-select-chev { position: absolute; top: 9px; right: 9px; color: #18222d60; }
.fc-hero-pick .fc-updated { text-align: left; }
.fc-hero-pick .fc-updated .k, .fc-hero-pick .fc-updated .v { display: block; }
.fc-hero-pick .fc-updated .v { margin-left: 0; margin-top: 1px; }

.fc-advice { align-items: center; }
.fc-agree { align-items: center; }
.fc-coin-tap { cursor: pointer; }

@media (max-width: 620px) {
    .fc-hero-l { flex-direction: column; gap: 14px; }
    .fc-hero-pick { width: 100%; }
    .fc-select-v { flex-direction: row; align-items: center; }
    .fc-select-v .fc-select-chev { top: 50%; transform: translateY(-50%); }
}

/* v8 — coin selector: centered logo/name, no date */
.fc-select-v { align-items: center; text-align: center; padding: 14px 12px; }
.fc-select-v .fc-select-id { align-items: center; }
@media (max-width: 620px) {
    .fc-select-v { flex-direction: row; text-align: left; }
    .fc-select-v .fc-select-id { align-items: flex-start; }
}

/* v9 — kick shows ONLY the directional bias, as a high-contrast sharp-cornered tag */
.fc-kick { display: inline-block; margin-bottom: 0; }
.fc-kick em {
    font-style: normal; font-family: var(--mono); font-size: 10px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase; line-height: 1;
    color: #fff; background: var(--ink); padding: 5px 9px;
}
.fc-bull .fc-kick em { background: #23794a; }
.fc-bear .fc-kick em { background: #b3801e; }
.fc-neutral .fc-kick em { background: #4b555f; }

/* ==================== Landing — free crypto forecasts band ==================== */
.fx-band { padding: clamp(64px, 9vw, 130px) 0; background: #f6f7f8; border-top: 1px solid #18222d12; border-bottom: 1px solid #18222d12; }



/* ============================================================================
   AI TOOLS — hub, audit form, audit report
   Severity is the only new colour axis: it must read instantly and identically
   in the hub, the findings list and the verdict frame.
   ========================================================================== */

.ait-head { margin-bottom: 34px; }
.ait-head h1 { margin: 0; font-size: clamp(30px, 4vw, 44px); font-weight: 300; line-height: 1.02; letter-spacing: -.055em; }
.ait-head h1 b { font-weight: 300; color: var(--orange); }
.ait-head p { margin: 14px 0 0; font-size: 13.5px; line-height: 1.65; color: #18222d99; }

/* --- hub grid --- */
.ait-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ait-card {
    position: relative; display: flex; flex-direction: column; gap: 9px;
    padding: 26px 24px 24px; border: 1px solid var(--dark-line); background: var(--white);
    color: var(--ink); text-decoration: none; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ait-card.is-live:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 14px 40px #18222d14; }
.ait-card.is-soon { background: #18222d05; border-style: dashed; }
.ait-card.is-soon h2, .ait-card.is-soon p, .ait-card.is-soon .ait-tag { opacity: .62; }
.ait-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.ait-ic { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--dark-line); color: var(--orange); }
.ait-ic svg { width: 19px; height: 19px; }
.ait-card.is-soon .ait-ic { color: #18222d59; }
.ait-badge { font-family: var(--mono); font-size: 7.5px; letter-spacing: .13em; text-transform: uppercase; padding: 4px 7px; white-space: nowrap; }
.ait-badge.is-open { background: var(--orange); color: var(--ink); }
.ait-badge.is-soon { border: 1px solid var(--dark-line); color: #18222d80; }
.ait-card h2 { margin: 0; font-size: 19px; font-weight: 400; letter-spacing: -.03em; }
.ait-tag { font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.ait-card.is-soon .ait-tag { color: #18222d80; }
.ait-card p { margin: 2px 0 0; font-size: 12.5px; line-height: 1.6; color: #18222d99; }
.ait-go { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink); }
.ait-card.is-live:hover .ait-go { color: var(--orange); gap: 12px; }

/* --- recently audited --- */
.ait-recent { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ait-rec { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--dark-line); background: var(--white); color: var(--ink); text-decoration: none; }
.ait-rec:hover { border-color: var(--orange); }
.ait-rec-band { flex: none; width: 3px; align-self: stretch; background: var(--sev-low); }
.ait-rec-band.is-critical { background: var(--sev-critical); }
.ait-rec-band.is-high { background: var(--sev-high); }
.ait-rec-band.is-caution { background: var(--sev-medium); }
.ait-rec-band.is-clear { background: var(--sev-good); }
.ait-rec-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.ait-rec-body b { font-size: 13px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ait-rec-body i { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; font-style: normal; color: #18222d80; }
.ait-rec-score { font-size: 17px; font-weight: 300; color: #18222d80; font-variant-numeric: tabular-nums; }

/* --- audit form --- */
.ait-form { display: grid; grid-template-columns: 200px 1fr auto; gap: 12px; align-items: end; margin-bottom: 12px; }
.ait-lbl { display: block; margin-bottom: 7px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.ait-form input[type="text"], .ait-select select {
    width: 100%; height: 46px; padding: 0 14px; border: 1px solid var(--dark-line); background: var(--white);
    color: var(--ink); font-family: var(--mono); font-size: 12.5px; border-radius: 0; -webkit-appearance: none; appearance: none;
}
.ait-form input[type="text"]:focus, .ait-select select:focus { outline: none; border-color: var(--orange); }
.ait-select { position: relative; }
.ait-select svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; color: #18222d80; }
/* .button carries min-height: 52px, which overrides a plain height — reset it so the
   button lines up exactly with the 46px inputs beside it. */
.ait-run { height: 46px; min-height: 46px; white-space: nowrap; }
.ait-form-note { margin: 0 0 20px; font-size: 12px; line-height: 1.55; color: #18222d8c; }
.ait-warn, .ait-error {
    display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px; padding: 13px 15px;
    font-size: 12.5px; line-height: 1.55;
}
.ait-warn { border: 1px solid #fdad0059; background: #fdad0012; color: #7a5200; }
.ait-error { border: 1px solid #b3261e40; background: #b3261e0d; color: var(--sev-critical); }
.ait-warn svg, .ait-error svg { flex: none; margin-top: 1px; }

/* --- pending --- */
.ait-pending { padding: 46px 34px; border: 1px solid var(--dark-line); background: #18222d04; text-align: center; }
.ait-spin { width: 30px; height: 30px; margin: 0 auto 20px; border: 2px solid #18222d1a; border-top-color: var(--orange); border-radius: 50%; animation: aitSpin .9s linear infinite; }
@keyframes aitSpin { to { transform: rotate(360deg); } }
.ait-pending h2 { margin: 0 0 8px; font-size: 22px; font-weight: 300; letter-spacing: -.03em; }
.ait-pending p { margin: 0; font-size: 12.5px; line-height: 1.6; color: #18222d99; }
.ait-steps { display: inline-flex; flex-direction: column; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; text-align: left; }
.ait-steps li { position: relative; padding-left: 20px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.ait-steps li::before { content: ""; position: absolute; left: 0; top: 4px; width: 6px; height: 6px; background: var(--orange); animation: aitPulse 1.6s ease-in-out infinite; }
.ait-steps li:nth-child(2)::before { animation-delay: .2s; }
.ait-steps li:nth-child(3)::before { animation-delay: .4s; }
.ait-steps li:nth-child(4)::before { animation-delay: .6s; }
@keyframes aitPulse { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

/* --- audit report --- */








@media (max-width: 1080px) {
    .ait-grid, .ait-recent { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .ait-grid, .ait-recent { grid-template-columns: 1fr; }
    .ait-form { grid-template-columns: 1fr; }
    .ait-run { width: 100%; }
}

/* --- audit report: unverified checks + primary evidence --- */



.ait-recent-note { font-size: 11.5px; color: #18222d80; }

@media (max-width: 760px) {
}

/* Score withheld: a dash must never read as a calm, low number. */

/* --- audit report: score transparency + exit-cost model --- */



@media (max-width: 760px) {
}

/* ============================================================================
   AUDIT REPORT
   Severity is ORDINAL, so it is drawn as one hue deepening with seriousness
   rather than five competing colours: measured with the palette validator, a
   five-hue set collapsed to ΔE 1.7 under deuteranopia (indistinguishable), while
   this ramp is monotonic in lightness and readable without colour at all.
   Badge text colour is chosen per measured contrast, not by eye.
   ========================================================================== */
:root {
    --sev-critical: #8f1d16;   /* L .426 · 8.9:1 on white → white text */
    --sev-high:     #bc3b1d;   /* L .537 · 5.6:1        → white text  */
    --sev-medium:   #d98324;   /* L .687 · 2.9:1        → ink text    */
    --sev-low:      #e0b070;   /* L .787 · 2.0:1        → ink text    */
    --sev-good:     #23794a;
    --sev-unknown:  #6b7683;
    --arx-line: #18222d1a;
    --arx-soft: #18222d05;
}

.arx { border: 1px solid var(--arx-line); background: var(--white); }

/* ---------- verdict hero ---------- */
.arx-hero { display: grid; grid-template-columns: 1fr 210px; gap: 40px; padding: 34px 36px 30px; border-bottom: 1px solid var(--arx-line); }
.arx-critical .arx-hero { background: linear-gradient(180deg, #8f1d160e, transparent 70%); box-shadow: inset 3px 0 0 var(--sev-critical); }
.arx-high     .arx-hero { background: linear-gradient(180deg, #bc3b1d0e, transparent 70%); box-shadow: inset 3px 0 0 var(--sev-high); }
.arx-caution  .arx-hero { background: linear-gradient(180deg, #d983240f, transparent 70%); box-shadow: inset 3px 0 0 var(--sev-medium); }
.arx-clear    .arx-hero { background: linear-gradient(180deg, #23794a0d, transparent 70%); box-shadow: inset 3px 0 0 var(--sev-good); }
.arx-inconclusive .arx-hero { background: linear-gradient(180deg, #6b768310, transparent 70%); box-shadow: inset 3px 0 0 var(--sev-unknown); }

.arx-band { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; }
.arx-band-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.arx-critical .arx-band { color: var(--sev-critical); }
.arx-high     .arx-band { color: var(--sev-high); }
.arx-caution  .arx-band { color: #a2620f; }
.arx-clear    .arx-band { color: var(--sev-good); }
.arx-inconclusive .arx-band { color: var(--sev-unknown); }

.arx-verdict { margin: 12px 0 10px; font-size: clamp(22px, 2.6vw, 30px); font-weight: 300; line-height: 1.12; letter-spacing: -.04em; }
.arx-summary { margin: 0; max-width: 62ch; font-size: 13.5px; line-height: 1.65; color: #18222dab; }

/* severity distribution — 2px surface gaps between segments, per mark spec */
.arx-dist { margin-top: 22px; }
.arx-dist-bar { display: flex; gap: 2px; height: 8px; }
.arx-dist-bar span { display: block; min-width: 10px; border-radius: 2px; }
.arx-seg.is-critical { background: var(--sev-critical); }
.arx-seg.is-high { background: var(--sev-high); }
.arx-seg.is-medium { background: var(--sev-medium); }
.arx-seg.is-low { background: var(--sev-low); }
.arx-seg.is-unknown { background: var(--sev-unknown); }
.arx-seg.is-good { background: var(--sev-good); }
.arx-dist-key { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 11px 0 0; padding: 0; list-style: none; }
.arx-dist-key li { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-variant-numeric: tabular-nums; color: var(--ink); }
.arx-dist-key i { font-style: normal; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.arx-key-chip { width: 9px; height: 9px; border-radius: 2px; flex: none; }
.arx-key-chip.is-critical { background: var(--sev-critical); }
.arx-key-chip.is-high { background: var(--sev-high); }
.arx-key-chip.is-medium { background: var(--sev-medium); }
.arx-key-chip.is-low { background: var(--sev-low); }
.arx-key-chip.is-unknown { background: var(--sev-unknown); }
.arx-key-chip.is-good { background: var(--sev-good); }

/* ---------- dial ---------- */
.arx-meter { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.arx-dial { position: relative; width: 132px; height: 132px; }
.arx-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.arx-dial circle { fill: none; stroke-width: 8; }
.arx-dial-track { stroke: #18222d12; }
.arx-dial-fill {
    stroke: var(--sev-good); stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: calc(326.7 - (326.7 * var(--pct, 0) / 100));
    transition: stroke-dashoffset 1.1s cubic-bezier(.2, .7, .2, 1);
}
.arx-critical .arx-dial-fill { stroke: var(--sev-critical); }
.arx-high     .arx-dial-fill { stroke: var(--sev-high); }
.arx-caution  .arx-dial-fill { stroke: var(--sev-medium); }
.arx-dial.is-na .arx-dial-track { stroke-dasharray: 4 7; stroke: #18222d24; }
.arx-dial-num {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-size: 40px; font-weight: 250; letter-spacing: -.06em; font-variant-numeric: tabular-nums; color: var(--ink);
}
.arx-critical .arx-dial-num { color: var(--sev-critical); }
.arx-high     .arx-dial-num { color: var(--sev-high); }
.arx-caution  .arx-dial-num { color: #a2620f; }
.arx-clear    .arx-dial-num { color: var(--sev-good); }
.arx-dial.is-na .arx-dial-num { color: var(--sev-unknown); }
.arx-meter-k { font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: #18222d80; }
.arx-meter-scale { font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; color: #18222d73; }
.arx-meter-scale.is-na { font-family: var(--sans); font-size: 10.5px; line-height: 1.45; letter-spacing: 0; text-transform: none; color: var(--sev-unknown); }
.arx-conf { width: 100%; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--arx-line); display: flex; flex-direction: column; gap: 6px; }
.arx-conf-bar { display: block; height: 3px; background: #18222d12; }
.arx-conf-bar i { display: block; height: 100%; background: var(--ink); }
.arx-conf span:last-child { font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }

/* ---------- identity ---------- */
.arx-id { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 16px 36px; border-bottom: 1px solid var(--arx-line); background: var(--arx-soft); }
.arx-id-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.arx-id-name { display: flex; align-items: baseline; gap: 9px; font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.arx-id-name b { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; padding: 2px 6px; background: var(--orange); color: var(--ink); font-weight: 500; }
.arx-id-addr { font-family: var(--mono); font-size: 11px; color: #18222d8c; word-break: break-all; }
.arx-id-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.arx-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border: 1px solid var(--arx-line); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d99; background: var(--white); }
.arx-chip-link { color: var(--ink); }
.arx-chip-link:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- signal cards ---------- */
.arx-signals { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--arx-line); border-bottom: 1px solid var(--arx-line); }
.arx-sig { padding: 22px 26px; background: var(--white); }
.arx-sig h3 { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.arx-sig h3 svg { width: 13px; height: 13px; flex: none; }
.arx-sig.is-bad h3 { color: var(--sev-high); }
.arx-sig.is-good h3 { color: var(--sev-good); }
.arx-sig.is-unknown h3 { color: var(--sev-unknown); }
.arx-sig ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.arx-sig li { position: relative; padding-left: 15px; font-size: 12.5px; line-height: 1.55; color: #18222dc4; }
.arx-sig li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 1px; }
.arx-sig.is-bad li::before { background: var(--sev-high); }
.arx-sig.is-good li::before { background: var(--sev-good); }
.arx-sig.is-unknown li::before { background: var(--sev-unknown); }
.arx-sig-note { margin: 12px 0 0; font-size: 11px; line-height: 1.5; color: #18222d80; }

/* ---------- advice ---------- */
.arx-advice { display: flex; gap: 13px; padding: 20px 36px; border-bottom: 1px solid var(--arx-line); background: #fdad000a; }
.arx-advice svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--orange); }
.arx-advice p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink); }

/* ---------- blocks ---------- */
.arx-block { padding: 24px 36px; border-bottom: 1px solid var(--arx-line); }
.arx-block:last-of-type { border-bottom: none; }
.arx-block-head { margin-bottom: 16px; }
.arx-block-head h3 { margin: 0; font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.arx-block-head span { display: block; margin-top: 4px; font-size: 11.5px; line-height: 1.5; color: #18222d80; }

/* findings */
.arx-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 2px; }
.arx-item { display: grid; grid-template-columns: 104px 1fr; gap: 16px; padding: 13px 14px; background: var(--arx-soft); border-left: 3px solid transparent; }
.arx-item.is-critical { border-left-color: var(--sev-critical); background: #8f1d160a; }
.arx-item.is-high { border-left-color: var(--sev-high); background: #bc3b1d0a; }
.arx-item.is-medium { border-left-color: var(--sev-medium); }
.arx-item.is-low { border-left-color: var(--sev-low); }
.arx-item.is-good { border-left-color: var(--sev-good); }
.arx-item.is-unknown { border-left-color: var(--sev-unknown); }
.arx-item.is-info { border-left-color: #18222d33; }
.arx-sev { display: inline-flex; align-items: center; gap: 6px; align-self: start; padding: 4px 8px; border-radius: 2px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.arx-sev svg { width: 11px; height: 11px; }
.arx-sev-ic { display: inline-flex; }
/* white text only where contrast measured >= 4.5:1; ink text otherwise */
.is-critical .arx-sev { background: var(--sev-critical); color: #fff; }
.is-high .arx-sev { background: var(--sev-high); color: #fff; }
.is-medium .arx-sev { background: var(--sev-medium); color: #2a1a06; }
.is-low .arx-sev { background: var(--sev-low); color: #33240e; }
.is-good .arx-sev { background: var(--sev-good); color: #fff; }
.is-unknown .arx-sev { background: var(--sev-unknown); color: #fff; }
.is-info .arx-sev { background: #18222d1f; color: #18222dab; }
.arx-item-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.arx-item-body b { font-size: 13.5px; font-weight: 500; letter-spacing: -.01em; }
.arx-item-body b code { font-family: var(--mono); font-size: 11px; color: #18222d99; }
.arx-item-body i { font-style: normal; font-size: 12.5px; line-height: 1.55; color: #18222d99; }

/* score contributions */
.arx-contrib { margin: 0; padding: 0; list-style: none; }
.arx-contrib li { display: grid; grid-template-columns: 3px 1fr auto; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--arx-line); font-size: 13px; }
.arx-contrib-rail { display: block; width: 3px; height: 18px; border-radius: 2px; background: #18222d24; }
.arx-contrib li.is-critical .arx-contrib-rail { background: var(--sev-critical); }
.arx-contrib li.is-high .arx-contrib-rail { background: var(--sev-high); }
.arx-contrib li.is-medium .arx-contrib-rail { background: var(--sev-medium); }
.arx-contrib li.is-low .arx-contrib-rail { background: var(--sev-low); }
.arx-contrib b { font-variant-numeric: tabular-nums; font-weight: 500; }
.arx-contrib-total { border-bottom: none !important; border-top: 1px solid var(--ink); font-weight: 500; }
.arx-contrib-total b { font-size: 16px; }

/* exit cost */
.arx-impact { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.arx-imp { display: flex; flex-direction: column; gap: 6px; padding: 16px; border: 1px solid var(--arx-line); }
.arx-imp-k { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; }
.arx-imp-v { font-size: 26px; font-weight: 300; letter-spacing: -.04em; color: var(--sev-high); font-variant-numeric: tabular-nums; }
.arx-imp-bar { display: block; height: 3px; background: #18222d12; }
.arx-imp-bar i { display: block; height: 100%; background: var(--sev-high); border-radius: 2px; }
.arx-imp-s { font-size: 11.5px; color: #18222d8c; }

/* facts */
.arx-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.arx-fact { display: flex; flex-direction: column; gap: 5px; padding: 13px 15px; border: 1px solid var(--arx-line); }
.arx-fact span { font-family: var(--mono); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; color: #18222d80; }
.arx-fact b { font-size: 15px; font-weight: 400; letter-spacing: -.02em; font-variant-numeric: tabular-nums; word-break: break-all; }
.arx-fact-wide { grid-column: 1 / -1; }
.arx-fact-wide b code { font-family: var(--mono); font-size: 11.5px; }

/* primary evidence */
.arx-evi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.arx-evi h4 { margin: 0 0 12px; font-family: var(--mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; font-weight: 400; color: #18222d80; }
.arx-evi-row { display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; padding: 9px 0; border-bottom: 1px solid var(--arx-line); }
.arx-evi-row:last-of-type { border-bottom: none; }
.arx-evi-row code { font-family: var(--mono); font-size: 10.5px; color: #18222d99; word-break: break-all; }
.arx-evi-row b { font-size: 13px; font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }
.arx-evi-row i { grid-column: 1 / -1; font-style: normal; font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.arx-evi-row i.is-burn, .arx-evi-row i.is-locker { color: var(--sev-good); }
.arx-evi-row i.is-exchange, .arx-evi-row i.is-dex, .arx-evi-row i.is-bridge { color: var(--sev-unknown); }
.arx-evi-row i.is-wallet { color: #a2620f; }
.arx-evi-note { margin: 12px 0 0; font-size: 11.5px; line-height: 1.5; color: #18222d80; }

/* checklist */
.arx-check { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.arx-check li { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.55; color: #18222dc4; }
.arx-check svg { width: 13px; height: 13px; flex: none; margin-top: 3px; color: var(--sev-good); }

/* footer */
.arx-foot { border-top: 1px solid var(--arx-line); background: var(--arx-soft); }
.arx-foot-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 13px 36px; }
.arx-foot-row span { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.arx-foot-row b { font-weight: 500; color: var(--ink); }
.arx-disclaimer { margin: 0; padding: 0 36px 20px; font-size: 11.5px; line-height: 1.6; color: #18222d80; }

/* recent checks are buttons now (POST), not links — keep them looking identical */
.ait-rec-form { display: contents; }
button.ait-rec { width: 100%; font: inherit; text-align: left; cursor: pointer; }

@media (max-width: 900px) {
    .arx-hero { grid-template-columns: 1fr; gap: 26px; padding: 26px 20px 24px; }
    .arx-meter { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; text-align: left; gap: 16px; }
    .arx-dial { width: 104px; height: 104px; }
    .arx-dial-num { font-size: 32px; }
    .arx-conf { width: 100%; }
    .arx-id, .arx-advice, .arx-block, .arx-foot-row, .arx-disclaimer { padding-left: 20px; padding-right: 20px; }
    .arx-sig { padding: 20px; }
    .arx-item { grid-template-columns: 1fr; gap: 9px; }
    .arx-sev { justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
    .arx-dial-fill { transition: none; }
}

/* --- landing: one-time AI-tools alpha announcement --------------------------
   Quiet by design: it waits for the visitor to settle, appears once, and leaves
   for good. Ink card + orange rule, matching the rest of the design language. */
.aim { position: fixed; inset: 0; z-index: 260; display: none; }
.aim.is-open { display: block; }
.aim-scrim { position: absolute; inset: 0; background: #0b1017d1; backdrop-filter: blur(5px); animation: aimFade .4s ease; }
.aim-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(560px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow-y: auto;
    padding: 38px 40px 32px; background: var(--ink); color: #fff;
    border-top: 3px solid var(--orange); box-shadow: 0 40px 110px -30px #000a;
    animation: aimRise .55s cubic-bezier(.2, .8, .2, 1);
}
@keyframes aimFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes aimRise { from { opacity: 0; transform: translate(-50%, -44%); } to { opacity: 1; transform: translate(-50%, -50%); } }

.aim-x {
    position: absolute; top: 14px; right: 14px; display: grid; place-items: center;
    width: 32px; height: 32px; background: none; border: 1px solid #ffffff1f; color: #ffffff8c; cursor: pointer;
    transition: color .25s, border-color .25s;
}
.aim-x svg { width: 15px; height: 15px; }
.aim-x:hover { color: #fff; border-color: #ffffff59; }

.aim-kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }
.aim-kicker i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: aimPulse 2.2s ease-in-out infinite; }
@keyframes aimPulse { 0%, 100% { opacity: .35; transform: scale(.82); } 50% { opacity: 1; transform: scale(1); } }

.aim-card h2 { margin: 16px 0 12px; font-size: clamp(26px, 3.4vw, 36px); font-weight: 250; line-height: 1.04; letter-spacing: -.045em; }
.aim-card h2 em { font-style: normal; color: var(--orange); }
.aim-lead { margin: 0 0 24px; font-size: 13.5px; line-height: 1.65; color: #ffffffb8; }

.aim-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.aim-list li { display: flex; align-items: flex-start; gap: 14px; }
.aim-ic { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #ffffff24; color: var(--orange); }
.aim-ic svg { width: 16px; height: 16px; }
.aim-list b { display: block; margin-bottom: 3px; font-size: 13.5px; font-weight: 500; color: #fff; }
.aim-list li > span:last-child { font-size: 12.5px; line-height: 1.55; color: #ffffff8f; }

.aim-actions { display: flex; gap: 12px; }
.aim-later { flex: none; background: none; border: 1px solid #ffffff2e; color: #ffffffcc; white-space: nowrap; cursor: pointer; }
.aim-later:hover { border-color: #ffffff59; color: #fff; }
.aim-cta { flex: 1; justify-content: center; white-space: nowrap; }
.aim-see { display: block; margin-top: 16px; text-align: center; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: #ffffff73; }
.aim-see:hover { color: var(--orange); }

@media (max-width: 560px) {
    .aim-card { padding: 30px 22px 24px; width: calc(100vw - 24px); }
    .aim-card h2 { font-size: 24px; }
    .aim-actions { flex-direction: column-reverse; }
    .aim-later, .aim-cta { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .aim-scrim, .aim-card { animation: none; }
    .aim-kicker i { animation: none; opacity: .9; }
}

/* --- AI image generator ----------------------------------------------------- */
.imgt-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 14px; }
.imgt-prompt textarea {
    width: 100%; padding: 15px 16px; border: 1px solid var(--dark-line); background: var(--white);
    color: var(--ink); font-family: var(--sans); font-size: 14px; line-height: 1.55; resize: vertical;
    min-height: 118px; border-radius: 0;
}
.imgt-prompt textarea:focus { outline: none; border-color: var(--orange); }
.imgt-prompt { position: relative; }
.imgt-count { position: absolute; right: 10px; bottom: 9px; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; color: #18222d59; pointer-events: none; }
.imgt-count.is-near { color: var(--orange); }
.imgt-controls { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.imgt-orient { flex: 1 1 auto; min-width: 300px; }
.imgt-go { display: flex; flex-direction: column; gap: 8px; min-width: 220px; }

.imgt-aspects { display: grid; grid-template-columns: repeat(5, minmax(0, 84px)); gap: 6px; }
.imgt-asp { position: relative; cursor: pointer; }
.imgt-asp input { position: absolute; opacity: 0; pointer-events: none; }
.imgt-asp-box {
    display: grid; place-items: center; height: 46px; border: 1px solid var(--dark-line);
    background: var(--white); transition: border-color .25s, background .25s;
}
.imgt-asp-box i { display: block; border: 1.5px solid #18222d59; transition: border-color .25s; }
.imgt-asp-box.is-11 i { width: 20px; height: 20px; }
.imgt-asp-box.is-43 i { width: 24px; height: 18px; }
.imgt-asp-box.is-34 i { width: 18px; height: 24px; }
.imgt-asp-box.is-169 i { width: 28px; height: 16px; }
.imgt-asp-box.is-916 i { width: 16px; height: 28px; }
.imgt-asp input:checked + .imgt-asp-box { border-color: var(--orange); background: #fdad000f; }
.imgt-asp input:checked + .imgt-asp-box i { border-color: var(--orange); }
.imgt-asp input:focus-visible + .imgt-asp-box { outline: 2px solid var(--orange); outline-offset: 2px; }
.imgt-asp-t { display: block; margin-top: 5px; text-align: center; font-family: var(--mono); font-size: 7.5px; letter-spacing: .08em; text-transform: uppercase; color: #18222d80; }
.imgt-asp-t b { display: block; font-weight: 400; color: #18222d59; }
.imgt-asp input:checked ~ .imgt-asp-t { color: var(--ink); }

.imgt-run { width: 100%; height: 46px; min-height: 46px; }
.imgt-run[disabled] { opacity: .45; cursor: not-allowed; }
.imgt-quota { display: flex; flex-direction: column; gap: 6px; margin: 6px 0 0; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; color: #18222d80; }
.imgt-quota-bar { display: block; height: 3px; background: #18222d12; }
.imgt-quota-bar i { display: block; height: 100%; background: var(--orange); }
.imgt-busy { display: block; margin-top: 5px; font-size: 12px; font-weight: 400; color: inherit; }
.imgt-spin-btn { width: 13px; height: 13px; border-width: 2px; border-color: #18222d33; border-top-color: var(--ink); }

.imgt-queue { display: flex; align-items: center; gap: 13px; padding: 15px 18px; margin-bottom: 22px; border: 1px solid #fdad0059; background: #fdad000f; font-size: 12.5px; line-height: 1.55; color: #18222d99; }
.imgt-queue b { display: block; color: var(--ink); font-size: 13px; }
.imgt-spin { display: block; width: 18px; height: 18px; flex: none; border: 2px solid #18222d1a; border-top-color: var(--orange); border-radius: 50%; animation: aitSpin .9s linear infinite; }

.imgt-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.imgt-meta > span:first-child { font-family: var(--mono); font-size: 7.5px; letter-spacing: .08em; text-transform: uppercase; color: #18222d73; }
.imgt-tools { display: inline-flex; align-items: center; gap: 4px; }
.imgt-tools form { display: inline-flex; margin: 0; }
.imgt-tools a, .imgt-tools button {
    display: grid; place-items: center; width: 26px; height: 26px; padding: 0;
    background: none; border: 1px solid transparent; color: #18222d80; cursor: pointer; transition: color .2s, border-color .2s;
}
.imgt-tools svg { width: 14px; height: 14px; }
.imgt-tools a:hover { color: var(--ink); border-color: var(--dark-line); }
.imgt-tools button:hover { color: #b3261e; border-color: #b3261e40; }

.imgt-empty { display: grid; place-items: center; gap: 9px; padding: 56px 24px; border: 1px dashed #18222d24; text-align: center; }
.imgt-empty svg { width: 40px; height: 40px; color: #18222d33; }
.imgt-empty b { font-size: 15px; font-weight: 500; }
.imgt-empty p { margin: 0; max-width: 42ch; font-size: 12.5px; line-height: 1.55; color: #18222d8c; }

@media (max-width: 700px) {
    .imgt-controls { flex-direction: column; align-items: stretch; gap: 14px; }
    .imgt-orient { min-width: 0; }
    .imgt-aspects { grid-template-columns: repeat(5, 1fr); }
    .imgt-go { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .imgt-spin { animation: none; border-top-color: #18222d1a; }
}

/* --- uniform gallery tiles -------------------------------------------------
   Frames arrive in five orientations; letting each tile keep its own shape tore
   the grid into ragged rows with holes beside every tall image. So every tile is
   the same square and the preview is cropped to fill it — the badge says which
   orientation it really is, and the viewer shows the uncropped frame. */
.imgt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 14px; }
.imgt-item { margin: 0; display: flex; flex-direction: column; border: 1px solid var(--dark-line); background: var(--white); overflow: hidden; }
.imgt-thumb {
    position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
    background: #18222d0a; cursor: zoom-in;
}
.imgt-thumb img,
.imgt-thumb img[width] {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.imgt-thumb:hover img { transform: scale(1.04); }

.imgt-ratio {
    position: absolute; left: 8px; bottom: 8px; z-index: 2; padding: 3px 7px;
    background: #0b1017b8; color: #fff; font-family: var(--mono); font-size: 7.5px;
    letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(4px);
}
.imgt-zoom {
    position: absolute; right: 8px; top: 8px; z-index: 2; display: grid; place-items: center;
    width: 28px; height: 28px; background: #0b1017a3; color: #fff; opacity: 0;
    transform: scale(.9); transition: opacity .3s, transform .3s;
}
.imgt-zoom svg { width: 14px; height: 14px; }
.imgt-thumb:hover .imgt-zoom { opacity: 1; transform: none; }

/* --- the creating state fills the very same box --------------------------- */
.imgt-thumb.is-waiting, .imgt-thumb.is-failed { display: grid; place-items: center; cursor: default; }
.imgt-skel {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, #18222d08 30%, #18222d14 45%, #18222d08 60%);
    background-size: 300% 100%; animation: imgtSkel 1.6s ease-in-out infinite;
}
@keyframes imgtSkel { from { background-position: 160% 0; } to { background-position: -60% 0; } }
.imgt-wait { position: relative; z-index: 1; display: grid; place-items: center; gap: 12px; }
/* a wireframe in the requested orientation, so the wait shows what is coming */
.imgt-frame { display: block; border: 1.5px dashed #18222d33; animation: imgtPulse 2s ease-in-out infinite; }
.imgt-frame.is-11 { width: 54px; height: 54px; }
.imgt-frame.is-43 { width: 64px; height: 48px; }
.imgt-frame.is-34 { width: 48px; height: 64px; }
.imgt-frame.is-169 { width: 72px; height: 41px; }
.imgt-frame.is-916 { width: 41px; height: 72px; }
@keyframes imgtPulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }
.imgt-wait-t { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.imgt-thumb.is-failed { color: #b3261e99; gap: 8px; }
.imgt-thumb.is-failed svg { width: 22px; height: 22px; }
.imgt-thumb.is-failed span:not(.imgt-ratio) { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.imgt-thumb.is-failed { padding: 14px; text-align: center; }
.imgt-thumb.is-failed span:not(.imgt-ratio) { max-width: 90%; line-height: 1.6; }
/* Retry sits inside the failed frame: the fix is where the problem is, not in a menu. */
.imgt-retry { margin-top: 2px; }
.imgt-retry button { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border: 1px solid #18222d1f; background: #fff; color: #18222d; cursor: pointer; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; transition: background .15s, border-color .15s; }
.imgt-retry button svg { width: 12px; height: 12px; }
.imgt-retry button:hover:not(:disabled) { background: var(--orange); border-color: var(--orange); }
.imgt-retry button:disabled { opacity: .4; cursor: not-allowed; }
.imgt-quota-note { margin: 8px 0 0; font-size: 11px; line-height: 1.5; color: #18222d70; }
.ait-quota { display: block; margin-top: 6px; color: #18222d70; }
/* The queue box after the poll gives up: the spinner stops claiming work is happening. */
.imgt-queue.is-timeout .imgt-spin { animation: none; opacity: .35; }

/* captions line up because the prompt is clamped to two lines */
.imgt-item figcaption { display: flex; flex-direction: column; gap: 9px; flex: 1; padding: 12px 13px 11px; }
.imgt-item figcaption p {
    margin: 0; font-size: 12px; line-height: 1.45; color: #18222dab;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: calc(2 * 1.45em);
}
.imgt-meta { margin-top: auto; }

@media (max-width: 520px) {
    .imgt-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .imgt-ratio { left: 6px; bottom: 6px; }
    .imgt-zoom { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .imgt-skel, .imgt-frame { animation: none; }
    .imgt-thumb:hover img { transform: none; }
}

/* --- full-size image viewer ------------------------------------------------- */
.lbx { position: fixed; inset: 0; z-index: 300; display: none; }
.lbx.is-open { display: block; }
.lbx-scrim { position: absolute; inset: 0; background: #070b10f0; backdrop-filter: blur(6px); animation: aimFade .3s ease; }

.lbx-stage {
    position: absolute; inset: 0; margin: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 18px; padding: 64px 78px 26px;
    pointer-events: none;
}
.lbx-stage img {
    max-width: 100%; max-height: calc(100vh - 210px); object-fit: contain;
    background: #ffffff08; opacity: .55; filter: blur(6px);
    transition: opacity .35s ease, filter .45s ease;
    pointer-events: auto;
}
.lbx-stage img.is-in { opacity: 1; filter: none; }
.lbx-load { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.lbx-load .imgt-spin { border-color: #ffffff2e; border-top-color: var(--orange); }

.lbx-cap { width: min(760px, 100%); pointer-events: auto; text-align: center; }
.lbx-count { font-family: var(--mono); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: #ffffff70; }
.lbx-cap p { margin: 9px 0 12px; font-size: 14px; line-height: 1.6; color: #ffffffe0; }
.lbx-foot { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.lbx-foot span { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #ffffff70; }
.lbx-dl { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #ffffffb3; }
.lbx-dl svg { width: 13px; height: 13px; }
.lbx-dl:hover { color: var(--orange); }

.lbx-x, .lbx-nav {
    position: absolute; z-index: 2; display: grid; place-items: center;
    background: #ffffff0f; border: 1px solid #ffffff24; color: #fff; cursor: pointer;
    transition: background .25s, border-color .25s, transform .25s;
}
.lbx-x { top: 18px; right: 18px; width: 40px; height: 40px; }
.lbx-x svg { width: 17px; height: 17px; }
.lbx-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 64px; }
.lbx-nav svg { width: 22px; height: 22px; }
.lbx-nav.is-prev { left: 16px; }
.lbx-nav.is-next { right: 16px; }
.lbx-x:hover, .lbx-nav:hover { background: #ffffff1f; border-color: var(--orange); color: var(--orange); }
.lbx-nav:hover { transform: translateY(-50%) scale(1.04); }
.lbx-nav[hidden], .lbx-x[hidden] { display: none; }

@media (max-width: 700px) {
    .lbx-stage { padding: 58px 12px 20px; gap: 14px; }
    .lbx-stage img { max-height: calc(100vh - 230px); }
    .lbx-nav { width: 40px; height: 52px; }
    .lbx-nav.is-prev { left: 6px; }
    .lbx-nav.is-next { right: 6px; }
    .lbx-cap p { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
    .lbx-scrim { animation: none; }
    .lbx-stage img { transition: none; filter: none; opacity: 1; }
    .lbx-nav:hover { transform: translateY(-50%); }
}

/* --- alpha access: audit tools open to Priority Validators first --- */
.ait-alpha {
    display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px;
    padding: 16px 18px; border: 1px solid #fdad0059; background: #fdad000f;
}
.ait-alpha svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: var(--orange); }
.ait-alpha span { font-size: 12.5px; line-height: 1.6; color: #18222d99; }
.ait-alpha b { display: block; margin-bottom: 3px; font-size: 13px; font-weight: 500; color: var(--ink); }

.ait-badge.is-alpha { background: #fdad0021; border: 1px solid #fdad0070; color: #8a5307; }
.ait-card.is-locked { background: #fdad0008; border-color: #fdad0038; }
.ait-card.is-locked:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 14px 40px #18222d14; }
.ait-card.is-locked .ait-ic { color: #a2620f; }
.ait-card.is-locked .ait-tag { color: #a2620f; }
.ait-card.is-locked:hover .ait-go { color: var(--orange); gap: 12px; }

/* the explanation page */
.alk { max-width: 780px; }
.alk-kicker {
    display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; margin-bottom: 22px;
    border: 1px solid #fdad0059; background: #fdad000f; color: #8a5307;
    font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase;
}
.alk-kicker svg { width: 13px; height: 13px; }
.alk h1 { margin: 0; font-size: clamp(28px, 3.6vw, 42px); font-weight: 300; line-height: 1.04; letter-spacing: -.05em; }
.alk-lead { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: #18222d99; }
.alk-note { margin-top: 28px; padding: 24px 26px; border: 1px solid var(--dark-line); background: #18222d04; }
.alk-note p { margin: 0 0 13px; font-size: 13.5px; line-height: 1.68; color: #18222dab; }
.alk-note p:last-child { margin-bottom: 0; }

.alk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.alk-card { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px; border: 1px solid var(--dark-line); background: var(--white); }
.alk-n { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; color: var(--orange); }
.alk-card b { font-size: 15px; font-weight: 500; letter-spacing: -.02em; }
.alk-card p { margin: 0; font-size: 12.5px; line-height: 1.6; color: #18222d94; }
.alk-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.alk-link svg { width: 12px; height: 12px; }
.alk-link:hover { color: var(--orange); gap: 12px; }
.alk-link.is-cta { color: var(--orange); }
.alk-foot { margin: 18px 0 0; font-size: 12px; line-height: 1.55; color: #18222d80; }

@media (max-width: 700px) {
    .alk-grid { grid-template-columns: 1fr; }
    .alk-note { padding: 20px; }
}

/* --- landing: AI tools — hairline editorial list + sticky preview -----------
   The list carries the content on its own (every live row is a link), so the
   section is complete without JS and on mobile, where the preview is dropped. */
.aitl-head { max-width: 780px; margin-bottom: clamp(30px, 3.4vw, 46px); }
.aitl-head h2 { margin: 0; font-family: var(--sans); font-size: clamp(38px, 4.4vw, 64px); font-weight: 250; line-height: .92; letter-spacing: -.05em; color: var(--ink); }
.aitl-head h2 em { font-style: normal; color: var(--orange); }
.aitl-lead { margin: 18px 0 0; max-width: 52ch; font-size: 15px; line-height: 1.6; color: #18222d96; }

.aitl-split { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }

/* ---- the list ---- */
.aitl-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #18222d1f; }
.aitl-row { border-bottom: 1px solid #18222d1f; }
.aitl-row > a,
.aitl-row > span {
    display: flex; align-items: flex-start; gap: clamp(16px, 2.4vw, 30px);
    padding: clamp(20px, 2.4vw, 30px) 4px;
    color: var(--ink); text-decoration: none;
    transition: background-color .35s ease, padding-left .45s cubic-bezier(.22,1,.36,1);
}
.aitl-row > a::before {
    content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 0;
    background: var(--orange); transform: translateY(-50%);
    transition: height .4s cubic-bezier(.22,1,.36,1);
}
.aitl-row { position: relative; }
.aitl-row.is-live > a { position: relative; }
.aitl-row.is-live > a:hover,
.aitl-row.is-active > a { background: #18222d06; padding-left: 18px; }
.aitl-row.is-active > a::before, .aitl-row.is-live > a:hover::before { height: 56%; }
.aitl-row.is-live > a:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; }
.aitl-row.is-soon > span { cursor: default; }

.aitl-n { flex: none; padding-top: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: #18222d4d; transition: color .35s ease; }
.aitl-row.is-active .aitl-n, .aitl-row.is-live > a:hover .aitl-n { color: var(--orange); }

.aitl-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.aitl-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.aitl-title {
    font-size: clamp(1.45rem, 3.2vw, 2.45rem); font-weight: 300; line-height: 1.04; letter-spacing: -.045em;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.aitl-row.is-live > a:hover .aitl-title, .aitl-row.is-active .aitl-title { transform: translateX(4px); }
.aitl-row.is-soon .aitl-title { color: #18222d8c; }
.aitl-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border: 1px solid #18222d24; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; white-space: nowrap; }
.aitl-pill.is-live { border-color: #23794a3d; background: #23794a12; color: #1c6b41; }
.aitl-pill i { width: 5px; height: 5px; border-radius: 50%; background: #23794a; animation: aitlPulse 2.4s ease-in-out infinite; }
@keyframes aitlPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.aitl-tag { max-width: 46ch; font-size: 13.5px; line-height: 1.55; color: #18222d94; }
.aitl-row.is-soon .aitl-tag { color: #18222d73; }
.aitl-arrow { flex: none; width: 17px; height: 17px; margin-top: 8px; color: var(--orange); opacity: 0; transform: translateX(-6px); transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.aitl-row.is-live > a:hover .aitl-arrow, .aitl-row.is-active .aitl-arrow { opacity: 1; transform: none; }

/* ---- preview stage: one dedicated panel per tool ---- */
.aitl-stage {
    position: sticky; display: grid;
    /* --header-h is measured at runtime (site.js): the fixed header has a second nav row
       that can wrap again in long languages, so a hard-coded offset would slide the panel
       under it. The fallback matches the untranslated two-row header. */
    top: calc(var(--header-h, 120px) + 26px);
    max-height: calc(100vh - var(--header-h, 120px) - 52px);
}
.aitl-pv {
    grid-area: 1 / 1; display: flex; flex-direction: column; gap: 22px;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .45s ease, transform .55s cubic-bezier(.22,1,.36,1), visibility .45s;
}
.aitl-pv.is-on { opacity: 1; visibility: visible; transform: none; }

/* window */
.aitl-win { border: 1px solid #18222d1f; background: var(--white); box-shadow: 0 22px 60px -34px #18222d59; }
.aitl-chrome { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-bottom: 1px solid #18222d14; }
.aitl-dots { display: inline-flex; gap: 5px; }
.aitl-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d7dae2; }
.aitl-dots i:first-child { background: #e6c79c; }
.aitl-dots i:nth-child(2) { background: #cfe3d6; }
.aitl-path { flex: 1; font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: #18222d80; }
.aitl-live { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: #1c6b41; }
.aitl-live i { width: 5px; height: 5px; border-radius: 50%; background: #23794a; animation: aitlPulse 2.4s ease-in-out infinite; }
.aitl-tagx { font-family: var(--mono); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: #18222d73; }
.aitl-tagx.is-soon { color: #8a5307; }
.aitl-win-body { display: flex; flex-direction: column; gap: 14px; padding: 16px; }

/* forecast panel */
.aitl-quote { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.aitl-k { display: block; margin-bottom: 3px; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.aitl-quote b { font-size: 18px; font-weight: 500; letter-spacing: -.025em; }
.aitl-quote-r { text-align: right; }
.aitl-quote-r span { display: block; margin-top: 2px; font-family: var(--mono); font-size: 9.5px; }
.is-up { color: #23794a; } .is-down { color: #b3261e; }
.aitl-chart { position: relative; height: 116px; border: 1px solid #18222d14; background: #fafafb; overflow: hidden; }
.aitl-chart svg { width: 100%; height: 100%; display: block; }
.aitl-chart line { stroke: #eceef2; stroke-width: 1; }
.aitl-line.is-up { color: #23794a; } .aitl-line.is-down { color: #b3261e; }
.aitl-tip { position: absolute; top: 10px; right: 10px; padding: 4px 8px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.aitl-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.aitl-mini-c { display: flex; flex-direction: column; gap: 3px; padding: 10px 11px; border: 1px solid #18222d14; }
.aitl-mini-c span { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; color: #18222d80; }
.aitl-mini-c b { font-size: 14px; font-weight: 500; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.aitl-mini-c i { font-style: normal; font-family: var(--mono); font-size: 9px; }

/* token-audit panel */
.aitl-addr { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #18222d14; }
.aitl-addr span { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.aitl-addr code { font-family: var(--mono); font-size: 11.5px; color: #18222dab; }
.aitl-verdict { display: flex; align-items: center; gap: 18px; }
.aitl-ring { position: relative; width: 74px; height: 74px; flex: none; }
.aitl-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.aitl-ring circle { fill: none; stroke-width: 8; stroke: #18222d12; }
.aitl-ring-f { stroke: #23794a !important; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 258; }
.aitl-ring b { position: absolute; inset: 0; display: grid; place-items: center; font-size: 20px; font-weight: 400; color: #23794a; }
.aitl-badge { display: inline-block; padding: 4px 9px; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.aitl-badge.is-ok { background: #23794a14; color: #1c6b41; border: 1px solid #23794a3d; }
.aitl-verdict p { margin: 8px 0 0; font-size: 12.5px; line-height: 1.5; color: #18222d94; }
.aitl-sevbar { display: flex; gap: 2px; }
.aitl-sevbar i { display: block; height: 6px; border-radius: 2px; }
.aitl-sevbar .s-crit { flex: 0 0 8%; background: #8f1d16; }
.aitl-sevbar .s-high { flex: 0 0 10%; background: #bc3b1d; }
.aitl-sevbar .s-med { flex: 0 0 16%; background: #d98324; }
.aitl-sevbar .s-good { flex: 1; background: #23794a; }
.aitl-checks { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.aitl-checks li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: #18222dab; }
.aitl-checks span { display: grid; place-items: center; width: 16px; height: 16px; flex: none; font-size: 10px; font-weight: 600; }
.aitl-checks .is-ok span, .aitl-checks li.is-ok span { background: #23794a14; color: #1c6b41; }
.aitl-checks li.is-warn span { background: #d9832418; color: #8a5307; }

/* contract-audit panel */
.aitl-code { display: flex; flex-direction: column; gap: 7px; padding: 14px; border: 1px solid #18222d14; background: #fafafb; }
.aitl-cl { display: flex; align-items: center; gap: 10px; }
.aitl-cl em { font-style: normal; font-family: var(--mono); font-size: 9px; color: #18222d3d; }
.aitl-cl span { display: block; height: 7px; background: #18222d14; border-radius: 2px; }
.aitl-cl .w-45 { width: 45%; } .aitl-cl .w-55 { width: 55%; } .aitl-cl .w-70 { width: 70%; }
.aitl-cl .w-72 { width: 72%; } .aitl-cl .w-85 { width: 85%; }
.aitl-cl.is-flag span { background: #d9832445; }
.aitl-cl b { font-family: var(--mono); font-size: 9px; letter-spacing: .06em; color: #8a5307; }
.aitl-findings { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.aitl-findings li { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #18222dab; }
.aitl-findings .sv { flex: none; padding: 3px 7px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.aitl-findings .sv.is-high { background: #bc3b1d; }
.aitl-findings .sv.is-med { background: #d98324; color: #2a1a06; }
.aitl-findings .sv.is-good { background: #23794a; }

/* coming-soon panels */
.aitl-soonwrap { align-items: center; justify-content: center; gap: 18px; min-height: 232px; }
.aitl-soonic { color: #18222d33; }
.aitl-soonic svg { width: 40px; height: 40px; }
.aitl-soonbars { display: flex; align-items: flex-end; gap: 5px; height: 34px; }
.aitl-soonbars i { display: block; width: 5px; background: #fdad0057; animation: aitlBars 1.5s ease-in-out infinite; animation-delay: var(--d); }
@keyframes aitlBars { 0%,100% { height: 8px; } 50% { height: 32px; } }
.aitl-soontxt { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: #18222d73; }
.aitl-soondot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: aitlPulse 2.4s ease-in-out infinite; }

/* caption under the window */
.aitl-cap h3 { margin: 0 0 10px; font-size: clamp(20px, 2.2vw, 27px); font-weight: 300; letter-spacing: -.035em; }
.aitl-cap p { margin: 0; font-size: 13.5px; line-height: 1.6; color: #18222d96; }
.aitl-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.aitl-chips span { padding: 6px 11px; border: 1px solid #18222d1f; font-size: 11.5px; color: #18222d99; }

@media (max-height: 780px) {
    .aitl-win-body { gap: 10px; padding: 13px; }
    .aitl-chart { height: 92px; }
    .aitl-cap p { display: none; }
    .aitl-chips { margin-top: 10px; }
}

@media (max-width: 1000px) {
    /* The preview is an enhancement; the list alone carries the section. */
    .aitl-split { grid-template-columns: 1fr; }
    .aitl-stage { display: none; }
    .aitl-title { font-size: clamp(1.35rem, 6vw, 1.9rem); }
    .aitl-row > a, .aitl-row > span { padding: 20px 2px; gap: 14px; }
    .aitl-arrow { opacity: .5; transform: none; }
}
@media (max-width: 520px) {
    .aitl-n { font-size: 10px; padding-top: 4px; }
    .aitl-tag { font-size: 12.5px; }
    .aitl-row.is-live > a:hover, .aitl-row.is-active > a { padding-left: 2px; }
}
@media (prefers-reduced-motion: reduce) {
    .aitl-row > a, .aitl-title, .aitl-arrow, .aitl-pv { transition: none; }
    .aitl-pill i, .aitl-soondot { animation: none; opacity: .9; }
    .aitl-row.is-live > a:hover .aitl-title, .aitl-row.is-active .aitl-title { transform: none; }
}

/* the coin card is a button, but nothing said so — these two lines do */
.fc-pick-hint { display: block; margin-bottom: 7px; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: #18222d80; }
.fc-pick-note { display: block; margin-top: 9px; max-width: 210px; font-size: 11.5px; line-height: 1.5; color: #18222d8c; }
@media (max-width: 860px) { .fc-pick-note { max-width: none; } }

.fc-kick { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fc-updated { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: #18222d73; cursor: help; }
.fc-updated i { width: 5px; height: 5px; border-radius: 50%; background: #23794a; }
@media (max-width: 620px) { .fc-updated { font-size: 7.5px; } }

/* The paused-activation modal reuses the announcement card; only its accent differs. */
.aim.phold .aim-kicker { background: var(--orange); color: #18222d; }
.aim.phold .aim-card { max-width: 480px; }
