/* === EXACT HEYREACH CSS TOKENS === */
:root {
  --navy--navy-darkest: #07071c;
  --navy--navy-darker: #0e1425;
  --navy--navy-dark: #181925;
  --navy--navy: #14141f;
  --navy--navy-light: #303141;
  --navy--navy-lightest: #3b3a60;
  --purple--purple-neutral: #7909e2;
  --purple--purple-light: #836ae4;
  --blue--blue-light: #3474db;
  --blue--blue: #216fed;
  --blue--blue-dark: #1a61d4;
  --pastel--pastel-blue-light: #e1f4ff;
  --pastel--pastel-blue: #cfe1ff;
  --pastel--pastel-blue-dark: #a6d3ff;
  --pastel--pastel-blue-lightest: #f4f5fd;
  --slate--slate: #8181ac;
  --slate--slate-lighter: #a3afd3;
  --slate--slate-pastel: #76a9fa;
  --green--green-light: #31c48d;
  --neutrals--white: #fff;
  --neutrals--black: #000;
  --radius--small: 0.75rem;
  --radius--medium: 1rem;
  --radius--large: 1.25rem;
  --radius--button: 0.625rem;

  /* Theme mapping */
  --bg: var(--navy--navy-darkest);
  --text: var(--pastel--pastel-blue-light);
  --text-soft: var(--slate--slate-lighter);
  --text-muted: var(--slate--slate);
  --border: var(--navy--navy-lightest);
  --border-light: #b5b1ff4d;
  --accent-purple: var(--purple--purple-neutral);
  --accent-blue: var(--blue--blue-light);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* === HEYREACH CARD GRADIENT (exact copy) === */
/* .card-wrap: linear-gradient(#8784be1a, #07071c00) */
/* .proof-modal-wrap: linear-gradient(169deg, #b5b1ff1a, #9990), linear-gradient(144deg, #191831, #07071c) */
/* .button: linear-gradient(108deg, #7909e2, #3474db) */
/* .button-demo: linear-gradient(173deg, #b5b1ff1a, #0000 56%, #b5b1ff00) */
/* .button:hover: linear-gradient(108deg, #8110ebe6 27%, #3474db), box-shadow 0 0 0 5px #a6d3ff1a */

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEYREACH RADIAL GLOWS (exact copy) === */
.glow-hero {
  position: fixed;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(50% 50%, #2f7cf629, #f8fafd00);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.glow-mid {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 560px;
  background: radial-gradient(50% 50% at 50% 30%, #ffffff38, #ffffff0d 45%, #2f5fe600 60%, #2f5fe600);
  pointer-events: none;
  z-index: 0;
}

.glow-cta {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(2, 87, 250, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* === HEYREACH GRID OVERLAY (subtle grid pattern) === */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: repeating-linear-gradient(90deg, #2138560d, #2138560d 1px, transparent 1px 88px);
}

/* === NAVBAR (HeyReach: glassmorphism with purple tint) === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(7, 7, 28, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: #3b3a60;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  width: 100%;
  max-width: 80rem;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo span {
  color: var(--pastel--pastel-blue-dark);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* === HEYREACH BUTTONS (exact gradient copy) === */
.btn {
  border-radius: var(--radius--button);
  text-align: center;
  flex: none;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.2s, background-color 0.25s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  white-space: nowrap;
}

.btn-primary {
  background-image: linear-gradient(139.56deg, rgb(121, 9, 226) 8.28%, rgb(52, 116, 219) 91.72%);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.375rem;
}

.btn-primary:hover {
  background-image: linear-gradient(139.56deg, rgb(121, 9, 226) 8.28%, rgb(52, 116, 219) 91.72%);
  box-shadow: 0 0 0 5px #a6d3ff1a;
}

/* Hero CTA is brand blue (Figma 119:710) — pricing/CTA/header CTAs are purple */
.btn-primary-blue {
  background-image: linear-gradient(102.04deg, rgb(2, 87, 250) 2.87%, rgb(25, 27, 197) 96.99%);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.375rem;
}

.btn-primary-blue:hover {
  background-image: linear-gradient(102.04deg, rgb(2, 87, 250) 2.87%, rgb(25, 27, 197) 96.99%);
  box-shadow: 0 0 0 5px #a6d3ff1a;
}

.btn-outline {
  background-color: transparent;
  background-image: linear-gradient(178deg, rgba(181, 177, 255, 0.1) 4.8%, rgba(181, 177, 255, 0) 55.4%, rgba(181, 177, 255, 0) 55.4%, rgba(181, 177, 255, 0) 95.2%);
  border: 1px solid rgba(181, 177, 255, 0.3);
  color: #fafafa;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.0625rem 2.4375rem;
}

.btn-outline:hover {
  background-color: #b5b1ff1a;
}

.btn-large {
  padding: 1rem 2.375rem;
  font-weight: 600;
  font-size: 1rem;
}

#proof {
  margin-bottom: 60px;
}

/* === SECTIONS (HeyReach: padding-section-large) === */
.section {
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.section-inner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.section-badge {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9999px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 0.75rem;
  gap: 8px;
  color: var(--green--neon, #18fb6f);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  /* Figma GLASS effect: frosted translucent surface + inner highlight + soft edge */
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.03), inset 0 0 12px rgba(255, 255, 255, 0.03);
}

/* Eyebrow + glare: keep flex layout even with shimmer-sweep-target's display override */
.section-badge.shimmer-sweep-target,
.hero-badge.shimmer-sweep-target {
  position: relative;
  display: flex;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #fafafa;
}

.section-title .hl {
  color: #5992ff;
}

.section-title .hl-green {
  color: var(--green--green-light);
}

.section-title .hl-lavender {
  color: #a6d3ff;
}

.section-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #c3cada;
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: #31c48d;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* === HEYREACH CARDS (exact: card-wrap gradient + border) === */
.card {
  background-image: linear-gradient(#8784be1a, #07071c00);
  border: 1px solid #3b3a60;
  border-radius: var(--radius--large);
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--border-light);
}

.card-strong {
  background-image: linear-gradient(169deg, #b5b1ff1a, #9990), linear-gradient(144deg, #191831, #07071c);
  border: 1px solid var(--border-light);
  border-radius: var(--radius--large);
}

/* === HERO === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 40px 2.5rem;
}

.hero-split {
  max-width: 80rem;
  width: 100%;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr auto;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green--neon, #18fb6f);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  /* Figma GLASS effect: frosted translucent surface + inner highlight + soft edge */
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.03), inset 0 0 12px rgba(255, 255, 255, 0.03);
}

.hero-badge i {
  color: var(--green--neon, #18fb6f);
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  color: var(--text);
}

.hero-title .hl {
  background: linear-gradient(90deg, var(--pastel--pastel-blue-dark), #3c7fff, var(--pastel--pastel-blue-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-title .hero-rotator {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}

.hero-title .hero-rotator-text {
  display: inline-block;
  background: linear-gradient(90deg, var(--pastel--pastel-blue-dark), #3c7fff, var(--pastel--pastel-blue-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sweep 4s linear infinite;
  will-change: transform, opacity, filter;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 170%;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  font-size: 0.875rem;
  color: #c3cada;
}

.hero-avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.hero-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 2px solid #242832;
  object-fit: cover;
  margin-left: -8px;
}

.hero-avatar-img:first-child {
  margin-left: 0;
}

.hero-avatar-text {
  font-size: 0.875rem;
  color: #9ba3b5;
  margin-left: 0.75rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-stats .stat-divider:last-child {
  display: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 1.75rem;
}

.stat-number {
  font-size: 1.625rem;
  font-weight: 700;
  color: #fafafa;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8125rem;
  color: #9ba3b5;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #363c4b;
  margin-right: 1.75rem;
}

/* HERO VISUAL */
/* HERO VISUAL — white LinkedIn mockup (designer v12) */
.hero-visual {
  flex: 1;
  max-width: 540px;
  position: relative;
}

.hero-float {
  position: absolute;
  z-index: 3;
  border-radius: 12.9px;
  box-shadow: 0 7.4px 13.8px rgba(0, 0, 0, 0.2);
}

.hero-float-1 {
  top: 0.75rem;
  right: -0.5rem;
  background-image: linear-gradient(131.9deg, rgba(176, 172, 255, 0.35) 0%, rgba(181, 177, 255, 0) 99.2%), linear-gradient(90deg, #fff, #fff);
  color: var(--bg);
  padding: 0.625rem 0.875rem;
  animation: float 5s ease-in-out infinite;
}

.hero-float-1 .hero-float-num {
  font-size: 1.375rem;
  font-weight: 700;
  color: #191bc5;
}

.hero-float-2 {
  bottom: 2.5rem;
  left: -0.75rem;
  background-image: linear-gradient(128.5deg, rgba(176, 172, 255, 0.35) 0%, rgba(181, 177, 255, 0) 99.2%), linear-gradient(90deg, #fff, #fff);
  color: var(--bg);
  padding: 0.625rem 0.875rem;
  animation: float 6s ease-in-out infinite reverse;
}

.hero-float-2 .hero-float-num {
  font-size: 1.375rem;
  font-weight: 700;
  color: #191bc5;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-float-num {
  display: block;
}

.hero-float-label {
  font-size: 0.75rem;
  color: var(--slate--slate);
}

.hero-mockup {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  color: #191919;
}

.hero-mockup-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--green--neon, #18fb6f);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  z-index: 4;
}

.hero-mockup-inner {
  padding: 1rem 1.25rem;
}

.hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hero-mockup-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-mockup-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #191919;
}

.hero-mockup-headline {
  font-size: 0.75rem;
  color: #6e6e73;
}

.hero-mockup-time {
  font-size: 0.75rem;
  color: #6e6e73;
  margin-left: auto;
}

.hero-mockup-post {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
}

.hero-mockup-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #6e6e73;
  border-top: 1px solid #e8e8ee;
  padding-top: 0.625rem;
}

.hero-mockup-actions span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-mockup-comment {
  margin-top: 0.625rem;
  border-top: 1px solid #e8e8ee;
  padding-top: 0.75rem;
  display: flex;
  gap: 0.625rem;
}

.hero-mockup-comment-av {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: linear-gradient(108deg, #7909e2, #3474db);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
}

.hero-mockup-comment-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #191919;
}

.hero-mockup-comment-role {
  font-size: 0.6875rem;
  color: #6e6e73;
}

.hero-mockup-comment-text {
  font-size: 0.8125rem;
  color: #333;
  line-height: 1.45;
  margin-top: 0.25rem;
}

.hero-mockup-comment-meta {
  font-size: 0.6875rem;
  color: #6e6e73;
  margin-top: 0.375rem;
}

.hero-mockup-comment-meta b {
  color: #333;
}

/* === COMPANY LOGOS === */
#companies {
  padding: 2.5rem 40px;
}

.company-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.company-logo {
  max-height: 32px;
  max-width: 120px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  object-fit: contain;
}

.company-logo:hover {
  opacity: 1;
}

/* === PROOF BAR (horizontal) === */
#proof {
  padding: 1.25rem 40px;
  border-top: 1px solid #3b3a60;
  border-bottom: 1px solid #3b3a60;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  background: rgba(14, 20, 37, 0.5);
}

/* Proof marquee tracks: on desktop the track is transparent (children flow in #proof's
   flex as before) and the duplicate track is hidden — web rendering unchanged. */
.proof-track {
  display: contents;
}

.proof-track.proof-divider:last-child {
  display: none;
}

#proof .proof-track:nth-of-type(2) {
  display: none;
}

.proof-item {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.proof-item strong {
  color: var(--text);
  font-weight: 700;
}

.proof-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.proof-avatars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

/* === PROBLEM === */
#problem .body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#problem .body p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #c3cada;
  margin-bottom: 1rem;
}

#problem .body strong {
  color: #e1f4ff;
}

/* === REFRAME === */
#reframe {
  text-align: center;
}

#reframe .headline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  color: #e1f4ff;
}

#reframe .body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #c3cada;
  max-width: 700px;
  margin: 1.25rem auto 0;
}

