/* Emerald Chat — static landing (reference: omegle.html.erb) */

:root {
  /* Brand orange — matches “Why we stand out” full-bleed section */
  --orange-brand: #fe8215;
  --orange: var(--orange-brand);
  --orange-dark: #fe8215;
  /* Third section heading accent (Omegle story) */
  --orange-story: #fe8215;
  --orange-chat-modes: #fe8215;
  /* Final CTA band — Figma warm orange (~#FF8C00) */
  --orange-cta-warm: #ff8c00;
  /* Contact hero: Figma heading + CTA label (same token) */
  --contact-hero-accent: #ff8c00;
  --orange-faq-heading: #fe8215;
  --omegle-story-text: #444444;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5c5c6f;
  --bg-page: #ffffff;
  --green-accent: #00cc6a;
  --green-dark: #00a855;
  /* Final CTA + footer band (Figma: left cream → right orange, Quicksand) */
  --contact-grad-from: #fff5e6;
  --contact-grad-to: #ff8c32;
  --contact-heading-chocolate: #5a3018;
  --contact-body-brown: #3d342f;
  --font-contact-band: "Quicksand", "Fredoka", var(--font-heading), system-ui, sans-serif;
  --pink-block: #e91e8c;
  --dark-block: #2d2d3f;
  --success-block: #00c896;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-btn: 0 4px 14px rgba(0, 0, 0, 0.15);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Fredoka", "Inter", system-ui, sans-serif;
  --breakpoint-lg: 992px;
  --max: 1130px;
  /* Page type scale (~+12.5% vs prior) — hero uses same tokens + --fs-hero-lead */
  --fs-h1: clamp(2.125rem, 3.5vw, 4.5rem);
  --fs-h2: clamp(1.875rem, 3.85vw, 2.5rem);
  /* Fluid between desktop floor and ceiling (values were reversed in an older edit; order is min, preferred, max) */
  --fs-h2-hero: clamp(3.375rem, 4.4vw, 5.2rem);
  --fs-body: 1.4rem;
  --fs-lead: clamp(1.125rem, 2.7vw, 1.2rem);
  --fs-hero-lead: clamp(1.375rem, 2.9vw, 1.625rem);
  --fs-btn: 1.0625rem;
  --fs-caption: 1.0125rem;
  --section-y: clamp(2.5rem, 6.5vw, 5rem);
  --section-y-md: clamp(2rem, 4vw, 3.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
  display: block;
}

a {
  color: var(--green-accent);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* Full-bleed band: background spans 100vw; content stays in .container */
.section-band {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.section-band > .container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  box-sizing: border-box;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  box-sizing: border-box;
}

.section-band--page {
  background: var(--bg-page);
  padding: 1.5rem 0 2.5rem;
}

.section-band--orange {
  background: var(--orange-brand);
  padding: var(--section-y) 0;
}

.section-band--white {
  background: var(--white);
}

/* —— Hero (orange banner) —— */
.hero.section-band--page {
  padding-bottom: 2.5rem;
}

.hero-banner {
  background: var(--orange-brand);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4.5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  /* Bubbles sit partly outside the video; do not clip them at the card edge */
  overflow-x: visible;
  overflow-y: visible;
}

.hero-copy {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 520px;
  color: var(--white);
}

.hero-copy h1 {
  position: relative;
  top: -5px;
  left: 3px;
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-copy h1 b {
  font-weight: 700;
}

.hero-copy p {
  margin: 0 0 1.75rem;
  font-size: var(--fs-hero-lead);
  font-weight: 400;
  opacity: 0.95;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

/* CTA row: buttons sit on the orange hero (no dark track) */
.hero-cta-row {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.9rem;
  margin: 0;
  min-inline-size: 0;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-cta-row__legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Primary CTA — white 3D pill + orange type (same UI as hero; no image buttons) */
.btn-pill,
a.btn-pill,
.hero-cta-row .btn-hero {
  box-sizing: border-box;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.9rem, 2.1vw, 1.05rem);
  line-height: 1.12;
  color: var(--orange-brand);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 3px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 38%, #e9e9e9 100%);
  box-shadow:
    inset 0 4px 7px rgba(0, 0, 0, 0.12),
    inset 4px 0 8px rgba(0, 0, 0, 0.06),
    inset 0 -3px 8px rgba(255, 255, 255, 0.9);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-pill,
a.btn-pill {
  width: 202px;
  min-width: 202px;
  max-width: 202px;
  height: 60px;
  min-height: 60px;
}

.hero-cta-row .btn-hero {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  height: 80px;
  min-height: 80px;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 900;
}

a.btn-pill {
  color: var(--orange-brand);
}

.btn-pill__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12em;
}

.btn-pill__line {
  display: block;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 1000;
}

.hero-cta-row .btn-pill__line {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

.btn-pill:hover,
.hero-cta-row .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.14),
    inset 4px 0 9px rgba(0, 0, 0, 0.07),
    inset 0 -3px 10px rgba(255, 255, 255, 0.95);
}

.btn-pill:focus-visible,
.hero-cta-row .btn-hero:focus-visible {
  outline: 2px solid var(--orange-brand);
  outline-offset: 3px;
}

.hero-cta-row .btn-hero:focus-visible {
  outline-color: #ffffff;
}

.btn-pill:active,
.hero-cta-row .btn-hero:active {
  transform: translateY(0);
  box-shadow:
    inset 0 5px 10px rgba(0, 0, 0, 0.16),
    inset 3px 0 7px rgba(0, 0, 0, 0.08),
    inset 0 -2px 6px rgba(255, 255, 255, 0.85);
}

.btn-pill--section {
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
}

/* Single-line pill (e.g. “Start Chatting” in standout section) */
.btn-pill--single-line {
  padding: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* Standout (section 2) CTA — large radius, recessed inset shadow, more space above list */
.section-standout a.btn-pill.btn-pill--section.btn-pill--single-line {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  height: 70px;
  min-height: 70px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  box-shadow:
    inset 0 4px 7px rgba(0, 0, 0, 0.12),
    inset 4px 0 8px rgba(0, 0, 0, 0.06),
    inset 0 -3px 8px rgba(255, 255, 255, 0.9);
}

.section-standout a.btn-pill.btn-pill--section.btn-pill--single-line:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.14),
    inset 4px 0 9px rgba(0, 0, 0, 0.07),
    inset 0 -3px 10px rgba(255, 255, 255, 0.95);
}
.header-video {
  width: 350px;
  height: 50px;
  object-fit: cover;   /* keeps it filled nicely */
  display: block;
}

.section-standout a.btn-pill.btn-pill--section.btn-pill--single-line:active {
  transform: translateY(0);
  box-shadow:
    inset 0 5px 10px rgba(0, 0, 0, 0.16),
    inset 3px 0 7px rgba(0, 0, 0, 0.08),
    inset 0 -2px 6px rgba(255, 255, 255, 0.85);
}


.hero-cta-row .hero-or {
  color: #ffffff;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  opacity: 1;
  padding: 0 0.1rem;
  line-height: 1;
}

.hero-or {
  color: var(--white);
  font-size: var(--fs-caption);
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.98;
}

.hero-visual {
  flex: 1 1 280px;
  min-width: 0;
  max-width: min(100%, 400px);
  margin-inline: auto;
  width: 100%;
  /* Lets icon max-width use cqi relative to this column (see .hero-icon-overlay--*) */
  container-type: inline-size;
  container-name: hero-visual;
  /* Overlay icons on the video/poster — change these to resize and move */
  --hero-icon-group-width: 170px;
  --hero-icon-group-top: 25%;
  --hero-icon-group-right: -110px;
  --hero-icon-group-transform: translateY(-50%);
  --hero-icon-arrow-width: 170px;
  --hero-icon-arrow-bottom: 20px;
  --hero-icon-arrow-left: -110px;
}

.hero-visual__stack {
  position: relative;
  width: 100%;
  min-width: 0;
  /* Overlays sit here and may extend past the media; do not clip them */
}

/* Clips only the poster/video to rounded corners; bubbles stay outside this box */
.hero-video-wrap {
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  /* Matches hero orange if media is slow to paint; avoids letterbox bars */
  background: var(--orange-brand);
  border-radius: 0;
}

.hero-icon-overlay {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.hero-icon-overlay img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.hero-icon-overlay--group {
  /* Caps size on narrow columns; your --hero-icon-* values stay the “desktop” target */
  width: min(var(--hero-icon-group-width), 44cqi);
  top: var(--hero-icon-group-top);
  right: var(--hero-icon-group-right);
  transform: var(--hero-icon-group-transform);
}

.hero-icon-overlay--arrow {
  width: min(var(--hero-icon-arrow-width), 44cqi);
  bottom: var(--hero-icon-arrow-bottom);
  left: var(--hero-icon-arrow-left);
}

@supports not (width: 1cqi) {
  .hero-icon-overlay--group {
    width: min(var(--hero-icon-group-width), 42vw);
  }

  .hero-icon-overlay--arrow {
    width: min(var(--hero-icon-arrow-width), 42vw);
  }
}

@media (max-width: 640px) {
  .hero-copy {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero-ctas {
    width: 100%;
    max-width: min(100%, 380px);
    margin-inline: auto;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    border-radius: 0;
    padding: 0;
    gap: 0.65rem;
  }

  .hero-cta-row .btn-hero {
    width: min(100%, 190px);
    min-width: 0;
    max-width: 190px;
  }
}

/* —— Section: Standout —— */
.section-band--orange.section-standout {
  background: linear-gradient(168deg, #ff931f 0%, var(--orange-brand) 45%, #f56f00 100%);
  padding-top: calc(var(--section-y) + clamp(0.35rem, 1vw, 0.75rem));
  padding-bottom: var(--section-y);
  margin-top: 60px;

  overflow-x: clip;
  overflow-y: visible; /* allow TOP overflow */

  position: relative;
  z-index: 2;

  box-shadow:
    inset 0 64px 80px -40px rgba(0, 0, 0, 0.16),
    inset 0 -64px 80px -40px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Grid */
.standout-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 3vw, 2.75rem);
  align-items: end; /* 🔥 anchor everything to bottom */
}

/* Text */
.standout-copy {
  color: var(--white);
}

.standout-copy h2 {
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

/* Features */
.standout-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.standout-features > li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Icons */
.standout-ic,
.standout-ic img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

/* Text block */
.standout-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  line-height: 1.35;
}

.standout-item-text strong {
  font-weight: 700;
}

.standout-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* VISUAL COLUMN */
.standout-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end; /* 🔥 bottom anchor */
  overflow: visible;
}

/* 🔥 IMAGE — KEY PART */
.standout-visual img {
  width: clamp(900px, 48vw, 1300px); /* BIGGER */
  height: auto;

  max-width: none;
  max-height: none;

  object-fit: contain;
  object-position: bottom center;

  display: block;

  /* subtle shadow */
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.25));
}

/* Ensure nothing clips */
#standout .container,
#standout .standout-split,
#standout .standout-visual {
  overflow: visible;
}

