/* ── AbleBlox B2B Design System ─────────────────────────────────── */
/* Aesthetic: Institutional serif · Deep navy · Warm paper · Precise */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:        #F7F5F0;       /* warm paper */
  --surface:   #FFFFFF;
  --surface2:  #F0EDE6;
  --border:    #E2DDD6;
  --border2:   #C8C2B8;

  --ink:       #181510;       /* near black */
  --ink2:      #3D3830;
  --muted:     #7A7268;
  --muted2:    #A09890;

  --navy:      #0F1E3C;       /* deep navy primary */
  --navy2:     #1A3260;
  --navy-light:#E8EDF6;

  --accent:    #0F1E3C;       /* navy as accent */
  --green:     #1A6B3C;       /* success */
  --red:       #B91C1C;       /* danger */
  --amber:     #92400E;       /* warning */

  --font-head: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --r: 6px;
  --r2: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow:    0 4px 16px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
strong { font-weight: 600; }
code {
  font-family: var(--font-mono); font-size: 12px;
  background: var(--surface2); padding: 2px 6px;
  border-radius: 4px; border: 1px solid var(--border);
}

h1,h2,h3,h4 {
  font-family: var(--font-head);
  line-height: 1.15; font-weight: 400;
}
em { font-style: italic; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; height: 60px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: white;
}
.logo-mark { color: white; display: flex; }
.logo-name { font-family: var(--font-head); font-size: 17px; color: white; }
.logo-badge {
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8);
  padding: 2px 7px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2);
}
.nav-center { display: flex; gap: 4px; margin: 0 auto; }
.nav-link {
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 400;
  padding: 6px 14px; border-radius: var(--r);
  transition: all .15s; text-decoration: none;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-btn-ghost {
  color: rgba(255,255,255,0.65); font-size: 13px; padding: 6px 12px;
  border-radius: var(--r); transition: color .15s; text-decoration: none;
}
.nav-btn-ghost:hover { color: white; text-decoration: none; }
.nav-btn-solid {
  background: white; color: var(--navy);
  font-weight: 600; font-size: 13px;
  padding: 7px 16px; border-radius: var(--r);
  transition: all .15s; text-decoration: none;
}
.nav-btn-solid:hover { background: #E8EDF6; text-decoration: none; }
.nav-env-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 12px; padding: 5px 12px; border-radius: 20px;
  text-decoration: none;
}
.nav-env-pill:hover { background: rgba(255,255,255,0.2); text-decoration: none; }
.env-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; }

/* ── Flash ──────────────────────────────────────────────────────── */
.flash-stack { position: fixed; top: 68px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.flash {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: var(--r); font-size: 13px;
  max-width: 400px; box-shadow: var(--shadow);
  animation: fIn .2s ease;
}
@keyframes fIn { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.flash-icon { font-size: 14px; }
.flash-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: var(--green); }
.flash-danger  { background: #FEF2F2; border: 1px solid #FECACA; color: var(--red); }
.flash-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: var(--amber); }
.flash-info    { background: var(--navy-light); border: 1px solid var(--border); color: var(--navy); }
.flash-close { margin-left: auto; background: none; border: none; cursor: pointer; opacity: .5; font-size: 16px; color: inherit; }
.flash-close:hover { opacity: 1; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--navy); color: white;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  padding: 10px 22px; border-radius: var(--r); border: none; cursor: pointer;
  transition: all .15s; text-decoration: none;
}
.btn-primary:hover { background: var(--navy2); text-decoration: none; color: white; }
.btn-primary.large { font-size: 15px; padding: 13px 28px; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border2); color: var(--ink2);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 10px 22px; border-radius: var(--r); background: transparent; cursor: pointer;
  transition: all .15s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); text-decoration: none; }
.btn-outline.large { font-size: 15px; padding: 13px 28px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500;
  padding: 10px 18px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all .15s; text-decoration: none;
}
.btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.5); text-decoration: none; }

.btn-ghost-light {
  display: inline-flex; align-items: center;
  color: var(--navy); font-size: 14px; font-weight: 500;
  padding: 10px 18px; border-radius: var(--r);
  border: 1px solid var(--border2);
  transition: all .15s; text-decoration: none;
}
.btn-ghost-light:hover { border-color: var(--navy); text-decoration: none; }

