/* ============================================================
   T1Mem Official Site — site.css
   Built ON TOP of Design Tokens v2.0 (tokens.css) + components.css + layout.css.
   Single source of truth = token variables. No hardcoded brand colors.
   ============================================================ */

/* ---------- Smooth scroll & base tweaks ---------- */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img, svg { display: block; }
.t1-container { position: relative; }

/* ---------- Grid glow background (hero / section accents) ---------- */
.site-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(60% 50% at 50% -5%, rgba(201,162,39,0.12), transparent 70%),
    radial-gradient(40% 40% at 85% 10%, rgba(79,172,254,0.08), transparent 70%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  z-index: 0;
}

/* ============================================================
   HEADER / NAV (sticky marketing topbar, reuses token brand)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11,10,20,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--t1-border);
}
.site-header .t1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--t1-space-4);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: var(--t1-space-3);
  text-decoration: none;
}
.site-brand__logo {
  width: 36px; height: 36px;
  border-radius: var(--t1-radius-md);
  background: linear-gradient(135deg, var(--t1-brand-500), var(--t1-brand-300));
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--t1-weight-bold); font-size: 15px; color: var(--t1-bg);
  box-shadow: 0 0 18px rgba(201,162,39,0.32);
}
.site-brand__name { font-size: var(--t1-text-md); font-weight: var(--t1-weight-bold); color: var(--t1-text-1); letter-spacing: -0.01em; }
.site-brand__ver { font-size: var(--t1-text-xs); color: var(--t1-text-3); font-family: var(--t1-font-mono); margin-left: 2px; }

.site-nav { display: flex; align-items: center; gap: var(--t1-space-2); }
.site-nav__links { display: flex; align-items: center; gap: 2px; }
.site-nav__link {
  padding: 8px 14px;
  border-radius: var(--t1-radius-md);
  color: var(--t1-text-2);
  font-size: var(--t1-text-sm);
  font-weight: var(--t1-weight-medium);
  text-decoration: none;
  transition: all var(--t1-duration-fast) var(--t1-easing);
}
.site-nav__link:hover { color: var(--t1-text-1); background: var(--t1-surface-2); text-decoration: none; }
.site-nav__link.is-active { color: var(--t1-brand-500); background: rgba(201,162,39,0.08); }

.site-nav__right { display: flex; align-items: center; gap: var(--t1-space-3); }
.site-lang {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 12px;
  border-radius: var(--t1-radius-md);
  border: 1px solid var(--t1-border-strong);
  background: rgba(255,255,255,0.03);
  color: var(--t1-text-2); font-size: var(--t1-text-xs); font-weight: var(--t1-weight-medium);
  cursor: pointer; transition: all var(--t1-duration-fast) var(--t1-easing);
}
.site-lang:hover { color: var(--t1-text-1); border-color: var(--t1-border-strong); background: rgba(255,255,255,0.07); }
.site-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--t1-radius-md);
  border: 1px solid var(--t1-border); background: var(--t1-surface-2); color: var(--t1-text-2);
  cursor: pointer; transition: all var(--t1-duration-fast) var(--t1-easing);
}
.site-icon-btn:hover { color: var(--t1-text-1); background: var(--t1-surface-3); }
.site-icon-btn svg { width: 18px; height: 18px; }

/* Mobile drawer toggle */
.site-burger { display: none; }
.site-nav__mobile {
  position: fixed; inset: 0 0 0 auto;
  width: min(82vw, 320px);
  background: var(--t1-surface-1);
  border-left: 1px solid var(--t1-border);
  transform: translateX(100%);
  transition: transform var(--t1-duration-normal) var(--t1-easing);
  z-index: 60; padding: var(--t1-space-6) var(--t1-space-5);
  display: flex; flex-direction: column; gap: 4px;
}
.site-nav__mobile.is-open { transform: translateX(0); }
.site-nav__mobile a { padding: 12px 14px; border-radius: var(--t1-radius-md); color: var(--t1-text-2); text-decoration: none; font-size: var(--t1-text-sm); }
.site-nav__mobile a:hover { background: var(--t1-surface-2); color: var(--t1-text-1); }
.site-nav__scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transition: all var(--t1-duration-normal) var(--t1-easing); z-index: 55;
}
.site-nav__scrim.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--t1-radius-full);
  background: rgba(201,162,39,0.10); border: 1px solid var(--t1-border-glow);
  color: var(--t1-brand-400); font-size: var(--t1-text-xs); font-weight: var(--t1-weight-semibold);
  margin-bottom: var(--t1-space-5);
}
.hero__badge .t1-dot { background: var(--t1-brand-500); color: var(--t1-brand-500); }
.hero__title {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.12; font-weight: var(--t1-weight-bold);
  letter-spacing: -0.02em; color: var(--t1-text-1); margin: 0 0 var(--t1-space-5);
}
.hero__title .text-gold {
  background: linear-gradient(120deg, var(--t1-brand-400), var(--t1-brand-500) 60%, var(--t1-brand-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--t1-text-2); line-height: 1.7; max-width: 640px; margin: 0 auto var(--t1-space-8);
}
.hero__cta { display: flex; gap: var(--t1-space-3); justify-content: center; flex-wrap: wrap; }
.hero__cta .t1-btn { min-height: 46px; padding: 0 var(--t1-space-6); font-size: var(--t1-text-base); }
.hero__note { margin-top: var(--t1-space-5); font-size: var(--t1-text-xs); color: var(--t1-text-3); }

/* ============================================================
   SECTION helpers
   ============================================================ */
.section { position: relative; padding: clamp(48px, 7vw, 88px) 0; }
.section__head { max-width: 720px; margin: 0 auto var(--t1-space-10); text-align: center; }
.section__eyebrow {
  display: inline-block; font-size: var(--t1-text-xs); font-weight: var(--t1-weight-bold);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--t1-brand-400); margin-bottom: var(--t1-space-3);
}
.section__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: var(--t1-weight-bold); color: var(--t1-text-1); letter-spacing: -0.02em; margin: 0 0 var(--t1-space-3); }
.section__desc { color: var(--t1-text-2); font-size: var(--t1-text-md); line-height: 1.7; }