/* 🔥 LARGE SCREEN BEHAVIOR */
@media (min-width: 992px) {
  #standout .standout-visual img {
    /* 🔥 grow upward only */
    transform: scale(1.6);
    transform-origin: bottom center;
  }
}

/* Mobile (keep safe) */
@media (max-width: 991px) {
  .standout-split {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .standout-visual {
    justify-content: center;
    align-items: center;
  }

  .standout-visual img {
    width: min(100%, 520px);
    transform: none;
  }
}

/* Stack fix if overlapping previous section */
#standout {
  position: relative;
  z-index: 3;
}
@media (max-width: 575px) {
  .standout-ic,
  .standout-ic img {
    width: 110px;
    height: 110px;
  }

  .standout-ic {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 992px) {
  .standout-visual {
    justify-content: flex-end;
  }

  #standout .standout-split {
    align-items: center;
  }

  #standout .standout-visual {
    align-self: stretch;
    align-items: flex-end;
    justify-content: flex-end;
  }

  #standout .standout-visual img {
    max-width: min(100%, clamp(600px, 40vw, 880px));
    max-height: min(92vh, clamp(800px, 86vh, 1000px));
    margin-bottom: calc(-1 * var(--section-y));
  }
}

/* —— Section 3: What happened to Omegle (white, two columns: title + CTA right, body left) —— */
.section-omegle-story {
  padding: var(--section-y) 0;
}

