/* =====================================================================
   ReachIQ, Brand-aligned Design System
   Coral primary (#FF4848) · Ink #1E2939 · Minimalist sans · No serif italics
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Ink scale, exact Figma values */
  --ink:      #222124;   /* primary text */
  --ink-1:    #1E2939;   /* deep brand ink */
  --ink-2:    #5A5C60;   /* body text */
  --ink-3:    #5F5F61;   /* secondary text */
  --ink-4:    #97A0AF;   /* muted text */
  --ink-5:    #B3BDC9;   /* faint text / disabled */

  /* Surfaces */
  --paper:        #FFFFFF;
  --paper-warm:   #FAF7F2;
  --paper-cool:   #F6F6F6;
  --paper-soft:   #ECEFF1;
  --line:         #E6E6E6;
  --line-soft:    #EFEFEF;

  /* Brand · Coral (the only accent), exact Figma */
  --coral:        #FF4848;
  --coral-hover:  #E63838;
  --coral-deep:   #C1185A;
  --coral-tint:   #FFE6E6;
  --coral-soft:   #FFF2F2;
  --coral-soft-2: #FFD9D9;

  /* Secondary signal colors, exact Figma channel palette */
  --blue:         #608DF1;
  --blue-tint:    #E5EDFF;
  --purple:       #7B5CDB;
  --purple-tint:  #ECE5FA;
  --green:        #5EC37F;
  --green-tint:   #DDF5E4;
  --amber:        #FFC564;
  --amber-tint:   #FFF1D5;
  --teal:         #1EC3D0;
  --teal-tint:    #D6F4F6;
  --pink:         #F07DB7;
  --pink-tint:    #FCE2EE;
  --rose:         #E1267C;
  --rose-tint:    #FCE3EE;

  --good:         var(--green);
  --good-tint:    var(--green-tint);
  --warn:         var(--amber);
  --warn-tint:    var(--amber-tint);
  --danger:       #DC2626;
  --danger-tint:  #FEE2E2;

  /* Type, Inter only */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --r-xs: 4px; --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-2xl: 24px;

  /* Elevation, matches Figma shadow stack */
  --sh-1: 0 1px 2px rgba(24,24,28,.06);
  --sh-2: 0 4px 12px rgba(24,24,28,.08), 0 1px 3px rgba(24,24,28,.04);
  --sh-3: 0 12px 28px rgba(24,24,28,.10), 0 2px 6px rgba(24,24,28,.04);
  --sh-4: 0 28px 56px rgba(24,24,28,.12), 0 8px 16px rgba(24,24,28,.06);
  --sh-coral: 0 8px 20px rgba(255,72,72,.22);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01" on, "cv11" on;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  padding: 4px 0;
}
.nav .nav-logo-full,
.nav-logo .nav-logo-full {
  height: 28px; width: auto; display: block;
  overflow: visible !important;
}
.nav { padding-top: 4px; padding-bottom: 4px; }
.nav-items { display: flex; gap: 28px; align-items: center; }
.nav-item {
  font-size: 14px; color: var(--ink-3);
  font-weight: 500; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .15s;
  letter-spacing: -0.005em;
  padding: 6px 0;
}
.nav-item:hover { color: var(--ink); }
.nav-item .chev { width: 9px; height: 9px; opacity: .55; transform: translateY(1px); transition: transform .2s ease; }
.nav-item-wrap:hover .nav-item .chev,
.nav-item-wrap:focus-within .nav-item .chev { transform: translateY(1px) rotate(180deg); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-signin { font-size: 14px; color: var(--ink-3); cursor: pointer; }
.nav-signin:hover { color: var(--ink); }
@media (max-width: 920px) { .nav-items { display: none; } }

/* ---------- Megamenu ---------- */
.nav-item-wrap { position: relative; }
.nav-mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-4);
  padding: 24px;
  z-index: 200;
  transition: opacity .22s ease, transform .22s ease;
}
.nav-item-wrap::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0; height: 16px;
}
.nav-item-wrap:hover .nav-mega,
.nav-item-wrap:focus-within .nav-mega,
.nav-mega:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega.mega-2col { display: grid; grid-template-columns: 280px 320px; gap: 28px; min-width: 600px; }
.nav-mega.mega-1col { display: block; min-width: 280px; }
.mega-col h6 {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-4); font-weight: 700;
  margin: 0 0 14px;
  padding: 0 10px;
}
.mega-col a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px; align-items: flex-start;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background-color .15s ease;
}
/* Solutions column: single-row layout (icon + title only, descriptions hidden).
   Override the base grid with a flex row so the icon vertically centers
   against the title's actual line-height, not a fixed-height grid track. */
.mega-col.mega-col-simple a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mega-col.mega-col-simple a .mega-ic {
  width: auto;
  height: auto;
  flex: 0 0 auto;
}
.mega-col.mega-col-simple a .mega-ic .ms {
  line-height: 1;
  display: block;
  /* Optical nudge: Material Symbols glyphs are drawn slightly below the
     bounding-box center compared to Inter's cap-height midline. */
  transform: translateY(-1px);
}
.mega-col.mega-col-simple a div > span { display: none; }
.mega-col.mega-col-simple a div { display: flex; align-items: center; }
/* Rows that have no description (e.g. Compare list) need title vertically
   centered against the icon, otherwise the b sits at the top of the row. */
