/* OffDeck marketing site — shared styles
 * Builds on styles/tokens.css. Covers nav, footer, buttons, sections, components.
 * Every page in this site loads tokens.css + site.css.
 */

/* ───── Reset + base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-primary); color: var(--fg-primary);
  font-family: var(--font-body); font-size: var(--text-md); line-height: var(--lh-md);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss03", "cv11";
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--brand-deep); color: var(--white); }

/* ───── Containers ────────────────────────────────────────────── */
.wrap   { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 880px;  margin: 0 auto; padding: 0 32px; }

/* ───── Type utilities ────────────────────────────────────────── */
.display-1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(48px, 6.4vw, 96px); line-height: 1.0; letter-spacing: -0.035em; color: var(--fg-primary); text-wrap: balance; }
.display-2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5vw, 72px);  line-height: 1.02; letter-spacing: -0.03em;  color: var(--fg-primary); text-wrap: balance; }
.display-3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 3.8vw, 56px); line-height: 1.05; letter-spacing: -0.025em; color: var(--fg-primary); text-wrap: balance; }
.display-4 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.15; letter-spacing: -0.02em;  color: var(--fg-primary); text-wrap: balance; }
.display-5 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.015em; color: var(--fg-primary); }

.lede { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--fg-secondary); text-wrap: pretty; }
.body-lg { font-size: var(--text-lg); line-height: 1.6; color: var(--fg-secondary); }
.body-md { font-size: var(--text-md); line-height: 1.6; color: var(--fg-secondary); }
.body-sm { font-size: var(--text-sm); line-height: 1.5; color: var(--fg-tertiary); }

.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-brand-secondary);
}
.eyebrow-mark { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow-mark::before {
  content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.5;
}

.muted { color: var(--fg-tertiary); }
.balance { text-wrap: balance; }
.pretty  { text-wrap: pretty; }

/* On dark surfaces */
.on-dark { color: var(--white); }
.on-dark .eyebrow, .on-dark.eyebrow { color: var(--brand-green); }
.on-dark .lede, .on-dark .body-lg, .on-dark .body-md { color: rgba(255,255,255,0.72); }
.on-dark .body-sm, .on-dark .muted { color: rgba(255,255,255,0.55); }
.on-dark a { color: var(--white); }

/* ───── Nav (sticky, white, hairline) ─────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.86); backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-primary);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.025em; color: var(--fg-primary);
  text-decoration: none;
  cursor: pointer;
}
.nav-logo:hover { text-decoration: none; opacity: 0.85; }
.nav-logo .wordmark { display: block; height: 28px; width: auto; }
.nav-logo .mark { width: 28px; height: 28px; border-radius: 6px; display: block; }
.footer .nav-logo .wordmark { filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: var(--text-sm); font-weight: 500; color: var(--fg-secondary);
  padding: 6px 2px; position: relative; transition: color 120ms ease;
}
.nav-links a:hover { color: var(--fg-primary); }
.nav-links a[aria-current="page"] { color: var(--fg-primary); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: -4px;
  height: 2px; background: var(--brand-deep); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ───── Mega menus ────────────────────────────────────────────── */
.nav-links { align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 500;
  color: var(--fg-secondary); background: transparent; border: 0;
  padding: 6px 2px; cursor: pointer; line-height: 1;
  transition: color 120ms ease;
}
.nav-trigger svg.caret {
  width: 12px; height: 12px; opacity: 0.7;
  transition: transform 200ms cubic-bezier(0.2,0,0,1);
}
.nav-trigger:hover,
.nav-item.open .nav-trigger { color: var(--fg-primary); }
.nav-item:hover .nav-trigger svg.caret,
.nav-item:focus-within .nav-trigger svg.caret { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0; pointer-events: none;
  background: var(--white);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  box-shadow: var(--shadow-2xl);
  padding: 12px;
  z-index: 70;
  transition: opacity 180ms cubic-bezier(0.2,0,0,1), transform 180ms cubic-bezier(0.2,0,0,1);
}
.mega::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.mega.mega-product { width: 760px; }
.mega.mega-resources { width: 860px; }

.mega-grid {
  display: grid;
  gap: 4px;
}
.mega.mega-product .mega-grid {
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.mega.mega-product .mega-grid > div + div {
  padding-left: 12px;
  border-left: 1px solid var(--border-tertiary);
}
.mega.mega-resources .mega-grid {
  grid-template-columns: 1.05fr 1.05fr 1fr;
  gap: 12px;
}

.mega-col-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-quaternary);
  padding: 12px 12px 8px;
}

