/* =====================================================================
   FORGE READINESS SYSTEM — Marketing site
   Site-level styles. Loads on top of assets/colors_and_type.css (tokens).
   Light-theme-first (Hearth ground), deep-Iron hero/footer bands.
   ===================================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font: var(--body);
  font-family: var(--font-sans);
  color: var(--fg1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--ember-200); color: var(--iron-900); }

:focus-visible { outline: 2px solid var(--ember-500); outline-offset: 2px; border-radius: 2px; }

/* ---------------------------------------------------------------------
   Layout primitives
   --------------------------------------------------------------------- */
.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 40px; }
.wrap-narrow { max-width: 920px; }
.section { padding-block: 104px; }
.section-sm { padding-block: 72px; }
.divider { border: 0; border-top: 1px solid var(--border); }

/* ---------------------------------------------------------------------
   Type helpers
   --------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 12px/1 var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ember-700);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--ember-700); opacity: .9;
}
.eyebrow.no-tick::before { display: none; }
.eyebrow.on-dark { color: var(--ember-300); }

.display { font: var(--display-2); letter-spacing: -0.02em; color: var(--fg1); text-wrap: balance; }
.h1 { font: var(--h1); letter-spacing: -0.015em; color: var(--fg1); text-wrap: balance; }
.h2 { font: var(--h2); letter-spacing: -0.01em; color: var(--fg1); text-wrap: balance; }
.h3 { font: var(--h3); color: var(--fg1); }
.h4 { font: var(--h4); color: var(--fg1); }
.lead { font: var(--body-lg); color: var(--fg2); text-wrap: pretty; }
.muted { color: var(--fg3); }
.on-dark { color: var(--hearth-200); }
.on-dark .h1, .on-dark .h2, .on-dark .display, .on-dark .h3, .on-dark .h4 { color: #fff; }
.on-dark .lead, .on-dark .muted { color: var(--iron-200); }
.ember { color: var(--accent); }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 15px/1 var(--font-sans);
  padding: 14px 22px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--dur-fast,.14s) ease, border-color .14s ease,
              color .14s ease, transform .12s ease, box-shadow .14s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { background: var(--accent-press); }
.btn-dark { background: var(--forge-iron); color: var(--hearth-200); }
.btn-dark:hover { background: var(--iron-600); }
.btn-secondary { background: transparent; border-color: var(--border-strong); color: var(--fg1); }
.btn-secondary:hover { border-color: var(--iron-400); background: var(--hearth-100); }
.btn-ghost { background: transparent; color: var(--fg1); padding-inline: 6px; }
.btn-ghost:hover { color: var(--accent); }
/* on-dark variants */
.on-dark .btn-secondary, .btn-secondary.on-dark {
  border-color: rgba(244,241,237,.28); color: #fff;
}
.on-dark .btn-secondary:hover, .btn-secondary.on-dark:hover {
  border-color: rgba(244,241,237,.55); background: rgba(244,241,237,.06);
}
.btn-lg { padding: 16px 26px; font-size: 16px; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 15px/1 var(--font-sans); color: var(--accent);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .16s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   Header / nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,241,237,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 28px; height: 70px; }
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font: 500 15px/1 var(--font-sans); color: var(--fg1);
  padding: 10px 14px; border-radius: var(--radius-sm);
  transition: color .14s ease, background .14s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link[aria-current="page"] { color: var(--accent); }
.nav-spacer { flex: 1 1 auto; }
.nav-cta { flex: none; }

/* Platform dropdown */
.nav-dd { position: relative; }
.nav-dd-toggle { background: none; border: 0; cursor: pointer; }
.nav-dd-toggle .chev { width: 15px; height: 15px; transition: transform .18s ease; opacity: .7; }
.nav-dd[data-open="true"] .chev { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  width: 320px; padding: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-dd[data-open="true"] .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-item {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 12px;
  padding: 11px 12px; border-radius: var(--radius-sm); transition: background .14s ease;
}
.dd-item:hover { background: var(--hearth-200); }
.dd-item .dd-name { font: 600 15px/1.2 var(--font-sans); color: var(--fg1); }
.dd-item .dd-desc { grid-column: 1; font: 400 13px/1.35 var(--font-sans); color: var(--fg3); }
.status-tag {
  font: 600 10px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 8px; border-radius: 999px; white-space: nowrap;
}
.status-tag.available { color: var(--status-ready); background: var(--status-ready-bg); }
.status-tag.soon { color: var(--status-due); background: var(--status-due-bg); }
.status-tag.layer { color: var(--status-info); background: var(--status-info-bg); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; color: var(--fg1); }
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-menu { display: none; }

/* ---------------------------------------------------------------------
   Dark bands (hero + footer + section accents)
   --------------------------------------------------------------------- */
.band-dark {
  position: relative;
  background-color: var(--iron-900);
  background-image:
    radial-gradient(110% 130% at 88% -10%, rgba(219,109,5,.16), rgba(219,109,5,0) 46%),
    repeating-linear-gradient(0deg,  rgba(255,255,255,.022) 0 1px, rgba(255,255,255,0) 1px 72px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, rgba(255,255,255,0) 1px 72px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, rgba(0,0,0,.02) 1px 3px),
    linear-gradient(178deg, #1c2127 0%, #181c22 50%, #14171c 100%);
  color: var(--hearth-200);
  overflow: hidden;
}
.band-dark::after {
  /* faint top hairline of forged light */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10) 30%, rgba(219,109,5,.35) 70%, transparent);
  pointer-events: none;
}
.band-dark .eyebrow { color: var(--ember-300); }
.band-dark a.arrow-link { color: var(--ember-300); }