.mega-col a:has(div > b:only-child) { align-items: center; }
.mega-col a:hover { background: var(--paper-cool); }
.mega-col a .mega-ic {
  width: 32px; height: 32px;
  background: transparent; color: var(--ink);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* Color variants intentionally neutralized for a monochrome nav.
   Classes (.blue, .green, .purple, .amber, .teal, .rose, .ink) are kept
   on the markup so we can reintroduce per-pillar accents later if needed. */
.mega-col a .mega-ic.blue,
.mega-col a .mega-ic.green,
.mega-col a .mega-ic.purple,
.mega-col a .mega-ic.amber,
.mega-col a .mega-ic.teal,
.mega-col a .mega-ic.rose,
.mega-col a .mega-ic.ink { background: transparent; color: var(--ink); border-color: transparent; }
.mega-col a b {
  display: block;
  color: var(--ink); font-weight: 600;
  font-size: 13.5px; letter-spacing: -0.01em;
  line-height: 1.3;
}
.mega-col a span {
  display: block;
  color: var(--ink-4); font-size: 12px;
  margin-top: 2px; line-height: 1.4;
}
.mega-col.mega-col-simple a b { font-size: 14px; }
.mega-foot {
  grid-column: 1 / -1;
  margin-top: 6px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: flex-end; align-items: center;
  gap: 16px;
  font-size: 12.5px; color: var(--ink-3);
}
/* "Browse everything" label dropped per design review. */
.mega-foot > span:first-child { display: none; }
.mega-foot .ml { color: var(--coral); font-weight: 600; display: inline-flex; gap: 4px; align-items: center; transition: gap .2s; }
.mega-foot .ml:hover { gap: 8px; }
@media (max-width: 920px) {
  .nav-mega { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  border: none; cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: transform .12s ease, background-color .15s, box-shadow .2s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-coral {
  background: var(--coral); color: #fff;
  box-shadow: var(--sh-coral);
}
.btn-coral:hover { background: var(--coral-hover); }
.btn-ink {
  background: var(--ink); color: #fff;
}
.btn-ink:hover { background: #2A3447; box-shadow: 0 6px 16px rgba(30,41,57,.2); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-quiet {
  background: #fff; color: var(--ink-2);
  border: 1px solid var(--line);
}
.btn-quiet:hover { background: var(--paper-cool); border-color: var(--ink-5); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 16px 30px; font-size: 16px; font-weight: 600; }

/* ---------- Sections ---------- */
.section {
  max-width: 1240px; margin: 0 auto;
  padding: 112px 32px;
}
.section-narrow { max-width: 1120px; }
.section .head { text-align: center; margin-bottom: 56px; }
.section .head .eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid var(--coral-tint);
}
.section .head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-weight: 600;
  margin: 0 auto 18px;
  max-width: 820px;
}
.section .head h2 em {
  font-style: normal;
  color: var(--coral);
}
.section .head p {
  font-size: 18px; color: var(--ink-3);
  max-width: 620px; margin: 0 auto;
  line-height: 1.55;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: 92px 32px 28px;
  text-align: center;
  max-width: 1180px; margin: 0 auto;
  isolation: isolate;
}
.hero-bg {
  /* Temporarily hidden so the homepage shows on plain white. */
  display: none;
}
.hero-bg::before {
  content: ""; position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,72,72,.18) 0%, transparent 60%);
  filter: blur(40px);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(30,41,57,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,57,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
  mask-image: radial-gradient(ellipse at top, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 0%, transparent 65%);
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
}
.hero-pill .tag {
  background: var(--coral); color: #fff;
  padding: 4px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-pill .arrow { color: var(--ink-4); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  line-height: .98;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
  display: block;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 620px; margin: 0 auto 38px;
  letter-spacing: -0.005em;
}
.hero-ctas {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap; justify-content: center;
}
.hero-micro {
  font-size: 13px; color: var(--ink-4);
  display: inline-flex; gap: 14px; align-items: center;
  flex-wrap: wrap; justify-content: center;
  letter-spacing: -0.005em;
}
.hero-micro .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-5); }
.hero-micro b { color: var(--ink-2); font-weight: 600; }

/* =====================================================================
   TRUST BAR
   ===================================================================== */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-cool);
  padding: 40px 32px;
  text-align: center;
}
.trust-lab {
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
  margin-bottom: 28px;
}
.trust-logos {
  display: flex; gap: 56px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.trust-logos svg { height: 22px; width: auto; color: var(--ink-3); opacity: .85; transition: opacity .2s, color .2s; }
.trust-logos svg:hover { opacity: 1; color: var(--ink); }

/* =====================================================================
   AI + HUMANS SPLIT
   ===================================================================== */
.split-section {
  background: linear-gradient(180deg, var(--paper-warm) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  position: relative;
}
@media (max-width: 880px) { .split-grid { grid-template-columns: 1fr; } }
.split-amp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 300; font-size: 28px;
  color: var(--coral);
  z-index: 2;
  box-shadow: var(--sh-2);
}
@media (max-width: 880px) { .split-amp { display: none; } }

.split-col {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 36px 34px;
  box-shadow: var(--sh-1);
}
.split-col .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 18px;
}
.split-col.ai .tag { background: var(--blue-tint); color: var(--blue); border: 1px solid #C6CCFF; }
.split-col.human .tag { background: var(--coral-soft); color: var(--coral-deep); border: 1px solid var(--coral-tint); }
.split-col h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  color: var(--ink); margin: 0 0 8px;
  letter-spacing: -0.025em; line-height: 1.18;
}
.split-col h3 em { font-style: normal; color: var(--coral); }
.split-col.ai h3 em { color: var(--blue); }
.split-col .sub { font-size: 14.5px; color: var(--ink-3); margin: 0 0 22px; }
.split-col ul { list-style: none; padding: 0; margin: 0; }
.split-col li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px; color: var(--ink-2);
}
.split-col li:first-child { border-top: none; }
.split-col li .ic {
  width: 32px; height: 32px;
  border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.split-col.ai .ic { background: var(--blue-tint); color: var(--blue); }
.split-col.human .ic { background: var(--coral-soft); color: var(--coral); }
.split-col li .ic svg { width: 16px; height: 16px; }
.split-col li b { display: block; color: var(--ink); font-weight: 600; font-size: 14.5px; margin-bottom: 3px; }
.split-col li span { color: var(--ink-3); font-size: 13.5px; line-height: 1.5; }

/* =====================================================================
   FEATURE SECTIONS (shared shell)
   ===================================================================== */
.feature {
  padding: 112px 32px;
  position: relative;
  border-top: 1px solid var(--line);
}
.feature.alt { background: var(--paper-cool); }
.feature.alt-warm { background: linear-gradient(180deg, var(--paper-warm), #fff); }
.feature-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: center;
}
.feature.reverse .feature-inner { grid-template-columns: 1.2fr 1fr; }
.feature.reverse .feature-text { grid-column: 2; grid-row: 1; }
.feature.reverse .feature-mockup { grid-column: 1; grid-row: 1; }
.feature.feature-balanced .feature-inner { grid-template-columns: 1.05fr 1fr; gap: 56px; }
@media (max-width: 940px) {
  .feature-inner, .feature.reverse .feature-inner, .feature.feature-balanced .feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature.reverse .feature-text, .feature.reverse .feature-mockup { grid-column: 1; grid-row: auto; }
}

.feat-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .04em;
  font-weight: 600; color: var(--coral);
  margin-bottom: 22px;
}
.feat-eyebrow .num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0;
  border: 1px solid var(--coral-tint);
  font-family: var(--font-mono);
}
.feat-eyebrow .lbl { letter-spacing: .14em; text-transform: uppercase; font-size: 11.5px; }

