/* ==========================================================================
   Saor Systems - styles.css
   Brand-locked 2026-04-29 - Concept 6 Directional Aperture
   ========================================================================== */

:root {
  /* Brand */
  --ink-deep:    #0F0B3D;
  --ink-mid:     #3B2A8C;
  --gold:        #E5B461;
  --gold-soft:   rgba(229, 180, 97, 0.18);
  --cream:       #F6F2EA;
  --cool:        #F2F4F7;

  /* Surface scale (dark-mode default) */
  --bg-0: #07061a;          /* deepest, page background */
  --bg-1: #0F0B3D;          /* brand deep */
  --bg-2: #16124a;          /* slightly lifted */
  --bg-3: #1d1758;          /* card */
  --bg-line: #2a2470;
  --bg-line-soft: rgba(255,255,255,0.06);

  /* Type */
  --ink-1:  #f5efe1;        /* primary text on dark */
  --ink-2:  #cfc8b5;        /* secondary text */
  --ink-3:  #8a8499;        /* muted */
  --ink-link: #f5efe1;

  /* Type stack */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Radii / spacing */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Transitions */
  --t-fast: 120ms ease;
  --t-med:  240ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink-1);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% -200px, rgba(59, 42, 140, 0.35), transparent 70%),
    radial-gradient(ellipse 800px 600px at 100% 100%, rgba(229, 180, 97, 0.05), transparent 60%);
}

a { color: var(--ink-link); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* Skip link */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--ink-deep);
  padding: 10px 14px; border-radius: 0 0 var(--r-md) 0;
  font-weight: 600; z-index: 1000;
}
.skip:focus { left: 0; }

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(7, 6, 26, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--bg-line-soft);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.16em;
  color: var(--ink-1);
}
.brand:hover { color: var(--ink-1); }
.brand img { display: block; }
.brand-text .gold { color: var(--gold); }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 8px; gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink-1); border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* ============ CTAs ============ */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-med);
  cursor: pointer;
}
.cta-sm { padding: 10px 18px; font-size: 13.5px; }
.cta-primary {
  background: var(--gold); color: var(--ink-deep);
  box-shadow: 0 8px 30px -10px rgba(229, 180, 97, 0.5);
}
.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -10px rgba(229, 180, 97, 0.6);
  color: var(--ink-deep);
}
.cta-ghost {
  background: transparent; color: var(--ink-1);
  border-color: rgba(245, 239, 225, 0.22);
}
.cta-ghost:hover { background: rgba(245, 239, 225, 0.07); border-color: var(--gold); color: var(--gold); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 120px 28px 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  display: flex; justify-content: flex-end; align-items: center;
}
.hero-bg img {
  width: 70%; max-width: 980px;
  opacity: 0.85;
  transform: translateX(8%) translateY(-2%);
  filter: saturate(1.05) brightness(1.0);
  mask-image: linear-gradient(to right, transparent, black 40%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%, black 100%);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 18% 50%, var(--bg-0) 30%, transparent 70%),
    linear-gradient(to right, var(--bg-0) 0%, transparent 60%);
}
.hero-content {
  max-width: 720px;
  margin: 0 auto 0 max(28px, calc((100vw - 1180px) / 2));
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 20px;
  padding: 6px 14px;
  background: rgba(229, 180, 97, 0.08);
  border: 1px solid rgba(229, 180, 97, 0.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  color: var(--cream); letter-spacing: 0.08em;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 22px;
}
.lede { font-size: clamp(20px, 2.4vw, 26px); margin: 0 0 18px; font-weight: 500; }
.gold { color: var(--gold); }
.sub { color: var(--ink-2); font-size: 17px; margin: 0 0 36px; max-width: 620px; }
.sub strong { color: var(--ink-1); font-weight: 600; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-pills {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 18px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px; color: var(--ink-3);
}
.hero-pills li { display: inline-flex; align-items: center; gap: 8px; }
.pill-dot {
  width: 6px; height: 6px; background: var(--ink-mid);
  border-radius: 50%;
}

/* ============ Sections ============ */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-1); border-top: 1px solid var(--bg-line-soft); border-bottom: 1px solid var(--bg-line-soft); }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 820px;
}
.section-lede {
  font-size: 18px; color: var(--ink-2);
  max-width: 680px; margin: 0 0 48px;
}
.section-tail {
  margin-top: 36px;
  font-size: 16px; color: var(--ink-2);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  max-width: 720px;
}

