/* ============================================================
   Blue Mic - Editorial blue redesign
   Inspired by emberhiring.com structure, blue palette,
   serif headlines with italic emphasis.
   ============================================================ */

:root {
  /* Cool, near-white background (the blue equivalent of Ember's cream) */
  --bg:        #F1F5FB;
  --bg-soft:   #E8EFF9;
  --paper:     #FFFFFF;

  /* Ink */
  --ink:       #0B1220;
  --ink-2:     #1E2A44;
  --muted:     #5B6478;
  --line:      rgba(11, 18, 32, 0.10);
  --line-soft: rgba(11, 18, 32, 0.06);

  /* Blue accent palette */
  --blue:        #1E5FE6;   /* primary cobalt */
  --blue-bright: #3B82F6;
  --blue-deep:   #1E3A8A;
  --blue-ink:    #0F2A6B;
  --blue-tint:   #E6EEFE;

  /* Footer */
  --footer-bg:   #0B1220;
  --footer-ink:  #C7CCD8;
  --footer-mute: #6E7689;

  /* CTA gradient */
  --grad-cta: linear-gradient(135deg, #1E5FE6 0%, #2C6BE9 35%, #1E40AF 70%, #1E3A8A 100%);

  /* Radius / shadow */
  --radius-sm: 14px;
  --radius:    20px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(11,18,32,0.04), 0 6px 18px rgba(11,18,32,0.05);
  --shadow:    0 8px 28px rgba(30,95,230,0.10), 0 2px 8px rgba(11,18,32,0.05);
  --shadow-lg: 0 30px 80px rgba(30,95,230,0.22);

  /* Layout */
  --max-w: 1160px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Type */
  --font-serif: "Instrument Serif", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

/* ----------------------------------------------------------
   Subtle background: cool tint + soft glow
   ---------------------------------------------------------- */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 50% -100px, rgba(30,95,230,0.10), transparent 70%),
    radial-gradient(1100px 700px at 100% 100%, rgba(59,130,246,0.06), transparent 70%),
    var(--bg);
}

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 16px;
}
h1 { font-size: clamp(52px, 9vw, 120px); letter-spacing: -0.035em; }
h2 { font-size: clamp(38px, 6vw, 76px); }
h3 { font-size: clamp(24px, 2.8vw, 30px); letter-spacing: -0.02em; }
h4 { font-size: 19px; letter-spacing: -0.015em; }

p  { color: var(--ink-2); margin: 0 0 16px; }

.italic {
  font-style: italic;
  color: var(--blue);
}
.italic-soft { font-style: italic; color: var(--blue); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}

.lede {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
}

/* ----------------------------------------------------------
   Layout
   ---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }

/* ----------------------------------------------------------
   Nav
   ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(241, 245, 251, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled {
  background: rgba(241, 245, 251, 0.85);
  border-bottom-color: var(--line-soft);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
  gap: 16px;
}
.nav-row > .brand     { justify-self: start; }
.nav-row > .nav-links { justify-self: center; }
.nav-row > .nav-cta   { justify-self: end; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--blue);
}
.brand .logo { width: 34px; height: 34px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login {
  font-size: 15px;
  color: var(--ink-2);
}
.nav-cta .login:hover { color: var(--blue); }

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  transition: border-color 0.2s ease;
}
.nav-burger:hover { border-color: var(--blue); }
.nav-burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  margin: 2px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;                 /* dynamic viewport, accounts for iOS toolbar */
  background: #F1F5FB;            /* solid fallback */
  background: var(--bg);
  z-index: 49;
  padding: 102px var(--gutter) 48px;   /* 70px nav + 32px breathing room */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
}
.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  display: block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-menu-links a:hover { color: var(--blue); }
.mobile-menu-links a:active { transform: translateX(4px); }