.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.08; letter-spacing: -0.035em;
  color: var(--ink); font-weight: 600;
  margin: 0 0 20px;
}
.feature-text h2 em { font-style: normal; color: var(--coral); }

.feature-stat {
  display: flex; align-items: center; gap: 18px;
  background: var(--ink); color: #fff;
  padding: 18px 22px;
  border-radius: var(--r-md);
  margin-bottom: 22px;
  position: relative; overflow: hidden;
}
.feature-stat::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,72,72,.4), transparent 60%);
  filter: blur(28px);
}
.feature-stat .v {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 600;
  letter-spacing: -0.04em; line-height: 1;
  color: #FFB3B3;
  flex-shrink: 0;
  position: relative;
}
.feature-stat .txt { font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.5; position: relative; }

.feat-lead {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-3); margin: 0 0 26px;
  letter-spacing: -0.005em;
}
.feat-benefits { list-style: none; padding: 0; margin: 0 0 30px; }
.feat-benefits li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  font-size: 14.5px; color: var(--ink-2);
  line-height: 1.55;
}
.feat-benefits li .chk {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  border: 1px solid var(--coral-tint);
}
.feat-benefits li .chk svg { width: 10px; height: 10px; }
.feat-benefits li b { color: var(--ink); font-weight: 600; }

.feat-cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--coral); font-weight: 600;
  font-size: 14.5px; cursor: pointer;
  letter-spacing: -0.005em;
  border-bottom: 1.5px solid var(--coral);
  padding-bottom: 1px;
  transition: gap .2s;
}
.feat-cta:hover { gap: 11px; }

/* Mockup frame */
.mock-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(30,41,57,.10), 0 8px 24px rgba(30,41,57,.05);
  overflow: hidden;
  position: relative;
}
.mock-chrome {
  background: linear-gradient(180deg, #f7f8fa, #f1f3f6);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  padding: 0 14px; gap: 6px; height: 36px;
  flex-shrink: 0;
}
.mock-chrome .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-chrome .r { background: #FF5F57; }
.mock-chrome .y { background: #FFBD2E; }
.mock-chrome .g { background: #27C93F; }
.mock-chrome .url {
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-4);
  display: flex; align-items: center; gap: 7px;
}
.mock-chrome .url svg { width: 11px; height: 11px; opacity: .6; }

/* =====================================================================
   PATHS
   ===================================================================== */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .paths { grid-template-columns: 1fr; } }
.path-card {
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--sh-4); }
.path-card.dfy { background: linear-gradient(165deg, #fff 0%, var(--paper-warm) 100%); border-color: var(--coral-tint); }
.path-card.tools { background: linear-gradient(165deg, #fff 0%, var(--paper-cool) 100%); }
.path-card .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 22px;
}
.path-card.dfy .tag { background: var(--coral-soft); color: var(--coral-deep); border: 1px solid var(--coral-tint); }
.path-card.tools .tag { background: var(--paper-soft); color: var(--ink-3); border: 1px solid var(--line); }
.path-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--ink); margin: 0 0 10px;
  line-height: 1.18;
}
.path-card h3 em { font-style: normal; color: var(--coral); }
.path-card .sub { font-size: 15px; color: var(--ink-3); margin: 0 0 26px; line-height: 1.5; }
.path-card ul { list-style: none; padding: 0; margin: 0 0 30px; }
.path-card li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 14.5px; color: var(--ink-2);
  line-height: 1.5;
}
.path-card li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 6.5L5 8.5L9 4' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.path-card .terms {
  font-size: 13px; color: var(--ink-4);
  margin-bottom: 16px; padding: 12px 14px;
  background: rgba(0,0,0,.025); border-radius: var(--r-sm);
}
.path-card .terms b { color: var(--ink); font-weight: 600; }
.path-card .btn { width: 100%; justify-content: center; padding: 14px; font-size: 14.5px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.t-card .metric {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--coral);
  margin-bottom: 12px;
  line-height: 1;
}
.t-card .metric span { font-size: 18px; color: var(--ink-4); font-weight: 500; }
.t-card .quote {
  font-size: 15.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.t-card .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.t-card .who img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--paper-cool);
}
.t-card .nm { font-size: 13.5px; }
.t-card .nm b { display: block; color: var(--ink); font-weight: 600; }
.t-card .nm span { color: var(--ink-4); font-size: 12.5px; }

/* =====================================================================
   INDUSTRIES (refined block lives below, near PROCESS)
   ===================================================================== */

/* =====================================================================
   PROCESS - colorful animated steps
   ===================================================================== */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; position: relative;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr 1fr; gap: 36px 24px; } }
.p-step {
  position: relative;
  opacity: 0; transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(0.32, 0.72, 0, 1);
}
.p-step[data-step="1"] { transition-delay: .05s; }
.p-step[data-step="2"] { transition-delay: .18s; }
.p-step[data-step="3"] { transition-delay: .31s; }
.p-step[data-step="4"] { transition-delay: .44s; }
.process.in-view .p-step { opacity: 1; transform: translateY(0); }

