/* ─────────────────────────────────────────────────────────────────────
   BD CORPORATE — shared stylesheet for /corporate + 6 service pages
   bd-design v3.11 compliant. Pairs with /css/nav.css (shared chrome).

   Rules honored:
   14  no decorative word-italics — .cloud-halo NOT used, headlines upright
   15  glow vocabulary: CTA button · section orb · ✓-tick pip · feature price
   6   max 2 glimmer techniques per page → glow + frosted glass (grain = texture)
   17  dark-section text-shadow required
   24  .grain-overlay on every dark section, opacity ≤ .05
   13  tabular-nums on every price
   3   cards on dark carry a sky glow-border
   v3.6 card grids use @container, never @media
   ───────────────────────────────────────────────────────────────────── */

:root {
  --sky: #0EA5E9;
  --sky-deep: #0284C7;
  --sky-bright: #38BDF8;
  --sky-soft: rgba(14, 165, 233, 0.12);
  --sky-glow: rgba(56, 189, 248, 0.35);

  --bg-white: #FFFFFF;
  --bg-cool: #F8FAFC;
  --bg-card: #F1F5F9;
  --rule: #E2E8F0;
  --text: #0F172A;
  --text-dim: #475569;
  --muted: #94A3B8;

  --dark: #0B1220;
  --dark-2: #0F172A;

  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-editorial: 'Spectral', 'Georgia', serif;

  --glow-sky: 0 0 24px rgba(56, 189, 248, 0.35);
  --glow-sky-soft: 0 0 12px rgba(14, 165, 233, 0.20);
  --glow-sky-tight: 0 0 8px rgba(56, 189, 248, 0.40);

  --gradient-sky: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 50%, #7DD3FC 100%);
  --gradient-shine: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  --sparkle-bg: radial-gradient(circle at top right, rgba(56,189,248,0.18), transparent 50%),
                radial-gradient(circle at bottom left, rgba(14,165,233,0.10), transparent 50%);

  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --spring-glass: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-snappy: 0.18s;
  --dur-default: 0.32s;

  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-white); color: var(--text);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; top: -48px; left: 8px;
  background: var(--sky); color: #fff; padding: 8px 16px; border-radius: 4px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  z-index: 99999; transition: top .2s ease;
}
.skip-link:focus { top: 8px; outline: 2px solid #fff; outline-offset: 2px; }

/* ── FILM GRAIN (rule 24) ────────────────────────────────────────── */
.grain-overlay { isolation: isolate; }
.grain-overlay::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E") repeat;
  opacity: .04; pointer-events: none; z-index: 2;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.01em; cursor: pointer; text-decoration: none !important;
  transition: transform var(--dur-snappy) var(--ease-out-soft),
              box-shadow var(--dur-snappy) var(--ease-out-soft),
              background var(--dur-snappy) var(--ease-out-soft);
}
.btn-primary { background: var(--sky-bright); color: #fff; box-shadow: var(--glow-sky-tight); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-sky); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--sky-bright); color: #fff; }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--dark); }

.shine { position: relative; overflow: hidden; }
.shine::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient-shine); transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-soft); pointer-events: none;
}
.shine:hover::after { transform: translateX(120%); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 24px 110px; background: var(--dark); overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; object-fit: cover; opacity: 0.42;
  filter: saturate(0.95) brightness(0.86) contrast(1.06) hue-rotate(-8deg);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(11,18,32,0.42) 58%, rgba(11,18,32,0.88) 100%),
              var(--sparkle-bg);
}
.hero-inner { position: relative; z-index: 3; max-width: 1000px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--sky-bright);
  text-shadow: 0 0 20px rgba(14,165,233,0.45);
  margin: 0 0 24px; display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky-bright));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--sky-bright), transparent); }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.9rem, 7.4vw, 6.2rem);
  line-height: 0.94; letter-spacing: -0.04em; color: #fff; margin: 0 0 26px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.6);
}
.hero-title .hl { color: var(--sky-bright); }
.hero-sub {
  font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.82);
  max-width: 620px; margin: 0 auto 36px; text-align: left;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.32em; color: rgba(255,255,255,0.45);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity:.35; transform: translate(-50%,0);} 50% { opacity:.9; transform: translate(-50%,6px);} }