.omegle-story-split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.omegle-story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(320px, 52vh, 640px);
}

.omegle-story-visual img {
  width: auto;
  max-width: min(100%, 520px);
  max-height: 90%;
  height: auto;
  object-fit: contain;
}

.omegle-story-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  margin-left: auto;
}

/* Headline + CTA flush right; body paragraphs read from the left */
.omegle-story-copy h2 {
  align-self: flex-end;
  max-width: min(100%, 540px);
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  text-align: right;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--orange-story);
}

.omegle-story-copy p {
  margin: 0 0 1rem;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--omegle-story-text);
}

.omegle-story-lead {
  font-weight: 700;
  color: #2d2d2d;
}

/* Must beat `.omegle-story-copy p` (same element is a <p>) */
.omegle-story-copy p.omegle-story-tagline {
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: var(--orange-story);
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* Section 3 CTA (+ chat-modes white band) — solid orange, white label, medium radius */
.section-omegle-story a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid,
.section-chat-modes a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid {
  align-self: flex-end;
  margin-top: clamp(1.5rem, 3.5vw, 2rem);
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  height: 70px;
  min-height: 70px;
  border-radius: var(--radius-md);
  padding: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  letter-spacing: 0.02em;
  font-family: var(--font);
  font-weight: 900;
  color: #ffffff;
  background: var(--orange-brand);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.18),
    inset 0 -3px 10px rgba(255, 255, 255, 0.2),
    inset 4px 0 8px rgba(0, 0, 0, 0.08),
    inset -4px 0 8px rgba(255, 255, 255, 0.08);
}