/* ---------- Bench cards (three benchmarks) ---------- */
.bench-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--t1-space-4); }
.bench-card {
  position: relative; background: var(--t1-surface-1); border: 1px solid var(--t1-border);
  border-radius: var(--t1-radius-lg); padding: var(--t1-space-5);
  transition: all var(--t1-duration-normal) var(--t1-easing); overflow: hidden;
}
.bench-card:hover { border-color: var(--t1-border-glow); box-shadow: var(--t1-shadow-gold); transform: translateY(-3px); }
.bench-card__top { display: flex; align-items: center; justify-content: space-between; gap: var(--t1-space-2); margin-bottom: var(--t1-space-4); }
.bench-card__name { font-size: var(--t1-text-sm); font-weight: var(--t1-weight-semibold); color: var(--t1-text-1); }
.bench-score { font-family: var(--t1-font-mono); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: var(--t1-weight-bold); color: var(--t1-text-1); line-height: 1; }
.bench-score .unit { font-size: var(--t1-text-md); color: var(--t1-text-3); font-weight: var(--t1-weight-medium); margin-left: 2px; }
.bench-metric { font-size: var(--t1-text-xs); color: var(--t1-text-3); margin-top: var(--t1-space-2); font-family: var(--t1-font-mono); }
.bench-note { margin-top: var(--t1-space-4); font-size: var(--t1-text-xs); color: var(--t1-text-2); line-height: 1.5; }
.bench-verify {
  display: inline-flex; align-items: center; gap: 5px; height: 22px; padding: 0 9px;
  border-radius: var(--t1-radius-full); font-size: 11px; font-weight: var(--t1-weight-semibold);
}
.bench-verify--ok { background: var(--t1-success-bg); color: var(--t1-success); }
.bench-verify--pending { background: var(--t1-warning-bg); color: var(--t1-warning); }
.bench-verify--world1 { background: linear-gradient(120deg,#C9A227,#E3C766); color: #0B0A14; box-shadow: 0 0 0 1px rgba(201,162,39,.45), 0 4px 16px -4px rgba(201,162,39,.5); }
.bench-verify--progress { background: rgba(34,211,238,.12); color: #22D3EE; }
.bench-verify--muted { background: var(--t1-text-3-bg, rgba(148,150,170,.12)); color: var(--t1-text-3); }
.bench-verify svg { width: 12px; height: 12px; }
.bench-foot { margin-top: var(--t1-space-5); font-size: var(--t1-text-xs); color: var(--t1-text-3); line-height: 1.6; border-top: 1px dashed var(--t1-border); padding-top: var(--t1-space-4); }
.bench-date {
  display: inline-block; margin-top: var(--t1-space-2); padding: 2px 10px;
  border-radius: 9999px; background: rgba(201,162,39,0.10);
  border: 1px solid var(--t1-border-glow); color: var(--t1-brand-400);
  font-size: 11px; font-weight: var(--t1-weight-semibold); font-family: var(--t1-font-mono);
}
.bench-cta { display: flex; gap: var(--t1-space-3); justify-content: center; margin-top: var(--t1-space-8); flex-wrap: wrap; }

/* ---------- Capability cards ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--t1-space-4); }
.cap-card {
  position: relative; background: rgba(19,18,41,0.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--t1-border); border-radius: var(--t1-radius-lg); padding: var(--t1-space-5);
  transition: all var(--t1-duration-normal) var(--t1-easing); overflow: hidden;
}
.cap-card:hover { border-color: var(--t1-border-strong); box-shadow: var(--t1-shadow-md); transform: translateY(-3px); }
.cap-card__icon {
  width: 46px; height: 46px; border-radius: var(--t1-radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--t1-space-4);
  background: linear-gradient(135deg, rgba(201,162,39,0.18), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.28); color: var(--t1-brand-400);
}
.cap-card__icon svg { width: 24px; height: 24px; }
.cap-card__title { font-size: var(--t1-text-md); font-weight: var(--t1-weight-bold); color: var(--t1-text-1); margin-bottom: var(--t1-space-2); }
.cap-card__desc { font-size: var(--t1-text-sm); color: var(--t1-text-2); line-height: 1.65; }
.cap-card__data { margin-top: var(--t1-space-4); padding-top: var(--t1-space-3); border-top: 1px solid var(--t1-border); font-family: var(--t1-font-mono); font-size: var(--t1-text-xs); color: var(--t1-brand-400); }

/* ============================================================
   INTERACTIVE DEMO (Aha moment)
   ============================================================ */
.demo-shell {
  position: relative; max-width: 980px; margin: 0 auto;
  background: linear-gradient(135deg, #15132a, #0f0e22);
  border: 1px solid var(--t1-border-glow); border-radius: var(--t1-radius-xl);
  box-shadow: 0 0 40px rgba(201,162,39,0.10); padding: var(--t1-space-6);
}
.demo-tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--t1-surface-2); border-radius: var(--t1-radius-md); margin-bottom: var(--t1-space-5); }
.demo-tab {
  padding: 8px 16px; border-radius: var(--t1-radius-sm); border: none; cursor: pointer;
  background: transparent; color: var(--t1-text-2); font-size: var(--t1-text-sm); font-weight: var(--t1-weight-medium);
  font-family: inherit; transition: all var(--t1-duration-fast) var(--t1-easing);
}
.demo-tab.is-active { background: var(--t1-surface-4); color: var(--t1-text-1); box-shadow: var(--t1-shadow-sm); }
.demo-panels { display: grid; grid-template-columns: 1fr 1fr; gap: var(--t1-space-5); align-items: start; }
.demo-panel { display: none; }
.demo-panel.is-active { display: block; }
.demo-chat {
  background: var(--t1-bg); border: 1px solid var(--t1-border); border-radius: var(--t1-radius-lg);
  padding: var(--t1-space-4); min-height: 280px; display: flex; flex-direction: column; gap: var(--t1-space-3);
}
.demo-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: var(--t1-text-sm); line-height: 1.55; }
.demo-msg--user { align-self: flex-end; background: linear-gradient(135deg, var(--t1-brand-500), var(--t1-brand-400)); color: var(--t1-bg); border-bottom-right-radius: 4px; font-weight: var(--t1-weight-medium); }
.demo-msg--ai { align-self: flex-start; background: var(--t1-surface-2); color: var(--t1-text-1); border-bottom-left-radius: 4px; border: 1px solid var(--t1-border); }
.demo-msg--sys { align-self: center; background: rgba(34,211,238,0.10); color: var(--t1-cyan); border: 1px solid rgba(34,211,238,0.25); font-size: var(--t1-text-xs); border-radius: 9999px; padding: 6px 12px; }
.demo-input-row { display: flex; gap: var(--t1-space-2); margin-top: var(--t1-space-3); }
.demo-input-row .t1-input { flex: 1; }
.demo-flow { text-align: center; margin: var(--t1-space-4) 0; }
.demo-flow__line {
  position: relative; height: 2px; background: linear-gradient(90deg, transparent, var(--t1-brand-500), transparent);
  border-radius: 2px; overflow: visible;
}
.demo-flow__line::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 10px; height: 10px; margin-top: -5px;
  border-radius: 50%; background: var(--t1-brand-400); box-shadow: 0 0 12px var(--t1-brand-500);
  animation: demo-pulse 2s var(--t1-easing) infinite;
}
@keyframes demo-pulse { 0% { left: 0; opacity: 0.2; } 50% { opacity: 1; } 100% { left: 100%; opacity: 0.2; } }
.demo-flow__label { display: inline-block; margin-top: var(--t1-space-3); font-size: var(--t1-text-xs); color: var(--t1-brand-400); font-weight: var(--t1-weight-semibold); }
.demo-hint { font-size: var(--t1-text-xs); color: var(--t1-text-3); text-align: center; margin-top: var(--t1-space-3); }