@media (max-width: 760px) {
  .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .nav-row > .brand,
  .nav-row > .nav-cta { justify-self: auto; }
  .nav-links { display: none; }
  .nav-cta .login { display: none; }
  .nav-burger { display: flex; }
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(30,95,230,0.30);
}
.btn-primary:hover { transform: translateY(-1px); background: #1A55D6; box-shadow: 0 12px 32px rgba(30,95,230,0.42); }
.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.btn-ghost:hover { background: white; transform: translateY(-1px); border-color: var(--blue); color: var(--blue); }
.btn-white {
  color: var(--blue);
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,0.15); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  text-align: center;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(30,95,230,0.18), transparent 60%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}
.hero-mark {
  width: 128px;
  height: 128px;
  margin: 0 auto 28px;
  position: relative;
}
.hero-logo-img,
.hero-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-logo-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  object-fit: contain;
  /* drop a soft shadow so a transparent-bg PNG floats nicely */
  filter: drop-shadow(0 8px 24px rgba(30,95,230,0.18));
}
.hero-mark .waveform {
  position: absolute;
  inset: -38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}
.hero-mark .waveform .bar {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--blue-bright));
  animation: wave 1.4s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 0.9; }
}
.hero h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.hero .lede {
  margin: 28px auto 36px;
  max-width: 56ch;
  text-align: center;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--muted);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   Metric Ribbon (stats)
   ---------------------------------------------------------- */
.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F8FF 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(30,95,230,0.06), 0 1px 3px rgba(11,18,32,0.04);
  overflow: hidden;
  position: relative;
}
.stats-ribbon::before {
  /* thin gradient accent at the top edge */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue), var(--blue-deep));
  opacity: 0.5;
}
.ribbon-stat {
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  text-align: center;
  position: relative;
  border-right: 1px solid var(--line-soft);
}
.ribbon-stat:last-child { border-right: none; }

.ribbon-num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.4vw, 64px);
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.ribbon-num--text {
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 44px);
  letter-spacing: -0.02em;
}
.ribbon-unit {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--blue-bright);
  letter-spacing: 0;
}
.ribbon-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.ribbon-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

@media (max-width: 880px) {
  .stats-ribbon { grid-template-columns: repeat(2, 1fr); }
  .ribbon-stat:nth-child(1),
  .ribbon-stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .ribbon-stat:nth-child(2),
  .ribbon-stat:nth-child(4) { border-right: none; }
  .ribbon-stat:nth-child(1),
  .ribbon-stat:nth-child(3) { border-right: 1px solid var(--line-soft); }
}
@media (max-width: 480px) {
  .stats-ribbon { grid-template-columns: 1fr; }
  .ribbon-stat { border-right: none !important; border-bottom: 1px solid var(--line-soft); }
  .ribbon-stat:last-child { border-bottom: none; }
}

/* ----------------------------------------------------------
   "How Blue Mic Works" 3-beat workflow section
   ---------------------------------------------------------- */
.works h2 { letter-spacing: -0.02em; }
.three-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(44px, 6vw, 72px);
  text-align: left;
}
.beat {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.beat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(30,95,230,0.18);
}
.beat h3 { margin: 0 0 10px; font-size: 22px; }
.beat p  { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

@media (max-width: 880px) {
  .three-beats { grid-template-columns: 1fr; gap: 14px; }
}

/* ----------------------------------------------------------
   Privacy & Security section
   ---------------------------------------------------------- */
.security {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sec-card {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sec-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(30,95,230,0.18);
}
.sec-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 18px;
}
.sec-icon svg { width: 22px; height: 22px; }
.sec-card h4 { margin: 0 0 8px; font-family: var(--font-sans); font-size: 17px; font-weight: 700; letter-spacing: -0.005em; }
.sec-card p  { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

.security-callout {
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--blue);
}
.security-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.security-callout p + ul { margin: 12px 0 14px; }
.security-callout ul + p { margin-top: 0; }
.security-callout ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}
.security-callout li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.security-callout li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.55;
}
.security-callout strong { color: var(--blue-deep); }

