:root {
  color-scheme: dark;
  --ink: #f4f1e9;
  --muted: #9c9f9b;
  --subtle: #747975;
  --bg: #090b0b;
  --panel: #111414;
  --panel-2: #161a19;
  --line: rgba(244, 241, 233, .11);
  --green: #5cd6a0;
  --green-soft: rgba(92, 214, 160, .12);
  --red: #ff7b72;
  --red-soft: rgba(255, 123, 114, .11);
  --amber: #e7bd75;
  --shadow: 0 28px 80px rgba(0, 0, 0, .3);
  --radius: 20px;
  --max: 1240px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: auto;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% -10%, rgba(92, 214, 160, .075), transparent 34rem),
    linear-gradient(180deg, #0b0d0d 0, var(--bg) 34rem);
  color: var(--ink);
  font: 15px/1.6 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, a, input { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: 6px; }

.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 11, .88);
  backdrop-filter: blur(18px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 760; letter-spacing: -.02em; }
.brand-mark { width: 28px; height: 28px; border: 1px solid rgba(92,214,160,.55); border-radius: 9px; position: relative; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; left: 6px; right: 6px; height: 1px; background: var(--green); transform: rotate(-28deg); }
.brand-mark::before { top: 10px; }.brand-mark::after { top: 16px; opacity: .55; }
.nav-links { display: flex; align-items: center; gap: 26px; color: #b7bab6; font-size: 14px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.account-chip { min-height: 44px; padding: 5px 12px 5px 6px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: var(--ink); font-weight: 720; transition: border-color .2s ease, background .2s ease; }
.account-chip:hover { border-color: rgba(92,214,160,.38); background: var(--green-soft); }
.account-avatar { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #07100c; font-size: 12px; font-weight: 850; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.account-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.button { min-height: 42px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font: inherit; font-weight: 680; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background-color .2s ease, opacity .2s ease; }
.button:hover { transform: translateY(-1px); border-color: rgba(244,241,233,.26); }
.button:active { transform: translateY(0); }
.button.primary { background: var(--ink); color: #111; border-color: var(--ink); }
.button.danger { color: var(--red); border-color: rgba(255,123,114,.28); background: var(--red-soft); }
.button.nav-logout { color: var(--red); background: var(--red-soft); border-color: rgba(255,123,114,.28); }
.button:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.menu-toggle { display: none; background: none; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; }

.stale-banner { display: none; background: rgba(231,189,117,.09); color: #f3d9aa; border-bottom: 1px solid rgba(231,189,117,.24); padding: 9px 20px; text-align: center; font-size: 13px; }
.stale-banner.visible { display: block; }
.operations-banner { display: none; padding: 10px 20px; text-align: center; font-size: 13px; border-bottom: 1px solid rgba(231,189,117,.28); background: #211b11; color: #f3d9aa; }
.operations-banner.visible { display: block; }
.operations-banner.major_outage { color: #ffc0bb; background: #251413; border-color: rgba(255,123,114,.3); }
.operations-banner a { display: inline-flex; min-height: 44px; margin-left: 8px; align-items: center; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.page { padding: 58px 0 96px; }
.eyebrow { color: var(--green); font-size: 12px; font-weight: 760; letter-spacing: .16em; text-transform: uppercase; }
.page-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 6vw, 74px); line-height: 1.02; letter-spacing: -.045em; margin: 12px 0 18px; max-width: 850px; font-weight: 500; }
.lede { color: #b9bcb7; font-size: clamp(17px, 2vw, 21px); max-width: 720px; margin: 0; }
.section { margin-top: 72px; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -.035em; margin: 0; }
.section-head p { color: var(--muted); margin: 0; max-width: 560px; }

.card { background: linear-gradient(145deg, rgba(22,26,25,.96), rgba(15,18,18,.96)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.trend-hero { padding: clamp(26px, 5vw, 54px); display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; overflow: hidden; position: relative; }
.trend-hero::after { content: ""; position: absolute; width: 390px; height: 390px; right: -130px; top: -190px; border-radius: 50%; border: 1px solid rgba(92,214,160,.12); box-shadow: 0 0 0 55px rgba(92,214,160,.025), 0 0 0 110px rgba(92,214,160,.018); pointer-events: none; }
.pair { color: var(--muted); font-weight: 650; letter-spacing: .04em; }
.trend-label { font-size: clamp(38px, 6vw, 72px); line-height: .95; letter-spacing: -.055em; margin: 16px 0 20px; font-weight: 780; }
.trend-label.bullish { color: var(--green); }.trend-label.bearish { color: var(--red); }
.trend-context { color: #c9ccc7; font-size: 17px; max-width: 520px; }
.trend-context strong { color: var(--ink); }
.status-pill { display: inline-flex; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .1em; }
.status-pill.live { color: var(--green); border-color: rgba(92,214,160,.25); background: var(--green-soft); }
.status-pill.delayed { color: var(--amber); border-color: rgba(231,189,117,.25); }
.metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: center; }
.metric { padding: 20px 0; border-bottom: 1px solid var(--line); }
.metric:nth-child(odd) { padding-right: 22px; border-right: 1px solid var(--line); }
.metric:nth-child(even) { padding-left: 22px; }
.metric:nth-last-child(-n+2) { border-bottom: 0; }
.metric-label { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.metric-value { font-size: clamp(22px, 3vw, 31px); line-height: 1.2; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.positive { color: var(--green); }.negative { color: var(--red); }

.target-track { padding: 28px; }
.target-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.target-line::before { content: ""; position: absolute; height: 1px; background: var(--line); left: 8%; right: 8%; top: 18px; }
.target-node { position: relative; z-index: 1; text-align: center; }
.target-dot { width: 37px; height: 37px; border-radius: 50%; background: var(--panel); border: 1px solid var(--line); margin: 0 auto 10px; display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.target-node.reached .target-dot { color: #09100d; background: var(--green); border-color: var(--green); }
.target-node.progress .target-dot { border-color: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }
.target-name { font-weight: 700; }.target-status { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.evidence-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; }
.explanation { padding: 30px; }
.explanation h3 { margin: 0 0 10px; font-size: 22px; }.explanation > p { color: var(--muted); }
.evidence-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.evidence-list li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; color: #d2d4d0; }
.evidence-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 8px; }
.evidence-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.evidence-card { padding: 22px; min-height: 116px; }
.evidence-card .metric-value { font-size: 22px; margin-top: 9px; }
.tone-supportive, .tone-bullish { color: var(--green); }
.tone-opposing, .tone-bearish { color: var(--red); }
.tone-mixed { color: var(--amber); }

.research-grid, .performance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.research-stat, .performance-stat { padding: 23px; min-height: 128px; }
.research-stat .metric-value, .performance-stat .metric-value { margin-top: 12px; display: block; }
.research-note { grid-column: 1 / -1; padding: 22px; color: var(--muted); font-size: 14px; border-left: 2px solid var(--green); background: var(--green-soft); border-radius: 0 12px 12px 0; }
.premium-lock { grid-column: 1 / -1; min-height: 210px; padding: clamp(26px, 4vw, 42px); display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 24px; border-color: rgba(231,189,117,.28); background: radial-gradient(circle at 8% 50%, rgba(231,189,117,.08), transparent 34%), var(--panel); }
.premium-lock h3 { margin: 7px 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.035em; }
.premium-lock p { color: var(--muted); margin: 0; max-width: 720px; }
.lock-mark { width: 48px; height: 48px; border: 1px solid rgba(231,189,117,.38); border-radius: 15px; color: var(--amber); background: rgba(231,189,117,.08); display: grid; place-items: center; font-size: 15px; }
.premium-grid { grid-template-columns: 1fr; }

.table-card { overflow: hidden; }
.table-scroll { overflow: visible; }
table { width: 100%; border-collapse: collapse; min-width: 850px; font-variant-numeric: tabular-nums; }
th { text-align: left; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; padding: 16px 18px; border-bottom: 1px solid var(--line); }
td { padding: 17px 18px; border-bottom: 1px solid rgba(244,241,233,.07); color: #d8dad6; }
tr:last-child td { border-bottom: 0; } tbody tr:hover { background: rgba(255,255,255,.018); }
.direction { font-weight: 760; }.direction.bullish { color: var(--green); }.direction.bearish { color: var(--red); }
.target-check { color: var(--green); font-weight: 750; }.target-miss { color: var(--subtle); }
.mobile-history { display: none; }
.history-unlock { position: relative; max-width: 660px; margin: 24px auto 0; padding: 34px 24px 8px; text-align: center; }
.history-unlock::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(92,214,160,.38), transparent); }
.history-unlock-label { color: var(--green); font-size: 11px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.history-unlock h2 { margin: 10px 0 8px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.035em; }
.history-unlock p { color: var(--muted); margin: 0 auto 22px; }
.history-unlock-button { min-width: min(100%, 280px); justify-content: center; }

.simulation-banner { padding: 28px; display: flex; justify-content: space-between; align-items: center; gap: 28px; border-color: rgba(231,189,117,.22); }
.simulation-banner h3 { margin: 0 0 6px; }.simulation-banner p { color: var(--muted); margin: 0; max-width: 760px; }
.disclaimer { color: var(--subtle); font-size: 12px; margin-top: 14px; }
.chart-card { padding: 24px; min-height: 360px; }.chart-wrap { position: relative; height: 290px; } canvas { width: 100%; height: 100%; }
.chart-empty { color: var(--muted); display: grid; place-items: center; height: 260px; }

.content-card { padding: clamp(25px, 4vw, 44px); }
.content-card h2 { margin-top: 0; }.content-card h3 { margin-top: 32px; }
.content-card p, .content-card li { color: #c4c7c2; max-width: 820px; }
.legal-page { max-width: 1000px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--subtle); font-size: 12px; margin: 24px 0 34px; }
.legal-notice { border: 1px solid rgba(231,189,117,.28); border-radius: 14px; padding: 22px 24px; margin-bottom: 22px; background: rgba(231,189,117,.06); }
.legal-notice.privacy { border-color: rgba(92,214,160,.25); background: var(--green-soft); }
.legal-notice strong { display: block; color: var(--text); margin-bottom: 6px; }
.legal-notice p { color: var(--muted); margin: 0; }
.legal-content { padding: clamp(28px, 5vw, 54px); }
.legal-content section + section { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 30px; }
.legal-content h2 { font-size: clamp(21px, 2.4vw, 27px); margin: 0 0 12px; letter-spacing: -.025em; }
.legal-content p { color: #c4c7c2; line-height: 1.75; margin: 0; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.step { padding: 24px; counter-increment: step; }
.step::before { content: "0" counter(step); color: var(--green); font: 700 12px/1 ui-monospace, monospace; }
.step h3 { margin: 18px 0 8px; }.step p { color: var(--muted); margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 900px; }
.price-card { padding: 34px; }.price-card.featured { border-color: rgba(92,214,160,.34); }
.price { font-size: 42px; letter-spacing: -.04em; margin: 18px 0; }.price small { font-size: 14px; color: var(--muted); }
.feature-list { list-style: none; padding: 0; display: grid; gap: 11px; color: #c9ccc7; }.feature-list li::before { content: "•"; color: var(--green); margin-right: 10px; }
.pricing-free { padding: clamp(28px, 4vw, 42px); display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.pricing-free h2 { margin: 8px 0 5px; font-size: 30px; letter-spacing: -.035em; }
.pricing-free p { color: var(--muted); max-width: 680px; margin: 0; }
.free-plan-action { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.free-plan-action .price { margin: 0; white-space: nowrap; }
.paid-plan-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.plan-card { padding: 26px; position: relative; display: flex; flex-direction: column; min-width: 0; }
.plan-card h3 { font-size: 23px; letter-spacing: -.035em; margin: 9px 0 8px; }
.plan-kicker { color: var(--green); font-size: 11px; font-weight: 780; letter-spacing: .13em; text-transform: uppercase; }
.plan-description { color: var(--muted); min-height: 72px; margin: 0; }
.plan-price { font-size: clamp(34px, 3.2vw, 44px); font-weight: 750; letter-spacing: -.045em; margin-top: 20px; font-variant-numeric: tabular-nums; }
.plan-equivalent { color: #c8cbc6; font-size: 13px; }
.plan-saving { color: var(--green); background: var(--green-soft); border-radius: 8px; padding: 7px 9px; margin-top: 10px; font-size: 12px; font-weight: 720; }
.plan-card .feature-list { margin: 24px 0; font-size: 13px; flex: 1; }
.plan-button { width: 100%; border-radius: 11px; }
.featured-plan { border-color: rgba(92,214,160,.45); transform: translateY(-8px); }
.best-value-plan { border-color: rgba(231,189,117,.38); }
.plan-badge { position: absolute; right: 18px; top: 18px; color: #08100c; background: var(--green); padding: 4px 8px; border-radius: 999px; font-size: 9px; font-weight: 840; letter-spacing: .08em; text-transform: uppercase; }
.plan-badge.value { color: #161008; background: var(--amber); }
.pricing-disclaimer { color: var(--subtle); text-align: center; margin: 28px auto 0; max-width: 720px; font-size: 12px; }

.auth-page { min-height: calc(100vh - 150px); padding: 72px 0 96px; display: grid; grid-template-columns: 1fr minmax(360px, 470px); align-items: center; gap: clamp(48px, 8vw, 120px); }
.auth-intro h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6vw, 70px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; margin: 14px 0 20px; }
.auth-intro > p { color: #b9bcb7; font-size: 19px; max-width: 590px; }
.auth-trust { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.auth-trust span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }
.auth-card { padding: clamp(28px, 4vw, 42px); }
.auth-card h2 { font-size: 30px; letter-spacing: -.035em; margin: 0 0 5px; }
.auth-card-lede { color: var(--muted); margin: 0 0 26px; }
.auth-card form { display: grid; gap: 17px; }
.auth-card label { display: grid; gap: 7px; color: #d8dad6; font-size: 13px; font-weight: 680; }
.auth-card input { width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 11px; background: rgba(7,9,9,.72); color: var(--ink); padding: 0 13px; font: inherit; }
.auth-card input:focus { border-color: rgba(92,214,160,.62); outline: 3px solid rgba(92,214,160,.1); }
.auth-card label small { color: var(--subtle); font-weight: 500; }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 64px; }
.password-toggle { position: absolute; right: 8px; top: 2px; min-width: 44px; height: 44px; border: 0; background: transparent; color: var(--green); font-weight: 700; cursor: pointer; }
.check-field { grid-template-columns: 18px 1fr !important; align-items: start; font-weight: 500 !important; }
.check-field input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--green); }
.check-field a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.form-message { min-height: 22px; color: var(--red); font-size: 13px; }
.auth-submit { width: 100%; border-radius: 11px; cursor: pointer; }
.auth-switch { color: var(--muted); text-align: center; margin: 22px 0 0; font-size: 13px; }
.auth-switch a { color: var(--green); font-weight: 700; }
.account-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.account-profile, .account-access, .account-security, .account-notifications, .account-history { padding: clamp(28px, 4vw, 42px); }
.account-profile h2, .account-access h2, .account-security h2, .account-notifications h2, .account-history h2 { font-size: 30px; margin: 8px 0 4px; }
.account-profile > p, .account-access p, .account-security > p, .account-history .section-head > p { color: var(--muted); }
.account-security, .account-notifications, .account-history { grid-column: 1 / -1; }
.account-access-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.account-access-heading h2 { margin: 0; min-width: 0; }
.subscription-status { flex: 0 0 auto; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.subscription-status.active { color: var(--green); border-color: rgba(92,214,160,.28); background: var(--green-soft); }
.subscription-status.ending { color: var(--amber); border-color: rgba(231,189,117,.3); background: rgba(231,189,117,.08); }
.subscription-status.expired { color: var(--red); border-color: rgba(255,123,114,.28); background: var(--red-soft); }

.status-hero { padding: clamp(28px, 5vw, 50px); display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.status-hero h2 { margin: 8px 0 5px; font-size: clamp(31px, 5vw, 49px); letter-spacing: -.04em; }
.status-hero p { color: var(--muted); margin: 0; }
.status-hero dl { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 12px; margin: 0; }
.status-hero dl div { padding: 16px; min-width: 170px; border: 1px solid var(--line); border-radius: 12px; }
.status-hero dt { color: var(--muted); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.status-hero dd { margin: 5px 0 0; font-weight: 760; }
.status-indicator { display: inline-block; width: 10px; height: 10px; margin-right: 10px; border-radius: 50%; background: var(--muted); }
.status-indicator.operational { background: var(--green); box-shadow: 0 0 0 6px var(--green-soft); }
.status-indicator.incident { background: var(--red); box-shadow: 0 0 0 6px var(--red-soft); }
.status-components { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.status-component { padding: 22px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 18px; }
.status-component > div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.status-component h3 { margin: 0; font-size: 18px; }
.status-component p { grid-column: 1 / -1; margin: 4px 0 0; color: var(--muted); }
.status-component small { grid-column: 1 / -1; color: var(--subtle); }
.component-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--muted); }
.component-dot.operational { background: var(--green); }
.component-dot.degraded { background: var(--amber); }
.component-dot.unavailable { background: var(--red); }
.component-state { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.component-state.operational { color: var(--green); }
.component-state.degraded { color: var(--amber); }
.component-state.unavailable { color: var(--red); }
.incident-list { overflow: hidden; }
.incident-row { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.incident-row:last-child { border-bottom: 0; }
.incident-row h3 { margin: 0 0 4px; }
.incident-row p { color: var(--muted); margin: 0 0 5px; }
.incident-row small { color: var(--subtle); }
.incident-state { align-self: start; justify-self: start; border: 1px solid var(--line); border-radius: 999px; padding: 4px 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.incident-state.active { color: var(--red); border-color: rgba(255,123,114,.28); background: var(--red-soft); }
.incident-state.resolved { color: var(--green); border-color: rgba(92,214,160,.28); background: var(--green-soft); }
.status-note { padding: clamp(28px, 4vw, 42px); }
.status-note h2 { margin-top: 0; }
.status-note p { color: var(--muted); max-width: 880px; }
.account-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.account-details div { padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.account-details dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.account-details dd { margin: 5px 0 0; font-weight: 740; }
.account-access .button { margin-top: 16px; }
.account-form { display: grid; gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); max-width: 720px; }
.account-form h3 { margin: 0 0 2px; font-size: 18px; }
.account-form label { display: grid; gap: 7px; color: #d8dad6; font-size: 13px; font-weight: 680; }
.account-form label small, .account-form > label > small { color: var(--subtle); font-weight: 500; }
.account-form input { width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 11px; background: rgba(7,9,9,.72); color: var(--ink); padding: 0 13px; font: inherit; }
.account-form input:focus { border-color: rgba(92,214,160,.62); outline: 3px solid rgba(92,214,160,.1); }
.account-form .button { justify-self: start; min-width: 150px; }
.account-actions { display: flex; align-items: center; gap: 10px; margin-top: 10px; max-width: 720px; }
.account-actions .button { flex: 1 1 0; min-width: 0; }
.account-history .section-head { margin-bottom: 24px; }
.account-history table { min-width: 920px; }
.notification-scope { margin: 22px 0; padding: 14px 16px; border-left: 2px solid var(--green); background: var(--green-soft); color: #cdd1cc; font-size: 13px; }
.notification-channel-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.notification-channel { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.015); cursor: pointer; }
.notification-channel:has(input:checked) { border-color: rgba(92,214,160,.36); background: var(--green-soft); }
.notification-channel:has(input:disabled) { opacity: .48; cursor: not-allowed; }
.notification-channel strong { display: block; font-size: 16px; }
.notification-channel small { display: block; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.notification-channel input { width: 19px; height: 19px; accent-color: var(--green); }
.notification-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--green); font-size: 18px; }
.notification-channel-action { cursor: default; }
.notification-channel-action.active { border-color: rgba(92,214,160,.36); background: var(--green-soft); }
.channel-action-button { min-height: 38px; padding: 0 14px; border: 1px solid rgba(92,214,160,.34); border-radius: 999px; background: rgba(92,214,160,.08); color: var(--green); font: inherit; font-size: 12px; font-weight: 780; cursor: pointer; }
.channel-action-button:hover { background: rgba(92,214,160,.15); }
.channel-action-button:focus-visible { outline: 3px solid rgba(92,214,160,.18); outline-offset: 2px; }
.channel-action-button:disabled { color: var(--subtle); border-color: var(--line); background: transparent; cursor: not-allowed; }
.notification-channel-list > .form-message, .notification-channel-list > .button { grid-column: 1 / -1; }
.notification-channel-list > .button { justify-self: start; }
.channel-dialog { width: min(560px, calc(100% - 32px)); border: 1px solid var(--line-strong); border-radius: 18px; background: #111514; color: var(--ink); padding: 26px; box-shadow: 0 28px 90px rgba(0,0,0,.58); }
.channel-dialog::backdrop { background: rgba(3,5,5,.76); backdrop-filter: blur(5px); }
.channel-dialog-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.channel-dialog h3 { margin: 5px 0 0; font-size: 24px; }
.channel-dialog > p { color: var(--muted); line-height: 1.65; margin: 18px 0 22px; }
.dialog-close { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.03); color: var(--muted); font-size: 24px; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: var(--ink); border-color: var(--line-strong); }
.dialog-close:focus-visible { outline: 3px solid rgba(92,214,160,.18); outline-offset: 2px; }
.telegram-link-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.channel-dialog > .danger { margin-top: 12px; }
.channel-dialog > .form-message { margin: 16px 0 0; }
.notification-activity { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.delivery-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.delivery-chip { padding: 7px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; text-transform: capitalize; }
.delivery-chip.sent { color: var(--green); border-color: rgba(92,214,160,.28); }
.delivery-chip.failed { color: var(--red); border-color: rgba(255,123,114,.28); }
.subscription-details { margin: 24px 0; }
.plan-change-form { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 22px; }
.plan-change-form label { display: block; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 9px; }
.plan-change-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.plan-change-row select { width: 100%; color: var(--text); background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; min-height: 44px; }
.plan-change-row .button { margin-top: 0; }
.subscription-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.subscription-actions .button { margin-top: 0; }

.cta { margin-top: 80px; padding: clamp(30px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta h2 { font-family: Georgia, serif; font-weight: 500; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; margin: 0 0 10px; }.cta p { color: var(--muted); margin: 0; }
footer { border-top: 1px solid var(--line); padding: 35px 0 44px; color: var(--subtle); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-legal { display: flex; justify-content: flex-end; gap: 18px; margin-top: 14px; }
.footer-legal a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); }
.footer-legal a:hover, .footer-legal a:focus-visible, .footer-legal a[aria-current="page"] { color: var(--text); }
.analytics-choice { min-height: 44px; padding: 0; border: 0; background: none; color: var(--muted); font: inherit; cursor: pointer; }
.analytics-choice:hover, .analytics-choice:focus-visible { color: var(--ink); }
.analytics-consent { position: fixed; z-index: 60; left: 20px; right: 20px; bottom: 20px; width: min(calc(100% - 40px), 900px); margin: 0 auto; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(92,214,160,.28); border-radius: 17px; background: rgba(17,20,20,.98); box-shadow: 0 24px 80px rgba(0,0,0,.55); }
.analytics-consent strong { display: block; font-size: 17px; }
.analytics-consent p { margin: 3px 0; color: var(--muted); }
.analytics-consent a { color: var(--green); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.analytics-actions { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; }

.support-intro { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr); align-items: end; gap: 40px; }
.support-promise { padding: 26px; }
.support-promise strong { display: block; margin: 8px 0; font-size: 20px; }
.support-promise p { margin: 0; color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faq-item { padding: 0 22px; box-shadow: none; }
.faq-item summary { padding: 22px 28px 22px 0; cursor: pointer; font-weight: 730; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; color: var(--green); font-size: 21px; top: 17px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin: 0; padding: 0 0 22px; }
.faq-item p a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.support-gate { padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.support-gate h3, .support-compose h3, .support-history h3 { margin: 5px 0; font-size: 25px; }
.support-gate p { margin: 0; color: var(--muted); }
.support-grid { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); gap: 20px; align-items: start; }
.support-compose, .support-history { padding: clamp(24px, 4vw, 36px); }
.support-form { display: grid; gap: 16px; margin-top: 24px; }
.support-form label, .support-reply-form label { display: grid; gap: 7px; color: #d8dad6; font-size: 13px; font-weight: 680; }
.support-form input, .support-form select, .support-form textarea, .support-reply-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: rgba(7,9,9,.72); color: var(--ink); padding: 12px 13px; font: inherit; resize: vertical; }
.support-form input, .support-form select { height: 48px; }
.support-form select { appearance: auto; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus, .support-reply-form textarea:focus { border-color: rgba(92,214,160,.62); outline: 3px solid rgba(92,214,160,.1); }
.support-safety { color: var(--amber); font-size: 12px; margin: -2px 0 0; }
.support-history-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.support-list { display: grid; gap: 10px; }
.support-ticket { width: 100%; text-align: left; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.015); color: var(--ink); cursor: pointer; }
.support-ticket:hover, .support-ticket:focus-visible { border-color: rgba(92,214,160,.4); background: var(--green-soft); }
.support-ticket-top, .support-ticket-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.support-ticket-top strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.support-ticket-meta { justify-content: flex-start; flex-wrap: wrap; margin-top: 8px; color: var(--muted); font-size: 11px; }
.support-ticket-meta span:not(:last-child)::after { content: "·"; margin-left: 12px; }
.support-status { display: inline-flex; align-items: center; white-space: nowrap; padding: 5px 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; }
.support-status.status-open { color: var(--green); border-color: rgba(92,214,160,.28); background: var(--green-soft); }
.support-status.status-in_progress { color: var(--amber); border-color: rgba(231,189,117,.28); }
.support-thread { border-top: 1px solid var(--line); padding-top: 18px; }
.support-back { border: 0; background: none; color: var(--green); padding: 0; cursor: pointer; font: inherit; font-weight: 700; }
.support-thread-title { margin: 18px 0 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.support-thread-title h4 { margin: 4px 0 0; font-size: 22px; }
.support-messages { display: grid; gap: 12px; }
.support-message { max-width: 88%; padding: 15px 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.018); }
.support-message.customer { justify-self: end; background: var(--green-soft); border-color: rgba(92,214,160,.2); }
.support-message-meta { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 11px; }
.support-message p { margin: 7px 0 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.support-reply-form { display: grid; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.support-reply-form .button { justify-self: start; }
.support-closed { color: var(--muted); border-top: 1px solid var(--line); margin-top: 18px; padding-top: 18px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.admin-heading .page-title { margin-bottom: 10px; }
.admin-message { min-height: 24px; color: var(--green); margin: 22px 0 0; }
.admin-message.error { color: var(--red); }
.admin-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.admin-stat { padding: 24px; min-height: 132px; }
.admin-stat .metric-value { display: block; margin-top: 9px; }
.admin-stat small { display: block; color: var(--muted); margin-top: 8px; }
.admin-filter { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.admin-filter input, .admin-filter select, .admin-actions select, .admin-status-control select, .admin-reply textarea { min-height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #0a0c0c; color: var(--ink); padding: 9px 12px; font: inherit; }
.admin-filter input { min-width: 230px; }
.admin-split { display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); gap: 16px; align-items: start; }
.admin-list { padding: 9px; min-width: 0; }
.admin-detail { padding: clamp(24px, 4vw, 36px); min-height: 240px; position: sticky; top: 92px; }
.admin-detail h3 { margin: 7px 0 2px; font-size: 27px; letter-spacing: -.03em; }
.operator-email { color: var(--muted); overflow-wrap: anywhere; }
.operator-list { display: grid; gap: 4px; }
.operator-row { width: 100%; min-width: 0; padding: 14px; border: 1px solid transparent; border-radius: 12px; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; font: inherit; }
button.operator-row { cursor: pointer; }
button.operator-row:hover, button.operator-row:focus-visible { background: rgba(255,255,255,.025); border-color: rgba(92,214,160,.3); }
.operator-row-main, .operator-row-meta { min-width: 0; display: grid; gap: 3px; }
.operator-row-main strong, .operator-row-main small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.operator-row-main small, .operator-row-meta small { color: var(--muted); }
.operator-row-meta { justify-items: end; text-align: right; flex-shrink: 0; }
.admin-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0; }
.admin-facts div { padding: 13px; border: 1px solid var(--line); border-radius: 10px; min-width: 0; }
.admin-facts dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.admin-facts dd { margin: 4px 0 0; overflow-wrap: anywhere; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 9px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.admin-subhead { margin: 24px 0 10px; }
.compact-events, .admin-thread { display: grid; gap: 8px; }
.compact-events p, .compact-line { color: var(--muted); margin: 0; padding: 8px 0; border-bottom: 1px solid rgba(244,241,233,.06); }
.admin-reply { display: grid; gap: 10px; margin-top: 20px; }
.admin-reply textarea { width: 100%; min-height: 110px; resize: vertical; }
.admin-reply .button { justify-self: start; }
.admin-status-control { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; color: var(--muted); }
.admin-operations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-operations h3 { font-size: 26px; margin: 8px 0 20px; }
.audit-row { border-bottom: 1px solid rgba(244,241,233,.06); }
.admin-attention-card { margin-top: 14px; }
.notification-ops-card h3 { font-size: 21px; }
.backup-operations { padding: clamp(24px, 4vw, 36px); }
.backup-operations .admin-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 0; }
.backup-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.backup-actions p { color: var(--muted); margin: 0; }

.skeleton { position: relative; overflow: hidden; background: #191d1c; color: transparent !important; border-radius: 8px; min-height: 1em; }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent); animation: shimmer 1.5s infinite; }
.error-state, .empty-state { padding: 34px; text-align: center; color: var(--muted); }
@keyframes shimmer { to { transform: translateX(100%); } }

@media (max-width: 980px) {
  .brand, .menu-toggle, .nav-links a, .nav-actions .button, .account-chip {
    min-height: 44px;
  }
  .brand, .nav-links a { display: flex; align-items: center; }
  .menu-toggle { min-width: 44px; }
  .nav-links { display: none; position: absolute; top: 72px; left: 20px; right: 20px; padding: 18px; background: #111414; border: 1px solid var(--line); border-radius: 14px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }.menu-toggle { display: block; }.sign-in { display: none; }
  .sign-in.authenticated { display: inline-flex; }
  .trend-hero { grid-template-columns: 1fr; gap: 28px; }
  .evidence-layout { grid-template-columns: 1fr; }
  .research-grid, .performance-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .auth-page { grid-template-columns: 1fr; align-items: start; gap: 42px; }
  .auth-intro { max-width: 700px; }
}

@media (max-width: 1100px) {
  .notification-channel-list { grid-template-columns: 1fr; }
  .support-intro { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .paid-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .featured-plan { transform: none; }
  .table-scroll { display: none; }
  .admin-split { grid-template-columns: 1fr; }
  .admin-detail { position: static; }
  .backup-operations .admin-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-history { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 12px; }
  .mobile-trend { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.012); min-width: 0; }
  .mobile-trend-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
  .mobile-trend-head span { color: var(--muted); text-align: right; }
  .mobile-trend-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; font-size: 13px; }
  .mobile-trend-grid > div { min-width: 0; overflow-wrap: anywhere; }
  .mobile-trend-grid span { color: var(--muted); display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .04em; }
}

@media (max-width: 680px) {
  .analytics-consent { left: 14px; right: 14px; bottom: 14px; width: calc(100% - 28px); align-items: stretch; flex-direction: column; gap: 16px; }
  .analytics-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .notification-channel-list > .button { width: 100%; }
  .telegram-link-actions { display: grid; grid-template-columns: 1fr; }
  .telegram-link-actions .button { width: 100%; }
  .channel-dialog > .danger { width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }
  .support-gate, .support-history-head, .support-thread-title { align-items: flex-start; flex-direction: column; }
  .support-gate .button, .support-reply-form .button, .support-form .button { width: 100%; }
  .support-message { max-width: 96%; }
  .plan-change-row { grid-template-columns: 1fr; }
  .subscription-actions > * { width: 100%; justify-content: center; }
  .premium-lock { grid-template-columns: 1fr; gap: 17px; }
  .premium-lock .button { width: 100%; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .page { padding-top: 35px; }.section { margin-top: 52px; }
  .brand span:last-child { display: none; }.nav-actions .button { min-height: 44px; padding: 7px 13px; }
  .account-chip { width: 44px; min-height: 44px; padding: 3px; justify-content: center; }
  .account-avatar { width: 30px; height: 30px; }
  .account-name { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .trend-hero { padding: 25px; }.trend-label { font-size: 46px; }
  .metrics { grid-template-columns: 1fr 1fr; }.metric-value { font-size: 21px; }
  .target-track { padding: 20px 12px; }.target-line { gap: 3px; }.target-name { font-size: 12px; }.target-status { font-size: 9px; }
  .section-head { align-items: start; flex-direction: column; }
  .evidence-cards { grid-template-columns: 1fr; }
  .research-grid, .performance-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .research-stat, .performance-stat { padding: 17px; min-height: 112px; }
  .mobile-history { grid-template-columns: 1fr; padding: 10px; }
  .simulation-banner, .cta { align-items: flex-start; flex-direction: column; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }.footer-row { flex-direction: column; }
  .footer-legal { justify-content: flex-start; }
  .pricing-free { flex-direction: column; align-items: flex-start; }
  .free-plan-action { width: 100%; justify-content: space-between; }
  .paid-plan-grid { grid-template-columns: 1fr; }
  .plan-description { min-height: 0; }
  .auth-page { padding: 44px 0 68px; gap: 30px; }
  .auth-intro h1 { font-size: 43px; }
  .auth-card { padding: 25px; }
  .account-grid { grid-template-columns: 1fr; }
  .account-access-heading { align-items: flex-start; }
  .status-hero { align-items: flex-start; flex-direction: column; }
  .status-hero dl { width: 100%; }
  .status-components { grid-template-columns: 1fr; }
  .account-form .button { width: 100%; justify-content: center; }
  .account-details { grid-template-columns: 1fr; }
  .admin-heading, .section-head:has(.admin-filter) { align-items: stretch; flex-direction: column; }
  .admin-heading .button, .admin-filter .button { width: 100%; }
  .admin-filter { align-items: stretch; flex-direction: column; }
  .admin-filter input { min-width: 0; width: 100%; }
  .admin-stats, .admin-operations { grid-template-columns: 1fr; }
  .admin-facts { grid-template-columns: 1fr; }
  .backup-operations .admin-facts { grid-template-columns: 1fr; }
  .operator-row { align-items: flex-start; }
  .operator-row-meta { max-width: 42%; }
  .admin-actions { display: grid; grid-template-columns: 1fr; }
  .admin-actions > *, .admin-reply .button { width: 100%; }
  .backup-actions { align-items: stretch; flex-direction: column; }
  .backup-actions .button { width: 100%; }
  .subscription-actions .button, .subscription-actions .button:only-child { width: 100%; justify-content: center; }
  .password-toggle { top: 2px; min-width: 44px; height: 44px; }
  .auth-switch a, .footer-legal a, .analytics-choice, .support-back {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .research-grid, .performance-grid { grid-template-columns: 1fr; }
  .status-hero dl { grid-template-columns: 1fr; }
  .status-hero dl div { min-width: 0; }
  .incident-row { grid-template-columns: 1fr; gap: 10px; }
  .metrics { grid-template-columns: 1fr; }
  .metric:nth-child(odd), .metric:nth-child(even) { padding: 16px 0; border-right: 0; }
  .metric:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

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