.p-track {
  position: relative;
  height: 64px;
  margin-bottom: 22px;
  display: flex; align-items: center;
}
.p-step::after {
  content: ""; position: absolute;
  top: 32px; left: 72px; right: -14px; height: 2px;
  background: var(--line);
  border-radius: 2px;
}
.p-step::before {
  content: ""; position: absolute;
  top: 32px; left: 72px; right: -14px; height: 2px;
  background: linear-gradient(90deg, var(--pc, var(--coral)), var(--pc-next, var(--coral)));
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: 2px;
  z-index: 1;
}
.p-step[data-step="1"] { --pc-next: #7B5CDB; }
.p-step[data-step="2"] { --pc-next: #FFC564; }
.p-step[data-step="3"] { --pc-next: #5EC37F; }
.p-step:last-child::after, .p-step:last-child::before { display: none; }
@media (max-width: 880px) {
  .p-step::after, .p-step::before { display: none; }
}
.process.in-view .p-step::before { animation: pfill 1.0s cubic-bezier(0.32, 0.72, 0, 1) forwards; }
.process.in-view .p-step[data-step="1"]::before { animation-delay: .55s; }
.process.in-view .p-step[data-step="2"]::before { animation-delay: .85s; }
.process.in-view .p-step[data-step="3"]::before { animation-delay: 1.15s; }
@keyframes pfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.p-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pc);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--pc) 32%, transparent),
              0 0 0 6px var(--pct);
  transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1), box-shadow .35s ease;
}
.p-num::after {
  content: ""; position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--pc);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .35s ease, transform .55s cubic-bezier(0.32, 0.72, 0, 1);
}
.process.in-view .p-step .p-num { animation: ppop .65s cubic-bezier(0.32, 0.72, 0, 1) backwards; }
.process.in-view .p-step[data-step="1"] .p-num { animation-delay: .2s; }
.process.in-view .p-step[data-step="2"] .p-num { animation-delay: .5s; }
.process.in-view .p-step[data-step="3"] .p-num { animation-delay: .8s; }
.process.in-view .p-step[data-step="4"] .p-num { animation-delay: 1.1s; }
.process.in-view .p-step .p-num::after { animation: pring 1.2s cubic-bezier(0.32, 0.72, 0, 1) forwards; }
.process.in-view .p-step[data-step="1"] .p-num::after { animation-delay: .35s; }
.process.in-view .p-step[data-step="2"] .p-num::after { animation-delay: .65s; }
.process.in-view .p-step[data-step="3"] .p-num::after { animation-delay: .95s; }
.process.in-view .p-step[data-step="4"] .p-num::after { animation-delay: 1.25s; }
@keyframes ppop {
  0%   { transform: scale(.4); opacity: 0; }
  60%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes pring {
  0%   { transform: scale(.7); opacity: 0; }
  40%  { transform: scale(1.05); opacity: .55; }
  100% { transform: scale(1.4); opacity: 0; }
}
.p-glyph { display: inline-flex; align-items: center; justify-content: center; }
.p-idx {
  position: absolute;
  top: -8px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--pc);
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--pc);
  letter-spacing: -0.02em;
}
.p-step:hover .p-num { transform: translateY(-3px) scale(1.05); }
.p-step h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em;
}
.p-step p { font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.55; }

/* =====================================================================
   INDUSTRIES (rebuilt) - vertical tabs + detail panel
   ===================================================================== */
.ind-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 18px;
  box-shadow: var(--sh-2);
}
@media (max-width: 960px) { .ind-wrap { grid-template-columns: 1fr; padding: 14px; } }

.ind-tabs {
  display: flex; flex-direction: column; gap: 6px;
}
.ind-tab {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.ind-tab:hover { background: var(--paper-cool); }
.ind-tab.active {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(30,41,57,.06);
}
.ind-tab.active::before {
  content: ""; position: absolute;
  left: -1px; top: 14px; bottom: 14px;
  width: 3px;
  background: var(--ic-fg);
  border-radius: 0 3px 3px 0;
}
.ind-tab { position: relative; }
.ind-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ic-bg);
  color: var(--ic-fg);
  border: 1px solid color-mix(in srgb, var(--ic-fg) 18%, transparent);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.ind-tab.active .ind-ic { transform: scale(1.05); }
.ind-ic svg { width: 22px; height: 22px; }
.ind-tab-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ind-tab-text b {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.ind-tab-text span {
  font-size: 12.5px; color: var(--ink-3);
  letter-spacing: -0.005em;
}
.ind-tab-arrow {
  color: var(--ink-5);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease, color .3s ease;
}
.ind-tab.active .ind-tab-arrow { color: var(--ic-fg); transform: translateX(2px); }

.ind-panel-wrap {
  background: linear-gradient(180deg, var(--paper-cool) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  min-height: 420px;
}
@media (max-width: 960px) { .ind-panel-wrap { padding: 22px; min-height: 0; } }

.ind-panel {
  display: none;
  animation: indFade .45s cubic-bezier(0.32, 0.72, 0, 1);
}
.ind-panel.active { display: block; }
@keyframes indFade {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.ind-chip {
  display: inline-flex; align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ic-bg);
  color: var(--ic-fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--ic-fg) 22%, transparent);
}
.ind-panel-head h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 12px;
}
.ind-panel-head p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 560px;
}

.ind-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 600px) { .ind-metrics { grid-template-columns: 1fr; } }
.ind-metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; flex-direction: column;
}
.ind-metric b {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ic-fg);
  margin-bottom: 4px;
}
.ind-metric span {
  font-size: 12px;
  color: var(--ink-3);
}

.ind-msg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.ind-msg-head {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.ind-msg-head .ms { color: var(--ic-fg); }
.ind-msg-body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
}

.ind-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ic-fg);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: gap .2s ease;
}
.ind-cta:hover { gap: 10px; }

/* hide the old card styles (kept upstream as legacy) */
.industries-grid { display: none; }

/* =====================================================================
   PROCESS (end of new block)
   ===================================================================== */