@media (max-width: 920px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------
   "Why" section + feature cards
   ---------------------------------------------------------- */
.why h2 { max-width: 16ch; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(44px, 6vw, 72px);
}
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(30,95,230,0.2);
}
.card .icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
  margin-bottom: 28px;
}
.card h3 { margin: 0 0 12px; }
.card p  { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card .icon { margin-bottom: 18px; }
}

/* ----------------------------------------------------------
   Product detail (split with iPhone visual)
   ---------------------------------------------------------- */
.product {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.product-row.reverse > .product-text { order: 2; }
.product-text .product-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.product-num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.product-num-row .product-num { margin-bottom: 0; }
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(30,95,230,0.10), rgba(59,130,246,0.14));
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(30,95,230,0.22);
}
.tier-badge svg {
  width: 10px;
  height: 10px;
  color: var(--blue);
}
.tier-badge--solo {
  margin-bottom: 18px;
}
.contact-line {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44ch;
}
.contact-line a {
  color: var(--blue);
  font-weight: 500;
  border-bottom: 1px solid rgba(30,95,230,0.30);
}
.contact-line a:hover {
  border-bottom-color: var(--blue);
}
.product-text h2 { margin-bottom: 18px; }
.product-text .lede { margin-bottom: 28px; max-width: 44ch; }
.product-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}
.product-text li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-2);
}
.product-text li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.product-text li .check svg { width: 12px; height: 12px; }

.product-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.product-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(30,95,230,0.14), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

@media (max-width: 880px) {
  .product-row, .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse > .product-text { order: initial; }
  .product-visual { min-height: 380px; }
}

/* iPhone mockup */
.iphone {
  width: 264px;
  height: 540px;
  background: linear-gradient(170deg, #1A2138 0%, #0B1220 100%);
  border-radius: 50px;
  padding: 11px;
  box-shadow: var(--shadow-lg), 0 30px 80px rgba(11, 18, 32, 0.18);
  position: relative;
  z-index: 1;
}
.iphone::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #0B1220;
  border-radius: 999px;
  z-index: 3;
}
.iphone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5FB 100%);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.iphone-status {
  display: flex;
  justify-content: space-between;
  padding: 16px 26px 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-sans);
}
.iphone-app {
  flex: 1;
  padding: 32px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.iphone-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(30,95,230,0.10);
  color: var(--blue);
  align-self: flex-start;
}
.iphone-tag .rec-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}
.iphone-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 8px 0 4px;
  color: var(--ink);
}
.iphone-sub { font-size: 12px; color: var(--muted); margin: 0 0 8px; font-family: var(--font-sans); }
.iphone-wave {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  height: 60px;
}
.iphone-wave .b {
  width: 3px;
  border-radius: 999px;
  background: var(--blue);
  animation: wave 1.4s ease-in-out infinite;
}
.iphone-mini-card {
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(11,18,32,0.06);
  font-size: 12px;
  color: var(--ink-2);
  font-family: var(--font-sans);
}
.iphone-mini-card .label {
  font-size: 9px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 4px;
}
.iphone-record {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue);
  margin: 4px auto 0;
  box-shadow: 0 8px 24px rgba(30,95,230,0.4);
  display: grid; place-items: center;
  color: white;
  position: relative;
}
.iphone-record::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(30,95,230,0.3);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ----------------------------------------------------------
   iPhone: Real Blue Mic recording screen recreation
   Matches the actual app screenshot, but with a live waveform.
   ---------------------------------------------------------- */
.iphone-screen--app {
  background: #FFFFFF;
}
.iphone-screen--app .iphone-status {
  padding: 16px 22px 4px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  align-items: center;
}
.iphone-screen--app .iphone-status .status-right {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #000;
}
.iphone-screen--app .iphone-status .batt {
  width: 22px;
  height: 11px;
  border: 1px solid rgba(0,0,0,0.35);
  border-radius: 3px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.iphone-screen--app .iphone-status .batt::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 5px;
  background: rgba(0,0,0,0.35);
  border-radius: 0 1px 1px 0;
}
.iphone-screen--app .iphone-status .batt-fill {
  position: absolute;
  inset: 1px;
  width: calc(100% - 2px);   /* full charge */
  background: #34C759;       /* iOS green */
  border-radius: 2px;
}