/* ============================================================
   CODE BLOCK
   ============================================================ */
.codeblock { position: relative; background: #08070f; border: 1px solid var(--t1-border); border-radius: var(--t1-radius-md); padding: var(--t1-space-4); overflow: auto; }
.codeblock pre { margin: 0; font-family: var(--t1-font-mono); font-size: var(--t1-text-xs); color: #a5d6ff; line-height: 1.7; white-space: pre; }
.codeblock__copy {
  position: absolute; top: 8px; right: 8px; height: 28px; padding: 0 10px;
  border-radius: var(--t1-radius-sm); border: 1px solid var(--t1-border); background: var(--t1-surface-2);
  color: var(--t1-text-2); font-size: var(--t1-text-xs); cursor: pointer; transition: all var(--t1-duration-fast) var(--t1-easing);
}
.codeblock__copy:hover { color: var(--t1-text-1); background: var(--t1-surface-3); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--t1-border); background: var(--t1-bg-elevated); padding: var(--t1-space-12) 0 var(--t1-space-6); margin-top: var(--t1-space-12); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--t1-space-8); }
.site-footer__brand p { color: var(--t1-text-3); font-size: var(--t1-text-sm); line-height: 1.7; margin-top: var(--t1-space-3); max-width: 280px; }
.site-footer__col h4 { color: var(--t1-text-1); font-size: var(--t1-text-sm); margin: 0 0 var(--t1-space-3); font-weight: var(--t1-weight-semibold); }
.site-footer__col a { display: block; color: var(--t1-text-3); font-size: var(--t1-text-sm); text-decoration: none; margin-bottom: var(--t1-space-2); transition: color var(--t1-duration-fast) var(--t1-easing); }
.site-footer__col a:hover { color: var(--t1-brand-400); text-decoration: none; }
.site-footer__bottom { margin-top: var(--t1-space-10); padding-top: var(--t1-space-5); border-top: 1px solid var(--t1-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--t1-space-3); color: var(--t1-text-3); font-size: var(--t1-text-xs); }