.metric-pills {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.metric-pill {
  padding: 0.75rem 1.5rem;
  background-image: linear-gradient(#8784be1a, #07071c00);
  border: 1px solid #3b3a60;
  border-radius: 9999px;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.metric-pill strong {
  color: var(--green--green-light);
  font-weight: 700;
}

/* === LOOP DIAGRAM === */
#loop .loop-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.loop-node {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  background-image: linear-gradient(180deg, rgba(149, 143, 255, 0.2) 0%, rgba(149, 143, 255, 0) 100%);
  border: 1px solid #2a295b;
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.loop-node.active {
  border-color: rgba(181, 177, 255, 0.5);
  box-shadow: 0 0 20px rgba(89, 146, 255, 0.25), inset 0 0 30px rgba(89, 146, 255, 0.05);
}

.loop-node.active .loop-icon {
  background: rgba(89, 146, 255, 0.25);
  box-shadow: 0 0 20px rgba(89, 146, 255, 0.4);
}

.loop-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pastel--pastel-blue-dark);
  font-size: 1.125rem;
  transition: background 0.6s ease, box-shadow 0.6s ease;
}

.loop-icon.green {
  background: rgba(49, 196, 141, 0.1);
  color: var(--green--green-light);
}

.loop-node.active .loop-icon.green {
  background: rgba(49, 196, 141, 0.2);
  box-shadow: 0 0 20px rgba(49, 196, 141, 0.3);
}

.loop-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fafafa;
}