/* ============ Leak grid ============ */
.leak-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.leak-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 26px 24px 22px;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.leak-card:hover {
  border-color: rgba(229, 180, 97, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(229, 180, 97, 0.18);
}
.leak-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.leak-card h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
.leak-card p { color: var(--ink-2); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ============ Phase grid ============ */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.phase {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.phase-num {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--gold);
  margin-bottom: 12px; letter-spacing: 0.1em;
}
.phase h3 { font-size: 22px; margin: 0 0 14px; letter-spacing: -0.015em; }
.phase p { color: var(--ink-2); font-size: 15px; margin: 0 0 12px; line-height: 1.6; }
.phase p strong { color: var(--ink-1); }
.phase-detail {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--bg-line);
  border-left: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin: 14px 0 0;
}

/* ============ Two-column ============ */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.value-list { list-style: none; padding: 0; margin: 24px 0 0; }
.value-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-line-soft);
  font-size: 15.5px; color: var(--ink-2);
}
.value-list li strong { color: var(--ink-1); }
.value-list li:last-child { border-bottom: 0; }

.callout {
  background: linear-gradient(160deg, rgba(229,180,97,0.07), transparent 60%), var(--bg-2);
  border: 1px solid rgba(229, 180, 97, 0.30);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
}
.callout-mark { margin-bottom: 18px; opacity: 0.95; }
.callout blockquote {
  margin: 0 0 18px;
  font-size: 18px; line-height: 1.55;
  color: var(--cream); font-style: italic;
}
.callout-attr {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.06em;
  color: var(--ink-3); margin: 0;
}

/* ============ Audit log (proof) ============ */
.audit-shell {
  background: #060417;
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}
.audit-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--bg-line);
  font-family: var(--font-mono);
  font-size: 12px; color: var(--ink-3);
}
.audit-bar .dot-r, .audit-bar .dot-y, .audit-bar .dot-g {
  width: 10px; height: 10px; border-radius: 50%;
}
.audit-bar .dot-r { background: #ff5f57; }
.audit-bar .dot-y { background: #febc2e; }
.audit-bar .dot-g { background: #28c840; }
.audit-bar .audit-title { margin-left: 10px; }
.audit-log {
  margin: 0; padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.75;
  color: #c5beac;
  min-height: 380px;
  max-height: 500px; overflow-y: auto;
  white-space: pre-wrap; word-break: break-word;
}
.audit-log .line { display: block; }
.audit-log .ok    { color: #84cc8c; }
.audit-log .warn  { color: var(--gold); }
.audit-log .err   { color: #ff8a7a; }
.audit-log .dim   { color: var(--ink-3); }
.audit-log .strong { color: var(--cream); }
.audit-log .cursor::after {
  content: '▌';
  color: var(--gold);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ============ Report cards ============ */
.report-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}
.report-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
}
.report-card h4 {
  margin: 0 0 22px;
  font-size: 14px; font-weight: 600;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar { display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: center; }
.bar-label { font-size: 13.5px; color: var(--ink-2); }
.bar-track {
  position: relative; height: 26px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--bg-line-soft);
}
.bar-fill {
  display: flex; align-items: center; justify-content: flex-end;
  height: 100%; width: 0;
  padding-right: 10px;
  background: linear-gradient(90deg, var(--ink-mid), var(--gold));
  color: var(--ink-deep);
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 600;
  border-radius: var(--r-sm);
  transition: width 1.2s cubic-bezier(.2,.7,.2,1);
}
.bar.in-view .bar-fill { width: var(--w); }

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-line-soft);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
}
.kpi-num { display: block; font-size: 26px; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
.kpi-label { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.05em; }
.report-foot { font-size: 12.5px; color: var(--ink-3); margin: 0; line-height: 1.55; }

/* ============ Contact form ============ */
.section-cta { background: linear-gradient(180deg, var(--bg-1), var(--bg-0)); }
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 720px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: flex; flex-direction: column;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); gap: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  color: var(--ink-1);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
  text-transform: none; letter-spacing: 0;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.25);
}
.contact-form button { align-self: flex-start; margin-top: 6px; }
.form-foot { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); margin: 4px 0 0; text-transform: none; letter-spacing: 0; }
.form-foot a { color: var(--gold); }

