/* myteam11win.com — Universal Prompt Factory V10
   Visual contract:
   - soft-green-commerce (light modular cards background)
   - cobalt-command accent
   - editorial-sans-contrast type
   - soft-modular section geometry
   - tonal-layering surfaces
   - cinematic-chapter-breaks signature device
   - horizontal-snap-rails lobby density
   - tabbed-comparison interaction
*/

:root {
  --ink: #0e1c2a;
  --ink-soft: #1f2f43;
  --ink-mute: #4a5b71;
  --paper: #f4f7f1;          /* page field — soft green-tinted off-white */
  --paper-2: #ffffff;         /* card surface */
  --paper-3: #eaf0e6;         /* alternating band */
  --paper-4: #dde7d5;         /* deeper band */
  --rule: #cdd9c4;            /* hairline */
  --rule-strong: #9eb39a;
  --accent: #0e3b8a;          /* cobalt-command */
  --accent-ink: #062763;
  --accent-soft: #e7eefb;
  --warn: #a85a13;
  --success: #1d6f3f;
  --shadow-1: 0 1px 2px rgba(14,28,42,0.05), 0 4px 14px rgba(14,28,42,0.05);
  --shadow-2: 0 2px 6px rgba(14,28,42,0.06), 0 14px 40px rgba(14,28,42,0.08);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --font-sans: "Inter", "Spectral", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Spectral", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --measure: 70ch;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* === Utility masthead === */
.masthead {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9f2 100%);
  border-bottom: 1px solid var(--rule);
}
.masthead-top {
  background: var(--ink);
  color: #d9e2cf;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.masthead-top .row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.masthead-top a { color: #d9e2cf; }
.masthead-top a:hover { color: #fff; }

.brandbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-tag {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* primary nav */
.primary-nav {
  margin-left: auto;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.primary-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}
.primary-nav a:hover {
  background: var(--paper-3);
  text-decoration: none;
}
.primary-nav a.cta {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
}
.primary-nav a.cta:hover { background: var(--accent-ink); }

/* hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--paper-2);
  cursor: pointer;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  z-index: 300;
  position: relative;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* === Mobile drawer === */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 90vw);
  background: var(--paper-2);
  z-index: 250;
  transform: translateX(100%);
  /* Closed state is fully inert for click/AT/scroll-occlusion: visibility:hidden
     hides it from the accessibility tree AND stops hit-testing, opacity:0 paints
     nothing, transition delays the visibility flip until the slide-out finishes
     so the slide-in animation still works. Matches .drawer-scrim pattern below. */
  visibility: hidden;
  opacity: 0;
  transition: transform 240ms ease, opacity 200ms ease, visibility 0s linear 240ms;
  border-left: 1px solid var(--rule);
  box-shadow: var(--shadow-2);
  padding: 80px 22px 22px;
  overflow-y: auto;
}
.mobile-drawer[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  /* When opening, visibility flips immediately so links are interactive during
     the slide-in. */
  transition: transform 240ms ease, opacity 200ms ease, visibility 0s linear 0s;
}
.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.drawer-close:hover, .drawer-close:focus { background: var(--accent); color: #fff; border-color: var(--accent); outline: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
/* .mobile-drawer[data-open="true"] now lives with the base .mobile-drawer rule above. */
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  padding: 14px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
}
.mobile-drawer nav a:hover { background: var(--paper-3); text-decoration: none; }
.mobile-drawer nav a.cta {
  background: var(--accent);
  color: #fff;
  text-align: center;
  margin-top: 14px;
}
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14,28,42,0.35);
  z-index: 240;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