.rec-app {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 22px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  color: #000;
}
.rec-title {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #000;
  letter-spacing: -0.01em;
}
.rec-pause {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: #1F1F1F;
  background: #EFEFF1;
  border: 0;
  border-radius: 999px;
  padding: 4px 11px;
  cursor: default;
}
.rec-timer {
  margin-top: 50px;
  font-family: inherit;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #000;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.rec-wave {
  width: 100%;
  height: 56px;
  margin: 128px 0 24px;
  gap: 2px;
}
.rec-wave .b {
  width: 2px;
  background: var(--blue);
}
.rec-bottom {
  margin-top: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 4px;
}
.rec-stop-wrap {
  grid-column: 2;
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}
.rec-stop {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  border: 0;
  display: grid;
  place-items: center;
  cursor: default;
  box-shadow: 0 8px 22px rgba(30,95,230,0.30);
  z-index: 1;
}
.rec-stop-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  transform-origin: 50% 50%;
  animation: orbit 9s linear infinite;
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.rec-stop-icon {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 4px;
  display: block;
}
.rec-dark {
  grid-column: 3;
  justify-self: end;
  font-family: inherit;
  font-size: 11px;
  color: #8A8A8E;
}

/* Chat preview (used opposite the iPhone) */
.chat {
  position: relative;
  max-width: 360px;
  z-index: 1;
}
.chat-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 4px 16px rgba(11,18,32,0.06);
  background: white;
  color: var(--ink-2);
  margin-bottom: 12px;
  max-width: 80%;
}
.chat-bubble.you {
  background: var(--blue);
  color: white;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.chat-bubble.them { border-bottom-left-radius: 4px; }
.chat-summary {
  margin-top: 10px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(11,18,32,0.08);
  border: 1px solid var(--line-soft);
}
.chat-summary .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.chat-summary .row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.chat-summary .row:last-child { border-bottom: 0; }
.chat-summary .row .k { color: var(--muted); }
.chat-summary .row .v { color: var(--ink); font-weight: 500; }

/* ----------------------------------------------------------
   Sales Coach card mockup (Product 02)
   ---------------------------------------------------------- */
.coach-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: white;
  border-radius: 22px;
  padding: 16px 14px 14px;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.10), 0 2px 6px rgba(11, 18, 32, 0.04);
  border: 1px solid var(--line-soft);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  color: #000;
}
.coach-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 4px;
}
.coach-close {
  justify-self: start;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  background: #F2F2F4;
  padding: 5px 13px;
  border-radius: 999px;
}
.coach-title {
  justify-self: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.coach-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A8A8E;
  margin: 4px 4px 8px;
}
.coach-speaker {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  background: #F2F2F4;
  padding: 11px 14px;
  border-radius: 14px;
  margin-bottom: 8px;
}
.coach-speaker-info .name {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.coach-speaker-info .email {
  font-size: 11px;
  color: #8A8A8E;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.coach-speaker-info .email .link-icon {
  width: 11px;
  height: 11px;
  color: var(--blue);
  flex-shrink: 0;
}
.coach-speaker .role {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.coach-speaker .role svg {
  width: 9px;
  height: 11px;
  color: var(--blue);
}
.coach-process-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #EAF1FB;
  padding: 11px 14px;
  border-radius: 14px;
  margin-bottom: 8px;
}
.check-green {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #34C759;
  display: grid;
  place-items: center;
}
.check-green svg {
  width: 12px;
  height: 12px;
}
.coach-process-item .proc-title {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 1px;
  letter-spacing: -0.005em;
}
.coach-process-item .proc-sub {
  font-size: 11px;
  color: #8A8A8E;
}
.coach-process-item .chev {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

/* ----------------------------------------------------------
   CRM integrations sub-band (under Sales Coach)
   ---------------------------------------------------------- */
.crm-band {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line-soft);
}
.crm-band-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 36px;
}
.crm-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}
.crm-tier {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.crm-tier-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.crm-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.crm-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(30,95,230,0.18);
}