.loop-desc {
  font-size: 0.75rem;
  color: #9ba3b5;
  line-height: 1.5;
}

.loop-arrow {
  display: flex;
  align-items: center;
  color: #3b3a60;
  font-size: 1.125rem;
  padding: 0 0.375rem;
  transition: color 0.6s ease;
}

.loop-arrow.active {
  color: var(--pastel--pastel-blue-dark);
}

.loop-caption {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: var(--green--green-light);
  text-align: center;
  font-weight: 500;
}

/* Loop subsections (above diagram / below image) */
.loop-subsection {
  margin-top: 2.5rem;
}

.loop-subsection-bottom {
  margin-top: 2rem;
}

.loop-sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e1f4ff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.loop-sub-title .hl,
.loop-sub-title span.hl {
  color: var(--green--green-light);
}

.loop-sub-text {
  font-size: 1rem;
  color: var(--text-soft, #9ba3b5);
  line-height: 1.7;
  max-width: 680px;
}

.loop-sub-text p {
  margin: 0 0 0.75rem;
}


.img-frame {
  overflow: hidden;
  border-radius: var(--radius--large);
  border: 1px solid #3b3a60;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.img-frame img {
  width: 100%;
  display: block;
}

.img-wide {
  max-width: 900px;
  margin: 2rem auto 0;
}

.img-medium {
  max-width: 600px;
  margin: 2rem auto 0;
}

.img-pair {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.img-pair .img-frame {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

/* === BEFORE/AFTER === */
#quality .before-after {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.comment-card {
  flex: 1;
  min-width: 280px;
  max-width: 440px;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #3b3a60;
}

.comment-card.generic {
  background: rgba(7, 7, 28, 0.3);
  opacity: 0.5;
}

.comment-card.growreach {
  background-image: linear-gradient(175.5deg, rgba(181, 177, 255, 0.1) 6.6%, rgba(181, 177, 255, 0) 93.4%), linear-gradient(163.5deg, rgb(25, 24, 49) 5.8%, rgb(7, 7, 28) 94.2%);
  border-color: rgba(89, 146, 255, 0.3);
}

.comment-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.comment-card.generic .comment-card-label {
  color: #8181ac;
}

.comment-card.growreach .comment-card-label {
  color: #a6d3ff;
}

.comment-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a3afd3;
}

.comment-card.growreach .comment-card-text {
  color: #e1f4ff;
}

.ba-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #a3afd3;
}

/* === HYPERCLAPPER-STYLE VS TOGGLE (captured from hyperclapper.com 2026-09-04) === */
.gr-vs-root {
  margin-top: 2.5rem;
  position: relative;
}

.gr-vs-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gr-vs-tagpill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gr-vs-tag-off {
  color: rgb(237, 68, 90);
  background-color: rgba(237, 68, 90, 0.1);
}

.gr-vs-tag-on {
  color: rgb(22, 163, 74);
  background-color: rgba(22, 163, 74, 0.12);
}

.gr-vs-h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #e1f4ff;
  text-align: center;
  line-height: 1.3;
}

.gr-vs-word-off {
  color: #8181ac;
}

.gr-vs-word-on {
  color: #5992ff;
}

.gr-vs-root .gr-vs-tag-on,
.gr-vs-root .gr-vs-word-on {
  display: none;
}

.gr-vs-root.is-on .gr-vs-tag-off,
.gr-vs-root.is-on .gr-vs-word-off {
  display: none;
}

.gr-vs-root.is-on .gr-vs-tag-on {
  display: inline-flex;
}

.gr-vs-root.is-on .gr-vs-word-on {
  display: inline;
}

.gr-vs-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background-color: rgb(241, 223, 226);
  border-radius: 999px;
  width: 64px;
  height: 34px;
  padding: 4px;
  transition: background 0.5s;
}

.gr-vs-knob {
  background-color: rgb(237, 68, 90);
  border-radius: 999px;
  width: 26px;
  height: 26px;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), background 0.5s;
}

.gr-vs-root.is-on .gr-vs-toggle {
  background: rgb(205, 234, 210);
}

.gr-vs-root.is-on .gr-vs-knob {
  transform: translateX(30px);
  background: rgb(68, 195, 142);
}

