:root {
  --bg: #06060a;
  --bg2: #0c0c12;
  --surface: #12121a;
  --surface2: #181822;
  --border: #252532;
  --border-bright: #35354a;
  --text: #e4e4ec;
  --text-soft: #b4b4c4;
  --muted: #9a9aac;
  --accent: #3dd68c;
  --accent2: #22c55e;
  --accent-dim: rgba(61, 214, 140, 0.14);
  --accent-glow: rgba(61, 214, 140, 0.35);
  --amber: #fbbf24;
  --amber2: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --domain: var(--accent);
  --health: #5eead4;
  --logistics: #fb923c;
  --ground: #67e8f9;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }
.container { width: min(1140px, calc(100% - 2.5rem)); margin: 0 auto; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(6, 6, 10, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}
nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 700; font-size: 1.15rem; color: #fff; letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 0 24px var(--accent-glow);
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  color: var(--text-soft); font-size: 0.95rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-cta {
  margin-left: 0.5rem !important;
  background: var(--accent) !important; color: #04120a !important;
  font-weight: 600 !important; padding: 0.55rem 1.15rem !important;
}
.nav-cta:hover { filter: brightness(1.08); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--border); align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: #fff; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.75rem; border-radius: 12px;
  font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-ghost {
  border: 1px solid var(--border-bright); color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--accent); color: #fff; background: var(--accent-dim); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #04120a; box-shadow: 0 8px 28px rgba(61,214,140,0.32);
}

section { position: relative; padding: 6rem 0; }
.alt { background: var(--bg2); }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem;
}
.section-label::before {
  content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px;
}
.section-label.amber { color: var(--amber); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 400; color: #fff; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-title em.amber { color: var(--amber); }
.section-lead {
  font-size: 1.15rem; color: var(--text-soft); max-width: 580px; line-height: 1.7;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-label::before { display: none; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61,214,140,0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(61,214,140,0.08), transparent 50%);
}
.hero-bg video,
.hero-bg img.hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42;
}
.hero-bg video { mix-blend-mode: screen; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,10,0.5) 0%, rgba(6,6,10,0.72) 50%, var(--bg) 100%);
}
.hero .container { position: relative; z-index: 2; text-align: center; }
.badge-row {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  margin-bottom: 1.75rem;
}
.badge {
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 650; padding: 0.45rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
  background: rgba(8,8,14,0.55); backdrop-filter: blur(8px);
}
.badge.glow {
  border-color: rgba(61,214,140,0.4);
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 20px rgba(61,214,140,0.12);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.2vw, 4.5rem);
  font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.12; color: #fff; margin-bottom: 1.35rem;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent) 8%, #bbf7d0 42%, #fde68a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-soft); max-width: 640px;
  margin: 0 auto 2.25rem; line-height: 1.7;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; max-width: 720px; margin: 0 auto;
}
.stat-card {
  padding: 1.15rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(12,12,18,0.55);
  backdrop-filter: blur(12px);
}
.stat-card strong {
  display: block; font-size: 1.45rem; color: #fff; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.15rem;
}
.stat-card span { font-size: 0.88rem; color: var(--muted); }
.scroll-hint {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-hint i {
  width: 22px; height: 34px; border: 1.5px solid var(--border-bright); border-radius: 12px;
  position: relative;
}
.scroll-hint i::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 2px; background: var(--accent);
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,6px);} }
@keyframes scroll-dot { 0%{ opacity:1; top:6px;} 100%{ opacity:0; top:18px;} }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pain-card, .loop-card, .gtm-card, .sec-card, .content-card, .svc-card, .scope-card {
  padding: 1.5rem 1.35rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
}
.pain-card .num, .loop-card .step, .svc-card .step {
  font-family: var(--serif); font-size: 1.75rem; color: var(--accent);
  opacity: 0.85; margin-bottom: 0.5rem; line-height: 1;
}
.pain-card h3, .loop-card h3, .gtm-card h3, .sec-card h3, .content-card h3, .svc-card h3, .scope-card h3 {
  color: #fff; font-size: 1.1rem; margin-bottom: 0.45rem; font-weight: 650;
}
.pain-card p, .loop-card p, .gtm-card p, .sec-card p, .svc-card p, .scope-card p {
  color: var(--text-soft); font-size: 0.98rem; line-height: 1.65;
}
.content-card p, .content-card li, .scope-card p, .scope-card li { color: var(--text-soft); font-size: 0.98rem; line-height: 1.65; }
.content-card ul, .svc-card ul { margin-left: 1.1rem; margin-top: 0.75rem; }
.content-card li, .svc-card li { margin-bottom: 0.35rem; color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }
.svc-card {
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
}
.svc-card.featured {
  border-color: rgba(61,214,140,0.4);
  background: linear-gradient(180deg, rgba(61,214,140,0.08), var(--surface) 42%);
}
.svc-card .kicker, .scope-card .kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}