/* =====================================================================
   INDUSTRIES — refined, no em dashes, more finesse
   ===================================================================== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: 1fr; } }
.ind-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative; cursor: pointer; overflow: hidden;
  transition: transform .3s cubic-bezier(0.32, 0.72, 0, 1), border-color .25s, box-shadow .3s;
}
.ind-card::before {
  content: ""; position: absolute;
  inset: -40% -30% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.ind-card::after {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1);
}
.ind-card:hover {
  transform: translateY(-4px); border-color: transparent;
  box-shadow: 0 16px 40px rgba(30,41,57,.10), 0 4px 12px rgba(30,41,57,.04);
}
.ind-card:hover::after { transform: scaleX(1); }
.ind-card:hover::before { opacity: 1; }
.ind-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--coral-soft); color: var(--coral);
  margin-bottom: 18px;
  border: 1px solid var(--coral-tint);
  position: relative; z-index: 1;
  transition: transform .3s cubic-bezier(0.32, 0.72, 0, 1);
}
.ind-card:hover .ic { transform: scale(1.06) rotate(-3deg); }
.ind-card.staffing .ic   { background: var(--blue-tint);   color: var(--blue);   border-color: #C6CCFF; }
.ind-card.agencies .ic   { background: var(--green-tint);  color: var(--green);  border-color: #BFEFD3; }
.ind-card.fintech .ic    { background: var(--amber-tint);  color: var(--amber);  border-color: #F4DCA8; }
.ind-card.healthtech .ic { background: var(--teal-tint);   color: var(--teal);   border-color: #BDE1E8; }
.ind-card.it .ic         { background: var(--purple-tint); color: var(--purple); border-color: #DACFEF; }
.ind-card .ic svg { width: 22px; height: 22px; }
.ind-card h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  color: var(--ink); margin: 0 0 8px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.ind-card p {
  font-size: 13.5px; color: var(--ink-3);
  margin: 0 0 18px; line-height: 1.55;
  position: relative; z-index: 1;
}
.ind-card .stats {
  display: flex; gap: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  position: relative; z-index: 1;
}
.ind-card .st b {
  display: block;
  font-family: var(--font-display);
  font-size: 17px; color: var(--ink);
  font-weight: 600; letter-spacing: -0.025em;
  white-space: nowrap;
  line-height: 1.1;
}
.ind-card .st span {
  font-size: 11px; color: var(--ink-4);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.ind-card .arrow {
  position: absolute; top: 28px; right: 26px;
  color: var(--ink-5); transition: transform .3s, color .25s;
  z-index: 1;
}
.ind-card:hover .arrow { transform: translateX(6px); color: var(--coral); }

/* =====================================================================
   END PROCESS + INDUSTRIES
   ===================================================================== */

/* =====================================================================
   MEET YOUR SDR (dark)
   ===================================================================== */
.sdr-section {
  background: var(--ink);
  color: rgba(255,255,255,.9);
  padding: 112px 32px;
  position: relative; overflow: hidden;
}
.sdr-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.sdr-bg::before {
  content: ""; position: absolute;
  right: -180px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,72,72,.32), transparent 60%);
  filter: blur(40px);
}
.sdr-bg::after {
  content: ""; position: absolute;
  left: -120px; bottom: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,92,219,.18), transparent 60%);
  filter: blur(40px);
}
.sdr-section .inner { max-width: 1240px; margin: 0 auto; position: relative; }
.sdr-section .head .eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFB3B3;
  background: rgba(255,72,72,.18);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,72,72,.3);
}
.sdr-section .head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  font-weight: 600;
  margin: 0 0 18px;
}
.sdr-section .head h2 em { font-style: normal; color: var(--coral); }
.sdr-section .head { text-align: center; margin-bottom: 56px; }
.sdr-section .head p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 640px; margin: 0 auto;
}

.sdr-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-bottom: 44px;
}
@media (max-width: 1080px) { .sdr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .sdr-grid { grid-template-columns: 1fr 1fr; } }
.sdr-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  transition: background .25s, transform .25s, border-color .25s;
  backdrop-filter: blur(20px);
}
.sdr-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
}
.sdr-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  display: block;
}
.sdr-card .nm {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: #fff; margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.sdr-card .role { font-size: 12.5px; color: rgba(255,255,255,.6); }
.sdr-card .meta {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
  display: flex; justify-content: center; gap: 10px;
  font-family: var(--font-mono);
}
.sdr-card .meta b { color: #fff; font-family: var(--font-display); font-weight: 600; }

.sdr-promise {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
}
.sdr-promise p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin: 0; line-height: 1.55;
  letter-spacing: -0.005em;
}
.sdr-promise p b { color: #fff; font-weight: 600; }

/* =====================================================================
   INTEGRATIONS
   ===================================================================== */
.integ-toggle {
  display: inline-flex;
  background: var(--paper-cool);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px; gap: 4px;
  margin: 0 auto 44px;
}
.integ-toggle-wrap { text-align: center; }
.integ-toggle-btn {
  background: transparent; border: none;
  padding: 10px 22px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-3); cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  letter-spacing: -0.005em;
}
.integ-toggle-btn.active { background: var(--ink); color: #fff; box-shadow: var(--sh-2); }
.integ-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 880px) { .integ-grid { grid-template-columns: repeat(4, 1fr); } }
.integ-tile {
  aspect-ratio: 1;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 11.5px; font-weight: 500;
  color: var(--ink-2);
  padding: 10px 8px; gap: 8px;
  transition: transform .2s, border-color .2s, opacity .25s, filter .25s, box-shadow .2s;
  text-align: center;
}
.integ-tile svg { width: 26px; height: 26px; }
.integ-tile:hover { transform: translateY(-3px); border-color: var(--ink-5); box-shadow: var(--sh-2); }
.integ-tile.center {
  background: var(--coral); color: #fff;
  border-color: var(--coral);
  box-shadow: var(--sh-coral);
}
.integ-tile.dim { opacity: 0.35; filter: grayscale(80%); }
.integ-callout {
  text-align: center;
  font-size: 14.5px; color: var(--ink-3);
  max-width: 720px; margin: 36px auto 0;
  line-height: 1.55;
}
.integ-callout b { color: var(--ink); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--ink-5); }
.faq-item.open { box-shadow: var(--sh-2); border-color: var(--ink-5); }
.faq-q {
  width: 100%; background: none; border: none;
  cursor: pointer; padding: 20px 24px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 18px;
  font-size: 15.5px; font-weight: 600;
  color: var(--ink); text-align: left;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}