.gr-vs-stage {
  max-width: 520px;
  margin: 2rem auto 0;
}

.gr-vs-card {
  background: #fff;
  color: #161616;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: rgba(20, 35, 60, 0.46) 0px 50px 100px -38px, rgba(20, 35, 60, 0.2) 0px 20px 40px -20px;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
}

/* Fixed-height vs-toggle: OFF/ON states share the same grid rows (row height = taller ON state),
   swapped via visibility so the card never reflows and the page never jumps. */
.gr-vs-head-row {
  grid-row: 1;
}

.gr-vs-body {
  grid-row: 2;
}

.gr-vs-comment {
  grid-row: 3;
}

.gr-vs-sumrow {
  grid-row: 4;
}

.gr-vs-imppill {
  grid-row: 5;
}

.gr-vs-root.is-on .gr-vs-card {
  border-color: rgb(49, 107, 255);
  box-shadow: rgba(49, 107, 255, 0.45) 0px 30px 62px -30px;
}

.gr-vs-head-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gr-vs-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.gr-vs-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #161616;
}

.gr-vs-you {
  color: #868484;
  font-weight: 400;
}

.gr-vs-role {
  font-size: 0.8125rem;
  color: #6c6c6c;
}

.gr-vs-time {
  font-size: 0.75rem;
  color: #868484;
}

.gr-vs-menu {
  margin-left: auto;
  color: #868484;
  letter-spacing: 2px;
}

.gr-vs-body {
  margin-top: 0.875rem;
}

.gr-vs-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #161616;
  margin-bottom: 0.5rem;
}

.gr-vs-comment {
  margin-top: 0.875rem;
  border-radius: 12px;
  padding: 0.875rem 1rem;
}

.gr-vs-comment-off {
  background: #f4f4f6;
  opacity: 0.75;
}

.gr-vs-comment-on {
  background: linear-gradient(175.5deg, rgba(181, 177, 255, 0.1) 6.6%, rgba(181, 177, 255, 0) 93.4%), linear-gradient(163.5deg, rgb(25, 24, 49) 5.8%, rgb(7, 7, 28) 94.2%);
  border: 1px solid rgba(89, 146, 255, 0.3);
}

.gr-vs-comment-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.375rem;
}

.gr-vs-comment-off .gr-vs-comment-label {
  color: #8181ac;
}

.gr-vs-comment-on .gr-vs-comment-label {
  color: #a6d3ff;
}

.gr-vs-comment-text {
  font-size: 0.875rem;
  line-height: 1.55;
}

.gr-vs-comment-off .gr-vs-comment-text {
  color: #6c6c6c;
}

.gr-vs-comment-on .gr-vs-comment-text {
  color: #e1f4ff;
}

.gr-vs-root .gr-vs-comment-on {
  visibility: hidden;
}

.gr-vs-root.is-on .gr-vs-comment-off {
  visibility: hidden;
}

.gr-vs-root.is-on .gr-vs-comment-on {
  visibility: visible;
}

.gr-vs-sumrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: #868484;
}

.gr-vs-sumleft {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.gr-react-ic {
  font-size: 0.875rem;
}

.gr-vs-strong {
  font-weight: 700;
  color: #161616;
}

.gr-vs-root .gr-vs-sum-on {
  visibility: hidden;
}

.gr-vs-root.is-on .gr-vs-sum-off {
  visibility: hidden;
}

.gr-vs-root.is-on .gr-vs-sum-on {
  visibility: visible;
}

.gr-vs-imppill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.gr-vs-imppill-off {
  background: rgb(238, 241, 246);
  color: rgb(86, 111, 143);
}

.gr-vs-imppill-on {
  background: rgba(49, 107, 255, 0.1);
  color: rgb(44, 88, 182);
}

.gr-vs-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.gr-vs-bars span {
  width: 3px;
  border-radius: 1px;
  background: currentColor;
}

.gr-vs-bars span:nth-child(1) {
  height: 5px;
}

.gr-vs-bars span:nth-child(2) {
  height: 8px;
}

.gr-vs-bars span:nth-child(3) {
  height: 10px;
}

.gr-vs-root .gr-vs-imppill-on {
  visibility: hidden;
}

.gr-vs-root.is-on .gr-vs-imppill-off {
  visibility: hidden;
}

.gr-vs-root.is-on .gr-vs-imppill-on {
  visibility: visible;
}

.gr-vs-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: #a3afd3;
}

/* === DESIGNER COMMENT THREAD (v17 — Liam H. / Emily Chen prefetch thread) === */
.gr-thread-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.gr-thread-shell {
  background: #f3f8ff;
  border-radius: 40px;
  padding: 40px;
  width: 920px;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.gr-thread-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-sizing: border-box;
}

.gr-thread-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #636262;
}

.gr-thread-sort img {
  width: 16px;
  height: 16px;
}

.gr-thread-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.gr-thread-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.gr-thread-item.reply {
  padding-left: 60px;
}

.gr-thread-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gr-thread-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.gr-thread-item.reply .gr-thread-av {
  width: 40px;
  height: 40px;
}

.gr-thread-id {
  flex: 1;
  min-width: 0;
}

.gr-thread-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161616;
  white-space: nowrap;
}

.gr-thread-name .dot {
  color: #4a5565;
  font-weight: 400;
  font-size: 16px;
}

.gr-thread-name .you,
.gr-thread-name .conn {
  font-size: 14px;
  font-weight: 500;
  color: #636262;
}

.gr-thread-role {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #636262;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gr-thread-author {
  background: #636262;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.gr-thread-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #4a5565;
  margin-left: auto;
}

.gr-thread-dots {
  width: 24px;
  height: 24px;
}

.gr-thread-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #161616;
}

.gr-thread-item.reply .gr-thread-body {
  padding-left: 52px;
}

.gr-thread-body .mention {
  font-weight: 600;
  color: #0a66c2;
}

.gr-thread-body .more {
  color: #868484;
}