.split {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start;
}
.feature-list { list-style: none; margin-bottom: 1.75rem; }
.feature-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.55rem 0; color: var(--text-soft); font-size: 1.02rem;
}
.feature-list li::before {
  content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px;
  border-radius: 50%;
  background-color: var(--accent-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233dd68c'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
  border: 1px solid rgba(61,214,140,0.25);
}
.note {
  font-size: 0.88rem; color: var(--muted); margin-top: 1.25rem;
  padding: 0.65rem 0.85rem; border-radius: 8px;
  border: 1px dashed var(--border); background: rgba(255,255,255,0.02);
  text-align: center;
}
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  font-size: 0.9rem; margin-top: 1.75rem;
}
.compare-table th, .compare-table td {
  padding: 0.75rem 0.9rem; text-align: left; border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.compare-table th {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); background: var(--surface2); font-weight: 650;
}
.compare-table tr:last-child td,
.compare-table tr:last-child th { border-bottom: none; }
.compare-table thead th:last-child,
.compare-table td:last-child { color: var(--accent); }
.compare-table td:first-child,
.compare-table tbody th {
  color: #fff; font-weight: 600; white-space: nowrap;
  font-size: inherit; text-transform: none; letter-spacing: normal;
  background: transparent;
}

.gtm-card { padding: 1.35rem 1.15rem; }
.gtm-card .phase {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.gtm-card h3 { font-size: 1.05rem; }
.gtm-card p { font-size: 0.9rem; }
.sec-card { padding: 1.35rem 1.15rem; }
.sec-card h3 { font-size: 1.02rem; }
.sec-card p { font-size: 0.9rem; }

.work-panel {
  border-radius: 20px; padding: 2.5rem 2.25rem;
  border: 1px solid rgba(245,158,11,0.28);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(245,158,11,0.1), transparent 55%),
    var(--surface);
}
.work-panel h3 {
  color: #fff; font-size: 1.35rem; font-weight: 650; margin-bottom: 0.65rem;
}
.work-panel p { color: var(--text-soft); font-size: 1.02rem; line-height: 1.7; }
.work-panel .tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.75rem;
}
.work-panel .grid-3 { margin-top: 1.5rem; }
.work-panel .btn { margin-top: 1.35rem; }
.work-panel .note { margin-top: 1.35rem; }

.my-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.my-visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3;
}
.my-visual img { width: 100%; height: 100%; object-fit: cover; }
.my-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,214,140,0.15), transparent 50%, rgba(245,158,11,0.12));
}
.my-float {
  position: absolute; z-index: 2; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.my-float span {
  background: rgba(6,6,10,0.8); backdrop-filter: blur(10px);
  border: 1px solid rgba(61,214,140,0.3); color: #fff;
  font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.75rem; border-radius: 999px;
}
.my-list { list-style: none; margin-top: 1.5rem; }
.my-list li {
  display: flex; gap: 0.85rem; padding: 0.85rem 0;
  border-bottom: 1px solid var(--border); color: var(--text-soft); font-size: 1.05rem;
}
.my-list li:last-child { border-bottom: none; }
.my-list strong { color: #fff; display: block; font-size: 1.02rem; margin-bottom: 0.15rem; }
.my-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--accent-dim); border: 1px solid rgba(61,214,140,0.25);
  display: grid; place-items: center; color: var(--accent); font-size: 1.1rem;
}

.contact-box {
  position: relative; overflow: hidden;
  border-radius: 24px; padding: 3.5rem 2.5rem; text-align: center;
  border: 1px solid rgba(61,214,140,0.28);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(61,214,140,0.12), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}
