:root {
  --bg: #0f172a;
  --bg-2: #111827;
  --bg-3: #0b1220;
  --card: #1e293b;
  --card-deep: rgba(15, 23, 42, 0.84);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(148, 163, 184, 0.32);
  --text: #f8fafc;
  --text-soft: #dbe4ef;
  --muted: #94a3b8;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --sky: #38bdf8;
  --green: #34d399;
  --amber: #fbbf24;
  --red: #fb7185;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.text-link { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
.text-link:hover { color: #dbeafe; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.88);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.narrow { width: min(860px, 100%); }
.section { padding: 88px 0; }
.section.compact { padding: 64px 0; }
.section.border {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.62);
}
.section.tint { background: rgba(37, 99, 235, 0.055); }

.eyebrow,
.mini-label {
  display: inline-block;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
}
.eyebrow { font-size: 12px; }
.mini-label { margin-bottom: 10px; font-size: 11px; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; }
h1 { font-size: clamp(40px, 6vw, 62px); font-weight: 720; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 720; letter-spacing: -0.02em; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

.lead {
  margin-top: 22px;
  max-width: 800px;
  font-size: 22px;
  color: var(--text-soft);
  line-height: 1.5;
}
.body-lg,
.section-copy,
.service-copy {
  margin-top: 16px;
  color: #cbd5e1;
  font-size: 18px;
}
.body-lg { color: var(--muted); }
.muted { color: var(--muted) !important; }
.small { font-size: 14px; }

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
}
.brand-sub { margin-top: 4px; font-size: 12px; color: var(--muted); }
.nav-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 14px; color: #cbd5e1; }
.nav-links a:hover { color: var(--text); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}
.hero::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -80px;
  background: rgba(37, 99, 235, 0.24);
}
.hero::after {
  width: 320px;
  height: 320px;
  right: 0;
  top: 0;
  background: rgba(56, 189, 248, 0.12);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
  padding: 104px 0 110px;
}
.hero-simple {
  position: relative;
  padding: 100px 0 104px;
  max-width: 940px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: #dbeafe;
  font-size: 14px;
}
.social-proof,
.callout-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.06);
  color: #dbeafe;
  font-size: 14px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 680;
  transition: 180ms ease;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-secondary { border-color: #334155; color: var(--text); background: transparent; }
.btn-secondary:hover { border-color: #475569; background: rgba(15, 23, 42, 0.8); }
.btn-quiet { border-color: rgba(56, 189, 248, 0.22); background: rgba(56, 189, 248, 0.07); color: #dbeafe; }
.btn-quiet:hover { background: rgba(56, 189, 248, 0.12); }

.grid-2,
.grid-3,
.grid-4,
.proof-strip,
.path-grid,
.opinion-grid,
.next-steps,
.metric-strip {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.proof-strip { grid-template-columns: repeat(4, 1fr); margin-top: 34px; }
.path-grid { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.opinion-grid { grid-template-columns: repeat(4, 1fr); margin-top: 30px; }
.next-steps { grid-template-columns: repeat(4, 1fr); margin-top: 24px; }
.metric-strip { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }

.card {
  border: 1px solid var(--line);
  background: rgba(30, 41, 59, 0.84);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card.subtle { background: rgba(15, 23, 42, 0.82); box-shadow: none; }
.card.flat { box-shadow: none; }
.card p:last-child { margin-bottom: 0; }
.feature-panel {
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(37, 99, 235, 0.08);
  border-radius: 22px;
  padding: 24px;
}
.split {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 40px;
  align-items: start;
}

.enterprise-callout {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.04));
}
.enterprise-callout-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
}
.enterprise-callout h2 { font-size: clamp(25px, 3vw, 34px); }

.list-clean {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #d5deea;
}
.list-clean li { position: relative; padding-left: 18px; }
.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sky);
}
.check-list li::before {
  width: auto;
  height: auto;
  top: 0;
  background: transparent;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}
.exclusion-list li::before {
  width: auto;
  height: auto;
  top: 0;
  background: transparent;
  color: var(--muted);
  content: "–";
  font-weight: 800;
}

.deliverable-preview {
  position: relative;
  border: 2px solid #cbd5e1;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(226, 232, 240, 0.97) 100%);
  color: #0f172a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.deliverable-preview::after {
  content: "COGNITIVE AV – DOCUMENTATION EXCERPT";
  position: absolute;
  bottom: 6px;
  right: 12px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #64748b;
}
.deliverable-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #e2e8f0;
  border-bottom: 1px solid #cbd5e1;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #334155;
}
.deliverable-head::before { content: "REV A"; margin-right: 10px; font-weight: 700; }
.deliverable-body {
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: #334155;
  background: #f8fafc;
}
.row-line {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}
.row-line:nth-child(even) { background: rgba(0, 0, 0, 0.03); }
.row-line:last-child { border-bottom: 0; }
.blur-sm { filter: blur(0.2px); opacity: 0.92; }