.gr-thread-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #636262;
}

.gr-thread-item.reply .gr-thread-meta {
  padding-left: 52px;
}

.gr-thread-meta .like {
  font-weight: 600;
}

.gr-thread-meta .like.active {
  color: #0a66c2;
}

.gr-thread-meta .react {
  display: inline-flex;
  align-items: center;
}

.gr-thread-meta .react img {
  width: 16px;
  height: 16px;
  margin-right: -4px;
}

.gr-thread-meta .react img:last-child {
  margin-right: 0;
}

.gr-thread-meta .sep {
  color: #adadad;
  font-size: 16px;
}

.gr-thread-meta .reaction-label {
  color: #895c1f;
  font-weight: 600;
}

/* Liam H. highlighted comment: dynamic height, proper padding, responsive */
.gr-thread-item:not(.reply) .gr-thread-body,
.gr-thread-body.highlighted {
  position: relative;
  background: rgba(26, 49, 205, 0.08);
  border: 1.5px solid rgba(26, 49, 205, 0.22);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 4px 0 6px;
  width: 100%;
  box-sizing: border-box;
}

.gr-thread-highlight {
  display: none !important;
}

/* Badge & Arrow */
.gr-thread-badge {
  position: absolute;
  right: 48px;
  top: 22px;
  background: #0257fa;
  color: #fafafa;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 8px;
  z-index: 5;
  line-height: 1.4;
  box-shadow: 0 4px 14px rgba(2, 87, 250, 0.25);
  white-space: nowrap;
}

.gr-thread-arrow {
  position: absolute;
  right: 155px;
  top: 85px;
  width: 40px;
  height: 14px;
  transform: rotate(-117deg);
  z-index: 5;
  pointer-events: none;
}

/* Thread collapse footer */
.gr-thread-collapse {
  position: relative;
  left: auto;
  top: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 4px 60px;
  pointer-events: auto;
}

.gr-thread-collapse .line {
  display: none;
}

.gr-thread-collapse span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a66c2;
  cursor: pointer;
  padding: 0;
}

/* === QUALITY MARKERS (v18 — blue #191bc5 band) === */
.quality-stance {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  background: #191bc5;
  border-radius: 24px;
  padding: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.quality-marker {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quality-marker-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a6d3ff;
  font-size: 1.25rem;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.15);
}

.quality-marker-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e1f4ff;
  margin-bottom: 0.375rem;
}

.quality-marker-desc {
  font-size: 0.875rem;
  color: #f2ecff;
  line-height: 1.7;
}

/* === FEATURE POINTS === */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto 0;
}

.feature-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background-image: linear-gradient(#8784be1a, #07071c00);
  border: 1px solid #3b3a60;
  border-radius: 16px;
  transition: border-color 0.2s ease;
}

.feature-point:hover {
  border-color: var(--border-light);
}

.feature-point-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 12px;
  background: rgba(89, 146, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a6d3ff;
  font-size: 0.875rem;
}

.feature-point-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e1f4ff;
  margin-bottom: 0.25rem;
}

.feature-point-desc {
  font-size: 0.875rem;
  color: #8181ac;
  line-height: 1.5;
}

/* === STEP CARDS === */
#how-it-works .steps {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background-image: linear-gradient(180deg, rgba(149, 143, 255, 0.2) 0%, rgba(149, 143, 255, 0) 100%);
  border: 1px solid #2a295b;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.step-card:hover {
  border-color: var(--border-light);
}

.step-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: #e1f4ff;
  letter-spacing: -2px;
  position: absolute;
  top: 1.75rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background: #1e2a4a;
  border: 1px solid #4a6fa5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a6d3ff;
  font-size: 1.125rem;
  z-index: 1;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #e1f4ff;
  z-index: 1;
}

.step-desc {
  font-size: 0.8125rem;
  color: #9ba3b5;
  line-height: 1.6;
  z-index: 1;
}

/* === NETWORK LIVE MOCKUP (v18 — Jane Doe post + Live Engagement feed) === */
.nw-stage {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.nw-shell {
  background: #fff;
  border-radius: 27.774px;
  overflow: hidden;
  width: 920px;
  max-width: 100%;
  position: relative;
  padding: 40px 0;
}

.nw-blob {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.nw-row {
  position: relative;
  display: flex;
  gap: 27.774px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.nw-post {
  background: #fff;
  border: 1.389px solid #191bc5;
  border-radius: 13.887px;
  padding: 13.887px;
  width: 361px;
  box-shadow: 0 5.555px 11.109px rgba(50, 18, 175, 0.1), 0 20.83px 20.136px rgba(50, 18, 175, 0.09), 0 47.215px 27.079px rgba(50, 18, 175, 0.05);
}

.nw-post-head {
  display: flex;
  gap: 13.887px;
  align-items: flex-start;
}

.nw-post-av {
  width: 47.215px;
  height: 47.215px;
  border-radius: 50%;
  object-fit: cover;
}

.nw-post-id {
  flex: 1;
}

.nw-post-name {
  display: flex;
  align-items: center;
  gap: 5.555px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 12.498px;
  color: #161616;
}

.nw-post-name img {
  width: 13.887px;
  height: 13.887px;
}

.nw-post-name .dot {
  width: 2.777px;
  height: 2.777px;
  border-radius: 50%;
  background: #5b5b5b;
}

.nw-post-name .conn {
  font-weight: 400;
  font-size: 9.721px;
  color: #6c6c6c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nw-post-role {
  font-family: 'Open Sans', sans-serif;
  font-size: 9.721px;
  color: #6c6c6c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nw-post-time {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 9.721px;
  color: #868484;
}

.nw-post-more {
  width: 16.664px;
  height: 16.664px;
}

.nw-post-body {
  margin-top: 11.109px;
  font-family: 'Open Sans', sans-serif;
  font-size: 9.721px;
  line-height: 1.6;
  color: #161616;
}

.nw-post-body .tag {
  color: #0257fa;
  font-weight: 600;
}

.nw-post-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.694px solid #cdcdcd;
  padding-bottom: 11.109px;
  margin-top: 8.332px;
  font-family: 'Open Sans', sans-serif;
  font-size: 9.721px;
  color: #868484;
  font-weight: 600;
}

.nw-post-stats .reacts {
  display: flex;
  align-items: center;
  gap: 5.555px;
}

.nw-post-stats .reacts img {
  width: 11.109px;
  height: 11.109px;
  margin-right: -2.777px;
}

.nw-post-stats .reacts img:last-child {
  margin-right: 0;
}

.nw-post-actions {
  display: flex;
  justify-content: space-between;
  padding-top: 5.555px;
  font-family: 'Open Sans', sans-serif;
  font-size: 9.721px;
  font-weight: 700;
  color: #161616;
  text-transform: capitalize;
}

.nw-post-actions span {
  display: inline-flex;
  align-items: center;
  gap: 2.777px;
}

.nw-post-actions img {
  width: 11.109px;
  height: 11.109px;
}

.nw-feed {
  background: #fff;
  border-radius: 13.887px;
  width: 458px;
  box-shadow: 0 8.332px 29.857px rgba(0, 18, 153, 0.1), 0 31.94px 54.158px rgba(0, 18, 153, 0.09);
  overflow: hidden;
}

.nw-feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.694px solid #d5d5d5;
  padding: 13.887px;
}

.nw-feed-pill {
  background: #f6f4ff;
  border: 0.694px solid #d1c8ff;
  border-radius: 13.887px;
  padding: 6.943px 11.109px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 11.109px;
  color: #0257fa;
}

.nw-feed-live {
  display: flex;
  align-items: center;
  gap: 5.555px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 9.721px;
  color: #fa4402;
}

.nw-feed-live img {
  width: 5.555px;
  height: 5.555px;
}

.nw-feed-body {
  display: flex;
  gap: 13.887px;
  padding: 0 22.219px 13.887px;
}

.nw-feed-line {
  width: 8.332px;
  flex-shrink: 0;
}

.nw-feed-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8.332px;
}