.section-omegle-story a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid:hover,
.section-chat-modes a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 5px 12px rgba(0, 0, 0, 0.2),
    inset 0 -2px 10px rgba(255, 255, 255, 0.22),
    inset 4px 0 9px rgba(0, 0, 0, 0.09),
    inset -4px 0 9px rgba(255, 255, 255, 0.1);
}

.section-omegle-story a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid:active,
.section-chat-modes a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid:active {
  color: #ffffff;
  transform: translateY(0);
  box-shadow:
    inset 0 6px 14px rgba(0, 0, 0, 0.22),
    inset 0 -2px 8px rgba(255, 255, 255, 0.16),
    inset 3px 0 8px rgba(0, 0, 0, 0.1),
    inset -3px 0 8px rgba(255, 255, 255, 0.08);
}

.section-omegle-story a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid:focus-visible,
.section-chat-modes a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid:focus-visible {
  outline: 2px solid var(--orange-brand);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .omegle-story-split {
    grid-template-columns: 1fr;
  }

  .omegle-story-visual {
    order: -1;
  }

  .omegle-story-copy {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }

  .omegle-story-copy h2 {
    text-align: right;
  }

  /* Undo global stacked-section CTA full-width centering — fixed pill width, right-aligned */
  .section-omegle-story .btn-pill.btn-pill--section {
    width: min(100%, 202px);
    max-width: 202px;
    margin-inline: 0;
    align-self: flex-end;
  }
}

/* —— Section 4: Interest matching (full-bleed orange, copy + puzzle graphic) —— */
.section-band--orange.section-matching {
  position: relative;
  /* Center reads slightly brighter; edges darken via inset vignette (Figma inner shadow) */
  background: radial-gradient(
    ellipse 95% 85% at 50% 48%,
    #ff9428 0%,
    var(--orange-brand) 52%,
    #f57500 100%
  );
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow-x: clip;
  box-shadow:
    inset 0 64px 80px -40px rgba(0, 0, 0, 0.16),
    inset 0 -64px 80px -40px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Figma: white pill, orange label — matching band: soft elevation; contact: same + recessed inner */
.section-matching a.btn-pill.btn-pill--section.btn-pill--single-line,
#contact .contact-hero a.btn-pill.btn-pill--section.btn-pill--single-line {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  height: 70px;
  min-height: 70px;
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--orange-brand);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  text-decoration: none;
}

.section-matching a.btn-pill.btn-pill--section.btn-pill--single-line {
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
  box-shadow:
    inset 0 4px 7px rgba(0, 0, 0, 0.12),
    inset 4px 0 8px rgba(0, 0, 0, 0.06),
    inset 0 -3px 8px rgba(255, 255, 255, 0.9);
}

#contact .contact-hero a.btn-pill.btn-pill--section.btn-pill--single-line {
  margin-top: clamp(2.35rem, 5.5vw, 3.35rem);
  box-shadow:
    inset 0 4px 7px rgba(0, 0, 0, 0.12),
    inset 4px 0 8px rgba(0, 0, 0, 0.06),
    inset 0 -3px 8px rgba(255, 255, 255, 0.9);
}

.section-matching a.btn-pill.btn-pill--section.btn-pill--single-line:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.14),
    inset 4px 0 9px rgba(0, 0, 0, 0.07),
    inset 0 -3px 10px rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

