:root {
  /* surfaces (white) */
  --bg: #FFFFFF;
  --bg-alt: #F7F6F2;
  --surface: #FFFFFF;
  --surface-2: #FBFAF6;
  --border: #E6E3DA;
  --border-strong: #CFCBBE;

  /* text */
  --text: #0E2A26;
  --text-soft: #36514C;
  --text-muted: #6A7570;

  /* brand accents (sampled directly from logo) */
  --teal: #0E6E5F;
  --teal-deep: #0A4D43;
  --red: #E03030;
  --red-deep: #B82420;
  --green: #4FA055;
  --green-deep: #3A7A40;

  /* semantic */
  --accent: var(--teal);
  --cta: var(--red);

  --max: 1140px;
  --max-narrow: 780px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 38, 0.04), 0 1px 3px rgba(14, 42, 38, 0.06);
  --shadow-md: 0 4px 14px rgba(14, 42, 38, 0.06), 0 2px 6px rgba(14, 42, 38, 0.04);
  --shadow-lg: 0 14px 40px rgba(14, 42, 38, 0.10), 0 4px 12px rgba(14, 42, 38, 0.05);
  --serif: 'Instrument Serif', 'Source Serif Pro', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--max-narrow); }
.center { text-align: center; }

/* ------------ Nav ------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
}
.footer-brand .brand-logo { height: 34px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(221, 59, 46, 0.25);
}
.btn-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 6px 18px rgba(221, 59, 46, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--border-strong);
  font-weight: 500;
}
.btn-ghost:hover { border-color: var(--teal); background: rgba(14, 110, 95, 0.04); }
.btn-block { display: flex; width: 100%; }
.btn-large { padding: 18px 32px; font-size: 16px; }

.inline-link {
  color: var(--cta);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.inline-link:hover { border-color: var(--cta); }

/* ------------ Hero ------------ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(14, 110, 95, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 32px;
  background: var(--surface);
  font-weight: 500;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 920px;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-title .strike {
  position: relative;
  color: var(--text-muted);
}
.hero-title .strike::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 55%;
  height: 5px;
  background: var(--cta);
  transform: rotate(-3deg);
  border-radius: 3px;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-soft);
  max-width: 660px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 880px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta strong {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--teal);
  font-weight: 400;
}
.hero-meta span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 980px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .hero { padding: 80px 0 70px; }
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
}

/* ------------ Logo strip ------------ */
.logo-strip {
  padding: 28px 0 56px;
  background: var(--bg);
}
.logo-strip-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
  font-weight: 500;
}
.logo-strip-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.logo-strip-img {
  height: 30px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logo-strip-img:hover {
  opacity: 0.95;
  filter: grayscale(0%);
}
.logo-strip-end {
  padding: 96px 0 110px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.logo-strip-end .logo-strip-label {
  font-size: 15px;
  letter-spacing: 0.22em;
  margin-bottom: 56px;
}
.logo-strip-end .logo-strip-row {
  gap: 110px;
}
.logo-strip-end .logo-strip-img {
  height: 64px;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .logo-strip { padding: 16px 0 40px; }
  .logo-strip-row { gap: 36px; }
  .logo-strip-img { height: 22px; }
  .logo-strip-end { padding: 64px 0 76px; }
  .logo-strip-end .logo-strip-label { font-size: 13px; margin-bottom: 36px; }
  .logo-strip-end .logo-strip-row { gap: 48px; }
  .logo-strip-end .logo-strip-img { height: 44px; }
}

/* ------------ Sections ------------ */
.section {
  padding: 110px 0;
  position: relative;
}
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
  font-weight: 600;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 880px;
  color: var(--text);
}
.center .section-title { margin-left: auto; margin-right: auto; }

.section-lede {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 660px;
  margin-bottom: 56px;
  line-height: 1.55;
}
.section-lede.center { margin-left: auto; margin-right: auto; }

@media (max-width: 680px) {
  .section { padding: 72px 0; }
}

/* ------------ Thesis ------------ */
.section-thesis { padding-top: 130px; padding-bottom: 60px; }
.prose p {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 22px;
}
.prose em { color: var(--teal); font-style: italic; font-weight: 500; }
.prose p:last-child { margin-bottom: 0; }

/* ------------ Quote ------------ */
.section-quote { padding: 60px 0 100px; background: var(--bg); }
.section-quote blockquote {
  border-left: 4px solid var(--teal);
  padding: 8px 0 8px 28px;
}
.section-quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
}
.section-quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
}
.section-quote cite span { color: var(--teal); font-style: italic; }