/* Roadmap pills */
.crm-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.crm-roadmap-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: border-color 0.2s ease;
}
.crm-roadmap-item:hover { border-color: rgba(30,95,230,0.22); }

/* CTA tier */
.crm-tier--cta { gap: 12px; }
.crm-cta-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.crm-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid rgba(30,95,230,0.30);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.crm-cta-link:hover {
  color: var(--blue-deep);
  border-bottom-color: var(--blue-deep);
}
.crm-cta-link .arrow { transition: transform 0.2s ease; }
.crm-cta-link:hover .arrow { transform: translateX(3px); }
.crm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.crm-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
}

/* Bullhorn logo lockup */
.crm-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.crm-logo-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.crm-wordmark {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.crm-brand-logo {
  height: 80px;
  width: auto;
  max-width: 280px;
  display: block;
  object-fit: contain;
}
.crm-status {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.crm-status--live {
  color: #0F7A3F;
  background: rgba(52, 199, 89, 0.12);
}
.crm-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.18);
  animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(52, 199, 89, 0); }
}
.crm-chip--live { border-color: rgba(52, 199, 89, 0.30); }

@media (max-width: 760px) {
  .crm-tiers {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 460px;
  }
}

/* ----------------------------------------------------------
   Final CTA: full-bleed blue
   ---------------------------------------------------------- */
.cta {
  background: var(--grad-cta);
  background-size: 200% 200%;
  animation: cta-shift 18s ease-in-out infinite;
  color: white;
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
@keyframes cta-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
  color: white;
  max-width: 18ch;
  margin: 0 auto 20px;
}
.cta h2 .italic { color: #BFD3FF; }
.cta p {
  color: rgba(255,255,255,0.86);
  max-width: 50ch;
  margin: 0 auto 36px;
  font-size: clamp(17px, 1.6vw, 19px);
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: 56px 0 40px;
  position: relative;
  z-index: 1;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: var(--footer-mute);
  letter-spacing: 0.01em;
}
.footer .brand { color: white; font-size: 13px; }
.footer .brand .logo { width: 32px; height: 32px; }
.footer-tag {
  font-size: 13px;
  color: var(--footer-mute);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 14px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--footer-ink); }
.footer-links a:hover { color: white; }
.footer-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
}
.footer-side a { color: var(--footer-ink); }
.footer-side a:hover { color: white; }
.footer-social {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: background 0.2s ease;
}
.footer-social:hover { background: rgba(255,255,255,0.14); }
.footer-social svg { width: 14px; height: 14px; color: var(--footer-ink); }

@media (max-width: 720px) {
  .footer .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .footer-side { justify-content: center; }
  .footer-links { justify-content: center; }
  .footer .brand { justify-content: center; }
}

/* ----------------------------------------------------------
   Legal pages
   ---------------------------------------------------------- */
.legal {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
}
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow-sm);
}
.legal-wrap h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.legal-wrap .updated { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.legal-wrap h2 { font-size: clamp(22px, 2.6vw, 26px); margin: 36px 0 12px; font-weight: 700; }
.legal-wrap p, .legal-wrap li { font-size: 16px; color: var(--ink-2); }
.legal-wrap ul { padding-left: 22px; margin: 12px 0; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--blue); border-bottom: 1px solid rgba(30,95,230,0.3); }

/* ----------------------------------------------------------
   Reveal-on-scroll
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------
   Blue Stream Solutions brand logo (nav)
   ---------------------------------------------------------- */
.brand-img {
  height: 56px;
  width: auto;
  max-width: 280px;
  display: block;
  object-fit: contain;
}
@media (max-width: 760px) {
  .brand-img { height: 48px; max-width: 240px; }
}

