/* =========================================================
   SynthesisLogic v5 — based on v4 · unified messaging
   ========================================================= */

/* Screen-reader / SEO-only (no visual layout change) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --ink: #0b0f14;
  --ink-2: #151b24;
  --ink-3: #1c2430;
  --slate: #2a3444;
  --mute: #6b7789;
  --mute-2: #8b96a8;
  --line: rgba(11, 15, 20, 0.08);
  --line-2: rgba(11, 15, 20, 0.14);
  --paper: #f4f2ec;
  --paper-2: #ebe8e0;
  --white: #fffcf7;
  --gold: #b8956c;
  --gold-2: #c9a87a;
  --gold-deep: #9a7a52;
  --gold-soft: rgba(184, 149, 108, 0.14);
  --ok: #2d6a4f;
  --shadow: 0 28px 64px rgba(11, 15, 20, 0.12);
  --shadow-sm: 0 10px 28px rgba(11, 15, 20, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --shell: 1140px;
  --header: 74px;
  --font: "Vazirmatn", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.shell {
  width: min(var(--shell), calc(100% - 3rem));
  margin-inline: auto;
}

.mono {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 85% -5%, rgba(184, 149, 108, 0.12), transparent 55%),
    radial-gradient(700px 420px at 0% 20%, rgba(28, 36, 48, 0.05), transparent 50%);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(244, 242, 236, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background: rgba(244, 242, 236, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(11, 15, 20, 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(184, 149, 108, 0.22);
}

.brand-foot .brand-logo {
  width: 32px;
  height: 32px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background:
    linear-gradient(145deg, var(--gold-2) 0%, var(--gold-deep) 55%, var(--ink) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 6px 16px rgba(184, 149, 108, 0.25);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(255, 252, 247, 0.55);
  border-radius: 4px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}

.brand-name {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-name span { color: var(--gold-deep); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--gold-deep); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.link-quiet {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mute);
  direction: ltr;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.88rem; }
.btn-lg { padding: 0.9rem 1.45rem; font-size: 0.98rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 10px 28px rgba(184, 149, 108, 0.28);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 14px 32px rgba(184, 149, 108, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink-2);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(11, 15, 20, 0.03);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1.35rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(11, 15, 20, 0.18);
}

.btn-ink:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.hero {
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1.15rem;
  letter-spacing: 0.01em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.hero h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.15rem;
  max-width: 16ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-deep);
  position: relative;
}

.lede {
  font-size: 1.08rem;
  color: var(--mute);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.lede strong {
  color: var(--ink-2);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-metrics li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-metrics strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-metrics span {
  font-size: 0.82rem;
  color: var(--mute);
  line-height: 1.5;
}

/* Hero panel */
.panel {
  background: var(--ink);
  color: #e8ecf2;
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(184, 149, 108, 0.18), transparent 65%);
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* visual left in RTL */
  gap: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
}

.panel-top .mono {
  color: rgba(232, 236, 242, 0.45);
}

.panel-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-2);
  border: 1px solid rgba(184, 149, 108, 0.3);
}

.panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  position: relative;
  color: #fff;
}

.panel-desc {
  font-size: 0.92rem;
  color: rgba(232, 236, 242, 0.62);
  margin-bottom: 1.35rem;
  position: relative;
  line-height: 1.7;
}

.panel-steps {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.panel-steps li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid transparent;
}

.panel-steps li.is-active {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(184, 149, 108, 0.25);
}

.ps-n {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.panel-steps strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.1rem;
}

.panel-steps p {
  font-size: 0.84rem;
  color: rgba(232, 236, 242, 0.5);
}

.panel-foot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-foot span {
  font-size: 0.78rem;
  color: rgba(232, 236, 242, 0.4);
}

.panel-foot strong {
  font-size: 0.95rem;
  color: var(--gold-2);
  font-weight: 700;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-ink {
  background: var(--ink);
  color: #e8ecf2;
  position: relative;
  overflow: hidden;
}

.section-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(184, 149, 108, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  pointer-events: none;
}

.section-head {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  position: relative;
}

.section-head-light .section-desc { color: rgba(232, 236, 242, 0.58); }
.section-head-light h2 { color: #fff; }

.label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.65rem;
}

.section-ink .label { color: var(--gold); }

.section-head h2,
.outcomes-copy h2,
.contact-copy h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--mute);
  font-size: 1.02rem;
}

/* Method */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.method-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.45rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.method-card-focus {
  background: var(--ink);
  color: #e8ecf2;
  border-color: transparent;
}

.method-card-focus p { color: rgba(232, 236, 242, 0.6); }
.method-card-focus .method-n { color: var(--gold); }
.method-card-focus .part-ico { color: var(--gold); }
.method-card-focus h3 { color: #fff; }

.method-n {
  color: var(--gold-deep);
  font-size: 0.75rem;
}

/* Minimal icons for section parts only */
.part-ico {
  display: inline-flex;
  color: var(--gold-deep);
  margin-bottom: 0.15rem;
  line-height: 0;
}

.part-ico svg { display: block; }

.method-card .part-ico {
  margin-bottom: 0.25rem;
}

.domain-paper .part-ico {
  margin-bottom: 0;
  color: var(--gold-deep);
}

/* Domain cards: text on start (right in RTL), large icon on left */
.domain-grid-paper .domain-paper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.2rem;
}