/* ember spark — removed site-wide per request */
.spark { display: none; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero { padding-block: 92px 80px; }
.hero-grid { display: grid; gap: 56px; align-items: center; }
.hero-split { grid-template-columns: minmax(0,1.12fr) minmax(0,.88fr); }
@media (max-width: 1024px) { .hero-split { grid-template-columns: 1fr; } }
.hero .display { color: #fff; }
.hero-lead { max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* page hero (interior) */
.page-hero { padding-block: 72px 64px; }

/* ---------------------------------------------------------------------
   Cards & surfaces
   --------------------------------------------------------------------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.card-pad { padding: 28px; }
.chamfer { clip-path: var(--chamfer); }
.chamfer-lg { clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Module card */
.module-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}
.module-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--ember-500); transform: scaleX(0); transform-origin: left;
  transition: transform .26s var(--ease-out,cubic-bezier(.2,.7,.3,1));
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.module-card:hover::before { transform: scaleX(1); }
.module-card .mc-logo { height: 26px; width: auto; align-self: center; object-fit: contain; margin-bottom: 22px; }
.module-card .mc-body { color: var(--fg2); font-size: 15px; line-height: 1.55; margin-top: 6px; }
.module-card .mc-foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.module-card .mc-meta { font: 400 13px/1.4 var(--font-mono); color: var(--fg3); }

/* Stat block */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat {
  padding: 8px 26px; border-left: 1px solid var(--border);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num { font: 700 46px/1 var(--font-display); letter-spacing: -.02em; color: var(--fg1); }
.stat .num .u { color: var(--accent); }
.stat .lbl { margin-top: 12px; font: 400 12.5px/1.5 var(--font-mono); letter-spacing: .04em; color: var(--fg3); text-transform: uppercase; }
.band-dark .stat { border-color: rgba(255,255,255,.10); }
.band-dark .stat .num { color: #fff; }
.band-dark .stat .lbl { color: var(--iron-200); }

/* Feature row (alternating) */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.feature.flip .feature-media { order: -1; }

/* Icon chip for feature/capability headers */
.ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--ember-050); color: var(--accent);
  border: 1px solid var(--ember-100); flex: none;
}
.ic svg { width: 21px; height: 21px; }
.band-dark .ic { background: rgba(219,109,5,.14); border-color: rgba(219,109,5,.3); color: var(--ember-300); }

/* Capability cards */
.cap-card { padding: 26px; }
.cap-card .ic { margin-bottom: 18px; }
.cap-card h3 { font: var(--h4); color: var(--fg1); margin-bottom: 8px; }
.cap-card p { font-size: 14.5px; line-height: 1.55; color: var(--fg2); }

/* List with ember ticks */
.tick-list { list-style: none; display: grid; gap: 14px; }
.tick-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15.5px; line-height: 1.5; color: var(--fg1); }
.tick-list li svg { width: 19px; height: 19px; color: var(--accent); margin-top: 1px; }
.tick-list.on-dark li { color: var(--hearth-200); }