#contact .contact-hero a.btn-pill.btn-pill--section.btn-pill--single-line:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.14),
    inset 4px 0 9px rgba(0, 0, 0, 0.07),
    inset 0 -3px 10px rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.section-matching a.btn-pill.btn-pill--section.btn-pill--single-line:active {
  transform: translateY(0);
  box-shadow:
    inset 0 5px 10px rgba(0, 0, 0, 0.16),
    inset 3px 0 7px rgba(0, 0, 0, 0.08),
    inset 0 -2px 6px rgba(255, 255, 255, 0.85);
}

#contact .contact-hero a.btn-pill.btn-pill--section.btn-pill--single-line:active {
  transform: translateY(0);
  box-shadow:
    inset 0 5px 10px rgba(0, 0, 0, 0.16),
    inset 3px 0 7px rgba(0, 0, 0, 0.08),
    inset 0 -2px 6px rgba(255, 255, 255, 0.85);
}

/* 12-col shell: copy spans 6 · visual spans 6 */
.matching-split {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 2.5rem;
  align-items: center;
}

.matching-copy {
  grid-column: span 6;
  color: var(--white);
}

.matching-copy h2 {
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  font-size: var(--fs-h2-hero);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
}

.matching-copy p {
  margin: 0 0 1rem;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 400;
}

.matching-pull {
  margin: 0 0 0 !important;
  padding-top: 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white) !important;
  opacity: 0.98;
}

.matching-pull em {
  font-style: italic;
}

.matching-visual {
  grid-column: span 6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.matching-puzzle-img {
  width: min(100%, clamp(280px, 42vw, 560px));
  height: auto;
  max-width: min(100%, 560px);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.14))
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.08));
}

@media (max-width: 991px) {
  .matching-split {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .matching-copy {
    grid-column: 1 / -1;
    text-align: center;
    order: 0;
  }

  .matching-visual {
    grid-column: 1 / -1;
    order: 1;
  }
}

@media (min-width: 992px) {
  .matching-visual {
    justify-content: flex-end;
  }
}

/* —— Section 5: Three ways to chat (white, icons left, copy right) —— */
.section-chat-modes {
  padding: var(--section-y) 0;
}

/* Illustration + copy: 6 / 6 columns */
.chat-modes-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: center;
}

.chat-modes-icons {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.chat-modes-icons--composite {
  align-items: center;
  justify-content: center;
}

.chat-modes-composite-img {
  width: 100%;
  max-width: min(100%, 560px);
  height: auto;
  display: block;
  margin-inline: auto;
}

/* Title + CTA flush right; intro + list full width, text left */
.chat-modes-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.chat-modes-copy h2 {
  align-self: flex-end;
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  max-width: min(100%, 34rem);
  text-align: right;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--orange-chat-modes);
}

.chat-modes-body {
  width: 100%;
  align-self: stretch;
  text-align: left;
}

.chat-modes-intro {
  margin: 0 0 1.25rem;
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: #777777;
}

.chat-modes-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.chat-modes-list li {
  margin-bottom: 0.85rem;
  font-size: var(--fs-lead);
  line-height: 1.65;
}

.chat-modes-list li:last-child {
  margin-bottom: 0;
}

.chat-modes-list__title {
  font-weight: 700;
  color: #555555;
}

.chat-modes-list__sep {
  font-weight: 700;
  color: #555555;
}

.chat-modes-list__desc {
  font-weight: 400;
  color: #777777;
}

@media (max-width: 991px) {
  .chat-modes-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .chat-modes-icons {
    align-items: center;
    margin-inline: auto;
  }

  .chat-modes-composite-img {
    max-width: min(100%, 420px);
  }

  .chat-modes-copy {
    text-align: center;
    align-items: center;
  }

  .chat-modes-body {
    text-align: center;
  }

  .chat-modes-copy h2 {
    align-self: center;
    text-align: center;
    max-width: none;
  }

  .section-chat-modes a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--story-solid {
    align-self: center;
  }
}

/* —— Section 6: Final CTA (full-bleed warm orange, centered, Figma) —— */
.section-cta-final {
  background: var(--orange-cta-warm);
  padding: clamp(4.25rem, 11vw, 7.5rem) 0;
  /* Full-section inner shadow (recessed band) */
  box-shadow:
    inset 0 48px 96px -48px rgba(0, 0, 0, 0.14),
    inset 0 -48px 96px -48px rgba(0, 0, 0, 0.1),
    inset 0 0 120px rgba(0, 0, 0, 0.06);
}

.cta-final-inner {
  width: 100%;
  max-width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
  text-align: center;
}