.btn-disabled {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2); color: var(--muted);
  font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: var(--r); cursor: not-allowed;
  border: 1px solid var(--border);
}

/* ── Section typography ─────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.section-h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 48px; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px; position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-inner { position: relative; max-width: 700px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 68px); color: white;
  margin-bottom: 24px; line-height: 1.08;
}
.hero-h1 em { color: rgba(255,255,255,0.55); }
.hero-p {
  font-size: 17px; color: rgba(255,255,255,0.65); max-width: 580px;
  margin-bottom: 36px; line-height: 1.75;
}
.hero-p strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-partners-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hp-label { font-size: 12px; color: rgba(255,255,255,0.4); white-space: nowrap; }
.hp-chip {
  font-size: 12px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75); padding: 4px 12px; border-radius: 20px;
}

/* ── Value bar ──────────────────────────────────────────────────── */
.value-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.value-bar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: stretch;
}
.vb-item {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 18px 24px; gap: 3px;
}
.vb-item strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.vb-item span { font-size: 12px; color: var(--muted); }
.vb-sep { width: 1px; background: var(--border); margin: 12px 0; }

/* ── Explainer section ──────────────────────────────────────────── */
.explainer-section { background: var(--surface); border-bottom: 1px solid var(--border); }
.explainer-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.explainer-text h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 20px; }
.explainer-text p { color: var(--muted); margin-bottom: 18px; line-height: 1.75; }
.diagram-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px; box-shadow: var(--shadow-sm);
}
.dc-partner {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 22px;
}
.dc-logo { font-size: 28px; }
.dc-partner strong { display: block; font-size: 14px; font-weight: 600; }
.dc-partner small { font-size: 12px; color: var(--muted); }
.dc-flow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.dc-node {
  flex: 1; text-align: center; padding: 12px 8px;
  border-radius: var(--r); font-size: 12px; line-height: 1.4;
}
.dc-node.user { background: var(--navy-light); border: 1px solid var(--border); color: var(--ink2); }
.dc-node.platform {
  background: var(--navy); color: white; padding: 14px 10px;
}
.dc-ab-logo { display: block; font-size: 10px; font-weight: 700; opacity: 0.6; margin-bottom: 2px; }
.dc-node.platform strong { font-size: 12px; display: block; }
.dc-node.platform small { font-size: 10px; opacity: 0.65; display: block; margin-top: 2px; }
.dc-line { height: 1px; width: 18px; background: var(--border2); flex-shrink: 0; }
.dc-footer { display: flex; gap: 8px; flex-wrap: wrap; }
.dc-footer span { font-size: 11px; color: var(--green); font-weight: 500; }

/* ── Use cases ──────────────────────────────────────────────────── */
.use-section { background: var(--bg); }
.use-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.use-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px; position: relative;
  transition: box-shadow .2s;
}
.use-card:hover { box-shadow: var(--shadow); }
.use-card.featured { border-color: var(--navy); }
.uc-badge {
  position: absolute; top: -1px; right: 18px;
  background: var(--navy); color: white;
  font-size: 9px; font-weight: 600; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 0 0 var(--r) var(--r);
  text-transform: uppercase;
}
.uc-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.uc-industry { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 8px; }
.use-card h3 { font-size: 18px; margin-bottom: 10px; }
.use-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.uc-example { font-size: 12px; color: var(--muted2); }
.uc-example strong { color: var(--navy); }