/* Pills / status */
.pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font: 600 12px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 13px; border-radius: 999px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; }
.pill.available { color: var(--status-ready); background: var(--status-ready-bg); }
.pill.available .dot { background: var(--status-ready); }
.pill.soon { color: var(--status-due); background: var(--status-due-bg); }
.pill.soon .dot { background: var(--status-due); }
.pill.layer { color: var(--status-info); background: var(--status-info-bg); }
.pill.layer .dot { background: var(--status-info); }
.band-dark .pill.available { background: rgba(46,125,82,.2); color: #7fcfa0; }
.band-dark .pill.soon { background: rgba(201,138,18,.22); color: #f0c061; }
.band-dark .pill.layer { background: rgba(58,110,143,.26); color: #88bcd8; }

/* ---------------------------------------------------------------------
   Comparison table
   --------------------------------------------------------------------- */
.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: 18px 22px; text-align: left; }
.cmp thead th { font: 600 13px/1.3 var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--fg3); border-bottom: 1px solid var(--border-strong); vertical-align: bottom; }
.cmp thead th.col-forge { color: var(--accent); }
.cmp tbody td { border-bottom: 1px solid var(--border); font-size: 15px; color: var(--fg1); }
.cmp tbody td:first-child { color: var(--fg2); font-weight: 500; }
.cmp .col-forge { background: var(--ember-050); }
.cmp td.col-forge { font-weight: 600; }
.cmp .yes { color: var(--status-ready); display: inline-flex; align-items: center; gap: 8px; }
.cmp .no { color: var(--fg4); }
.cmp .yes svg, .cmp .no svg { width: 18px; height: 18px; }

/* ---------------------------------------------------------------------
   CTA band (recurring)
   --------------------------------------------------------------------- */
.cta-band { padding-block: 96px; }
.cta-inner { display: grid; gap: 28px; max-width: 760px; }
.cta-band .display { color: #fff; }

/* ---------------------------------------------------------------------
   Forms (demo)
   --------------------------------------------------------------------- */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font: 600 13px/1.3 var(--font-sans); color: var(--fg1); }
.field .req { color: var(--accent); }
.input, .select, .textarea {
  width: 100%; font: 400 15px/1.4 var(--font-sans); color: var(--fg1);
  background: var(--bg-card); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--fg4); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring-accent); }
.textarea { resize: vertical; min-height: 120px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14.5px; transition: border-color .14s, background .14s;
}
.choice:hover { border-color: var(--iron-300); }
.choice input { accent-color: var(--accent); width: 16px; height: 16px; }
.scheduler-slot {
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-lg);
  padding: 34px; text-align: center; color: var(--fg3);
  background: repeating-linear-gradient(135deg, var(--hearth-100) 0 14px, var(--hearth-200) 14px 28px);
}

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { padding-block: 72px 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-tag { font: 500 15px/1.5 var(--font-sans); color: var(--iron-200); max-width: 300px; }
.footer-credo { margin-top: 14px; font: 500 13px/1.5 var(--font-mono); letter-spacing: .04em; color: var(--ember-300); }
.footer-col h4 { font: 600 12px/1 var(--font-mono); text-transform: uppercase; letter-spacing: .14em; color: var(--iron-300); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--iron-100); transition: color .14s ease; }
.footer-col a:hover { color: var(--ember-300); }
.footer-contact { display: grid; gap: 9px; font-size: 14px; color: var(--iron-100); }
.footer-contact a:hover { color: var(--ember-300); }
.footer-bottom {
  margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: baseline; justify-content: space-between;
}
.footer-legal { font-size: 13px; color: var(--iron-300); max-width: 720px; line-height: 1.6; }
.footer-pub { font: 600 13px/1.4 var(--font-sans); color: var(--iron-100); }
.tm { font-size: 12px; color: var(--iron-100); }