.mega-link {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  align-items: flex-start;
  color: var(--fg-secondary); text-decoration: none;
  transition: background-color 120ms ease;
}
.mega-link:hover { background: var(--gray-50); text-decoration: none; }
.mega-link .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-brand-subtle); color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-link .ic svg { width: 18px; height: 18px; }
.mega-link .t {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--fg-primary); line-height: 1.25;
}
.mega-link .d {
  font-size: 12.5px; color: var(--fg-tertiary);
  margin-top: 3px; line-height: 1.4;
}
.mega-link:hover .t { color: var(--brand-deep); }

/* Insights column — article rows */
.mega-article {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--fg-secondary); text-decoration: none;
  transition: background-color 120ms ease;
}
.mega-article:hover { background: var(--gray-50); text-decoration: none; }
.mega-article .meta {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-deep); display: inline-flex; align-items: center; gap: 8px;
}
.mega-article .meta .dot { width: 3px; height: 3px; border-radius: 9999px; background: var(--gray-400); }
.mega-article .meta .when { color: var(--fg-quaternary); font-weight: 500; }
.mega-article .t {
  font-size: 13.5px; font-weight: 600; color: var(--fg-primary);
  line-height: 1.35; text-wrap: pretty;
}
.mega-article:hover .t { color: var(--brand-deep); }

/* Featured / promo card */
.mega-promo {
  background: var(--brand-deep); color: var(--white);
  border-radius: 12px;
  padding: 20px; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.mega-promo::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(280px 200px at 100% 0%, rgba(11,244,119,0.18), transparent 70%);
  pointer-events: none;
}
.mega-promo > * { position: relative; z-index: 1; }
.mega-promo:hover { text-decoration: none; }
.mega-promo .tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 9999px;
  background: rgba(11,244,119,0.16); color: var(--brand-green);
  border: 1px solid rgba(11,244,119,0.32);
}
.mega-promo .t {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.02em; line-height: 1.2;
  color: var(--white);
}
.mega-promo .d { font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.45; }
.mega-promo .cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--brand-green);
}
.mega-promo .cta svg { width: 14px; height: 14px; transition: transform 160ms cubic-bezier(0.2,0,0,1); }
.mega-promo:hover .cta svg { transform: translateX(2px); }

/* Mega menu footer strip */
.mega-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding: 12px 16px;
  background: var(--gray-50); border-radius: 10px;
  font-size: 12.5px; color: var(--fg-tertiary);
}
.mega-foot a {
  font-weight: 600; color: var(--brand-deep);
  display: inline-flex; align-items: center; gap: 4px;
}
.mega-foot a svg { width: 14px; height: 14px; transition: transform 160ms cubic-bezier(0.2,0,0,1); }
.mega-foot a:hover svg { transform: translateX(2px); }