/* ----------------------------------------------------------
   Blue Stream Solutions intro band (above hero)
   Hybrid: small eyebrow + editorial pull-quote + supporting copy
   ---------------------------------------------------------- */
.bss-intro {
  background: linear-gradient(180deg, white 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(48px, 7vw, 84px) 0;
}
.bss-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.bss-intro-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.bss-intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 32px;
}
.bss-intro-quote .italic {
  font-style: italic;
  color: var(--blue);
}
.bss-intro-copy {
  max-width: 600px;
  margin: 0 auto;
}
.bss-intro-copy p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 14px;
}
.bss-intro-copy p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Fixed-background ambient cascade video
   The video covers the whole viewport behind all content; a
   tinted overlay keeps text legible. Sections that previously
   carried solid/gradient backgrounds become transparent so the
   cascade shows through subtly across the page.
   ============================================================ */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  /* Poster image as CSS background — shows instantly on first paint,
     before either video has any frames ready. Eliminates load flicker. */
  background-image: url('hero-poster.jpg?v=7');
  background-size: cover;
  background-position: center 60%;
  background-color: #0B1220;
}

.page-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;   /* keeps the cascade prominent in frame */
  opacity: 0;                    /* hidden until JS toggles is-active */
  transition: opacity 2.5s ease;
}
.page-bg-video.is-active {
  opacity: 1;
}

.page-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(241, 245, 251, 0.72) 0%,
    rgba(241, 245, 251, 0.82) 100%
  );
}

/* Body and bg-stage transparent so the fixed video is visible */
body {
  background: transparent;
}
.bg-stage {
  display: none;
}

/* Section backgrounds become transparent across the page */
.bss-intro,
.hero,
.security,
.product,
.works,
.faq,
.three-beats {
  background: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* Stats ribbon keeps a softer translucent gradient — preserves the
   original elevated card feel while letting a hint of cascade through */
.stats-ribbon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(245, 248, 255, 0.72) 100%
  );
}

/* Three-beats cards keep semi-transparent surfaces for legibility */
.three-beats .beat {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Reduced motion — replace video with the original tint */
@media (prefers-reduced-motion: reduce) {
  .page-bg-video {
    display: none;
  }
  .page-bg-tint {
    background: var(--bg);
  }
}

/* "Who we are" card — asymmetric side-rule accent treatment. A subtle
   frosted-glass panel with a 2px blue stripe down the left edge serves
   as a quiet visual anchor without enclosing the content in a full
   bordered box. Echoes the security-callout treatment in a smaller,
   tighter footprint. */
.bss-intro {
  /* Move the card higher on the page by trimming top padding */
  padding-top: clamp(20px, 3vw, 36px);
}
.bss-intro-inner {
  max-width: 680px;
  padding: clamp(18px, 2.4vw, 24px) clamp(24px, 3.5vw, 32px)
           clamp(18px, 2.4vw, 24px) clamp(26px, 3.8vw, 34px);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-left: 2px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: none;
  text-align: left;
}
.bss-intro-inner::before {
  /* No top accent — the left rule carries the visual anchor */
  display: none;
}
.bss-intro .bss-intro-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.bss-intro .bss-intro-copy p {
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile — slightly heavier tint for legibility over busier crops */
@media (max-width: 600px) {
  .page-bg-tint {
    background: linear-gradient(
      180deg,
      rgba(241, 245, 251, 0.80) 0%,
      rgba(241, 245, 251, 0.88) 100%
    );
  }
}

/* ============================================================
   Desktop nav: subtle center-out underline animation on hover
   The line sits flush below the text and expands from the
   center to both sides on hover/focus. Skipped on mobile,
   where the burger menu is used instead.
   ============================================================ */
@media (min-width: 880px) {
  .nav-links a {
    position: relative;
    padding-bottom: 4px;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    transform: scaleX(1);
  }
}