.deliverables-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.deliverable-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.deliverable-item > .mini-label {
  display: flex;
  align-items: flex-end;
  min-height: 2.8em;
}
.deliverable-item .deliverable-preview {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.deliverable-item .deliverable-body { flex: 1; }


.workflow-grid { display: grid; gap: 18px; margin-top: 28px; }
.workflow-step { border-left: 2px solid rgba(56, 189, 248, 0.35); padding-left: 18px; }
.method-chain {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 30px;
  align-items: stretch;
}
.method-node {
  min-height: 108px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 720;
  color: #dbeafe;
}

.price-card {
  border-color: rgba(56, 189, 248, 0.32);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.13), rgba(15, 23, 42, 0.92));
}
.price {
  margin-top: 8px;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 790;
  letter-spacing: -0.04em;
}
.price-sub { color: var(--muted); margin-top: 4px; }
.metric {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  padding: 18px;
}
.metric strong { display: block; color: var(--sky); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }

.opinion-card { box-shadow: none; min-height: 230px; }
.opinion-card .status { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; }
.opinion-card.proceed { border-top: 3px solid var(--green); }
.opinion-card.conditions { border-top: 3px solid var(--sky); }
.opinion-card.rework { border-top: 3px solid var(--amber); }
.opinion-card.insufficient { border-top: 3px solid var(--red); }

.role-card { box-shadow: none; }
.role-card h3 { font-size: 22px; }
.boundary-note {
  margin-top: 24px;
  border-left: 3px solid var(--sky);
  padding: 14px 18px;
  background: rgba(56, 189, 248, 0.05);
  color: #dbeafe;
}

.cta-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend { font-weight: 700; color: var(--text-soft); }
label { font-size: 14px; font-weight: 650; color: var(--text-soft); }
input,
select,
textarea {
  width: 100%;
  border: 1px solid #334155;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.86);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.14);
}
textarea { min-height: 130px; resize: vertical; }
.radio-row,
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.radio-pill,
.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #334155;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--text-soft);
  font-size: 14px;
  cursor: pointer;
}
.check-pill { border-radius: 12px; }
.radio-pill input,
.check-pill input { width: auto; margin: 0; }
.help-text { color: var(--muted); font-size: 13px; margin-top: 6px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.next-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.68);
}
.next-step strong {
  display: block;
  color: var(--sky);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.download-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}
.download-card .btn { margin-top: 20px; align-self: flex-start; }