.contact-box h2 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff; margin-bottom: 0.85rem; font-weight: 400;
}
.contact-box p {
  color: var(--text-soft); font-size: 1.15rem; max-width: 520px;
  margin: 0 auto 1.75rem; line-height: 1.7;
}
.contact-email {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 1.35rem; font-weight: 650; color: #fff;
  padding: 0.85rem 1.5rem; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid rgba(61,214,140,0.4);
  margin-bottom: 1rem; transition: background 0.2s, transform 0.2s;
}
.contact-email:hover { background: rgba(61,214,140,0.22); transform: translateY(-2px); color: #fff; }
.contact-sub { font-size: 0.95rem; color: var(--muted); }

footer { border-top: 1px solid var(--border); padding: 2.5rem 0 2rem; }
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.25rem;
}
.footer-brand { color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-brand span { color: var(--accent); }
.footer-meta { color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-soft); font-size: 0.92rem; font-weight: 500; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .grid-2, .grid-3, .split, .my-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr; max-width: 320px; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: rgba(6,6,10,0.96); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.85rem 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.35rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .contact-box { padding: 2.25rem 1.35rem; }
  .contact-email { font-size: 1.05rem; }
  section { padding: 4rem 0; }
  .work-panel { padding: 1.75rem 1.25rem; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

body.page-health { --domain: var(--health); }
body.page-logistics { --domain: var(--logistics); }
body.page-ground { --domain: var(--ground); }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 400;
  padding: 0.6rem 1rem; background: var(--accent); color: #04120a;
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 2px solid #fff; outline-offset: 3px;
}

.industry-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.75rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  color: inherit; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.industry-card:visited { color: inherit; }
.industry-card:hover, .industry-card:focus-visible {
  border-color: var(--accent); background: var(--accent-dim);
  transform: translateY(-2px);
}
.industry-card h3 { color: #fff; font-size: 1.1rem; font-weight: 650; }
.industry-card p { color: var(--text-soft); font-size: 0.98rem; }
.industry-card .who { font-size: 0.8rem; color: var(--muted); margin-top: auto; padding-top: 0.5rem; }
.industry-card svg { width: 40px; height: 40px; color: var(--accent); flex-shrink: 0; }

.hero-compact { min-height: 0; padding: 8rem 0 4rem; text-align: left; }
.hero-compact .container { text-align: left; }
.hero-compact h1, .hero-compact .hero-lead { margin-left: 0; margin-right: 0; max-width: 40rem; }
.hero-compact .hero-actions { justify-content: flex-start; }
.hero-compact .section-label { color: var(--domain); }
.hero-compact .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42; display: block;
}
.hero-compact .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(6,6,10,0.5) 0%, rgba(6,6,10,0.72) 50%, var(--bg) 100%),
    color-mix(in srgb, var(--domain) 8%, transparent);
}

.nav-dd { position: relative; list-style: none; }
.nav-dd-btn {
  color: var(--text-soft); font-size: 0.95rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 8px;
}
.nav-dd-btn:hover, .nav-dd-btn[aria-expanded="true"] {
  color: #fff; background: rgba(255,255,255,0.04);
}
.nav-dd-list {
  display: none; position: absolute; top: calc(100% + 0.35rem); left: 0;
  min-width: 14rem; padding: 0.4rem;
  background: rgba(6,6,10,0.96); border: 1px solid var(--border);
  border-radius: var(--radius-sm); list-style: none; z-index: 210;
}
.nav-dd-btn[aria-expanded="true"] + .nav-dd-list { display: block; }
.nav-dd-list a { display: block; padding: 0.55rem 0.85rem; border-radius: 8px; }
.nav-dd-list a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.04); }

.crosslink-panel {
  padding: 1.5rem 1.35rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  margin-top: 1.25rem;
}
.crosslink-panel h3 { color: #fff; font-size: 1.1rem; font-weight: 650; margin-bottom: 0.45rem; }
.crosslink-panel p { color: var(--text-soft); font-size: 0.98rem; line-height: 1.65; }
.page-strip {
  font-size: 0.95rem; color: var(--text-soft);
  padding: 1.25rem 0; border-top: 1px solid var(--border);
}

@media (max-width: 720px) {
  .nav-dd-btn { display: none; }
  .nav-dd-list,
  .nav-dd-btn[aria-expanded="true"] + .nav-dd-list {
    display: flex; flex-direction: column; position: static;
    min-width: 0; padding: 0; border: 0; background: transparent;
  }
  .nav-dd-list a { width: 100%; padding: 0.85rem 1rem; }
  .hero-compact { padding: 6.5rem 0 3rem; }
}