.faq-q .plus {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s, color .25s;
  border: 1px solid var(--coral-tint);
}
.faq-q .plus svg { width: 12px; height: 12px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a > div {
  padding: 0 24px 22px;
  font-size: 14.5px; line-height: 1.65;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.faq-a > div b { color: var(--ink); font-weight: 600; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-item.open .faq-q .plus {
  background: var(--coral); color: #fff;
  transform: rotate(45deg); border-color: var(--coral);
}

/* =====================================================================
   RESOURCES
   ===================================================================== */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.res-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.res-preview {
  aspect-ratio: 16/9;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
  padding: 28px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.res-preview::before {
  content: ""; position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.62) 100%);
}
.res-preview .tag {
  font-size: 10.5px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  align-self: flex-start; margin-bottom: 16px;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,.18);
}
.res-preview h4 {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.18;
  margin: 0; font-weight: 600;
  position: relative; z-index: 1;
  letter-spacing: -0.025em;
}
.res-card.small .res-preview h4 { font-size: 17px; }
.res-meta {
  padding: 16px 20px;
  font-size: 12.5px; color: var(--ink-4);
  display: flex; justify-content: space-between;
}
.res-meta b { color: var(--ink-2); font-weight: 600; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta {
  background: linear-gradient(135deg, #1E2939 0%, #2A3447 100%);
  color: #fff;
  padding: 96px 48px;
  border-radius: var(--r-2xl);
  text-align: center;
  margin: 80px 32px;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: ""; position: absolute;
  inset: -40% -20% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,72,72,.5), transparent 60%);
  filter: blur(30px);
  z-index: -1;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.final-cta h2 em { font-style: normal; color: #FFA8A8; }
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 32px;
}
.final-cta .ctas {
  display: inline-flex; gap: 12px;
  align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.ghost-light {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  color: #fff; padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,.28);
  cursor: pointer; font-family: inherit;
  transition: background .2s, border-color .2s;
}
.ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 72px 32px 40px;
}
.foot-inner { max-width: 1240px; margin: 0 auto; }
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 40px; margin-bottom: 56px;
}
@media (max-width: 880px) { .foot-top { grid-template-columns: 1fr 1fr; } }
.foot-top h6 {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  margin: 0 0 18px;
}
.foot-top ul { list-style: none; padding: 0; margin: 0; }
.foot-top li {
  padding: 6px 0;
  font-size: 13.5px;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.foot-top li:hover { color: #fff; }
.foot-brand {
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 9px;
  color: #fff;
}
.foot-logo-full { height: 30px; width: auto; display: block; }
.foot-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 260px;
}
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.foot-bottom .links { display: inline-flex; gap: 20px; }
.foot-bottom .links a { cursor: pointer; }
.foot-bottom .links a:hover { color: #fff; }

/* ---------- Scroll progress ---------- */
.scroll-prog {
  position: fixed; right: 18px; top: 50%;
  transform: translateY(-50%); z-index: 50;
  width: 3px; height: 220px;
  background: var(--line);
  border-radius: 99px; overflow: hidden;
  opacity: 0; transition: opacity .3s;
}
.scroll-prog.show { opacity: 1; }
.scroll-prog::after {
  content: ""; display: block;
  width: 100%; height: var(--p, 0%);
  background: var(--coral);
  border-radius: 99px;
  transition: height .12s;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* =====================================================================
   MATERIAL SYMBOLS (Rounded), what the ReachIQ platform actually uses
   ===================================================================== */
.ms {
  font-family: 'Material Symbols Rounded';
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  /* Hidden until the icon font is ready (or the 3s failsafe in header.php
     fires). Without this the raw ligature text ("grid_view", "manage_search",
     "build_circle", etc.) flashes in dashboard mockups before the font lands. */
  visibility: hidden;
  user-select: none;
  vertical-align: middle;
}
html.fonts-loaded .ms { visibility: visible; }
.ms.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.ms.s-12 { font-size: 12px; }
.ms.s-14 { font-size: 14px; }
.ms.s-16 { font-size: 16px; }
.ms.s-18 { font-size: 18px; }
.ms.s-20 { font-size: 20px; }
.ms.s-22 { font-size: 22px; }
.ms.s-24 { font-size: 24px; }
.ms.s-28 { font-size: 28px; }
.ms.s-32 { font-size: 32px; }

/* =====================================================================
   INTERIOR PAGE HERO (smaller than homepage hero, used on every other page)
   ===================================================================== */
.page-hero {
  position: relative;
  padding: 88px 32px 56px;
  text-align: center;
  max-width: 1180px; margin: 0 auto;
  isolation: isolate;
}
.page-hero.left { text-align: left; }
.page-hero.left .page-hero-sub { margin-left: 0; }
.page-hero.left .page-hero-ctas { justify-content: flex-start; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid var(--coral-tint);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 22px;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}
.page-hero.left h1 { margin-left: 0; }
.page-hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.page-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 660px; margin: 0 auto 30px;
  letter-spacing: -0.005em;
}
.page-hero-ctas {
  display: inline-flex; align-items: center; gap: 12px;
  flex-wrap: wrap; justify-content: center;
}
.page-hero-bg {
  /* Reach above the breadcrumb and nav so the same gradient covers the top of the page. */
  position: absolute; inset: -200px 0 0 0;
  z-index: -1; pointer-events: none;
  overflow: hidden;
}
.page-hero-bg::before {
  content: ""; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,72,72,.18) 0%, transparent 60%);
  filter: blur(40px);
}

/* =====================================================================
   BREADCRUMB
   ===================================================================== */
.crumbs {
  max-width: 1240px; margin: 0 auto;
  padding: 24px 32px 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
  font-size: 13px; color: var(--ink-4);
}
.crumbs a { color: var(--ink-3); transition: color .15s; }
.crumbs a:hover { color: var(--coral); }
.crumbs .sep { color: var(--ink-5); }
.crumbs .cur { color: var(--ink); font-weight: 500; }

/* =====================================================================
   RELATED CARDS (used across feature pages, compare pages, etc.)
   ===================================================================== */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .25s, box-shadow .25s, border-color .2s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--coral-tint); }