.domain-grid-paper .domain-txt {
  flex: 1;
  min-width: 0;
  text-align: start;
}

.domain-grid-paper .domain-txt h3 {
  margin-bottom: 0.25rem;
}

.domain-grid-paper .domain-paper .part-ico-lg {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(184, 149, 108, 0.1);
  color: var(--gold-deep);
  margin: 0;
}

.domain-grid-paper .domain-paper .part-ico-lg svg {
  width: 2.35rem;
  height: 2.35rem;
  display: block;
}

.method-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.method-card p {
  color: var(--mute);
  font-size: 0.96rem;
  flex: 1;
}

/* Domains */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  position: relative;
}

.domain {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.domain:hover {
  background: rgba(184, 149, 108, 0.08);
  border-color: rgba(184, 149, 108, 0.28);
  transform: translateY(-2px);
}

.domain h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.domain p {
  font-size: 0.9rem;
  color: rgba(232, 236, 242, 0.5);
}

/* Domains on paper (light) sections */
.domain-grid-paper .domain-paper {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.domain-grid-paper .domain-paper:hover {
  background: var(--white);
  border-color: rgba(184, 149, 108, 0.4);
  box-shadow: var(--shadow);
}

.domain-grid-paper .domain-paper h3 { color: var(--ink); }
.domain-grid-paper .domain-paper p { color: var(--mute); }

/* Method cards inside dark section — reuse domain look */
.method-grid-light {
  position: relative;
}

.section-soft {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}

.domain-ico {
  display: inline-flex;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.domain-ico svg { display: block; }

.domain-note {
  position: relative;
  margin: 1.75rem auto 0;
  max-width: 38rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(232, 236, 242, 0.55);
  line-height: 1.75;
  padding: 1.1rem 1.4rem;
  border: 1px dashed rgba(184, 149, 108, 0.3);
  border-radius: var(--radius-sm);
}

.domain-note strong {
  color: var(--gold-2);
  font-weight: 700;
}

/* Outcomes */
.outcomes-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.outcomes-copy .section-desc {
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.outcomes-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.out-k {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.outcomes-list li > span:last-child {
  font-size: 0.96rem;
  color: var(--mute);
  line-height: 1.65;
}

/* Contact */
.section-contact {
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy .section-desc {
  margin-bottom: 1.75rem;
  max-width: 28rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-lines a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-lines a:hover {
  border-color: rgba(184, 149, 108, 0.4);
  box-shadow: var(--shadow-sm);
}

.contact-lines .mono {
  color: var(--mute-2);
}

.contact-lines strong {
  font-size: 1.02rem;
  color: var(--ink);
}

.form-shell {
  position: relative;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.form-shell.is-done .form {
  display: none;
}

.form-ok-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow);
  min-height: 280px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-shell.is-done .form-ok-panel,
.form-ok-panel:not([hidden]) {
  display: flex;
}

.form-ok-panel[hidden] {
  display: none !important;
}

.form-ok-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  max-width: 22rem;
}

.form-ok-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(45, 106, 79, 0.12);
  color: var(--ok);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-ok-inner h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.form-ok-inner p {
  font-size: 1rem;
  color: var(--mute);
  line-height: 1.7;
}

.form-ok-inner .fine {
  margin-top: 0.5rem;
}

.form-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.form-head p {
  font-size: 0.88rem;
  color: var(--mute);
  margin-top: 0.2rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form label > span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 11px;
  padding: 0.75rem 0.95rem;
  background: #faf9f6;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.form input.invalid,
.form select.invalid {
  border-color: #b42318;
}

.form textarea {
  resize: vertical;
  min-height: 88px;
}

.fields-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.fine {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mute-2);
  margin-top: -0.2rem;
}

.form-err {
  padding: 0.85rem 1rem;
  border-radius: 11px;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 600;
}

/* honeypot — not visible, not in layout */
.form .hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form button:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(232, 236, 242, 0.5);
  padding: 1.75rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-foot .brand-name { color: #fff; }
.brand-foot .brand-name span { color: var(--gold-2); }

.footer p { font-size: 0.9rem; }
.footer .copy {
  font-size: 0.72rem;
  color: rgba(232, 236, 242, 0.35);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .method-grid,
  .domain-grid,
  .outcomes-shell,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero h1 { max-width: none; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .section { padding: 3.25rem 0; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-panel { max-width: 480px; }
}

@media (max-width: 760px) {
  .shell { width: calc(100% - 1.75rem); }

  .nav {
    position: fixed;
    top: var(--header);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 252, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 0.4rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
    z-index: 40;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child { border-bottom: none; }

  .nav-toggle { display: inline-flex; }
  .hide-sm { display: none; }

  .hero-metrics { grid-template-columns: 1fr; gap: 0.85rem; }
  .domain-grid { grid-template-columns: 1fr; }
  .fields-2 { grid-template-columns: 1fr; }
  .outcomes-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero h1 { font-size: 1.65rem; }
}