footer { border-top: 1px solid var(--line); padding: 34px 0 40px; }
.footer-inner { text-align: center; color: var(--muted); font-size: 14px; }
.footer-brand { font-weight: 700; font-size: 16px; color: var(--text); }
.footer-contact { margin-top: 10px; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.footer-tagline { margin-top: 10px; }
.footer-parent { margin-top: 14px; }
.footer-copy { margin-top: 8px; font-size: 12px; color: #64748b; }

@media (max-width: 1100px) {
  .method-chain { grid-template-columns: repeat(3, 1fr); }
  .opinion-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .proof-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .path-grid,
  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { align-items: start; }
  .enterprise-callout-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 68px 0; }
  .section.compact { padding: 48px 0; }
  .hero-grid,
  .split,
  .proof-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .path-grid,
  .form-grid,
  .next-steps,
  .opinion-grid,
  .metric-strip,
  .method-chain,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { padding: 78px 0 84px; }
  .hero-simple { padding: 78px 0 84px; }
  .nav-links { display: none; }
  .cta-panel { padding: 28px; }
  .lead { font-size: 19px; }
  .body-lg, .section-copy, .service-copy { font-size: 17px; }
  .row-line { grid-template-columns: 1fr; gap: 4px; }
  .card { padding: 22px; }
  .deliverables-grid { grid-auto-rows: auto; }
  .deliverable-item > .mini-label { min-height: 0; }
  .method-node { min-height: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* Baseline 003 institutional architecture */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.08);
  color: #dbeafe;
  font-weight: 700;
}
.nav-cta:hover { background: rgba(56, 189, 248, 0.14); }

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.route-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.10), rgba(15, 23, 42, 0.90));
  box-shadow: var(--shadow);
}
.route-card h2 { font-size: clamp(27px, 3vw, 36px); }
.route-card .route-audience {
  color: var(--sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.route-card .btn { align-self: flex-start; margin-top: 24px; }

.value-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.04));
}
.value-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 30px 0;
}
.value-item { border-left: 2px solid rgba(56, 189, 248, 0.34); padding-left: 16px; }
.value-item strong { display: block; margin-bottom: 5px; color: var(--text); }
.value-item span { color: var(--muted); font-size: 14px; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
  align-items: stretch;
}
.preview-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(30, 41, 59, 0.76);
  box-shadow: var(--shadow);
}
.preview-card .preview-label {
  display: flex;
  align-items: flex-end;
  min-height: 2.9em;
  margin-bottom: 12px;
  color: var(--sky);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.preview-frame {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 14px;
  background: #f8fafc;
  aspect-ratio: 3 / 2;
}
.preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-card h3 { margin-top: 16px; font-size: 21px; }
.preview-card p { color: var(--muted); }
.preview-card .btn { align-self: flex-start; margin-top: auto; }

.page-intro { max-width: 900px; }
.kicker-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.kicker {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.70);
  color: #cbd5e1;
  font-size: 13px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.offer-card { display: flex; flex-direction: column; min-height: 100%; }
.offer-card .btn { align-self: flex-start; margin-top: auto; }

.process-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.process-point {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.72);
}
.process-point strong { display: block; margin-bottom: 8px; color: var(--sky); }

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.comparison-card { border-top: 3px solid rgba(56, 189, 248, 0.72); }

.notice {
  border-left: 3px solid var(--sky);
  padding: 16px 18px;
  background: rgba(56, 189, 248, 0.06);
  color: #dbeafe;
}
.notice.warning { border-left-color: var(--amber); background: rgba(251, 191, 36, 0.055); }

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.document-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(30, 41, 59, 0.80);
  box-shadow: var(--shadow);
}
.document-card .doc-thumb {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(203, 213, 225, 0.55);
  border-radius: 12px;
  background: #f8fafc;
  aspect-ratio: 16 / 10;
}
.document-card .doc-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.document-card .btn { align-self: flex-start; margin-top: auto; }

.form-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.62);
  color: var(--muted);
  font-size: 14px;
}
.form-note strong { color: var(--text-soft); }

.breadcrumbs { margin-top: 18px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: #cbd5e1; text-decoration: underline; text-underline-offset: 3px; }

.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.footer-links a { color: #cbd5e1; }
.footer-links a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.inline-disclaimer {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.62);
  color: var(--muted);
  font-size: 14px;
}

.received-card { max-width: 780px; margin: 0 auto; }

@media (max-width: 1024px) {
  .value-band-inner,
  .process-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .route-grid,
  .preview-grid,
  .offer-grid,
  .comparison-grid,
  .document-grid,
  .value-band-inner,
  .process-points { grid-template-columns: 1fr; }
  .route-card { padding: 24px; }
  .nav-links { display: none; }
  .nav-cta { min-height: 38px; padding: 0 12px; font-size: 14px; }
  .preview-card .preview-label { min-height: 0; }
}
