:root {
  --ink: #0F1923;
  --ink-2: #1a2534;
  --muted: #525252;
  --muted-2: #737373;
  --muted-3: #a3a3a3;
  --line: #e5e5e5;
  --line-2: #f0f0f0;
  --line-3: #f7f7f7;
  --paper: #ffffff;
  --paper-2: #fafafa;
  --paper-3: #f5f5f5;
  --accent: #B08D57;
  --accent-hover: #8F6F3E;
  --accent-soft: #F7F1E6;
  --accent-soft-2: #FBF7F0;
  --green: #2f7a4d;
  --green-soft: #f0f7f3;
  --green-on-dark: #3FA86A;
  --red: #c94a3e;
  --red-soft: #fbe9e7;
  --red-on-dark: #E27F75;
  --amber: #b87f2a;
  --amber-soft: #f7eedf;
  --amber-on-dark: #E0A458;
  --blue: #3b5ea5;
  --blue-soft: #eef2f8;
  --blue-on-dark: #5C8AD9;
  --purple-on-dark: #B69BE0;
  --ff-body: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-mono: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --max-w: 1440px;
  --inner-pad: 32px;
  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.3s;
  --dur-slow: 0.7s;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body); color: var(--ink); background: var(--paper);
  line-height: 1.5; text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.1; font-weight: 600; }
p { margin: 0; }
.faq-a a { color: var(--accent); border-bottom: 1px solid rgba(176,141,87,0.35); transition: border-color var(--dur-fast); }
.faq-a a:hover { border-bottom-color: var(--accent); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--inner-pad); padding-right: var(--inner-pad); }
main > section { padding: 96px var(--inner-pad); border-bottom: 1px solid var(--line); }
main > section.section-tight { padding: 80px var(--inner-pad); }
.bg-paper-2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #fff; }