/* ── SECTION SHELL ───────────────────────────────────────────────── */
section { position: relative; }
.section { padding: 104px 0; }
.section-cool { background: var(--bg-cool); }
.section-dark { background: var(--dark); overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--sparkle-bg); pointer-events: none;
}
.section-dark .container { position: relative; z-index: 3; }
.section-head { max-width: 720px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--sky-deep);
  margin: 0 0 14px; display: inline-flex; align-items: center; gap: 8px;
}
.gv-orb {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky-bright); box-shadow: var(--glow-sky);
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.025em;
  line-height: 1.06; margin: 0 0 18px; color: var(--text);
}
.section-sub { font-size: 17px; line-height: 1.7; color: var(--text-dim); }
.section-dark .section-eyebrow { color: var(--sky-bright); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.section-dark .section-title {
  color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.6);
}
.section-dark .section-sub { color: rgba(255,255,255,0.78); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }

/* ── PROBLEM SELECTOR (hub) ──────────────────────────────────────── */
.selector { container-type: inline-size; container-name: main; }
.sel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sel-card {
  position: relative; display: block; padding: 30px 26px 26px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(14,165,233,0.15); border-radius: var(--r-xl);
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  text-decoration: none !important; color: #fff; overflow: hidden;
  transition: transform 0.22s var(--spring-glass), border-color 0.22s var(--spring-glass),
              background 0.22s var(--spring-glass);
}
.sel-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.07), transparent 60%);
}
.sel-card:hover {
  transform: translateY(-4px); border-color: rgba(56,189,248,0.5);
  background: rgba(255,255,255,0.06);
}
.sel-quote {
  position: relative; font-family: var(--font-display); font-weight: 700;
  font-size: 21px; line-height: 1.3; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 14px;
}
.sel-answer {
  position: relative; font-size: 14.5px; line-height: 1.6;
  color: rgba(255,255,255,0.68); margin: 0 0 20px;
}
.sel-go {
  position: relative; font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sky-bright); display: inline-flex; align-items: center; gap: 7px;
}
.sel-card:hover .sel-go { gap: 12px; }
.sel-go span { transition: transform 0.22s var(--spring-glass); }

/* ── PACKAGE CARDS ───────────────────────────────────────────────── */
.packs { container-type: inline-size; container-name: main; }
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pack-card {
  position: relative; background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-xl); padding: 34px 28px 32px;
  transition: transform var(--dur-default) var(--ease-out-soft),
              box-shadow var(--dur-default) var(--ease-out-soft);
}
.pack-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -28px rgba(2,132,199,0.35); }
.pack-card.feature { border-color: rgba(14,165,233,0.42); box-shadow: 0 24px 70px -30px rgba(2,132,199,0.4); }
.pack-ribbon {
  position: absolute; top: -12px; left: 28px;
  background: var(--gradient-sky); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
}
.pack-name {
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.02em; color: var(--text); margin: 0 0 6px;
}
.pack-for { font-size: 13.5px; color: var(--muted); margin: 0 0 20px; min-height: 40px; }
.pack-price {
  font-family: var(--font-display); font-weight: 800;
  font-size: 38px; letter-spacing: -0.03em; color: var(--text);
  font-variant-numeric: tabular-nums; line-height: 1; margin: 0 0 4px;
}
.pack-card.feature .pack-price { color: var(--sky-deep); }
.pack-unit { font-size: 12.5px; color: var(--muted); margin: 0 0 22px; }
.pack-list { list-style: none; margin: 0 0 26px; display: grid; gap: 11px; }
.pack-list li {
  position: relative; padding-left: 26px; font-size: 14.5px;
  line-height: 1.55; color: var(--text-dim);
}
.pack-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky-bright);
}
.pack-cta { display: block; text-align: center; width: 100%; }