.nw-feed-item {
  background: #fff;
  border: 0.694px solid #eaeaea;
  border-radius: 8.332px;
  padding: 11.109px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nw-feed-item .who {
  display: flex;
  align-items: center;
  gap: 6.943px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9.721px;
  color: #000;
}

.nw-feed-item .who img {
  width: 34.717px;
  height: 34.717px;
  border-radius: 50%;
  position: relative;
}

.nw-feed-item .who .react-badge {
  position: relative;
}

.nw-feed-item .who .react-badge img {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 13.887px;
  height: 13.887px;
}

.nw-feed-item .who b {
  font-weight: 700;
}

.nw-feed-item .when {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9.721px;
  color: #868484;
}

.nw-feed-comment {
  margin-top: 8.332px;
  margin-left: 41.66px;
  background: rgba(241, 245, 255, 0.72);
  border: 0.694px solid #e3e6ff;
  border-radius: 11.109px;
  padding: 8.332px 11.109px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9.721px;
  line-height: 1.7;
  color: #000;
}

#team .team-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.team-item {
  flex: 1;
  min-width: 180px;
  max-width: 250px;
  padding: 1.25rem;
  background-image: linear-gradient(#8784be1a, #07071c00);
  border: 1px solid #3b3a60;
  border-radius: 16px;
  text-align: center;
}

.team-icon {
  font-size: 1.375rem;
  color: #a6d3ff;
  margin-bottom: 0.625rem;
}

.team-text {
  font-size: 0.875rem;
  color: #a3afd3;
}

/* === TEAM DASHBOARD (v18 — managers + member table) === */
.tm-stage {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.tm-card {
  background: #fff;
  border: 0.807px solid #e2e8f0;
  border-radius: 16px;
  width: 920px;
  max-width: 100%;
  overflow: hidden;
}

.tm-panels {
  display: flex;
  align-items: stretch;
}

.tm-left {
  flex: 0 0 300px;
  border-right: 0.807px solid #e2e8f0;
  padding: 16px;
}

.tm-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tm-stat {
  flex: 1;
  background: #f8fafc;
  border: 0.807px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
}

.tm-stat .label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 10.49px;
  text-transform: uppercase;
  color: #202020;
}

.tm-stat .value {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.68px;
  color: #585858;
}

.tm-avlist {
  display: flex;
  flex-direction: column;
}

.tm-avrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 0.807px solid #f2f2f2;
}

.tm-avrow img {
  width: 25.825px;
  height: 25.825px;
  border-radius: 50%;
  object-fit: cover;
}

.tm-avrow .name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 10.49px;
  color: #202020;
  flex: 1;
}

.tm-avrow .status {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.88px;
  font-weight: 600;
}

.tm-avrow .status.connected {
  color: #198754;
}

.tm-avrow .status.disconnected {
  color: #dc3545;
}

.tm-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 12px;
  font-family: 'Figma Hand', 'Caveat', cursive;
  font-weight: 700;
  font-size: 10.49px;
  color: #0257fa;
}

.tm-scroll img {
  width: 16.14px;
  height: 16.14px;
}

.tm-right {
  flex: 1;
  overflow-x: auto;
}

.tm-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
}

.tm-table th {
  text-align: left;
  font-weight: 600;
  font-size: 10.49px;
  text-transform: uppercase;
  color: #202020;
  padding: 12.912px 9.684px;
  border-bottom: 0.807px solid #f2f2f2;
  white-space: nowrap;
}

.tm-table td {
  padding: 9.684px;
  border-bottom: 0.807px solid #f2f2f2;
  font-size: 9.68px;
  color: #585858;
  white-space: nowrap;
}

.tm-table tr:last-child td {
  border-bottom: none;
}

.tm-table .cell-name {
  display: flex;
  align-items: center;
  gap: 7.263px;
  font-weight: 600;
  color: #202020;
}