/* Type */
.eyebrow { font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); }
.h-display { font-size: clamp(48px, 5.2vw, 76px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.h-section { font-size: clamp(40px, 4.2vw, 60px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
.h-section-sm { font-size: clamp(36px, 3.8vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.h-section-xs { font-size: clamp(32px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.mono { font-family: var(--ff-mono); }
.num { font-variant-numeric: tabular-nums; }

/* Buttons */
.btn {
  font-family: inherit; font-size: 16px; font-weight: 500;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 0;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-smooth),
              color var(--dur-fast) var(--ease-smooth),
              border-color var(--dur-fast) var(--ease-smooth),
              transform var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-base) var(--ease-smooth);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: 0s; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 10px 28px -10px rgba(176, 141, 87, 0.55); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); box-shadow: 0 10px 28px -10px rgba(15, 25, 35, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.btn-ghost-inv { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-inv:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 16px 26px; font-size: 17px; font-weight: 600; }
.link-arrow {
  font-size: 16px; font-weight: 500; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-fast) var(--ease-smooth);
}
.link-arrow:hover { gap: 10px; }

/* ============== HEADER ============== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; flex: none; }
.site-nav { background: var(--paper); }
.site-nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 14px var(--inner-pad); display: flex; align-items: center; justify-content: space-between; }
.site-nav-left { display: flex; align-items: center; gap: 44px; }
.site-nav-right { display: flex; align-items: center; gap: 10px; }
.nav-list { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 16.5px; font-weight: 500; color: var(--ink); padding: 8px 4px; transition: color var(--dur-fast); }
.nav-link:hover { color: var(--accent); }
.nav-link.is-current { color: var(--accent); position: relative; }
.nav-link.is-current::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 0; height: 2px; background: var(--accent); }
.nav-signin { font-size: 16px; padding: 8px 12px; color: var(--ink); }
.nav-signin:hover { color: var(--accent); }
.nav-cta { padding: 10px 18px; }
.nav-hamburger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; background: none; border: 0; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); }
.edma-logo { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.edma-logo .phoenix { height: 34px; width: auto; display: block; }
.edma-wordmark { font-family: var(--ff-body); }

/* ============== HERO ============== */
.s-hero { text-align: center; padding-bottom: 56px; }
.s-hero-inner { max-width: 1040px; margin: 0 auto; }
.s-hero .eyebrow { display: inline-block; margin-bottom: 28px; }
.s-hero h1 { margin-bottom: 24px; }
.s-hero h1 em { font-style: normal; color: var(--accent); }
.s-hero .lede { max-width: 900px; margin: 0 auto 36px; }
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-strap {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 auto 40px;
  padding: 9px 16px;
  background: var(--ink); color: rgba(255,255,255,0.9);
  font-family: var(--ff-mono); font-size: 14px;
  letter-spacing: 0.02em; flex-wrap: wrap; justify-content: center;
}
.hero-strap .tg {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 8px; background: rgba(176,141,87,0.18); color: var(--accent);
  border: 1px solid rgba(176,141,87,0.4);
}
.hero-strap .sep { color: rgba(255,255,255,0.25); }
.hero-strap .dot { width: 6px; height: 6px; background: var(--green-on-dark); border-radius: 50%; }
.hero-strap .num { color: #fff; }

.hero-kpi { max-width: 1180px; margin: 64px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.hero-kpi-cell { padding: 22px 24px; border-right: 1px solid var(--line-2); text-align: left; }
.hero-kpi-cell:last-child { border-right: 0; }
.hero-kpi-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.hero-kpi-val { margin-top: 10px; font-family: var(--ff-mono); font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.hero-kpi-val .unit { display: block; font-size: 14px; color: var(--muted-2); margin-top: 6px; letter-spacing: 0.02em; line-height: 1.4; }
.hero-kpi-val .accent { color: var(--accent); }
.hero-kpi-val .small { font-size: 16px; color: var(--muted-2); margin-left: 6px; }
.related-card-title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.related-card-desc { font-size: 16px; color: var(--muted); line-height: 1.55; }
.related-card-link { color: var(--accent); font-size: 15.5px; font-weight: 500; margin-top: auto; padding-top: 8px; }

/* ============== FOOTER (shared) ============== */
.site-footer { background: var(--ink); color: #fff; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top-inner { max-width: var(--max-w); margin: 0 auto; padding: 48px var(--inner-pad); display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.edma-logo--footer .phoenix { height: 40px; }
.edma-logo--footer .edma-wordmark { font-size: 26px; color: #fff; }
.edma-logo--footer { color: #fff; }
.footer-brand-tag { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.55; margin-top: 14px; max-width: 480px; }
.footer-newsletter-title { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.footer-newsletter-sub { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 14px; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: #fff; font-family: inherit; font-size: 15px; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-newsletter button { padding: 12px 18px; background: var(--accent); color: #fff; font-family: inherit; font-size: 15px; font-weight: 500; border: 0; cursor: pointer; }
.footer-newsletter button:hover { background: var(--accent-hover); }
.footer-links { max-width: var(--max-w); margin: 0 auto; padding: 56px var(--inner-pad); display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col-title { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-link-list li { padding: 4px 0; }
.footer-link-list a { font-size: 15px; color: rgba(255,255,255,0.65); transition: color var(--dur-fast); }
.footer-link-list a:hover { color: #fff; }
.footer-region { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-region-inner { max-width: var(--max-w); margin: 0 auto; padding: 22px var(--inner-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-region-left, .footer-social { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-region-left .label, .footer-social .label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.footer-region-left a:hover { color: #fff; }
.footer-region-divider { color: rgba(255,255,255,0.2); }
.footer-region-left a.is-muted { color: rgba(255,255,255,0.4); }
.footer-social-icon { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }
.footer-social-icon:hover { border-color: var(--accent); color: var(--accent); }
.footer-legal-inner { max-width: var(--max-w); margin: 0 auto; padding: 22px var(--inner-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-legal-inner .links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-legal-inner .status-ok { color: var(--green-on-dark); }


/* ============================================================== */
/* ABOUT — SECTION STYLES                                          */
/* ============================================================== */

/* Hero — 5-cell KPI strip variant (override base 4-cell grid) */
.s-hero .hero-kpi { grid-template-columns: repeat(5, 1fr); max-width: 1280px; }

/* ============== 2 · THE DOGFOOD STORY ============== */
.s-story { padding-top: 96px; padding-bottom: 96px; }
.s-story-inner { max-width: 1080px; margin: 0 auto; padding: 0 var(--inner-pad); }
.s-story-head { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.s-story-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-story-head h2 { margin: 0; }

.s-story-body { max-width: 760px; margin: 0 auto; }
.s-story-body > p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}
.s-story-body > p strong { color: var(--ink); font-weight: 500; }

.s-story-callout {
  margin-top: 36px;
  padding: 28px 28px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
}
.s-story-callout .callout-eb {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.s-story-callout .callout-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.s-story-callout .callout-body strong { font-weight: 600; }
.s-story-callout .callout-body .mono {
  font-family: var(--ff-mono);
  font-size: 14.5px;
  background: var(--paper-2);
  padding: 1px 6px;
  border: 1px solid var(--line);
}

/* ============== 3 · WHAT DOGFOODING PRODUCES ============== */
.s-decisions { padding-top: 96px; padding-bottom: 96px; }
.s-decisions-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-decisions-head { max-width: 860px; margin: 0 auto 56px; text-align: center; }
.s-decisions-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-decisions-head h2 { margin: 0 0 16px; }
.s-decisions-head .lede { margin: 0 auto; max-width: 760px; }

.dec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.dec-card {
  padding: 28px 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-fast) var(--ease-smooth);
}
.dec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 25, 35, 0.07), 0 4px 10px rgba(15, 25, 35, 0.04);
  border-color: var(--line-2);
}
.dec-num {
  font-family: var(--ff-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.dec-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.dec-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}
.dec-foot {
  margin-top: auto !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: 13px !important;
  color: var(--muted-2) !important;
  font-family: var(--ff-mono);
  line-height: 1.5 !important;
}
.dec-foot .mono {
  background: var(--paper-2);
  padding: 1px 6px;
  border: 1px solid var(--line);
}
.dec-foot .acc { color: var(--accent); font-weight: 600; }

/* ============== 4 · WHO BUILDS THIS ============== */
.s-team { padding-top: 96px; padding-bottom: 96px; }
.s-team-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-team-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.s-team-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-team-head h2 { margin: 0; }

.s-team-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.s-team-prose > p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}
.s-team-prose > p:last-child { margin-bottom: 0; }
.s-team-prose strong { color: var(--ink); font-weight: 500; }

.s-team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 28px;
}
.s-team-card .card-eb {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hire-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
}
.hire-list li {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.hire-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.hire-list .mono {
  font-family: var(--ff-mono);
  font-size: 13px;
  background: var(--paper-2);
  padding: 1px 6px;
  border: 1px solid var(--line);
}
.s-team-card .card-foot {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.s-team-card .card-foot strong { color: var(--ink); font-weight: 600; }

/* ============== 5 · WHAT TRADEOS IS NOT ============== */
.s-not { padding-top: 96px; padding-bottom: 96px; }
.s-not-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-not-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.s-not-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-not-head h2 { margin: 0 0 16px; }
.s-not-head .lede { margin: 0 auto; max-width: 720px; }

.not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.not-card {
  padding: 28px 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  transition: border-color var(--dur-fast) var(--ease-smooth);
}
.not-card:hover { border-left-color: var(--red); border-color: var(--line-2); }
.not-eb {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.not-eb .x {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.not-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.not-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.not-card > p strong { color: var(--ink); font-weight: 500; }

/* ============== 6 · THE LONG ARC — 5-layer architecture (DARK) ============== */
.s-arc { padding-top: 96px; padding-bottom: 96px; border-bottom: 0; }
.s-arc-inner { max-width: 1180px; margin: 0 auto; padding: 0 var(--inner-pad); }
.s-arc-head { max-width: 840px; margin: 0 auto 56px; text-align: center; }
.s-arc-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-arc-head h2 { color: #fff; margin: 0 0 16px; }
.s-arc-head .lede {
  color: rgba(255,255,255,0.7);
  max-width: 760px;
  margin: 0 auto;
}

.arc-stack {
  display: flex; flex-direction: column;
  gap: 0;
}
.arc-row {
  display: grid;
  grid-template-columns: 60px 1fr 280px;
  gap: 24px;
  padding: 26px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0;
  align-items: center;
}
.arc-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.arc-row-live { border-left: 3px solid var(--green-on-dark); }
.arc-row-v2 { border-left: 3px solid var(--accent); }
.arc-row-fut { border-left: 3px solid rgba(255,255,255,0.18); }

.arc-num {
  font-family: var(--ff-mono);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  font-feature-settings: 'tnum';
}
.arc-row-live .arc-num { color: var(--green-on-dark); }
.arc-row-v2 .arc-num { color: var(--accent); }

.arc-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.arc-body .arc-d {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.arc-body .arc-d strong { color: #fff; font-weight: 500; }

.arc-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 16px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: right;
  border: 1px solid rgba(255,255,255,0.08);
}
.arc-stat em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.55);
}
.arc-stat-live { background: rgba(63,168,106,0.1); color: var(--green-on-dark); border-color: rgba(63,168,106,0.3); }
.arc-stat-v2 { background: rgba(176,141,87,0.12); color: var(--accent); border-color: rgba(176,141,87,0.3); }
.arc-stat-fut { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); }

.arc-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.arc-foot strong { color: #fff; font-weight: 600; }
.arc-foot .arc-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(176,141,87,0.4);
  transition: border-color var(--dur-fast);
}
.arc-foot .arc-link:hover { border-bottom-color: var(--accent); }

/* ============== 7 · CONTACT / NEXT STEP ============== */
.s-next { padding-top: 96px; padding-bottom: 96px; }
.s-next-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-next-head { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.s-next-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.s-next-head h2 { margin: 0 0 16px; }
.s-next-head .lede { margin: 0 auto; max-width: 720px; }

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto 40px;
}
.next-card {
  padding: 26px 26px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-fast) var(--ease-smooth);
}
.next-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 25, 35, 0.06), 0 3px 8px rgba(15, 25, 35, 0.04);
  border-color: var(--accent);
}
.next-card-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.next-card-primary:hover { border-color: var(--accent); }
.next-eb {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.next-card-primary .next-eb { color: var(--accent); }
.next-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.next-card-primary h3 { color: #fff; }
.next-card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 14px;
  flex-grow: 1;
}
.next-card-primary > p { color: rgba(255,255,255,0.7); }
.next-card .mono {
  font-family: var(--ff-mono);
  font-size: 13px;
  background: var(--paper-2);
  padding: 1px 5px;
  border: 1px solid var(--line);
}
.next-card-primary .mono { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.next-action {
  margin-top: auto !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--line-2);
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  margin-bottom: 0 !important;
  transition: gap var(--dur-fast) var(--ease-smooth);
}
.next-card-primary .next-action { border-top-color: rgba(255,255,255,0.15); }
.next-card:hover .next-action { padding-left: 4px; }

.next-foot {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.next-foot .link-arrow { font-size: 17px; font-weight: 600; }
.next-foot-sub {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.55;
}
.next-foot-sub .mono {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  background: var(--paper-2);
  padding: 1px 5px;
  border: 1px solid var(--line);
}

/* ============================================================== */
/* RESPONSIVE                                                      */
/* ============================================================== */
@media (max-width: 1100px) {
  .s-hero .hero-kpi { grid-template-columns: repeat(3, 1fr); }
  .s-hero .hero-kpi-cell { border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
  .s-hero .hero-kpi-cell:nth-child(3n) { border-right: 0; }
  .s-hero .hero-kpi-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .dec-grid { grid-template-columns: repeat(2, 1fr); }
  .not-grid { grid-template-columns: repeat(2, 1fr); }
  .next-grid { grid-template-columns: repeat(2, 1fr); }
  .s-team-grid { grid-template-columns: 1fr; gap: 32px; }
  .arc-row { grid-template-columns: 50px 1fr; gap: 18px; }
  .arc-row .arc-stat { grid-column: 1 / -1; text-align: left; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  main > section { padding: 56px 20px; }
  .nav-list, .nav-signin, .nav-link-pricing { display: none; }
  .nav-cta { display: inline-flex; font-size: 14px; padding: 8px 14px; }
  .nav-hamburger { display: flex; }
  .s-hero .hero-kpi { grid-template-columns: 1fr; }
  .s-hero .hero-kpi-cell { border-right: 0 !important; border-bottom: 1px solid var(--line-2); }
  .s-hero .hero-kpi-cell:last-child { border-bottom: 0; }
  .dec-grid, .not-grid, .next-grid { grid-template-columns: 1fr; }
  .s-story-callout { padding: 22px 18px; }
  .arc-row { padding: 22px 18px; }
  .arc-num { font-size: 22px; }
  .arc-body h3 { font-size: 19px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
}