/* Light interior band (rebalance — replaces some dark bands) */
.band-light { background: var(--bg-sunken); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band-light.tint { background: var(--ember-050); border-color: var(--ember-100); }

/* GovCloud callout — distinct from numeric stats */
.gov-badge { display: inline-flex; align-items: center; gap: 14px; padding: 13px 18px; border: 1px solid var(--border-strong); border-radius: var(--radius-md); background: var(--bg-raised); }
.gov-badge .gb-ic { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; background: var(--ember-050); color: var(--accent); border: 1px solid var(--ember-100); flex: none; }
.gov-badge .gb-ic svg { width: 20px; height: 20px; }
.gov-badge .gb-k { display: block; font: 500 10px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--fg3); margin-bottom: 5px; }
.gov-badge .gb-v { display: block; font: 700 15px/1.1 var(--font-sans); color: var(--fg1); }
.band-dark .gov-badge { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.16); }
.band-dark .gov-badge .gb-v { color: #fff; }
.statband { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.statband .stat-row { flex: 1 1 auto; }
.stat-row.three { grid-template-columns: repeat(3, auto); justify-content: start; }
@media (max-width: 620px) { .stat-row.three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .statband { gap: 20px; } }

/* ---------------------------------------------------------------------
   Scroll reveal (reduced-motion safe; no-JS shows content)
   --------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: none; transition: transform .55s var(--ease-out,cubic-bezier(.2,.7,.3,1)); }
.js .reveal.d1 { transition-delay: .06s; }
.js .reveal.d2 { transition-delay: .12s; }
.js .reveal.d3 { transition-delay: .18s; }
.js .reveal.d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------------------------------------------------------------------
   Misc
   --------------------------------------------------------------------- */
/* FORGE INSPECT text lockup — no SVG asset exists; built in the wordmark system.
   The ring stands in for the "O" in FORGE (matches the module lockups). */
.flock {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: .04em; line-height: 1; color: var(--fg1);
  text-transform: uppercase; white-space: nowrap;
}
.flock .ring {
  display: inline-block; width: .8em; height: .8em; box-sizing: border-box;
  border: .2em solid var(--ember-500); border-radius: 50%;
  margin: 0 .05em; position: relative; top: -.05em;
}
.flock .gap { width: .26em; display: inline-block; }
.flock.on-dark, .band-dark .flock { color: var(--hearth-200); }

.kicker-num { font: 400 13px/1 var(--font-mono); color: var(--accent); letter-spacing: .1em; }
.note-line { font: 400 13px/1.5 var(--font-mono); color: var(--fg3); }
.hr-mono { display: flex; align-items: center; gap: 16px; font: 400 12px/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--fg3); }
.hr-mono::before, .hr-mono::after { content: ""; height: 1px; background: var(--border); flex: 1; }

.placeholder-shot {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--hearth-100), var(--hearth-300)),
    var(--bg-card);
  min-height: 320px; display: grid; place-content: center; gap: 12px; justify-items: center;
  color: var(--fg3); text-align: center; overflow: hidden;
}
.placeholder-shot::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(34,39,46,.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(34,39,46,.04) 0 1px, transparent 1px 28px);
  pointer-events: none;
}
.placeholder-shot .ph-label { font: 500 12px/1.4 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.placeholder-shot .ic { background: var(--bg-card); }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .wrap { padding-inline: 32px; }
  .stat .num { font-size: 40px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta.desk { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { gap: 12px; }
  .hero-grid, .feature, .feature.flip .feature-media { grid-template-columns: 1fr; order: 0; }
  .feature { gap: 36px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding-block: 76px; }
  .hero { padding-block: 92px 84px; }
  .display { font-size: 52px; }
}
@media (max-width: 620px) {
  .wrap { padding-inline: 22px; }
  .display { font-size: 40px; line-height: 1.04; }
  .h1 { font-size: 34px; }
  .h2 { font-size: 28px; }
  .grid-2, .grid-3, .grid-4, .choice-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .stat { padding: 4px 18px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .section { padding-block: 60px; }
  .cmp th, .cmp td { padding: 13px 12px; font-size: 13.5px; }
}

/* ---------------------------------------------------------------------
   Mobile menu panel
   --------------------------------------------------------------------- */
.mobile-menu {
  position: fixed; inset: 70px 0 0 0; z-index: 99;
  background: var(--bg-page); padding: 24px 22px 40px;
  overflow-y: auto; transform: translateY(-8px); opacity: 0;
  visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mobile-menu[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .mm-group { font: 500 11px/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--fg3); margin: 24px 0 6px; }
.mobile-menu a.mm-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 4px; font: 500 18px/1 var(--font-sans); color: var(--fg1); border-bottom: 1px solid var(--border); }
.mobile-menu a.mm-link:hover { color: var(--accent); }
.mobile-menu .btn { width: 100%; margin-top: 28px; }
body.menu-open { overflow: hidden; }

/* ---------------------------------------------------------------------
   Trademark / status block
   --------------------------------------------------------------------- */
.tm-band { background: var(--bg-sunken); border-top: 1px solid var(--border); }
.tm-grid {
  margin-top: 36px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow-sm);
}
.tm-row {
  display: grid; grid-template-columns: minmax(190px, 1fr) 2fr auto;
  gap: 6px 28px; align-items: center; padding: 18px 24px;
  border-top: 1px solid var(--border);
}
.tm-row:first-child { border-top: 0; }
.tm-row .pill { justify-self: end; }
.tm-mark { font: 700 14px/1.3 var(--font-mono); letter-spacing: .03em; color: var(--fg1); }
.tm-goods { font: 400 14.5px/1.5 var(--font-sans); color: var(--fg2); }
@media (max-width: 760px) {
  .tm-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 18px; }
  .tm-row .pill { justify-self: start; }
}