.related-card .num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--coral); letter-spacing: 0;
  margin-bottom: 14px;
  display: inline-block;
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--ink); margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.related-card p {
  font-size: 13.5px; color: var(--ink-3);
  margin: 0 0 16px; line-height: 1.5;
}
.related-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--coral);
  transition: gap .2s;
}
.related-card:hover .arrow { gap: 10px; }

/* =====================================================================
   COMPARISON TABLE (used on /compare/* pages)
   ===================================================================== */
.cmp-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.cmp-table {
  width: 100%; border-collapse: collapse;
}
.cmp-table thead th {
  background: var(--paper-cool);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.015em;
}
.cmp-table thead th:first-child {
  font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4);
  font-weight: 700; font-family: var(--font-body);
}
.cmp-table thead th.us {
  background: var(--coral-soft);
  color: var(--coral); position: relative;
  border-bottom-color: var(--coral-tint);
}
.cmp-table thead th.us::after {
  content: ""; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 3px;
  background: var(--coral);
}
.cmp-table tbody td {
  padding: 16px 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-2); vertical-align: top;
}
.cmp-table tbody td:first-child {
  color: var(--ink); font-weight: 600;
  font-size: 13.5px;
  background: var(--paper-cool);
  border-right: 1px solid var(--line);
}
.cmp-table tbody td.us { background: rgba(255,72,72,.025); }
.cmp-table tbody td .check { color: var(--green); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.cmp-table tbody td .nope  { color: var(--ink-4); display: inline-flex; align-items: center; gap: 6px; }
.cmp-table tbody td .partial { color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 720px) {
  .cmp-table thead th, .cmp-table tbody td { padding: 12px 14px; font-size: 13px; }
  .cmp-table tbody td:first-child { font-size: 12.5px; }
}

/* When to pick comparison cards */
.pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 880px) { .pick-grid { grid-template-columns: 1fr; } }
.pick-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  background: #fff;
}
.pick-card.us {
  background: linear-gradient(165deg, #fff 0%, var(--coral-soft) 100%);
  border-color: var(--coral-tint);
}
.pick-card .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 16px;
  background: var(--paper-cool); color: var(--ink-3);
  border: 1px solid var(--line);
}
.pick-card.us .tag {
  background: var(--coral-soft); color: var(--coral-deep);
  border-color: var(--coral-tint);
}
.pick-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--ink); margin: 0 0 10px;
  letter-spacing: -0.025em; line-height: 1.2;
}
.pick-card p { font-size: 14.5px; color: var(--ink-3); margin: 0 0 18px; line-height: 1.5; }
.pick-card ul { list-style: none; padding: 0; margin: 0; }
.pick-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14px; color: var(--ink-2);
}
.pick-card li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink-4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 6L5 8L9 4' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.pick-card.us li::before { background-color: var(--coral); }

/* =====================================================================
   PRICING TIERS
   ===================================================================== */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 940px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: #fff;
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }
.tier.feature {
  background: linear-gradient(165deg, var(--ink) 0%, #2A3447 100%);
  color: rgba(255,255,255,.85);
  border-color: var(--ink-1);
  box-shadow: 0 24px 48px rgba(30,41,57,.18);
}
.tier.feature .tier-name,
.tier.feature .tier-price b,
.tier.feature .tier-feat li b { color: #fff; }
.tier.feature .tier-feat li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.1); }
.tier.feature .tier-lab { color: #FFB3B3; background: rgba(255,72,72,.18); border-color: rgba(255,72,72,.3); }
.tier .tier-lab {
  display: inline-block;
  font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--coral-soft); color: var(--coral);
  border: 1px solid var(--coral-tint);
  font-weight: 700;
  position: absolute; top: -10px; right: 22px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.035em;
  line-height: 1; margin-bottom: 8px;
}
.tier-price b { color: var(--ink); font-weight: 600; }
.tier-price span { font-size: 14px; color: var(--ink-4); font-weight: 500; letter-spacing: 0; }
.tier-desc { font-size: 14px; color: var(--ink-3); margin: 0 0 24px; line-height: 1.5; }
.tier.feature .tier-desc { color: rgba(255,255,255,.7); }
.tier-feat {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.tier-feat li {
  padding: 11px 0 11px 26px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px; color: var(--ink-2);
  position: relative; line-height: 1.5;
}
.tier-feat li:last-child { border-bottom: none; }
.tier-feat li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--coral);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 6L5 8L9 4' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
}
.tier-feat li b { color: var(--ink); font-weight: 600; }
.tier-feat li .note { display: block; font-size: 12px; color: var(--ink-4); margin-top: 3px; }
.tier .btn { width: 100%; justify-content: center; padding: 14px; font-size: 14.5px; }

/* =====================================================================
   GLOSSARY + LONG-FORM AEO TEMPLATE
   ===================================================================== */
.aeo-article {
  max-width: 760px; margin: 0 auto;
  padding: 24px 32px 80px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.aeo-article h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  color: var(--ink); margin: 48px 0 14px;
  letter-spacing: -0.025em; line-height: 1.2;
}
.aeo-article h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 32px 0 10px;
  letter-spacing: -0.015em;
}
.aeo-article p { margin: 0 0 18px; }
.aeo-article p b, .aeo-article li b { color: var(--ink); font-weight: 600; }
.aeo-article .lede {
  background: var(--paper-cool);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 26px;
  font-size: 17.5px;
  color: var(--ink);
  margin: 0 0 32px;
  line-height: 1.6;
}
.aeo-article ul, .aeo-article ol { padding-left: 22px; margin: 0 0 18px; }
.aeo-article li { margin: 8px 0; }
.aeo-article .qa { border-top: 1px solid var(--line); padding-top: 36px; margin-top: 48px; }
.aeo-article .qa h3 {
  font-size: 17px; color: var(--ink);
  margin: 26px 0 10px;
}
.aeo-article .sources {
  background: var(--paper-cool);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-top: 36px;
}
.aeo-article .sources h4 {
  font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4);
  font-weight: 700; margin: 0 0 12px;
}
.aeo-article .sources ul { margin: 0; padding-left: 18px; font-size: 14.5px; }
.aeo-article a {
  color: var(--coral);
  border-bottom: 1.5px solid var(--coral-tint);
  transition: border-color .15s;
}
.aeo-article a:hover { border-bottom-color: var(--coral); }