/* ───── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--radius-md);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  border: 1px solid transparent;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, transform 80ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-deep); color: var(--white);
  box-shadow: var(--ring-on-solid), var(--shadow-xs);
}
.btn-primary:hover { background: var(--brand-deep-700); }
.btn-primary:active { background: var(--brand-deep-800); }
.btn-secondary {
  background: var(--white); color: var(--fg-primary);
  border-color: var(--border-secondary); box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { background: var(--gray-50); border-color: var(--gray-400); }
.btn-ghost { color: var(--fg-primary); }
.btn-ghost:hover { color: var(--brand-deep); background: var(--gray-50); }
.btn-green {
  background: var(--brand-green); color: var(--brand-deep-900);
  box-shadow: var(--ring-on-solid), var(--shadow-xs);
}
.btn-green:hover { background: #0ADD6C; }
.btn-on-dark {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.22);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.45); }
.btn-lg { padding: 14px 22px; font-size: var(--text-md); border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 12px; font-size: var(--text-xs); border-radius: var(--radius-sm); }
.btn .arrow { width: 16px; height: 16px; transition: transform 160ms cubic-bezier(0.2,0,0,1); }
.btn:hover .arrow { transform: translateX(2px); }

/* ───── Section rhythm ────────────────────────────────────────── */
.section     { padding: 112px 0; }
.section-sm  { padding: 72px 0; }
.section-xs  { padding: 48px 0; }
.section-deep    { background: var(--brand-deep); color: var(--white); }
.section-deep-darker { background: var(--brand-deep-900); color: var(--white); }
.section-tint    { background: var(--gray-50); }
.section-cream   { background: #F8F5EF; }   /* subtle warm tint — sparingly */

.section-header { max-width: 760px; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header .lede { margin-top: 20px; max-width: 640px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .lede { margin-left: auto; margin-right: auto; }

/* ───── Pills + badges ────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 9999px;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.02em;
  background: var(--white); border: 1px solid var(--border-primary);
  color: var(--fg-secondary);
}
.pill .pill-mark {
  display: inline-block; background: var(--bg-brand-subtle); color: var(--brand-deep);
  padding: 2px 8px; border-radius: 9999px; font-weight: 600;
  font-size: 11px; letter-spacing: 0.02em;
}
.pill-dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--brand-green); box-shadow: 0 0 0 3px rgba(11,244,119,0.20); }
.pill-on-dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.8); }
.pill-on-dark .pill-mark { background: rgba(11,244,119,0.14); color: var(--brand-green); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 9999px;
  font-size: 12px; font-weight: 600;
  background: var(--bg-brand-subtle); color: var(--brand-deep);
}

/* ───── Card primitives ───────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.card-elev { background: var(--white); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-lg); }
.card-dark {
  background: var(--brand-deep); color: var(--white);
  border-radius: var(--radius-2xl); padding: 36px;
  box-shadow: var(--shadow-2xl);
}

/* ───── Logo strip ────────────────────────────────────────────── */
.logos {
  padding: 56px 0;
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
}
.logos-label {
  text-align: center; font-size: 13px; color: var(--fg-tertiary);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 28px;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 32px 56px;
}
.logos-item {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.02em; color: var(--gray-500); opacity: 0.85;
  display: inline-flex; align-items: center; gap: 8px;
}
.logos-item::before {
  content: ""; width: 10px; height: 10px; border-radius: 2px;
  background: currentColor; opacity: 0.4; transform: rotate(45deg);
}

/* ───── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--brand-deep-900); color: rgba(255,255,255,0.7);
  padding: 96px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 56px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer .nav-logo { color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: var(--text-sm); line-height: 1.6; color: rgba(255,255,255,0.62); max-width: 320px; }
.footer-about .sig {
  display: block; margin-top: 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  letter-spacing: -0.02em; color: var(--brand-green);
}
.footer-col h5 {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: var(--text-sm); color: rgba(255,255,255,0.75);
  transition: color 120ms ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: var(--text-sm); color: rgba(255,255,255,0.5);
  gap: 24px; flex-wrap: wrap;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a:hover { color: var(--white); }

/* ───── CTA block (reusable bottom-of-page) ───────────────────── */
.cta {
  border-radius: var(--radius-4xl); padding: 80px 64px;
  background: var(--brand-deep);
  color: var(--white); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  box-shadow: var(--shadow-3xl);
}
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 320px at 90% 0%, rgba(11,244,119,0.18), transparent 70%),
    radial-gradient(420px 280px at 0% 100%, rgba(199,222,213,0.10), transparent 70%);
}
.cta > * { position: relative; }
.cta h2 {
  color: var(--white); font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.025em;
  line-height: 1.05; margin-bottom: 16px; text-wrap: balance;
}
.cta p { color: rgba(255,255,255,0.75); font-size: var(--text-lg); line-height: 1.5; max-width: 44ch; }
.cta-buttons { display: flex; gap: 12px; justify-self: end; flex-shrink: 0; flex-wrap: wrap; }
.cta .btn-primary { background: var(--brand-green); color: var(--brand-deep-900); }
.cta .btn-primary:hover { background: #0ADD6C; }
.cta .btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.cta .btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

/* ───── Sub-page hero ─────────────────────────────────────────── */
.subhero {
  padding: 96px 0 72px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-primary);
}
.subhero .lede { margin-top: 24px; }

/* ───── FAQ ───────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-primary);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-primary); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  letter-spacing: -0.02em; color: var(--fg-primary);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chev { width: 22px; height: 22px; color: var(--fg-tertiary); transition: transform 200ms cubic-bezier(0.2,0,0,1); flex-shrink: 0; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-a { font-size: var(--text-md); line-height: 1.6; color: var(--fg-secondary); margin-top: 16px; max-width: 720px; }

/* ───── Inline link helper ────────────────────────────────────── */
.tlink {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fg-brand-primary); font-weight: 600; font-size: var(--text-sm);
}
.tlink:hover { text-decoration: underline; text-underline-offset: 3px; }
.tlink .arrow { width: 14px; height: 14px; transition: transform 160ms cubic-bezier(0.2,0,0,1); }
.tlink:hover .arrow { transform: translateX(2px); }