/* ------------ Services grid ------------ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.service:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
  font-weight: 600;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--text);
}
.service p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 18px;
}
.service-meta {
  font-size: 14px;
  color: var(--text-soft);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-meta strong { color: var(--text); font-weight: 700; }
.service-custom {
  background: linear-gradient(155deg, var(--surface) 0%, rgba(14, 110, 95, 0.07) 100%);
  border-color: rgba(14, 110, 95, 0.30);
}

/* ------------ Steps ------------ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--cta);
  margin-bottom: 18px;
  line-height: 1;
}
.steps h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--text);
}
.steps p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* ------------ Why grid ------------ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.why { padding: 8px 0; }
.why h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--text);
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}
.why p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 21px;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ------------ Pricing ------------ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.tier-featured {
  background: linear-gradient(160deg, #FFFFFF 0%, rgba(14, 110, 95, 0.05) 100%);
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(14, 110, 95, 0.10);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.tier-price strong {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-price span { font-size: 14px; color: var(--text-muted); }
.tier-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.tier-list li {
  font-size: 15px;
  color: var(--text-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 24px;
}
.tier-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.tier-list li:last-child { border-bottom: none; }
.pricing-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier-featured { transform: none; }
}

/* ------------ FAQ ------------ */
.faq { margin-top: 24px; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq summary {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  color: var(--text);
  transition: color 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 28px;
  color: var(--teal);
  font-weight: 300;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--teal); }
.faq details p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  padding-right: 40px;
}

/* ------------ CTA section ------------ */
.section-cta {
  padding: 130px 0;
  background:
    radial-gradient(ellipse at top, rgba(14, 110, 95, 0.10) 0%, transparent 55%),
    var(--bg);
}
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--text);
}
.cta-sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-foot {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
}
.cta-foot a {
  color: var(--cta);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  font-weight: 600;
}
.cta-foot a:hover { border-color: var(--cta); }

/* ------------ Footer ------------ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-links a:hover { color: var(--teal); }

@media (max-width: 680px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ------------ Vendor swap grid ------------ */
.swap-grid {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.swap, .swap-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.swap-row:last-child { border-bottom: none; }
.swap {
  background: rgba(14, 110, 95, 0.05);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  padding-top: 16px;
  padding-bottom: 16px;
}
.swap-from, .swap-to { padding: 0; }
.swap-old {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(221, 59, 46, 0.55);
  text-decoration-thickness: 1.5px;
  font-size: 16px;
  line-height: 1.4;
}
.swap-arrow {
  text-align: center;
  color: var(--cta);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}
.swap-new {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.swap-foot {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
@media (max-width: 720px) {
  .swap, .swap-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }
  .swap-arrow { display: none; }
  .swap-from, .swap-to { font-size: 11px; }
  .swap-from::after { content: ' →'; color: var(--cta); }
}

/* ------------ Intelligence vs Judgement split ------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.split-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.split-human {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(14, 110, 95, 0.07) 100%);
  border-color: var(--teal);
}
.split-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 24px;
  font-weight: 600;
}
.split-ai .split-tag { color: var(--text-muted); }
.split-col ul { list-style: none; }
.split-col li {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.split-col li:last-child { border-bottom: none; }
.split-human li { color: var(--text); }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* ------------ Service replaces tag ------------ */
.service-replaces {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--text-soft);
  background: rgba(14, 110, 95, 0.06);
  border-left: 2px solid var(--teal);
  padding: 8px 12px;
  margin-bottom: 18px;
  line-height: 1.4;
  border-radius: 0 6px 6px 0;
}

/* ------------ Opportunity map table ------------ */
.map-table {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.map-head, .map-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 2fr 1fr;
  gap: 16px;
  padding: 18px 28px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  line-height: 1.4;
}
.map-row:last-child { border-bottom: none; }
.map-head {
  background: rgba(14, 110, 95, 0.05);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  padding-top: 14px;
  padding-bottom: 14px;
}
.map-row > div:first-child { color: var(--text); font-weight: 500; }
.map-row > div:nth-child(2) {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: var(--text-soft);
  font-size: 13.5px;
}
.map-row > div:nth-child(3) { color: var(--text-muted); }
.map-status {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  justify-self: start;
}
.status-live  { color: var(--green-deep); background: rgba(79, 160, 85, 0.12); border: 1px solid rgba(79, 160, 85, 0.45); }
.status-soon  { color: var(--red); background: rgba(224, 48, 48, 0.07); border: 1px solid rgba(224, 48, 48, 0.30); }
.status-roadmap { color: var(--text-muted); background: rgba(14, 42, 38, 0.04); border: 1px solid var(--border-strong); }
.map-foot {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .map-head { display: none; }
  .map-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 22px;
  }
  .map-row > div:first-child { font-size: 17px; font-family: var(--serif); font-weight: 400; }
  .map-row > div:nth-child(2)::before { content: 'TAM: '; color: var(--text-muted); font-family: var(--sans); }
  .map-row > div:nth-child(3) { font-size: 14px; }
}

/* ------------ Selection ------------ */
::selection { background: var(--teal); color: #ffffff; }