.glossary-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1240px; margin: 0 auto;
}
@media (max-width: 880px) { .glossary-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .glossary-grid { grid-template-columns: 1fr; } }
.glossary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: block;
}
.glossary-card:hover {
  transform: translateY(-2px); border-color: var(--coral-tint);
  box-shadow: var(--sh-2);
}
.glossary-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600;
  color: var(--ink); margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.glossary-card span { font-size: 12.5px; color: var(--ink-4); }

/* =====================================================================
   STATS BAR (used on multiple pages)
   ===================================================================== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1080px; margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .stats-bar { grid-template-columns: 1fr 1fr; } }
.stat-cell {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.stat-cell:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--coral-tint); }
.stat-cell .v {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600; color: var(--coral);
  letter-spacing: -0.035em; line-height: 1;
  margin-bottom: 8px;
}
.stat-cell .l {
  font-size: 12.5px; color: var(--ink-3);
  letter-spacing: -0.005em;
}

/* =====================================================================
   QUOTE BLOCK
   ===================================================================== */
.quote-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 44px 48px;
  max-width: 880px; margin: 0 auto;
  box-shadow: var(--sh-2);
  position: relative;
}
.quote-block .mark {
  font-family: var(--font-display);
  font-size: 80px; line-height: 1;
  color: var(--coral); font-weight: 600;
  position: absolute; top: 18px; left: 36px;
  opacity: .2;
}
.quote-block .body {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.45;
  margin: 0 0 22px;
  position: relative;
}
.quote-block .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.quote-block .who img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.quote-block .who .nm { font-size: 14px; }
.quote-block .who .nm b { display: block; color: var(--ink); font-weight: 600; }
.quote-block .who .nm span { color: var(--ink-4); font-size: 13px; }

/* =====================================================================
   CALLOUT (used in long-form content)
   ===================================================================== */
.callout {
  background: var(--coral-soft);
  border: 1px solid var(--coral-tint);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin: 28px 0;
}
.callout h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: var(--coral-deep); margin: 0 0 6px;
  letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 8px;
}
.callout p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* =====================================================================
   ON-PAGE NAV / TABLE OF CONTENTS
   ===================================================================== */
.toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 36px;
}
.toc h6 {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4);
  font-weight: 700; margin: 0 0 10px;
}
.toc ol { margin: 0; padding-left: 22px; font-size: 14px; }
.toc li { padding: 4px 0; }
.toc li a { color: var(--ink-3); }
.toc li a:hover { color: var(--coral); }

/* =====================================================================
   BLOG HUB (additions for native posts at /resources/blog/)
   ===================================================================== */
.res-grid-empty {
  grid-column: 1 / -1;
  padding: 56px 24px;
  text-align: center;
  color: var(--ink-3);
  background: var(--paper-cool);
  border-radius: var(--r-md);
  font-size: 15px;
}
.post-card-featured {
  grid-column: 1 / -1;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 32px 36px;
  border-radius: var(--r-md);
  display: block;
  margin-bottom: 8px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.post-card-featured:hover {
  transform: translateY(-2px);
  border-color: var(--coral-tint);
  box-shadow: var(--sh-2);
}
.post-card-featured h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--ink); margin: 14px 0 10px;
  letter-spacing: -0.025em; line-height: 1.18;
  max-width: 820px;
}
.post-card-featured .post-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 14px;
}
.post-meta-sep { color: var(--ink-5); }

.blog-pagination {
  display: flex; gap: 6px;
  justify-content: center;
  margin: 40px 0 0;
  font-size: 14px;
  flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm, 8px);
  color: var(--ink-3);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.blog-pagination a:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.blog-pagination .page-numbers.current {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.blog-pagination .dots {
  border: none;
  color: var(--ink-5);
}

/* =====================================================================
   BLOG SINGLE (at /resources/blog/{slug}/)
   ===================================================================== */
.blog-hero { padding-bottom: 32px; }
.blog-hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-3);
}
.blog-hero-author { font-weight: 500; color: var(--ink-2); }
.blog-hero-sep { color: var(--ink-5); }
.blog-hero-read {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-hero-read .ms { color: var(--ink-4); }

.blog-single { padding-top: 8px; }
.blog-single-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}
.blog-single-grid .aeo-article {
  margin: 0;
  padding: 0 0 32px;
  max-width: 720px;
}
@media (max-width: 1024px) {
  .blog-single-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.blog-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  font-size: 13.5px;
  color: var(--ink-3);
  border-left: 2px solid var(--line);
  padding: 4px 0 4px 18px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.blog-toc-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 700;
  margin: 0 0 12px;
}
.blog-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.blog-toc li {
  margin: 0 0 8px;
  padding: 0;
  line-height: 1.45;
}
.blog-toc a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color .15s;
  display: block;
}
.blog-toc a:hover { color: var(--coral); }
@media (max-width: 1024px) {
  .blog-toc {
    position: static;
    max-height: none;
    border-left: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    margin-bottom: 8px;
  }
}

.aeo-article .tldr-box {
  background: var(--paper-warm);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 26px;
  margin: 0 0 36px;
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.6;
}
.aeo-article .tldr-box-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin: 0 0 10px;
  display: block;
}
.aeo-article .tldr-box ul {
  margin: 0;
  padding-left: 20px;
}
.aeo-article .tldr-box li { margin: 6px 0; }

.aeo-article .we-analyzed {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.32;
  margin: 0 0 36px;
  padding: 4px 0 0;
}
.aeo-article .we-analyzed em {
  font-style: normal;
  color: var(--coral);
}

.aeo-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 15px;
}
.aeo-article th,
.aeo-article td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.aeo-article th {
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-cool);
  font-size: 14px;
}

.author-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 720px;
  margin: 16px auto 0;
  padding: 24px 28px;
  background: var(--paper-cool);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.author-block-avatar img,
.author-block-avatar .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
}
.author-block-body { flex: 1; min-width: 0; }
.author-block-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin: 0 0 4px;
}
.author-block-bio {
  font-size: 14.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}

.related-posts {
  max-width: 1120px;
  margin: 64px auto 0;
}
.related-posts-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
