:root {
  --navy:        #003366;
  --navy-deep:   #00264d;
  --navy-darker: #001a36;
  --navy-soft:   #1a4779;
  --navy-tint:   #e8eef5;
  --orange:      #ff6600;
  --orange-deep: #e65a00;
  --orange-soft: #fff1e6;
  --white:       #ffffff;
  --paper:       #f7f8fb;
  --line:        #e5e9ef;
  --line-strong: #cdd5e0;
  --ink:         #0c1a2e;
  --ink-mute:    #4a5670;
  --ink-soft:    #6b7689;
  --check:       #10b981;
  --cross:       #ef4444;
  --neutral:     #6b7689;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Nunito', 'Inter', system-ui, sans-serif;

  --container: 1240px;
  --section-pad: 112px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

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

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #c5d3e6;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.topbar a { color: #c5d3e6; text-decoration: none; transition: color 0.15s; }
.topbar a:hover { color: #fff; }
.topbar .pipe { opacity: 0.4; margin: 0 14px; }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---------- Nav ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.logo-img { display: block; height: 52px; width: auto; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px; font-weight: 500;
}
.nav-links a {
  color: var(--ink); text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav-links a:hover { border-bottom-color: var(--orange); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white) !important;
  padding: 11px 20px; border-radius: 6px; border: none;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background 0.15s, transform 0.15s; cursor: pointer;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-cta-secondary {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--line-strong) !important;
  font-weight: 600;
}
.nav-cta-secondary:hover {
  border-color: var(--navy) !important;
  background: var(--white) !important;
  transform: translateY(-1px);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 6px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.15s, transform 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover { border-color: var(--navy); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--white); border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.btn svg { width: 14px; height: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(0,51,102,0.06), transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(255,102,0,0.04), transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  padding-top: 80px; padding-bottom: 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.hero-eyebrow .pipe { opacity: 0.35; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 500; line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 24px; color: var(--ink);
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--navy); }
.hero h1 .accent { color: var(--orange); font-style: italic; }

.hero-sub {
  font-size: 19px; line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 40px; max-width: 560px;
}

.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 600px;
}
.path-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 24px;
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  text-decoration: none; color: var(--ink);
  position: relative;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.path-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -20px rgba(0,51,102,0.25);
}
.path-card .path-tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange);
}
.path-card .path-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink); line-height: 1.2;
}
.path-card .path-sub {
  font-size: 13.5px; color: var(--ink-soft);
  line-height: 1.45; margin-top: 4px;
}
.path-card .path-arrow {
  position: absolute; top: 20px; right: 22px;
  color: var(--ink-soft); transition: color 0.15s, transform 0.15s;
}
.path-card:hover .path-arrow { color: var(--orange); transform: translateX(3px); }
.path-card.is-rx {
  background: linear-gradient(180deg, var(--white) 0%, rgba(0,51,102,0.025) 100%);
}

.hero-meta {
  display: flex; gap: 28px; padding-top: 24px;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-mute);
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--navy); flex: 0 0 16px; }

.hero-image {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--navy-deep);
  box-shadow: 0 32px 80px -32px rgba(0,51,102,0.4);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-tag {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 16px 20px; border-radius: 6px;
  border-top: 3px solid var(--orange);
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  align-items: center;
}
.hero-tag-vol {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; font-weight: 500; color: var(--navy); line-height: 1;
}
.hero-tag-vol span {
  display: block; font-size: 11px; font-style: normal; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px; font-family: var(--font-sans);
}
.hero-tag-desc {
  font-size: 12.5px; line-height: 1.45;
  color: var(--ink-mute);
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.hero-tag-desc strong { color: var(--navy); font-weight: 600; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { aspect-ratio: 4/3.5; max-width: 540px; margin-inline: auto; }
  .hero-paths { max-width: none; }
}
@media (max-width: 600px) {
  .hero-paths { grid-template-columns: 1fr; }
  .hero .wrap { padding-top: 56px; padding-bottom: 64px; }
}

/* ---------- Section base ---------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section.paper { background: var(--paper); }
.section.dark {
  background: var(--navy);
  color: var(--white);
}
.section.dark .section-eyebrow { color: var(--orange); }
.section.dark .section-title { color: var(--white); }
.section.dark .section-lede { color: rgba(255,255,255,0.78); }

.section-eyebrow {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 20px;
}
.section-eyebrow .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--orange);
  font-weight: 400; letter-spacing: 0;
}
.section.dark .section-eyebrow .num { color: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.018em;
  margin: 0 0 20px; color: var(--ink);
  max-width: 900px; text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--navy); }
.section.dark .section-title em { color: var(--orange); }
.section-lede {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 56px; max-width: 720px;
}

@media (max-width: 700px) {
  :root { --section-pad: 72px; }
}

/* ---------- Section: Mechanism (Science) ---------- */
.mechanism-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px; align-items: start;
}
.mechanism-image {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--navy-tint);
  box-shadow: 0 24px 60px -28px rgba(0,51,102,0.3);
}
.mechanism-image img { width: 100%; height: 100%; object-fit: cover; }