/* === Containers === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.section-deep { padding: 80px 0; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 10px;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--ink);
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 22px;
  line-height: 1.55;
}
.small-mute {
  font-size: 13px;
  color: var(--ink-mute);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover { background: var(--accent-soft); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-soft); }
.btn-arrow::after { content: "→"; margin-left: 2px; }

/* === Hero — compact-feed === */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper-3) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0 48px;
}
.hero-text { max-width: 56ch; }
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.hero-meta .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--paper-4);
  aspect-ratio: 4 / 3;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-chapter-break {
  position: absolute;
  inset: auto 0 0 0;
  height: 16px;
  background:
    linear-gradient(135deg, transparent 0 50%, var(--paper) 50% 100%),
    linear-gradient(45deg, transparent 0 50%, var(--paper) 50% 100%);
  background-size: 24px 16px;
  background-position: 0 0, 12px 0;
  background-repeat: repeat-x;
  opacity: 0.6;
}

/* === Score strip === */
.score-strip {
  background: var(--ink);
  color: #f0f4ea;
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.score-strip:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.score-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  white-space: nowrap;
}
.score-strip .stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.score-strip .stat strong { color: #fff; font-weight: 700; }
.score-strip .stat + .stat::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6b8a59;
  margin-right: 18px;
}

/* === Asymmetric lead === */
.asym-lead {
  background: var(--paper);
}
.asym-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: start;
}
.asym-main { max-width: 60ch; }
.asym-side {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 24px;
  position: relative;
}
.asym-side h3 { color: var(--ink); }
.asym-side ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0 0;
}
.asym-side li {
  padding: 10px 0;
  border-top: 1px dashed var(--rule);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.asym-side li:first-child { border-top: 0; padding-top: 0; }

/* === Chapter break divider (signature device) === */
.chapter-break {
  height: 14px;
  background:
    linear-gradient(135deg, transparent 0 50%, var(--paper) 50% 100%),
    linear-gradient(45deg, transparent 0 50%, var(--paper) 50% 100%);
  background-size: 24px 14px;
  background-position: 0 0, 12px 0;
  background-repeat: repeat-x;
  opacity: 0.55;
}

/* === Explainer timeline === */
.timeline {
  background: var(--paper-3);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.timeline-card {
  background: var(--paper-2);
  border-radius: var(--radius-m);
  padding: 26px 24px;
  border: 1px solid var(--rule);
  position: relative;
}
.timeline-card .step {
  position: absolute;
  top: -14px;
  left: 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 100px;
}
.timeline-card h3 { margin-top: 8px; }

/* === Evidence gallery === */
.gallery {
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.gallery-item {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}
.gallery-item .pic {
  aspect-ratio: 4 / 3;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-item .badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.gallery-item .meta { font-size: 12.5px; color: var(--ink-mute); }
.gallery-item .src { font-size: 12px; color: var(--ink-mute); margin-top: 6px; }

/* === Comparison desk === */
.comparison-desk {
  background: var(--paper-3);
}
.comparison-table {
  margin-top: 28px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.comparison-table .row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
}
.comparison-table .row:first-child { border-top: 0; background: var(--paper); }
.comparison-table .cell {
  padding: 14px 18px;
  border-left: 1px solid var(--rule);
}
.comparison-table .cell:first-child { border-left: 0; font-weight: 600; }
.comparison-table .row.head .cell { font-weight: 700; color: var(--ink); font-size: 14px; }

/* === News stream === */
.news-stream {
  background: var(--paper);
}
.news-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.news-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card .date {
  font-size: 12.5px;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.news-card h3 { font-size: 19px; }
.news-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.news-card a.more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* === Trust footer / Legal group === */
.trust-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 56px 0 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.trust-grid h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
  font-weight: 700;
}
.trust-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-grid ul a {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.trust-grid ul a:hover { color: var(--accent); }
.trust-meta {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* Cookie settings button */
.cookie-btn {
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
}
.cookie-btn:hover { background: var(--paper-3); }

/* === Hub page === */
.page-header {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper-3) 100%);
  border-bottom: 1px solid var(--rule);
  padding: 56px 0 40px;
}
.page-header .crumbs {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.page-header .crumbs a { color: var(--ink-soft); }
.page-header .crumbs span { color: var(--ink-mute); margin: 0 6px; }
.page-header .h1 { margin-bottom: 14px; }
.page-header .lede { margin-bottom: 0; }

/* === Content blocks === */
.prose { max-width: 70ch; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  margin: 36px 0 14px;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 26px 0 10px;
}
.prose p { margin: 0 0 14px; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.small-mute a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
p a, li a, figcaption a, dd a, td a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote {
  margin: 24px 0;
  padding: 14px 20px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 10px 10px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16.5px;
}
.prose .figure {
  margin: 28px 0;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.prose .figure .pic { aspect-ratio: 16 / 9; overflow: hidden; }
.prose .figure img { width: 100%; height: 100%; object-fit: cover; }
.prose .figure figcaption {
  font-size: 13px;
  color: var(--ink-mute);
  padding: 10px 14px;
  border-top: 1px solid var(--rule);
  background: var(--paper-3);
}

/* Two-column section */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

/* FAQ */
.faq { margin-top: 28px; }
.faq details {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 0;
  margin-bottom: 12px;
  box-shadow: var(--shadow-1);
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq .body {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* Tabbed comparison (interaction signature) */
.tabs { margin-top: 24px; }
.tab-list {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 18px;
}
.tab-btn {
  background: transparent;
  border: 0;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-mute);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.tab-btn[aria-selected="true"] {
  color: var(--accent);
  border-color: var(--accent);
}
.tab-panel { display: none; }
.tab-panel[data-active="true"] { display: block; }

/* Steps list */
.steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.steps li {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  position: relative;
}
.steps .num {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  font-size: 13px;
  margin-bottom: 10px;
}
.steps h3 { font-size: 17px; margin: 0 0 6px; }

/* Triage tree */
.triage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.triage .branch {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 22px;
}
.triage .branch h3 { font-size: 17px; margin-bottom: 8px; }
.triage .branch p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* Card grid 2/3/4 */
.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 22px;
  box-shadow: var(--shadow-1);
}
.card h3 { margin: 0 0 10px; font-size: 18px; }
.card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 14.5px; }
.card ul { padding-left: 18px; margin: 8px 0 0; color: var(--ink-soft); font-size: 14px; }

/* Stat tile */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.stat-tile {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 20px;
  text-align: left;
}
.stat-tile .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 8px;
}
.stat-tile .label {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* Final CTA band */
.cta-band {
  background: var(--ink);
  color: #f0f4ea;
  padding: 64px 0;
}
.cta-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { color: #cfd6c5; max-width: 56ch; margin: 8px 0 0; }

/* Compliance strip */
.compliance-strip {
  background: var(--paper-4);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 14px 0;
}
.compliance-strip .container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.compliance-strip strong { color: var(--ink); }

/* Mobile sticky CTA */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 220;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  display: none;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.18);
}
.mobile-sticky .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px 20px;
}
.mobile-sticky .small {
  display: block;
  font-size: 11px;
  color: #bcc4b0;
  margin-top: 6px;
  text-align: center;
}

/* Disclosure */
.disclosure {
  font-size: 12.5px;
  color: var(--ink-mute);
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 24px 0;
}
.disclosure strong { color: var(--ink); }

/* === Responsive === */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .asym-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .triage { grid-template-columns: 1fr; }
  .comparison-table .row { grid-template-columns: 160px 1fr 1fr; }
}
@media (max-width: 700px) {
  .section { padding: 36px 0; }
  .section-deep { padding: 48px 0; }
  .hero-grid { padding: 36px 0 28px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .card-grid.two, .card-grid.three { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table .row {
    grid-template-columns: 1fr;
  }
  .comparison-table .cell {
    border-left: 0;
    border-top: 1px dashed var(--rule);
  }
  .comparison-table .row:first-child { display: none; }
  .comparison-table .mobile-label {
    font-size: 11px;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .mobile-sticky { display: block; }
  .page-header { padding: 36px 0 24px; }
  body { padding-bottom: 80px; }
}

/* Print niceties */
@media print {
  .mobile-sticky, .hamburger, .mobile-drawer, .drawer-scrim, .masthead-top { display: none !important; }
}

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