/* ============================================================
   REVEAL ANIMATION (IntersectionObserver)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t1-duration-slow) var(--t1-easing), transform var(--t1-duration-slow) var(--t1-easing); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .bench-grid { grid-template-columns: repeat(3, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .site-nav__links, .site-lang { display: none; }
  .site-burger { display: inline-flex; }
  .bench-grid, .cap-grid { grid-template-columns: 1fr; }
  .demo-panels { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--t1-space-6); }
  .hero__cta .t1-btn { width: 100%; }
}

/* ============================================================
   GLOBAL POLISH (T-D9): container width, a11y, scrollbar, focus
   ============================================================ */
/* Unify container width across header & sections; cap on large screens */
.t1-container { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: var(--t1-space-5); padding-right: var(--t1-space-5); }

/* Text selection (tech gold) */
::selection { background: rgba(201,162,39,0.30); color: var(--t1-text-1); }

/* Slim scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--t1-border-strong) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: var(--t1-border-strong); border-radius: 9999px; border: 2px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { background: var(--t1-brand-500); background-clip: padding-box; }

/* Visible focus (WCAG AA+) */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible,
.t1-btn:focus-visible, .site-lang:focus-visible, .site-icon-btn:focus-visible {
  outline: 2px solid var(--t1-brand-400); outline-offset: 2px; border-radius: var(--t1-radius-sm);
}