/* ── DELIVERABLE / SPEC CARDS on dark ────────────────────────────── */
.specs { container-type: inline-size; container-name: main; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec-card {
  position: relative; padding: 26px 22px;
  background: linear-gradient(180deg, rgba(14,165,233,0.04) 0%, rgba(11,18,32,0.6) 100%);
  border: 1px solid rgba(14,165,233,0.15); border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.spec-icon { color: var(--sky-bright); margin: 0 0 16px; }
.spec-icon svg { width: 26px; height: 26px; }
.spec-cat {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin: 0 0 8px;
}
.spec-head {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  line-height: 1.25; letter-spacing: -0.015em; color: #fff; margin: 0 0 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.spec-list { list-style: none; display: grid; gap: 9px; }
.spec-list li {
  position: relative; padding-left: 20px; font-size: 13.5px;
  line-height: 1.5; color: rgba(255,255,255,0.7);
}
.spec-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sky-bright);
}

/* ── COMPARISON TABLE (dark) ─────────────────────────────────────── */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); }
.cmp {
  width: 100%; min-width: 760px; border-collapse: collapse;
  background: rgba(11,18,32,0.55); backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(14,165,233,0.15); border-radius: var(--r-lg); overflow: hidden;
}
.cmp th, .cmp td {
  padding: 15px 18px; text-align: left; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cmp thead th {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sky-bright); background: rgba(14,165,233,0.07);
}
.cmp td { color: rgba(255,255,255,0.76); }
.cmp td:first-child, .cmp th:first-child { position: sticky; left: 0; }
.cmp tbody th {
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  color: #fff; background: rgba(11,18,32,0.92);
}
.cmp .price { color: var(--sky-bright); font-weight: 700; font-variant-numeric: tabular-nums; }
.cmp tbody tr:hover td { background: rgba(14,165,233,0.05); }

/* ── PROCESS FLOW (light) ────────────────────────────────────────── */
.flow { container-type: inline-size; container-name: main; }
.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.flow-grid::before {
  content: ""; position: absolute; top: 38px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), var(--sky-bright), var(--sky), transparent);
  opacity: .35;
}
.flow-step { position: relative; text-align: center; }
.flow-orb {
  width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: #fff;
  border: 2px solid var(--sky); box-shadow: var(--glow-sky-soft); color: var(--sky-deep);
}
.flow-orb svg { width: 28px; height: 28px; }
.flow-num {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.2em; color: var(--muted); margin: 0 0 6px;
}
.flow-name {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  letter-spacing: -0.02em; color: var(--text); margin: 0 0 8px;
}
.flow-cap { font-size: 14px; line-height: 1.55; color: var(--text-dim); }

/* ── PHOTO DIVIDER (§4.7) ────────────────────────────────────────── */
.photo-divider {
  background: var(--dark); padding: 26px 0; overflow: hidden; position: relative;
}
.photo-track {
  display: flex; gap: 14px; width: max-content;
  animation: slide-l 58s linear infinite;
}
.photo-track-rev { animation: slide-r 58s linear infinite; }
.photo-divider:hover .photo-track { animation-play-state: paused; }
.photo-tile-wide {
  width: 300px; height: 168px; border-radius: var(--r-md); overflow: hidden;
  border: 1px solid rgba(14,165,233,0.15); flex-shrink: 0; position: relative;
}
.photo-tile-wide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) brightness(.85); }
@keyframes slide-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slide-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .photo-track, .photo-track-rev { animation: none; }
  .hero-scroll-cue { animation: none; }
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--rule); border-radius: var(--r-lg); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--text);
}
.faq-q::after { content: "+"; color: var(--sky-deep); font-size: 22px; font-weight: 400; line-height: 1; }
.faq-item[open] .faq-q::after { content: "–"; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a { padding: 0 24px 22px; font-size: 15px; line-height: 1.7; color: var(--text-dim); }

/* ── CTA (dark, backdrop video) ──────────────────────────────────── */
.cta-section {
  background: var(--dark); color: #fff; text-align: center;
  padding: 132px 24px; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.26;
  filter: saturate(0.8) brightness(0.7) hue-rotate(-10deg); pointer-events: none;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(11,18,32,0.55) 60%, rgba(11,18,32,0.85) 100%),
              var(--sparkle-bg);
}
.cta-inner { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5.4vw, 62px); letter-spacing: -0.03em; line-height: 1.04;
  color: #fff; margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.6);
}
.cta-title .hl { color: var(--sky-bright); }
.cta-sub {
  font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78);
  margin: 0 auto 34px; max-width: 520px; text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RELATED ─────────────────────────────────────────────────────── */
.rel { container-type: inline-size; container-name: main; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rel-card {
  display: block; padding: 24px; background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-lg); text-decoration: none !important; color: var(--text);
  transition: transform var(--dur-snappy) var(--ease-out-soft), border-color var(--dur-snappy) var(--ease-out-soft);
}
.rel-card:hover { transform: translateY(-3px); border-color: var(--sky); }
.rel-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 0 0 7px; }
.rel-why { font-size: 14px; line-height: 1.55; color: var(--text-dim); }