.cta-final-title {
  margin: 0 auto clamp(1.25rem, 2.8vw, 2rem);
  max-width: 52rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.2vw, 4.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.cta-final-subtitle {
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  max-width: min(100%, 40rem);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--white);
  text-wrap: balance;
}

.cta-final-lead {
  margin: 0 auto clamp(2.25rem, 4.8vw, 3rem);
  max-width: 42rem;
  font-size: var(--fs-lead);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
}

.cta-final-lead strong {
  font-weight: 700;
  color: var(--white);
}

/* White CTA on orange — large radius, recessed inner shadow (inset) */
.section-cta-final a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--cta-final {
  margin-top: 0;
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  height: 70px;
  min-height: 70px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  color: var(--orange-cta-warm);
  box-shadow:
    inset 0 4px 7px rgba(0, 0, 0, 0.12),
    inset 4px 0 8px rgba(0, 0, 0, 0.06),
    inset 0 -3px 8px rgba(255, 255, 255, 0.9);
}

.section-cta-final a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--cta-final:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.14),
    inset 4px 0 9px rgba(0, 0, 0, 0.07),
    inset 0 -3px 10px rgba(255, 255, 255, 0.95);
  color: var(--orange-cta-warm);
  text-decoration: none;
}

.section-cta-final a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--cta-final:active {
  transform: translateY(0);
  box-shadow:
    inset 0 5px 10px rgba(0, 0, 0, 0.16),
    inset 3px 0 7px rgba(0, 0, 0, 0.08),
    inset 0 -2px 6px rgba(255, 255, 255, 0.85);
}

.section-cta-final a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--cta-final:focus-visible {
  outline-color: #ffffff;
}

@media (max-width: 991px) {
  .section-cta-final a.btn-pill.btn-pill--section.btn-pill--single-line.btn-pill--cta-final {
    width: min(100%, 202px);
    max-width: 202px;
    margin-inline: auto;
    display: inline-flex;
    justify-content: center;
  }
}

/* —— Why block —— */
.why-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.why-block h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.25;
}

.why-block .emerald-icon {
  width: 100px;
  height: 100px;
  margin: 0;
}

.why-body {
  text-align: left;
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.65;
}

.why-body p {
  margin: 0 0 1rem;
}

/* “Why Behind Emerald Chat” — full-bleed orange, centered white copy (slide 8 reference) */
.section-why-behind {
  background: #f39233;
  color: var(--white);
  padding: var(--section-y-md) 0;
  /* Full-section inner depth (Figma: soft inset, stronger toward top edge) */
  box-shadow:
    inset 0 22px 40px -20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 32px -24px rgba(0, 0, 0, 0.1);
}

/* Same centered shell + light inset as #faq */
#brief_why .container {
  width: 100%;
  max-width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}

.section-why-behind .why-block {
  width: 100%;
  max-width: min(100%, var(--max));
  margin: 0 auto;
}

.section-why-behind .why-block h2 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  max-width: min(100%, 34rem);
}

.section-why-behind .why-block .emerald-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 12vw, 130px);
  height: clamp(96px, 12vw, 130px);
  margin: 0 auto clamp(0.75rem, 2vw, 1.25rem);
  padding: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.section-why-behind .emerald-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.section-why-behind .why-body {
  text-align: start;
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--fs-lead);
  line-height: 1.65;
  width: 100%;
  /* Wider copy column than the heading */
  max-width: min(100%, 62rem);
  margin-inline: auto;
}

.section-why-behind .why-body p {
  margin: 0 0 1.35rem;
}

.section-why-behind .why-body p:last-child {
  margin-bottom: 0;
}

.section-why-behind .why-body strong {
  font-weight: 700;
  color: inherit;
}

/* —— FAQ (Figma: white band, centered column ~800px, airy vertical rhythm) —— */
.section-faq {
  padding: var(--section-y) 0;
}

/* Centered flex column; copy column narrower than full --max for readability */
#faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}

#faq h2.section-title {
  color: var(--orange-faq-heading);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  max-width: min(100%, 45rem);
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  width: 100%;
  max-width: min(100%, 45rem);
  margin-inline: auto;
}

.faq-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-align: start;
  width: 100%;
  max-width: 45rem;
}

.faq-item h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.125rem, 2.4vw, 1.25rem);
  font-weight: 700;
  color: #444444;
  line-height: 1.4;
  text-align: center;
}