.tm-table .cell-name img {
  width: 25.825px;
  height: 25.825px;
  border-radius: 50%;
  object-fit: cover;
}

.tm-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 8.88px;
  font-weight: 600;
}

.tm-badge.admin {
  background: #eef2ff;
  color: #4f46e5;
}

.tm-badge.active {
  background: #ecfdf5;
  color: #059669;
}

.tm-badge.pending {
  background: #fef3c7;
  color: #b45309;
}

/* === TESTIMONIAL STACK === */
#testimonials .ts-container {
  max-width: 480px;
  margin: 2.5rem auto 0;
  position: relative;
  height: 440px;
}

.ts-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.ts-card {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 340px;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s var(--ease);
  cursor: pointer;
  user-select: none;
}

.ts-card img {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  object-fit: cover;
  align-self: center;
  border: 2px solid rgba(181, 177, 255, 0.3);
}

.ts-card .quote {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #a3afd3;
}

.ts-card .author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e1f4ff;
}

.ts-card .role {
  font-size: 0.8125rem;
  color: #8181ac;
}

.ts-card:nth-last-child(n+5) {
  --x: calc(-50% + 90px);
  transform: translate(var(--x), -50%) scale(0.78) rotate(-8deg);
  opacity: 0.4;
}

.ts-card:nth-last-child(4) {
  --x: calc(-50% + 60px);
  transform: translate(var(--x), -50%) scale(0.85) rotate(-5deg);
  opacity: 0.6;
}

.ts-card:nth-last-child(3) {
  --x: calc(-50% + 30px);
  transform: translate(var(--x), -50%) scale(0.92) rotate(-3deg);
  opacity: 0.8;
}

.ts-card:nth-last-child(2) {
  --x: calc(-50%);
  transform: translate(var(--x), -50%) scale(1) rotate(0deg);
  opacity: 1;
}

.ts-card:nth-last-child(1) {
  --x: calc(-50% - 30px);
  transform: translate(var(--x), -50%) scale(1.05) rotate(2deg);
  opacity: 0.9;
}

.swap {
  animation: swap 1.3s var(--ease) forwards;
}

@keyframes swap {
  30% {
    transform: translate(calc(var(--x) - 200px), -50%) scale(0.78) rotate(-10deg) rotateY(50deg);
    animation-timing-function: ease-in;
  }

  100% {
    transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
    z-index: -1;
  }
}