/* ── FOOTER (rule 12 — no Instagram) ─────────────────────────────── */
.bd-footer {
  background: var(--dark); color: #fff; text-align: center;
  padding: 68px 24px 44px; border-top: 3px solid var(--sky);
  position: relative; overflow: hidden;
}
.bd-footer-logo { width: 56px; height: auto; margin: 0 auto 18px; opacity: .92; }
.bd-footer-tagline {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin: 0 0 10px;
}
.bd-footer-mission {
  font-family: var(--font-editorial); font-size: 16px;
  color: rgba(255,255,255,0.62); margin: 0 0 24px;
}
.bd-footer-links {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 13.5px; margin: 0 0 22px;
}
.bd-footer-links a { color: rgba(255,255,255,0.72); }
.bd-footer-links a:hover { color: var(--sky-bright); }
.bd-footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── RESPONSIVE — container queries on grids (v3.6) ──────────────── */
@container main (max-width: 1000px) {
  .sel-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .flow-grid::before { display: none; }
  .rel-grid { grid-template-columns: 1fr; }
}
@container main (max-width: 620px) {
  .sel-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { min-height: 88vh; padding: 130px 20px 90px; }
  .hero-sub { font-size: 16.5px; }
  .cta-section { padding: 96px 20px; }
  .photo-tile-wide { width: 210px; height: 120px; }
}

/* ═════════════════════════════════════════════════════════════════════
   v2 — VISUAL LAYER (2026-08-04)
   Closes the three §11.5 recipe sections v1 skipped: trusted-by photo
   marquee (§4.5), cinematic backdrop (§4.6), featured-work lattice (§4.3).
   Plus stat trio, scroll reveals (§8), and imagery on the hub selector.

   Glow vocabulary (rule 15) is now down to TWO lit homes: CTA button +
   section orb. Depth here comes from imagery, motion, and glass — not
   from more glow.
   ═════════════════════════════════════════════════════════════════════ */

/* ── §4.5 TRUSTED-BY RIBBON — photo marquee over text marquee ─────── */
.ribbon {
  background: var(--dark); padding: 46px 0 40px;
  overflow: hidden; position: relative;
}
.ribbon-eyebrow {
  position: relative; z-index: 3; text-align: center;
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin: 0 0 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.photo-marquee {
  position: relative; z-index: 3; overflow: hidden; margin: 0 0 24px;
  /* edge fade — REQUIRED, hides the loop seam */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.photo-marquee .photo-track {
  display: flex; width: max-content; flex-wrap: nowrap;
  gap: 14px; animation: slide-l 50s linear infinite;
}
.photo-tile {
  /* flex:none + explicit box — a bare <span> is inline and ignores width/height */
  display: block; flex: 0 0 auto;
  width: 96px; height: 96px;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid rgba(56,189,248,0.18); position: relative;
  transition: transform .32s var(--ease-out-soft), border-color .32s var(--ease-out-soft);
}
.photo-tile img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.92);
  transition: filter .32s var(--ease-out-soft);
}
.photo-tile:hover { transform: translateY(-2px); border-color: var(--sky-bright); }
.photo-tile:hover img { filter: saturate(1) brightness(1); }
.ribbon-strip {
  position: relative; z-index: 3; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.ribbon-track {
  display: flex; width: max-content; animation: slide-l 42s linear infinite;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.42); white-space: nowrap;
}
.ribbon-track span { flex: 0 0 auto; white-space: nowrap; padding-right: 34px; }
.ribbon:hover .photo-track, .ribbon:hover .ribbon-track { animation-play-state: paused; }