/* Long-text safety (prevent overflow on tiny screens) */
.hero__title, .section__title, .bench-card__name, .cap-card__title, .t1-card__title { overflow-wrap: anywhere; word-break: break-word; }

/* Respect reduced motion globally */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   USAGE CALCULATOR (T-D7, pure-frontend estimate)
   ============================================================ */
.calc-shell { max-width: 760px; margin: 0 auto; padding: var(--t1-space-6); }
.calc-row { display: grid; grid-template-columns: 150px 1fr 92px; align-items: center; gap: var(--t1-space-4); margin-bottom: var(--t1-space-5); }
.calc-row label { color: var(--t1-text-2); font-size: var(--t1-text-sm); font-weight: var(--t1-weight-medium); }
.calc-row output { font-family: var(--t1-font-mono); font-size: var(--t1-text-sm); color: var(--t1-brand-400); text-align: right; }
.calc-row input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 9999px; background: var(--t1-surface-3); outline: none; }
.calc-row input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--t1-brand-500); box-shadow: 0 0 0 4px rgba(201,162,39,0.18); cursor: pointer; transition: box-shadow var(--t1-duration-fast) var(--t1-easing); }
.calc-row input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 7px rgba(201,162,39,0.22); }
.calc-row input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border: none; border-radius: 50%; background: var(--t1-brand-500); cursor: pointer; }
.calc-result { display: flex; flex-wrap: wrap; gap: var(--t1-space-8); justify-content: center; margin-top: var(--t1-space-6); padding-top: var(--t1-space-5); border-top: 1px solid var(--t1-border); }
.calc-result > div { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.calc-result span { color: var(--t1-text-3); font-size: var(--t1-text-xs); }
.calc-result strong { font-size: 1.5rem; color: var(--t1-text-1); font-family: var(--t1-font-mono); }
.calc-tier { display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border-radius: var(--t1-radius-full); font-size: var(--t1-text-sm); font-weight: var(--t1-weight-semibold); font-family: var(--t1-font-sans); }
.calc-tier--free { background: var(--t1-surface-3); color: var(--t1-text-2); }
.calc-tier--saas { background: rgba(201,162,39,0.16); color: var(--t1-brand-400); }
.calc-tier--biz { background: rgba(34,211,238,0.14); color: var(--t1-cyan); }
.calc-tier--pro { background: rgba(34,211,238,0.14); color: var(--t1-cyan); }
.calc-row--plan { align-items: center; }
.calc-plan { background: var(--t1-surface-2, rgba(255,255,255,0.06)); color: var(--t1-text-1, #e6e6ef); border: 1px solid var(--t1-border, rgba(255,255,255,0.12)); border-radius: 8px; padding: 6px 10px; font-size: var(--t1-text-sm); font-family: var(--t1-font-sans, sans-serif); }
.calc-hint { font-size: var(--t1-text-xs, 0.75rem); color: var(--t1-text-3, #8b8b9c); margin-left: auto; }
.vol-table-wrap { overflow-x: auto; }
.vol-table { width: 100%; border-collapse: collapse; font-size: var(--t1-text-sm); }
.vol-table th, .vol-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--t1-border, rgba(255,255,255,0.12)); }
.vol-table th { color: var(--t1-text-3, #8b8b9c); font-weight: var(--t1-weight-semibold, 600); }
.vol-table td { color: var(--t1-text-1, #e6e6ef); font-family: var(--t1-font-mono, monospace); }
.vol-table .vol-disc { color: var(--t1-brand-400, #C9A227); font-weight: var(--t1-weight-semibold, 600); }
@media (max-width: 767px) {
  .calc-row { grid-template-columns: 1fr; gap: 8px; }
  .calc-row output { text-align: left; }
}