.faq-item p {
  margin: 0;
  color: #777777;
  font-size: var(--fs-body);
  line-height: 1.75;
  max-width: 45rem;
}

/* —— Contact (vertical top → bottom: cream → orange, one band with footer) —— */
.section-contact {
  padding: 0;
  border-top: none;
  background: linear-gradient(
    to bottom,
    var(--contact-grad-from) 0%,
    #ffe8cf 22%,
    #ffd19a 48%,
    #ffb04d 72%,
    var(--contact-grad-to) 100%
  );
  box-shadow: 0 14px 36px -18px rgba(100, 42, 8, 0.2);
  font-family: var(--font-contact-band);
}

/* Same centered shell + light inset as #faq / #brief_why */
#contact .container {
  width: 100%;
  max-width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}

.contact-hero {
  background: transparent;
}

/* Copy left / image right (gradient is top→bottom across the band) */
.contact-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 5vw, 6.5rem);
  align-items: end;
}

.contact-hero-copy {
  align-self: center;
}

.contact-hero-title {
  margin: 0;
  padding: 0;
  max-width: 34rem;
  font-family: var(--font-contact-band);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--orange-brand);
}

.contact-hero-copy p {
  margin: 0 0 1.05rem;
  color: var(--contact-body-brown);
  font-family: var(--font-contact-band);
  font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.2rem);
  line-height: 1.65;
  max-width: 40rem;
  font-weight: 600;
}

.contact-hero-copy p:last-of-type {
  margin-bottom: 0;
}

.contact-hero-copy p strong {
  font-weight: 700;
    max-width: 40rem;
  color: var(--contact-heading-chocolate);
}

.contact-hero-visual {
  min-width: 0;
  display: flex;
  align-items: flex-end; /* 🔥 baseline bottom */
  justify-content: flex-end;
  overflow: visible; /* 🔥 allow overflow */
}
.contact-hero-visual img {
  width: clamp(600px, 48vw, 900px); /* 🔥 controls size */
  height: auto;

  max-width: none;
  max-height: none;

  margin-left: auto;
  margin-right: 0;

  display: block;

  object-fit: contain;
  object-position: bottom right;

  /* keep your fade */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 48%,
    rgba(0, 0, 0, 0.92) 64%,
    rgba(0, 0, 0, 0.4) 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 48%,
    rgba(0, 0, 0, 0.92) 64%,
    rgba(0, 0, 0, 0.4) 82%,
    transparent 100%
  );

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (min-width: 992px) {
  #contact .contact-hero-visual img {
    transform: scale(1.2); /* 🔥 grows UPWARD */
    transform-origin: bottom right;
  }
}

@media (max-width: 991px) {
  .contact-hero-split {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    text-align: center;
  }

  .contact-hero-title {
    margin-inline: auto;
  }

  .contact-hero-copy p {
    margin-inline: auto;
  }

  .contact-hero-visual {
    order: -1;
  }

  .contact-hero-visual img {
    margin-left: auto;
    margin-right: auto;
    height: clamp(360px, 72vh, 940px);
  }

  #contact .contact-hero a.btn-pill.btn-pill--section.btn-pill--single-line {
    width: min(100%, 202px);
    max-width: 202px;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    justify-content: center;
  }
}

/* —— Small screens: contain overflow + fluid type (768px+ matches prior layout) —— */
@media (max-width: 991px) {
  html,
  body {
    overflow-x: clip;
  }

  :root {
    /* Section “hero” headings: smaller on phones, same cap as desktop floor */
    --fs-h2-hero: clamp(1.5rem, 5vw + 0.98rem, 3.375rem);
    --fs-body: clamp(1rem, 3.8vw, 1.4rem);
  }

  main {
    overflow-x: clip;
  }

  #faq h2.section-title,
  .contact-hero-title {
    font-size: clamp(1.75rem, 6vw + 0.4rem, 3.35rem);
    overflow-wrap: break-word;
  }

  .standout-copy,
  .standout-visual,
  .omegle-story-copy,
  .omegle-story-visual,
  .matching-copy,
  .matching-visual,
  .chat-modes-copy,
  .chat-modes-icons,
  .contact-hero-copy,
  .contact-hero-visual {
    min-width: 0;
  }

  p,
  li,
  .faq-item h3 {
    overflow-wrap: break-word;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    --hero-icon-group-right: -70px;
    --hero-icon-arrow-left: -70px;
  }
}