.mechanism-pull {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.45; font-weight: 400;
  font-style: italic; color: var(--ink);
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--orange);
  margin: 0 0 32px;
}
.mechanism-pull strong { font-style: normal; font-weight: 600; color: var(--navy); }

.formula-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  margin-bottom: 32px;
}
.formula-cell {
  background: var(--white); padding: 22px 20px;
  text-align: center;
}
.formula-cell-symbol {
  font-family: var(--font-display); font-style: italic;
  font-size: 32px; font-weight: 500; color: var(--navy);
  line-height: 1; margin-bottom: 8px;
}
.formula-cell-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}

.body-list { margin: 0; padding: 0; list-style: none; }
.body-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  align-items: baseline;
}
.body-list li:last-child { border-bottom: 1px solid var(--line); }
.body-list .li-marker {
  font-family: var(--font-display); font-style: italic;
  color: var(--orange); font-size: 14px;
  min-width: 28px;
}
.body-list .li-body { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.body-list .li-body strong { color: var(--navy); font-weight: 600; }

@media (max-width: 900px) {
  .mechanism-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Section: Key benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  border-color: var(--navy-soft);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -28px rgba(0,51,102,0.2);
}
.benefit-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange);
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-roman {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.benefit-h {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.benefit-body {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-mute); margin: 0;
}
.benefit-stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  font-size: 12px; color: var(--navy);
  font-weight: 600; letter-spacing: 0.04em;
}
.benefit-stat span { color: var(--orange); }