/* ── STAT TRIO ───────────────────────────────────────────────────── */
.stats { container-type: inline-size; container-name: main; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 30px 20px;
  border-left: 1px solid var(--rule);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5.6vw, 62px); letter-spacing: -0.035em;
  line-height: 1; color: var(--text); font-variant-numeric: tabular-nums;
  margin: 0 0 10px;
}
.stat-num .unit { color: var(--sky-deep); }
.stat-label {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  line-height: 1.5; color: var(--text-dim); max-width: 210px; margin: 0 auto;
}
.section-dark .stat { border-left-color: rgba(255,255,255,0.1); }
.section-dark .stat-num { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.section-dark .stat-label { color: rgba(255,255,255,0.68); }

/* ── §4.6 CINEMATIC BACKDROP SECTION ─────────────────────────────── */
.cine { position: relative; overflow: hidden; isolation: isolate; background: var(--dark); }
.cine-bg {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.32;
  filter: saturate(0.85) brightness(0.78) hue-rotate(-10deg); pointer-events: none;
}
.cine-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at top right, rgba(56,189,248,0.14), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(14,165,233,0.10), transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,0.78) 0%, rgba(11,18,32,0.92) 100%);
}
.cine .container { position: relative; z-index: 3; }
.cine-card {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px) saturate(140%); -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(56,189,248,0.18); border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 8px;
}

/* ── §4.3 FEATURED WORK LATTICE — media tiles on dark ────────────── */
.work { container-type: inline-size; container-name: main; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-tile {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.07);
  transition: transform .6s var(--ease-out-soft), border-color var(--dur-default) var(--ease-out-soft);
}
.work-tile:hover { transform: translateY(-3px); border-color: var(--sky-bright); }
.work-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1s var(--ease-out-soft);
}
.work-tile:hover img { transform: scale(1.05); }
/* 3-stop gradient — 2 stops go unreadable over bright frames */
.work-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 18px;
  background: linear-gradient(180deg, transparent 0%, transparent 35%,
              rgba(11,18,32,0.55) 60%, rgba(11,18,32,0.95) 100%);
}
.work-eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sky-bright); margin: 0 0 5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.work-title {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  line-height: 1.22; letter-spacing: -0.015em; color: #fff; margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 16px rgba(0,0,0,0.5);
}

/* ── HUB SELECTOR — now carries imagery ──────────────────────────── */
.sel-card { padding: 0; display: flex; flex-direction: column; }
.sel-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; flex: none; }
.sel-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  /* Heavy duotone — BD has no corporate photography yet, so these frames read as
     atmosphere behind the type rather than a literal claim about the service. */
  filter: saturate(0.5) brightness(0.62) contrast(1.04);
  transition: transform 1s var(--ease-out-soft), filter var(--dur-default) var(--ease-out-soft);
}
.sel-card:hover .sel-media img { transform: scale(1.06); filter: saturate(0.75) brightness(0.8) contrast(1.04); }
.sel-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,132,199,0.16) 0%, rgba(11,18,32,0.42) 55%, rgba(11,18,32,0.88) 100%);
}
.sel-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.sel-answer { flex: 1; }

/* ── §8 SCROLL REVEALS ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal--in {
  opacity: 1; transform: translateY(0);
  transition: opacity .7s var(--ease-out-soft), transform .7s var(--ease-out-soft);
}
.reveal-stagger > * { opacity: 0; transform: translateY(22px); }
.reveal-stagger.reveal--in > * {
  opacity: 1; transform: translateY(0);
  transition: opacity .6s var(--ease-out-soft), transform .6s var(--ease-out-soft);
  transition-delay: calc(var(--i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .ribbon-track, .photo-marquee .photo-track { animation: none; }
}

/* ── v2 RESPONSIVE ───────────────────────────────────────────────── */
@container main (max-width: 1000px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--rule); }
  .stat:first-child { border-top: none; }
  .section-dark .stat { border-top-color: rgba(255,255,255,0.1); }
}
@container main (max-width: 620px) {
  .work-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .photo-tile { width: 74px; height: 74px; }
  .ribbon-track { font-size: 13px; }
}

/* ── §11.8 EDITORIAL TRANSITION BANNER ───────────────────────────────
   Replaces the §4.7 photo divider now that the ribbon carries a photo
   marquee (anti-pattern #9 — never both rhythm tools on one page).
   Emphasis is COLOR, not italic — rule 14 retired decorative word-italics,
   which supersedes the italic in the v3.3 pattern.                      */
.editorial-banner {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 72px 24px; background: var(--dark); text-align: center;
}
.editorial-banner-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(56,189,248,0.26), transparent 60%),
    radial-gradient(ellipse at top right, rgba(125,211,252,0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(14,165,233,0.10), transparent 55%);
}
.editorial-banner .container { position: relative; z-index: 3; }
.editorial-line {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.028em; line-height: 1.06; color: #fff; margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.editorial-line .hl { color: var(--sky-bright); }
.editorial-cue {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin: 0 0 16px;
}