/* === PRICING TEASER === */
#pricing .pricing-teaser {
  background-image: linear-gradient(169deg, #b5b1ff1a, #9990), linear-gradient(144deg, #191831, #07071c);
  border-radius: var(--radius--large);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 700px;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pricing-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(89, 146, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-statement {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.pricing-statement .hl {
  color: var(--pastel--pastel-blue-dark);
}

.pricing-statement .strike {
  text-decoration: line-through;
  text-decoration-color: #f54768;
  text-decoration-thickness: 2px;
}

.pricing-sub {
  font-size: 1.0625rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

.pricing-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* === FINAL CTA (HeyReach: hc2-cta-card style) === */
#cta {
  padding: 5rem 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #050514;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(2, 87, 250, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.cta-title .hl {
  color: var(--pastel--pastel-blue-dark);
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 550px;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* === FAQ === */
#faq {
  padding: 5rem 40px;
}

.faq-container {
  max-width: 700px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #3b3a60;
  cursor: pointer;
}

.faq-q {
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #e1f4ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--pastel--pastel-blue-dark);
}

.faq-chev {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  font-size: 0.9375rem;
}

.faq-q.open .faq-chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 0 1.25rem 0;
}

.faq-a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* === FOOTER === */
.footer {
  padding: 2rem;
  border-top: 1px solid #3b3a60;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

/* === SCROLLCRAFT === */
.sc-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sc-stack>* {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.sc-stack.sc-in>* {
  opacity: 1;
  transform: translateY(0);
}

/* === HYPERFRAMES PATTERNS (adapted from video timeline → scroll-triggered) === */

/* shimmer-sweep: specular gradient sweep across text (CSS gradient mask) */
.shimmer-sweep-target {
  position: relative;
  display: inline-block;
}

.shimmer-sweep-target .shimmer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg,
      transparent 0%,
      transparent calc(var(--shimmer-pos, -20%) - var(--shimmer-width, 20%) / 2),
      var(--shimmer-color, rgba(255, 255, 255, 0.55)) var(--shimmer-pos, -20%),
      transparent calc(var(--shimmer-pos, -20%) + var(--shimmer-width, 20%) / 2),
      transparent 100%);
  mix-blend-mode: overlay;
}

/* soft-blur-in: blur-to-sharp + lift reveal (premium section reveal).
   Hidden state is scoped under .sc-js (set by the GSAP init) so content is
   visible by default if GSAP is missing or fails — images can never be
   stuck invisible on mobile. */
.sc-js .hf-soft-blur-in {
  opacity: 0;
  transform: translate3d(0, var(--hf-soft-blur-y, 28px), 0);
  filter: blur(var(--hf-soft-blur-radius, 18px));
  will-change: transform, opacity, filter;
}

/* tracking-in: opacity/rise reveal for eyebrows — letter-spacing is fixed by the
   designer's pill style (3px), so this only animates opacity + y */
.sc-js .hf-tracking-in {
  opacity: 0;
  transform: translateY(var(--hf-tracking-y, 8px));
  will-change: opacity, transform;
}

/* count-up stat card: progress track fill (dark scheme) */
.hf-stat-track {
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: rgba(245, 245, 247, 0.12);
  overflow: hidden;
  margin-top: 0.5rem;
}

.hf-stat-fill {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--green--green-light);
  transform-origin: left center;
  transform: scaleX(0);
}

/* logo-wall: cells start hidden, GSAP assembles them (scoped under .sc-js) */
.sc-js .hf-logo-cell {
  opacity: 0;
  transform: scale(0.94);
  will-change: opacity, transform;
}

/* === RESPONSIVE === */
/* Tablet / small desktop: hero stacks, image FIRST on mobile */
@media (max-width: 968px) {
  .hero-split {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .hero-visual {
    order: -1 !important;
    max-width: 100% !important;
  }

  .hero-content {
    order: 2 !important;
    max-width: 100% !important;
    align-items: center !important;
  }

  .hero-content .hero-title,
  .hero-content .hero-sub {
    text-align: center !important;
  }

  .hero-float {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-actions .btn {
    padding: 0.5rem 0.875rem !important;
    font-size: 0.8125rem !important;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  #hero {
    padding: 5.5rem 1.25rem 1.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    line-height: 130%;
  }

  .hero-sub {
    font-size: 1rem;
  }

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

  .hero-actions .btn {
    flex: 1 1 100%;
    max-width: 340px;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }

  .stat-item {
    padding: 0;
    width: fit-content;
    max-width: 100px;
    padding: 16px;
  }

  .stat-divider {
    display: none;
  }

  .hero-mockup {
    border-radius: 1rem;
  }

  .hero-mockup-badge {
    top: -6px;
    right: -6px;
    font-size: 10px;
    padding: 3px 8px;
  }

  .hero-float {
    display: none !important;
  }

  /* Company logos: 3-up grid on mobile */
  #companies {
    padding: 2rem 1.25rem !important;
  }

  .company-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .company-logo {
    max-height: 24px;
    max-width: 90px;
  }

  /* Eyebrow: long badges must stay inside the glass pill on narrow screens */
  .section-badge {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* Proof bar: single-line rotating strip (marquee) on mobile */
  #proof {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 50px;
    padding: 1rem 0;
  }

  .proof-avatars {
    order: 0;
    width: auto;
    justify-content: center;
  }

  .proof-track,
  #proof .proof-track:nth-of-type(2) {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    padding: 0 1.25rem;
    animation: proof-marquee 28s linear infinite;
  }

  @keyframes proof-marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* Typography scale-down */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-sub {
    font-size: 1rem;
  }

  #reframe .headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  #reframe .body {
    font-size: 1rem;
  }

  .metric-pills {
    gap: 0.625rem;
  }

  .metric-pill {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    width: 100%;
  }

  /* Loop diagram: vertical stack */
  .loop-node {
    max-width: 100%;
    min-width: 100%;
  }

  .loop-arrow {
    transform: rotate(90deg);
    padding: 0.375rem 0;
  }

  /* Cards full width */
  .step-card,
  .comment-card,
  .ts-card {
    max-width: 100% !important;
  }

  .step-card {
    min-width: 100%;
  }

  .img-pair {
    flex-direction: column;
  }

  .img-pair .img-frame {
    min-width: 100%;
    max-width: 100%;
  }

  .img-wide,
  .img-medium {
    max-width: 100%;
  }

  .feature-point {
    padding: 1rem !important;
    width: 100% !important;
    max-width: none !important;
  }

  .quality-stance {
    gap: 1.25rem;
  }

  .quality-marker {
    min-width: 100%;
    max-width: 100%;
  }

  /* Team grid: 2-up */
  .team-grid {
    gap: 0.75rem;
  }

  .team-item {
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    padding: 1rem 0.75rem;
  }

  /* Thread mobile polish */
  .gr-thread-shell {
    padding: 20px 14px;
    border-radius: 20px;
    overflow: hidden;
  }

  .gr-thread-card {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .gr-thread-badge {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 14px;
    padding: 6px 14px;
    right: -9px;
  }

  .gr-thread-arrow {
    display: none !important;
  }

  .gr-thread-highlight {
    display: none !important;
  }

  .gr-thread-item.reply {
    padding-left: 24px;
  }

  .gr-thread-item.reply .gr-thread-body,
  .gr-thread-item.reply .gr-thread-meta {
    padding-left: 0;
  }

  .gr-thread-item:not(.reply) .gr-thread-body {
    padding: 12px 14px;
  }

  .gr-thread-name {
    font-size: 15px;
    flex-wrap: wrap;
  }

  .gr-thread-meta {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }

  .gr-thread-collapse {
    padding-left: 24px;
  }

  /* Team dashboard: table scrolls inside its container (never widens the page) */
  .tm-left {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 0.807px solid #e2e8f0;
  }

  .tm-panels {
    flex-direction: column;
  }

  /* Testimonials */
  #testimonials .ts-container {
    height: 400px;
  }

  .ts-card {
    width: 280px;
    padding: 1.5rem 1.25rem;
  }

  /* Pricing + CTA */
  .pricing-teaser {
    padding: 2rem 1.25rem;
  }

  .pricing-btns .btn {
    flex: 1 1 100%;
    max-width: 340px;
  }

  #cta {
    padding: 4rem 1.25rem;
  }

  .cta-btns .btn {
    flex: 1 1 100%;
    max-width: 340px;
  }

  #faq {
    padding: 4rem 1.25rem;
  }

  .faq-q {
    font-size: 1rem;
  }

  /* Glows off on mobile (perf) */
  .glow-hero,
  .glow-mid,
  .grid-overlay {
    display: none;
  }

  /* Touch polish */
  .btn {
    -webkit-tap-highlight-color: transparent;
  }

  .faq-item {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .company-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .hero-avatar-img {
    width: 34px;
    height: 34px;
  }

  .stat-number {
    font-size: 1.375rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-mockup-post {
    font-size: 0.8125rem;
  }

  .hero-mockup-comment-text {
    font-size: 0.8125rem;
  }

  .ts-card {
    width: 250px;
  }

  #testimonials .ts-container {
    height: 380px;
  }

  .section {
    padding: 3rem 1rem;
  }

  #hero {
    padding: 5rem 1rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .sc-stack>* {
    opacity: 1 !important;
    transform: none !important;
  }

  .hf-soft-blur-in,
  .hf-tracking-in,
  .hf-logo-cell {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .glow-hero,
  .glow-mid,
  .grid-overlay {
    display: none;
  }
}