/* ───── Avatar ────────────────────────────────────────────────── */
.avatar { width: 44px; height: 44px; border-radius: 9999px; background: var(--gray-200); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; color: var(--fg-secondary); overflow: hidden; flex-shrink: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-sm { width: 32px; height: 32px; font-size: 12px; }
.avatar-lg { width: 56px; height: 56px; font-size: 18px; }
.avatar-color-1 { background: #C7DED5; color: var(--brand-deep-900); }
.avatar-color-2 { background: #E9D8C7; color: #5A3D1F; }
.avatar-color-3 { background: #D5C7E9; color: #3D1F5A; }
.avatar-color-4 { background: #F4D9D4; color: #5A2A1F; }
.avatar-color-5 { background: #D4E2F4; color: #1F3D5A; }
.avatar-stack { display: inline-flex; }
.avatar-stack .avatar { margin-left: -10px; border: 2px solid var(--white); }
.avatar-stack .avatar:first-child { margin-left: 0; }

/* ───── Stat block ────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat .num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 4vw, 60px); line-height: 1; letter-spacing: -0.025em;
  color: var(--fg-primary); margin-bottom: 8px;
}
.stat .num sup { font-size: 0.55em; color: var(--brand-deep); margin-left: 2px; vertical-align: super; }
.stat .lab { font-size: var(--text-sm); color: var(--fg-tertiary); line-height: 1.4; max-width: 22ch; }
.on-dark .stat .num { color: var(--white); }
.on-dark .stat .num sup { color: var(--brand-green); }
.on-dark .stat .lab { color: rgba(255,255,255,0.6); }

/* ───── Common SVG-icon helper ────────────────────────────────── */
.icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; stroke-width: 2; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ───── Atmospheric photo band ────────────────────────────────── */
.photo-band {
  position: relative; overflow: hidden;
  background: var(--brand-deep); color: var(--white);
}
.photo-band-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.photo-band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,40,42,0.4), rgba(0,40,42,0.9));
}
.photo-band > * { position: relative; z-index: 1; }

/* ───── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .wrap, .narrow { padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta { padding: 56px 28px; grid-template-columns: 1fr; }
  .cta-buttons { justify-self: start; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .display-1 { font-size: 44px; }
  .display-2 { font-size: 36px; }
  .display-3 { font-size: 30px; }
}