/* ============ Footer ============ */
.footer {
  background: #050313;
  padding: 60px 0 28px;
  border-top: 1px solid var(--bg-line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-tag { color: var(--ink-3); font-size: 13.5px; line-height: 1.6; margin: 14px 0 0; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 0 0 8px; font-size: 14px; color: var(--ink-2); }
.footer-bottom {
  border-top: 1px solid var(--bg-line-soft);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px; color: var(--ink-3);
}

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; right: 16px;
    background: var(--bg-1);
    border: 1px solid var(--bg-line);
    border-radius: var(--r-lg);
    padding: 14px 22px; gap: 14px;
    box-shadow: 0 18px 40px -12px rgba(0,0,0,0.6);
  }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .phase-grid { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 80px 20px 64px; }
  .hero-content { margin: 0 auto; }
  .hero-bg img { width: 110%; transform: translateX(20%) translateY(-12%); opacity: 0.55; }
  .bar { grid-template-columns: 1fr; gap: 6px; }
  .kpi-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ Downloads block (proof section) ============ */
.downloads {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--bg-line-soft);
}
.downloads-head h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  margin: 8px 0 12px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.download-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  color: var(--ink-1);
  transition: border-color var(--t-med), transform var(--t-med), background var(--t-med);
}
.download-card:hover {
  border-color: rgba(229, 180, 97, 0.45);
  background: var(--bg-3);
  transform: translateY(-2px);
  color: var(--ink-1);
}
.download-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,180,97,0.10);
  color: var(--gold);
  border: 1px solid rgba(229,180,97,0.35);
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.04em;
}
.download-body h4 {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.download-body p { margin: 0 0 6px; color: var(--ink-2); font-size: 13.5px; line-height: 1.5; }
.download-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.06em; }
.download-cta {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.json-preview {
  background: #060417;
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 8px;
}
.json-preview summary {
  padding: 14px 22px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  list-style: none;
  user-select: none;
}
.json-preview summary::-webkit-details-marker { display: none; }
.json-preview summary::before {
  content: "▸ ";
  color: var(--gold);
  display: inline-block;
  margin-right: 6px;
  transition: transform var(--t-fast);
}
.json-preview[open] summary::before { content: "▾ "; }
.json-preview pre {
  margin: 0;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--bg-line);
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: #c5beac;
  overflow-x: auto;
}
.json-preview pre code { color: inherit; }

/* ============ Field Notes ============ */
.field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.field-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  transition: border-color var(--t-med), transform var(--t-med);
}
.field-card:hover {
  border-color: rgba(229, 180, 97, 0.35);
  transform: translateY(-2px);
}
.field-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.field-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(229,180,97,0.08);
  border: 1px solid rgba(229,180,97,0.25);
  border-radius: 999px;
}
.field-stat {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.field-card h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.field-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 12px;
}
.field-stat-line {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  margin-top: 14px !important;
}
.field-foot {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 820px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--bg-line-soft);
  border-radius: var(--r-md);
  margin: 8px 0 0;
}
.field-foot strong { color: var(--cream); }

@media (max-width: 980px) {
  .download-grid { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 48px 1fr; gap: 14px; }
  .download-cta { grid-column: 1 / -1; text-align: right; padding-top: 4px; border-top: 1px solid var(--bg-line-soft); }
  .field-grid { grid-template-columns: 1fr; }
}