@media (max-width: 1080px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- Section: Track record (timeline) ---------- */
.timeline-intro {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.timeline-stat {
  text-align: right;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.timeline-stat-num {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500; color: var(--orange);
  line-height: 0.95;
}
.timeline-stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 6px;
}

.timeline {
  position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  left: 0; right: 0; top: 36px;
  height: 1px; background: rgba(255,255,255,0.18);
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.t-item {
  position: relative;
  padding-top: 64px;
}
.t-item::before {
  content: ''; position: absolute;
  top: 30px; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid rgba(255,255,255,0.4);
}
.t-item.t-now::before {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,102,0,0.18);
}
.t-year {
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; font-weight: 500;
  color: var(--orange); margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.t-cat {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.t-h {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  line-height: 1.2; margin-bottom: 12px;
  color: var(--white);
}
.t-body {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.t-item.t-now .t-h { color: var(--orange); }

@media (max-width: 1100px) {
  .timeline-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline::before { display: none; }
  .t-item { padding-top: 0; }
  .t-item::before { display: none; }
}
@media (max-width: 700px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-intro { grid-template-columns: 1fr; }
  .timeline-stat { text-align: left; }
}

/* ---------- Section: Patented tech (LETUS) ---------- */
.tech-section {
  background: var(--white);
  position: relative; overflow: hidden;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px; align-items: center;
}
.tech-spec {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  margin-bottom: 32px;
}
.spec-cell {
  background: var(--white); padding: 26px;
}
.spec-cell-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 12px;
}
.spec-cell-num {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--navy); line-height: 1;
}
.spec-cell-num em { font-style: italic; color: var(--orange); }
.spec-cell-unit { font-size: 22px; color: var(--ink-mute); font-weight: 400; }
.spec-cell-body {
  margin-top: 10px;
  font-size: 13.5px; line-height: 1.5; color: var(--ink-mute);
}

.tech-points { list-style: none; margin: 0; padding: 0; }
.tech-points li {
  display: grid; grid-template-columns: 32px 1fr; gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.tech-points li:last-child { border-bottom: 1px solid var(--line); }
.tech-points .marker {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--orange); color: white;
}
.tech-points .marker svg { width: 14px; height: 14px; }
.tech-points-h {
  font-weight: 600; color: var(--ink); font-size: 15px;
  margin-bottom: 2px;
}
.tech-points-b {
  font-size: 14px; color: var(--ink-mute); line-height: 1.5;
}

.tech-callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.tech-callout::before {
  content: ''; position: absolute;
  top: -40%; right: -20%;
  width: 70%; height: 140%;
  background: radial-gradient(circle, rgba(255,102,0,0.18), transparent 70%);
  pointer-events: none;
}
.tech-callout-eyebrow {
  position: relative;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.tech-callout-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--orange);
}
.tech-callout-h {
  position: relative;
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.015em; margin: 0 0 16px;
  color: white;
}
.tech-callout-h em { font-style: italic; color: var(--orange); }
.tech-callout-body {
  position: relative;
  font-size: 15.5px; line-height: 1.6;
  color: rgba(255,255,255,0.8); margin: 0 0 32px;
}
.tech-callout-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.tech-callout-stat-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  color: var(--orange); line-height: 1;
  margin-bottom: 6px;
}
.tech-callout-stat-label {
  font-size: 12.5px; line-height: 1.45;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 1000px) {
  .tech-grid { grid-template-columns: 1fr; gap: 48px; }
  .tech-callout { padding: 36px; }
}
@media (max-width: 560px) {
  .tech-spec { grid-template-columns: 1fr; }
  .tech-callout-grid { grid-template-columns: 1fr; }
}

/* ---------- Section: Two paths split ---------- */
.paths-section {
  background: var(--paper);
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.path-deep {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.path-deep:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -28px rgba(0,51,102,0.18);
}
.path-deep-media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--navy-tint);
}
.path-deep-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.path-deep-badge {
  position: absolute; top: 18px; left: 18px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--navy); color: var(--white);
}
.path-deep-badge.patient {
  background: var(--orange);
}
.path-deep-content {
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 18px; flex: 1;
}
.path-deep-h {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink); margin: 0;
}
.path-deep-h em { font-style: italic; color: var(--navy); }
.path-deep-body {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-mute); margin: 0;
}
.path-deep-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.path-deep-list li {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px;
  align-items: start; font-size: 14.5px; line-height: 1.5;
  color: var(--ink);
}
.path-deep-list li svg {
  width: 16px; height: 16px; color: var(--orange);
  margin-top: 4px;
}
.path-deep-list li strong { color: var(--navy); font-weight: 600; }
.path-deep-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.path-deep-footer .meta {
  font-family: var(--font-display); font-style: italic;
  color: var(--ink-soft); font-size: 14px;
}
.path-deep-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  color: var(--orange); text-decoration: none;
}
.path-deep-link:hover { color: var(--orange-deep); }
.path-deep-link svg { width: 14px; height: 14px; transition: transform 0.15s; }
.path-deep-link:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .paths-grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,102,0,0.12), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,102,0,0.06), transparent 50%);
  pointer-events: none;
}
.final-cta .wrap {
  position: relative;
  text-align: center;
}
.final-cta-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.final-cta-eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.final-cta-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 auto 24px; max-width: 800px;
  color: var(--white); text-wrap: balance;
}
.final-cta-h em { font-style: italic; color: var(--orange); }
.final-cta-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 40px; max-width: 580px;
}
.final-cta-row {
  display: inline-flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-img--inverse {
  filter: brightness(0) invert(1);
  height: 44px; opacity: 0.95;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-meta {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}
.footer-meta a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; }
.footer-meta a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Density variants (tweak) ---------- */
body.density-compact { --section-pad: 72px; }
body.density-generous { --section-pad: 140px; }

/* ---------- Accent tweak ---------- */
body.accent-coral {
  --orange: #f04e3a;
  --orange-deep: #d23721;
  --orange-soft: #fde9e6;
}
body.accent-teal {
  --orange: #0d9488;
  --orange-deep: #0a7269;
  --orange-soft: #e1f4f2;
}

/* ---------- Hero layout variants (tweak) ---------- */
body.hero-image-left .hero-grid {
  grid-template-columns: 1fr 1.08fr;
}
body.hero-image-left .hero-content { order: 2; }
body.hero-image-left .hero-image { order: 1; }

@media (max-width: 980px) {
  body.hero-image-left .hero-image { order: 2; }
  body.hero-image-left .hero-content { order: 1; }
}