/* ── Partner stats ──────────────────────────────────────────────── */
.stats-section { background: var(--surface); border-top: 1px solid var(--border); }
.partner-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ps-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 22px; transition: box-shadow .2s;
}
.ps-card:hover { box-shadow: var(--shadow-sm); }
.ps-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.ps-logo { font-size: 26px; }
.ps-status { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.ps-status.live { background: #DCFCE7; color: var(--green); }
.ps-status.pilot { background: #FEF9C3; color: #713F12; }
.ps-status.onboarding { background: var(--navy-light); color: var(--navy); }
.ps-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.ps-env { font-size: 11px; color: var(--muted); margin-bottom: 14px; }
.ps-metrics { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.ps-metric { flex: 1; padding: 9px 10px; border-right: 1px solid var(--border); text-align: center; }
.ps-metric:last-child { border-right: none; }
.ps-metric span { display: block; font-size: 10px; color: var(--muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.ps-metric strong { font-size: 13px; font-weight: 600; }

/* ── CTA section ────────────────────────────────────────────────── */
.cta-section { background: var(--bg); }
.cta-box {
  background: var(--navy); border-radius: var(--r2); padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cta-box h2 { font-size: 32px; color: white; margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; max-width: 500px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; white-space: nowrap; }

/* ── Page hero ──────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy); padding: 64px 0 56px;
}
.page-hero .section-eyebrow { color: rgba(255,255,255,0.45); }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.60); font-size: 16px; max-width: 560px; line-height: 1.7; }

/* ── For Partners page ──────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 80px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 26px; }
.fc-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.pricing-section { margin-bottom: 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; }
.pricing-card.featured { border-color: var(--navy); background: var(--navy-light); }
.pricing-tier { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 10px; }
.pricing-price { font-family: var(--font-head); font-size: 42px; color: var(--navy); margin-bottom: 14px; }
.pricing-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.pricing-note { font-size: 13px; color: var(--muted); border-left: 3px solid var(--border2); padding-left: 16px; }

.integration-section { margin-bottom: 80px; }
.integration-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.io-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; position: relative; }
.io-num { font-family: var(--font-head); font-size: 36px; color: var(--border2); margin-bottom: 12px; }
.io-card h3 { font-size: 17px; margin-bottom: 10px; }
.io-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.io-tag { display: inline-block; font-size: 10px; font-weight: 600; background: var(--navy-light); color: var(--navy); padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }

.timeline-section { margin-bottom: 64px; }
.timeline { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.tl-step { display: flex; gap: 28px; padding: 24px 28px; border-bottom: 1px solid var(--border); background: var(--surface); }
.tl-step:last-child { border-bottom: none; }
.tl-num { font-size: 11px; font-weight: 600; color: var(--muted); min-width: 60px; padding-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.tl-content h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.tl-content p { font-size: 13px; color: var(--muted); }
.partner-cta { text-align: center; padding-top: 24px; }

/* ── Partners page ──────────────────────────────────────────────── */
.partners-detail-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.pd-card { display: flex; gap: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 32px; }
.pd-left { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 80px; }
.pd-logo { font-size: 40px; }
.pd-status-pill { font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.pd-status-pill.live { background: #DCFCE7; color: var(--green); }
.pd-status-pill.pilot { background: #FEF9C3; color: #713F12; }
.pd-status-pill.onboarding { background: var(--navy-light); color: var(--navy); }
.pd-body { flex: 1; }
.pd-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.pd-name { font-size: 22px; margin-bottom: 4px; }
.pd-industry { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.pd-metrics-row { display: flex; gap: 20px; }
.pdm span { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.pdm strong { font-size: 15px; font-weight: 600; }
.pd-env-banner {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy-light); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: var(--r); margin-bottom: 16px;
}
.env-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.env-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.pd-token-info { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 14px; }
.pdt-row { display: flex; gap: 16px; padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: 13px; }
.pdt-row:last-child { border-bottom: none; }
.pdt-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; min-width: 90px; padding-top: 1px; }
.pdt-val { color: var(--ink2); }
.pd-closed-note { display: flex; gap: 10px; background: #F0F9F4; border: 1px solid #BBF7D0; border-radius: var(--r); padding: 12px 14px; font-size: 13px; color: #166534; }
.closed-icon { font-size: 15px; flex-shrink: 0; }
.your-company-card {
  background: var(--navy); border-radius: var(--r2); padding: 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.ycc-text h3 { font-size: 22px; color: white; margin-bottom: 8px; }
.ycc-text p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 480px; }

/* ── Demo page ──────────────────────────────────────────────────── */
.demo-note {
  display: flex; gap: 14px; background: var(--navy-light);
  border: 1px solid var(--border); border-left: 4px solid var(--navy);
  border-radius: var(--r); padding: 18px; margin-bottom: 40px; font-size: 14px;
}
.dn-icon { font-size: 18px; flex-shrink: 0; }
.demo-env-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 48px; }
.demo-env-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 26px; }
.demo-env-card.coming { opacity: 0.65; }
.dec-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dec-logo { font-size: 30px; }
.dec-status { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.dec-status.live { background: #DCFCE7; color: var(--green); }
.dec-status.pilot { background: #FEF9C3; color: #713F12; }
.dec-status.onboarding { background: var(--navy-light); color: var(--navy); }
.demo-env-card h3 { font-size: 18px; margin-bottom: 4px; }
.dec-partner { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.dec-partner strong { color: var(--ink); }
.demo-env-card p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.dec-details { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 20px; }
.dec-d { flex: 1; padding: 8px 10px; border-right: 1px solid var(--border); text-align: center; }
.dec-d:last-child { border-right: none; }
.dec-d span { display: block; font-size: 10px; color: var(--muted); margin-bottom: 2px; }
.dec-d strong, .dec-d code { font-size: 12px; }
.btn-primary.full { width: 100%; justify-content: center; }
.demo-accounts-note { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 28px; }
.demo-accounts-note h3 { font-size: 18px; margin-bottom: 20px; }
.dan-table { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 16px; }
.dan-row { display: grid; grid-template-columns: 1.5fr 1fr 2fr 1.5fr; gap: 0; padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 13px; align-items: center; }
.dan-row:last-child { border-bottom: none; }
.dan-row.header { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); background: var(--bg); font-weight: 600; font-family: var(--font-body); }
.dan-note { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Exchange ────────────────────────────────────────────────────── */
.exchange-banner { padding: 12px 0; }
.eb-inner { display: flex; justify-content: space-between; align-items: center; }
.eb-left { display: flex; align-items: center; gap: 14px; }
.eb-logo { font-size: 24px; }
.eb-name { display: block; font-size: 15px; font-weight: 600; }
.eb-scope { font-size: 11px; color: var(--muted); }
.eb-right { display: flex; align-items: center; gap: 16px; }
.eb-user { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; }
.eb-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.eb-signout { font-size: 12px; color: var(--muted); }
.eb-signout:hover { color: var(--ink); }
.exchange-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 24px;
  padding-top: 28px; padding-bottom: 48px;
}
.ex-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 22px; margin-bottom: 18px;
}
.ex-card:last-child { margin-bottom: 0; }
.ex-card-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 16px; }
.balance-card { text-align: center; }
.bc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.bc-amount { font-family: var(--font-head); font-size: 52px; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.bc-unit { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.bc-cash { font-size: 13px; color: var(--muted); margin-top: 4px; }
.bc-cash strong { color: var(--ink); }
.trade-tabs { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 18px; }
.tt {
  flex: 1; padding: 9px; font-size: 13px; font-weight: 500;
  background: none; border: none; cursor: pointer; color: var(--muted);
  transition: all .15s;
}
.tt.active { background: var(--navy); color: white; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-input {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  color: var(--ink); font-family: var(--font-body); font-size: 15px;
  padding: 9px 12px; border-radius: var(--r); transition: border-color .15s;
}
.form-input:focus { outline: none; border-color: var(--navy); }
.form-input[readonly] { color: var(--muted); cursor: default; }
select.form-input { cursor: pointer; }
textarea.form-textarea { resize: vertical; min-height: 120px; }
.trade-summary {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px; margin-bottom: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.ts-row { display: flex; justify-content: space-between; font-size: 13px; }
.ts-row.muted span, .ts-row.muted { color: var(--muted); font-size: 12px; }
.trade-env-note {
  display: flex; gap: 8px; font-size: 12px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 9px 12px; margin-bottom: 14px;
}
.btn-trade-submit {
  width: 100%; padding: 12px; border: none; border-radius: var(--r);
  color: white; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: opacity .15s;
}
.btn-trade-submit:hover { opacity: 0.88; }
.closed-env-card { background: #F0F9F4; border-color: #BBF7D0; }
.cec-title { font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.closed-env-card p { font-size: 12px; color: #166534; margin-bottom: 8px; line-height: 1.6; }
.closed-env-card ul { padding-left: 16px; }
.closed-env-card li { font-size: 12px; color: #166534; margin-bottom: 4px; }
.market-snapshot { }
.ms-price { margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.ms-price-big { font-family: var(--font-head); font-size: 38px; color: var(--navy); display: block; }
.ms-symbol { font-size: 12px; color: var(--muted); }
.ms-stats { display: flex; flex-direction: column; gap: 0; }
.ms-stat { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.ms-stat:last-child { border-bottom: none; }
.ms-stat span { color: var(--muted); }
.ms-stat strong { font-weight: 500; }
.peers-list { display: flex; flex-direction: column; gap: 0; }
.peer-row { display: flex; align-items: center; gap: 11px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.peer-row:last-child { border-bottom: none; }
.peer-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.peer-info { flex: 1; }
.peer-info strong { display: block; font-size: 13px; }
.peer-info span { font-size: 11px; color: var(--muted); }
.peer-badge { font-size: 10px; background: var(--navy-light); color: var(--navy); padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.peers-note { font-size: 11px; color: var(--muted); margin-top: 10px; }
.txn-list { display: flex; flex-direction: column; gap: 0; }
.txn-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.txn-row:last-child { border-bottom: none; }
.txn-dir { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--r); min-width: 60px; text-align: center; letter-spacing: 0.5px; }
.txn-dir.buy { background: #DCFCE7; color: var(--green); }
.txn-dir.sell { background: #FEF2F2; color: var(--red); }
.txn-body { flex: 1; }
.txn-body strong { display: block; font-size: 13px; }
.txn-body small { font-size: 11px; color: var(--muted); }
.txn-ts { font-size: 11px; color: var(--muted); white-space: nowrap; }
.empty-note { font-size: 13px; color: var(--muted); font-style: italic; }

/* ── How it works page ──────────────────────────────────────────── */
.hiw-overview { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center; margin-bottom: 80px; }
.hiw-ov-text h2 { font-size: 32px; margin-bottom: 18px; }
.hiw-ov-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.stack-diagram { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.sd-layer { padding: 20px 22px; }
.partner-layer { background: var(--bg); border-bottom: 1px solid var(--border); }
.ableblox-layer { background: var(--navy); color: white; }
.ableblox-layer strong { color: white; }
.ableblox-layer span { color: rgba(255,255,255,0.6); font-size: 13px; }
.data-layer { background: var(--surface2); border-top: 1px solid var(--border); }
.sd-layer strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.sd-layer span { font-size: 12px; color: var(--muted); }
.sd-arrow { text-align: center; padding: 8px; font-size: 12px; color: var(--muted); background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw-principles { margin-bottom: 80px; }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.principle { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; }
.p-num { font-family: var(--font-head); font-size: 32px; color: var(--border2); margin-bottom: 10px; }
.principle h3 { font-size: 17px; margin-bottom: 8px; }
.principle p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.hiw-fee-model { margin-bottom: 64px; }
.fee-model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fm-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 26px; }
.fm-card h3 { font-size: 17px; margin-bottom: 14px; }
.fm-card p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.fm-example { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 12px; }
.fme-row { display: flex; justify-content: space-between; padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: 13px; }
.fme-row:last-child { border-bottom: none; }
.fme-row.ableblox { background: var(--navy-light); color: var(--navy); font-weight: 600; }
.fme-row.total { font-weight: 600; }
.fme-note { font-size: 12px; color: var(--muted); font-style: italic; }
.hiw-cta { display: flex; gap: 14px; }

/* ── Blog ───────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card.lead { border-color: var(--navy); }
.bc-meta { display: flex; justify-content: space-between; align-items: center; }
.bc-tag {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  background: var(--navy-light); color: var(--navy); padding: 3px 9px; border-radius: 20px;
}
.bc-read { font-size: 12px; color: var(--muted); }
.blog-card h2 { font-size: 20px; line-height: 1.3; }
.blog-card h2 a { color: var(--ink); text-decoration: none; }
.blog-card h2 a:hover { color: var(--navy); }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.bc-footer { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.bc-link { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
.blog-post-container { max-width: 680px; padding-top: 56px; padding-bottom: 56px; }
.back-link { display: inline-block; font-size: 13px; color: var(--muted); margin-bottom: 20px; text-decoration: none; }
.back-link:hover { color: var(--navy); }
.bp-meta { display: flex; gap: 10px; margin-bottom: 16px; }
.bp-title { font-size: clamp(26px, 4vw, 42px); margin-bottom: 14px; }
.bp-byline { font-size: 13px; color: var(--muted); margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.bp-body p { font-size: 16px; line-height: 1.8; color: var(--ink2); margin-bottom: 22px; }
.bp-footer { display: flex; gap: 14px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }

/* ── Auth ───────────────────────────────────────────────────────── */
.auth-section { min-height: 90vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--bg); }
.auth-card {
  width: 100%; max-width: 440px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r2); padding: 40px;
  box-shadow: var(--shadow);
}
.auth-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; }
.auth-card h2 { font-size: 24px; margin-bottom: 8px; }
.auth-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.auth-form .form-group { margin-bottom: 14px; }
.auth-demo-note { background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--r); padding: 11px 14px; font-size: 13px; margin-bottom: 20px; }
.auth-demo-creds { font-size: 13px; color: var(--muted); margin-bottom: 18px; padding: 14px; background: var(--bg); border-radius: var(--r); border: 1px solid var(--border); }
.auth-demo-creds strong { display: block; margin-bottom: 8px; color: var(--ink); }
.auth-demo-creds div { margin-bottom: 5px; }
.auth-demo-creds small { color: var(--muted2); }
.adc-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; font-size: 12px; }
.adc-arrow { color: var(--muted2); }
.adc-env { color: var(--muted); }
.auth-back { font-size: 12px; color: var(--muted); display: block; text-align: center; }
.partner-auth-header { display: flex; align-items: center; gap: 14px; padding: 18px; background: var(--bg); border-radius: var(--r); margin-bottom: 20px; }
.pah-logo { font-size: 32px; }
.partner-auth-header h2 { font-size: 17px; margin-bottom: 3px; }
.partner-auth-header p { font-size: 12px; color: var(--muted); }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form .form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-success { text-align: center; padding: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); }
.cs-icon { font-size: 40px; margin-bottom: 14px; color: var(--green); }
.cs-icon::before { content: '✓'; }
.contact-success h3 { font-size: 24px; margin-bottom: 10px; }
.contact-success p { font-size: 14px; color: var(--muted); }
.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.ci-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; }
.ci-card h3 { font-size: 17px; margin-bottom: 16px; }
.ci-step { display: flex; gap: 12px; margin-bottom: 12px; }
.ci-step:last-child { margin-bottom: 0; }
.ci-step span { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ci-step p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.fit-list { padding-left: 18px; }
.fit-list li { font-size: 13px; color: var(--muted); margin-bottom: 7px; line-height: 1.5; }
.btn-primary.large.full { width: 100%; justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 56px 0 28px; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: white; margin-bottom: 12px; }
.footer-brand .logo-name { color: white; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); max-width: 260px; line-height: 1.65; margin-top: 6px; }
.footer-tagline { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 12px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-fee { background: rgba(255,255,255,0.06); padding: 3px 12px; border-radius: 20px; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .explainer-grid, .hiw-overview, .cta-box,
  .contact-grid, .fee-model-grid { grid-template-columns: 1fr; }
  .exchange-layout { grid-template-columns: 1fr; }
  .pricing-grid, .integration-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .mkt-row { grid-template-columns: 2fr 1fr 1fr 80px; }
  .pd-header { flex-direction: column; gap: 12px; }
}
@media (max-width: 640px) {
  .nav-center { display: none; }
  .value-bar-inner { flex-direction: column; }
  .vb-sep { width: 100%; height: 1px; margin: 0; }
  .hero-h1 { font-size: 36px; }
  .principles-grid { grid-template-columns: 1fr; }
  .pd-card { flex-direction: column; }
  .dan-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 32px; }
  .cta-actions { flex-direction: row; }
}

/* ── Request Demo Modal ─────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,30,60,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-backdrop.modal-open { opacity: 1; pointer-events: all; }

.modal-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0;
  box-shadow: 0 20px 60px rgba(15,30,60,0.22), 0 4px 16px rgba(0,0,0,0.08);
}
.modal-backdrop.modal-open .modal-card { transform: translateY(0) scale(1); opacity: 1; }

.modal-hd {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 26px 28px 20px; border-bottom: 1px solid var(--border);
}
.modal-hd-left { display: flex; align-items: center; gap: 14px; }
.modal-brand-mark {
  width: 36px; height: 36px; background: var(--navy); color: white;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal-title { font-family: var(--font-head); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 3px; }
.modal-subtitle { font-size: 13px; color: var(--muted); }
.modal-x {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--muted); line-height: 1;
  padding: 2px 6px; border-radius: var(--r);
  transition: color 0.15s, background 0.15s;
  margin-top: -2px; flex-shrink: 0;
}
.modal-x:hover { color: var(--ink); background: var(--surface2); }

.modal-form {
  padding: 22px 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mf-field { display: flex; flex-direction: column; gap: 6px; }
.mf-field label { font-size: 12px; font-weight: 600; color: var(--ink2); text-transform: uppercase; letter-spacing: 0.4px; }
.mf-req { color: var(--navy); }
.mf-field input, .mf-field select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--ink); font-family: var(--font-body);
  font-size: 14px; padding: 10px 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.mf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7268' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px; cursor: pointer;
}
.mf-field input:focus, .mf-field select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(15,30,60,0.08); }
.mf-field input.input-error { border-color: var(--red); box-shadow: 0 0 0 3px rgba(185,28,28,0.08); }
.mf-err { font-size: 11px; color: var(--red); min-height: 14px; display: block; }
.mf-note {
  font-size: 12px; color: var(--muted);
  background: var(--surface2); border-radius: var(--r);
  padding: 9px 13px; border-left: 3px solid var(--border2);
}
.mf-actions {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 12px; padding-top: 8px;
  border-top: 1px solid var(--border); margin-top: 4px;
}
.mf-btn-cancel {
  background: none; border: 1px solid var(--border2); color: var(--ink2);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: var(--r); cursor: pointer;
  transition: all 0.15s;
}
.mf-btn-cancel:hover { border-color: var(--ink2); color: var(--ink); background: var(--surface2); }
.mf-btn-submit {
  background: var(--navy); border: none; color: white;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 9px 22px; border-radius: var(--r); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, opacity 0.15s;
}
.mf-btn-submit:hover { background: var(--navy2); }
.mf-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: modal-spin 0.7s linear infinite; display: inline-block;
}
@keyframes modal-spin { to { transform: rotate(360deg); } }

.modal-thanks {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 52px 36px 44px; gap: 14px;
}
.modal-check-circle {
  color: var(--green); width: 68px; height: 68px;
  background: #F0FDF4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.modal-thanks-h { font-family: var(--font-head); font-size: 22px; font-weight: 400; color: var(--ink); max-width: 360px; line-height: 1.3; }
.modal-thanks-p { font-size: 14px; color: var(--muted); max-width: 380px; line-height: 1.7; }
.modal-thanks-summary {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 14px 18px;
  width: 100%; max-width: 380px; text-align: left;
}
.mts-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.mts-row:last-child { border-bottom: none; }
.mts-row span:first-child { color: var(--muted); }
.mts-row span:last-child { font-weight: 500; color: var(--ink2); }

body.modal-is-open { overflow: hidden; }
button.nav-btn-solid { font-family: var(--font-body); cursor: pointer; line-height: 1; }

@media (max-width: 560px) {
  .mf-row { grid-template-columns: 1fr; }
  .modal-hd { padding: 20px 20px 16px; }
  .modal-form { padding: 18px 20px 22px; }
  .modal-thanks { padding: 36px 20px 32px; }
}