@media (max-width: 380px) {
  .hero-visual {
    --hero-icon-group-right: -44px;
    --hero-icon-arrow-left: -44px;
  }
}

/* —— Site chrome (header / footer) —— */
.site-top-accent {
  width: 100%;
  /* background: var(--orange-brand); */
  flex-shrink: 0;
}

.site-header {
  background: var(--white);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 64px;
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.site-header__menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 56px;
  height: 42px;
}

.site-header__menu-bar {
  display: block;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: var(--orange-brand, #fe8215);
}

.site-header__menu:hover {
  background: rgba(254, 130, 21, 0.08);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
}

.site-footer {
  position: relative;
  margin-top: -1px;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem;
  text-align: center;
  color: #ffffff;
  --footer-orange: #fe8215;
  --footer-shadow-warm: 160, 52, 0;
  background-color: var(--footer-orange);
  background-image:
    linear-gradient(
      180deg,
      rgba(var(--footer-shadow-warm), 0.36) 0%,
      rgba(210, 95, 28, 0.16) 26px,
      transparent 50px
    ),
    linear-gradient(
      180deg,
      #e86808 0%,
      #ee7410 12px,
      #f47a12 22px,
      var(--footer-orange) 40px,
      var(--footer-orange) 100%
    );
  box-shadow: inset 0 22px 40px -12px rgba(var(--footer-shadow-warm), 0.36);
}

/* Footer inside last section: same gradient, no shadow */
.section-contact .site-footer--in-band {
  margin-top: 0;
  background: none;
  background-image: none;
  background-color: transparent;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 1.25rem clamp(2rem, 5vw, 3rem);
  box-shadow: none;
  font-family: var(--font-contact-band);
}

.section-contact .site-footer--in-band .site-footer__copy,
.section-contact .site-footer--in-band .site-footer__nav a {
  font-family: var(--font-contact-band);
}

.section-contact .site-footer--in-band .site-footer__nav a {
  font-weight: 600;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
}

.site-footer__copy {
  margin: 0 auto;
  max-width: 52rem;
  font-size: clamp(0.78rem, 1.85vw, 0.9rem);
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
}

.site-footer__brand-link {
  color: #ffffff;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.site-footer__brand-link:hover {
  color: #ffffff;
  text-decoration-thickness: 2px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.15rem;
  margin-top: clamp(1rem, 2.8vw, 1.45rem);
  margin-bottom: 0;
}

.site-footer__nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.site-footer__nav a:hover {
  color: #ffffff;
  text-decoration-thickness: 2px;
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: clamp(0.78rem, 1.85vw, 0.9rem);
  user-select: none;
  padding: 0 0.15rem;
  text-decoration: none;
}

@media (max-width: 991px) {
  .hero-banner {
    flex-direction: column;
  }

  .hero-ctas {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    order: -1;
    max-width: min(100%, 360px);
  }

  .standout-copy,
  .matching-copy,
  .cta-final-inner {
    text-align: center;
  }

  .standout-features > li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .standout-item-text {
    align-items: center;
  }

  .btn-pill.btn-pill--section {
    margin-inline: auto;
  }
}

/* lg+ — lock layout & type to reference proportions */
@media (min-width: 992px) {
  :root {
    --max: 1200px;
    --fs-h1: 3.25rem;
    --fs-h2-hero: 2.875rem;
    --fs-hero-lead: 1.25rem;
    --fs-body: 1.125rem;
    --fs-lead: 1.125rem;
    --fs-btn: 1.0625rem;
    --section-y: clamp(3.25rem, 5vw, 4.5rem);
  }

  .hero-banner {
    flex-wrap: nowrap;
    padding: 3rem 3.25rem;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 34rem;
  }

  .hero-visual {
    max-width: min(100%, 420px);
  }

  .hero-cta-row {
    padding: 0;
    gap: 0.75rem 1.15rem;
  }

  .hero-cta-row .btn-hero {
    width: 190px;
    min-width: 190px;
    max-width: 190px;
    height: 80px;
    min-height: 80px;
    font-size: 1.25rem;
    font-weight: 900;
  }

  .standout-item-text {
    font-size: 1.125rem;
  }

  #faq h2.section-title {
    font-size: 3.35rem;
  }

  .contact-hero-title {
    font-size: 3.35rem;
  }

  .standout-ic img {
    width: 140px;
    height: 140px;
  }

  .standout-ic {
    width: 140px;
    height: 140px;
  }
}
