/* ============================================================
   landing.css — shared styles for RH Fardin SEO landing pages
   Loaded AFTER styles.css. All net-new classes are prefixed .lp-
   to guarantee zero collision. Reuses design tokens + keyframes
   from styles.css (--accent, --ease, halo-breathe, pulse,
   spark-fade, hub-ping, wire-draw …). Vector-only, zero new JS.
   ============================================================ */

/* ---- generic landing helpers ---- */
.lp-two {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.lp-stack > * + * { margin-top: 1rem; }
.lp-muted { color: var(--text-soft); line-height: 1.55; }
.lp-inline-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--accent); font-weight: 500;
  transition: opacity var(--t-fast) var(--ease);
}
.lp-inline-link:hover { opacity: .7; }
.lp-inline-link [data-lucide] { width: 16px; height: 16px; }

/* animated availability dot inside the hero eyebrow pill */
.lp-dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 10px #22c55e;
  animation: pulse 2s var(--ease) infinite;   /* reuse */
}

/* ============================================================
   HERO — two-column landing hero
   ============================================================ */
.lp-hero {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 9rem var(--pad) 3.5rem;
}
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.lp-hero-copy { max-width: 600px; }
.lp-hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 600; line-height: 1.02; letter-spacing: -0.03em;
  margin: 1.1rem 0 1.25rem;
}
.lp-hero-title em { font-style: italic; font-weight: 700; color: var(--accent); }
.lp-hero-blurb { font-size: 1.06rem; color: var(--text-soft); line-height: 1.6; max-width: 33ch; }
.lp-hero-blurb strong { color: var(--text); font-weight: 600; }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.9rem 0 1.75rem; }
.lp-btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1.15rem 1.6rem; border-radius: var(--radius-pill);
  background: transparent; border: 1.5px solid var(--stroke-2); color: var(--text);
  font-size: 1rem; font-weight: 500;
  transition: all var(--t-fast) var(--ease);
}
.lp-btn-ghost:hover { transform: translateY(-3px); border-color: var(--text); box-shadow: var(--shadow-card); }
.lp-btn-ghost [data-lucide] { width: 18px; height: 18px; }

/* ---- hero visual: glassmorphic browser that builds itself ---- */
.lp-hero-visual {
  position: relative; width: 100%; max-width: 540px;
  margin-inline: auto; aspect-ratio: 5 / 4;
  display: grid; place-items: center; isolation: isolate;
}
.lp-halo {
  position: absolute; inset: -8% -6%; z-index: 0; border-radius: 50%;
  background:
    radial-gradient(50% 60% at 50% 50%, var(--accent-soft) 0%, var(--accent-pale) 32%, transparent 70%),
    radial-gradient(30% 35% at 55% 45%, var(--accent-glow) 0%, transparent 70%);
  filter: blur(10px); pointer-events: none;
  animation: halo-breathe 12s var(--ease) infinite;   /* reuse */
}
.lp-browser {
  position: relative; z-index: 2; width: 94%;
  background: rgba(255,255,255,.62);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden; will-change: transform;
  animation: lp-float 9s var(--ease) infinite;
}
@keyframes lp-float { 0%,100% { transform: translateY(0) rotate(-.3deg); } 50% { transform: translateY(-10px) rotate(.3deg); } }

.lp-browser-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .85rem; border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,.45);
}
.lp-tl { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.lp-tl.r { background: #ff5f57; } .lp-tl.y { background: #febc2e; } .lp-tl.g { background: #28c840; }
.lp-url {
  margin-left: .4rem; flex: 1; display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; color: var(--text-mute); font-weight: 500;
  background: var(--bg); border: 1px solid var(--stroke);
  border-radius: var(--radius-pill); padding: .3rem .7rem;
}
.lp-url [data-lucide] { width: 11px; height: 11px; color: var(--accent); }

.lp-viewport { position: relative; padding: 1rem 1.1rem 1.25rem; min-height: 232px; display: flex; flex-direction: column; gap: .65rem; }
/* the site builds once, then stays built — "fast, done, live" */
.lp-block { opacity: 0; transform: translateY(12px); border-radius: 8px; animation: lp-block-in .7s var(--ease) forwards; }
@keyframes lp-block-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-b-nav  { animation-delay: 0s; }
.lp-b-h1   { animation-delay: .45s; }
.lp-b-h2   { animation-delay: .7s; }
.lp-b-img  { animation-delay: .95s; }
.lp-b-btn  { animation-delay: 1.25s; }
.lp-b-nav { display: flex; align-items: center; justify-content: space-between; padding: .15rem 0; }
.lp-logo-chip { width: 46px; height: 14px; border-radius: 5px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.lp-nav-links { display: flex; gap: .4rem; }
.lp-nav-links i { width: 18px; height: 7px; border-radius: 4px; background: var(--bg-3); }
.lp-b-h1 { height: 18px; width: 78%; background: var(--text); opacity: .82; border-radius: 6px; }
.lp-b-h2 { height: 11px; width: 55%; background: var(--bg-3); border-radius: 6px; }
.lp-b-img { height: 96px; width: 100%; border-radius: 10px; background: linear-gradient(135deg, var(--accent-pale), var(--accent-soft)); display: grid; place-items: center; }
.lp-img-glyph { width: 34px; height: 34px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .85; }
.lp-b-btn { align-self: flex-start; font-size: .72rem; font-weight: 600; color: #fff; background: var(--accent); padding: .5rem .95rem; border-radius: var(--radius-pill); box-shadow: 0 6px 16px -6px var(--accent-glow); }

.lp-pill {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg-2); border: 1px solid var(--stroke); border-radius: var(--radius-pill);
  padding: .45rem .8rem; font-size: .78rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-card); white-space: nowrap;
}
.lp-pill.live { top: 7%; left: -2%; }
.lp-pill.speed { bottom: 8%; right: -3%; animation: lp-float 8s var(--ease) .5s infinite; }
/* seat the mockup button bottom-right so the corner badge never collides with it */
.lp-b-btn { align-self: flex-end; }
.lp-pill.speed strong { color: var(--accent); }

.lp-spark {
  position: absolute; z-index: 3; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); opacity: 0;
  animation: spark-fade 6s var(--ease) infinite;   /* reuse */
}
.lp-spark.s1 { top: 10%; right: 14%; animation-delay: 0s; }
.lp-spark.s2 { bottom: 16%; left: 5%; animation-delay: 2s; }
.lp-spark.s3 { top: 46%; right: 1%; animation-delay: 4s; }

/* ============================================================
   FEATURE CARD — animated ping on the lead value icon
   ============================================================ */
.lp-feat-icon { position: relative; }
.lp-feat-icon .lp-ping {
  position: absolute; inset: 0; border-radius: inherit;
  border: 1.5px solid var(--accent); opacity: 0;
  animation: hub-ping 3.4s var(--ease) infinite;   /* reuse */
}

/* ============================================================
   PAGESPEED GAUGE
   ============================================================ */
.lp-perf {
  display: flex; flex-wrap: wrap; gap: 2.5rem 3rem; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--stroke);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.lp-gauge { position: relative; width: clamp(150px, 22vw, 196px); aspect-ratio: 1; flex: none; }
.lp-gauge-svg { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.lp-gauge-track { fill: none; stroke: var(--bg-3); stroke-width: 9; }
.lp-gauge-arc {
  fill: none; stroke: url(#lpGaugeGrad); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.lp-gauge.in .lp-gauge-arc, .lp-gauge-wrap.in .lp-gauge-arc { animation: lp-gauge-fill 1.9s var(--ease) forwards; }
@keyframes lp-gauge-fill { to { stroke-dashoffset: 2; } }   /* 100-98 = 2 */
.lp-gauge-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: .1rem; }
.lp-gauge-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-gauge-cap { font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--text-mute); }
.lp-perf-copy { max-width: 360px; }
.lp-perf-copy h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: .65rem; }
.lp-perf-copy p { color: var(--text-soft); line-height: 1.55; font-size: .98rem; }

/* growth line chart */
.lp-chart { width: 100%; max-width: 300px; margin-top: 1.25rem; }
.lp-chart-svg { width: 100%; height: auto; overflow: visible; }
.lp-chart-area { fill: url(#lpChartFill); opacity: 0; transition: opacity .8s var(--ease); }
.lp-chart.in .lp-chart-area { opacity: 1; transition-delay: .6s; }
.lp-chart-line { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 2px 6px var(--accent-glow)); }
.lp-chart.in .lp-chart-line { animation: lp-chart-grow 1.8s var(--ease) forwards; }
@keyframes lp-chart-grow { to { stroke-dashoffset: 0; } }
.lp-chart-dot { fill: var(--accent); opacity: 0; }
@supports (offset-distance: 0%) {
  .lp-chart-dot { offset-path: path("M8 96 L60 80 L108 86 L156 50 L208 24 L232 12"); }
  .lp-chart.in .lp-chart-dot { animation: lp-chart-travel 1.8s var(--ease) forwards; }
}
@keyframes lp-chart-travel { 0% { offset-distance: 0%; opacity: 0; } 12% { opacity: 1; } 100% { offset-distance: 100%; opacity: 1; } }
.lp-chart-cap { font-size: .8rem; color: var(--text-mute); margin-top: .5rem; text-align: center; }

/* ============================================================
   LOCAL MAP-PIN CONSTELLATION
   ============================================================ */
.lp-local {
  display: flex; flex-direction: column; align-items: center; gap: .9rem; text-align: center;
  background: var(--bg-2); border: 1px solid var(--stroke);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.lp-pin { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-pale); color: var(--accent); position: relative; }
.lp-pin [data-lucide] { width: 22px; height: 22px; }
.lp-pin::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 var(--accent-glow); animation: lp-pin-pulse 2.6s var(--ease) infinite; }
@keyframes lp-pin-pulse { 0% { box-shadow: 0 0 0 0 var(--accent-glow); } 70%,100% { box-shadow: 0 0 0 16px transparent; } }
.lp-constellation { width: min(280px, 86%); height: auto; overflow: visible; }
.lp-c-line { fill: none; stroke: var(--accent); stroke-width: 1; stroke-linecap: round; opacity: .4; stroke-dasharray: 1; stroke-dashoffset: 1; }
.lp-local.in .lp-c-line { animation: wire-draw 1.4s var(--ease) forwards; }   /* reuse */
.lp-c-dot { fill: var(--accent); opacity: 0; animation: lp-twinkle 4s var(--ease) infinite; }
.lp-c-dot:nth-of-type(1) { animation-delay: .3s; }
.lp-c-dot:nth-of-type(2) { animation-delay: .9s; }
.lp-c-dot:nth-of-type(3) { animation-delay: 1.5s; }
.lp-c-dot:nth-of-type(4) { animation-delay: 2.1s; }
@keyframes lp-twinkle { 0%,100% { opacity: .25; } 50% { opacity: .95; } }
.lp-local-text { font-size: 1rem; color: var(--text-soft); }
.lp-local-text strong { color: var(--text); font-weight: 600; }

/* ============================================================
   ANIMATED SECTION DIVIDER
   ============================================================ */
.lp-divider {
  height: 1px; margin: 0 var(--pad); position: relative; overflow: hidden;
  background: linear-gradient(90deg, transparent, var(--stroke-2) 25%, var(--accent) 50%, var(--stroke-2) 75%, transparent);
  opacity: .5;
}
.lp-divider::after {
  content: ""; position: absolute; top: 0; left: -30%; width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  animation: lp-sweep 5.5s var(--ease) infinite;
}
@keyframes lp-sweep { 0% { left: -30%; } 60%,100% { left: 130%; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero-grid, .lp-two { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-hero-copy { max-width: none; }
  .lp-hero-visual { order: -1; }
}
@media (max-width: 720px) {
  .lp-hero { padding: 7.5rem var(--pad) 2.5rem; }
  .lp-hero-visual { max-width: 380px; }
  .lp-pill.live { left: 2%; } .lp-pill.speed { right: 2%; }
  .lp-perf { gap: 1.75rem; }
}

/* ============================================================
   REDUCED MOTION — force finished states (styles.css also freezes
   all animations; here we ensure nothing is stuck blank)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .lp-block { opacity: 1 !important; transform: none !important; animation: none !important; }
  .lp-browser, .lp-pill, .lp-spark, .lp-halo, .lp-dot-live, .lp-float { animation: none !important; }
  .lp-spark { opacity: .5 !important; }
  .lp-gauge-arc { stroke-dashoffset: 2 !important; animation: none !important; }
  .lp-chart-line { stroke-dashoffset: 0 !important; animation: none !important; }
  .lp-chart-area { opacity: 1 !important; }
  .lp-chart-dot { display: none !important; }
  .lp-c-line { stroke-dashoffset: 0 !important; animation: none !important; }
  .lp-c-dot { opacity: .7 !important; animation: none !important; }
  .lp-pin::after, .lp-feat-icon .lp-ping { animation: none !important; opacity: 0 !important; }
  .lp-divider::after { animation: none !important; opacity: 0 !important; }
}

/* ============================================================
   v2 — EDITORIAL LAYOUT + FLOWING/ROLLING MOTION
   Less boxed, more whitespace, hand-crafted feel.
   ============================================================ */

/* generic editorial wrappers (wider, airy) */
.lp-wrap { max-width: var(--container); margin: 0 auto; padding: clamp(5rem, 10vw, 8.5rem) var(--pad); position: relative; z-index: 2; }
.lp-wrap.tight { max-width: 1040px; }
.lp-kicker { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.4rem; }
.lp-kicker::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.lp-display { font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; }
.lp-display em { font-style: italic; color: var(--accent); }
.lp-display .out { -webkit-text-stroke: 1.4px var(--text); color: transparent; font-style: italic; }

/* rich prose */
.lp-prose { max-width: 720px; }
.lp-lead-xl { font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.5; color: var(--text); font-weight: 500; letter-spacing: -0.01em; }
.lp-prose p { font-size: 1.1rem; line-height: 1.75; color: var(--text-soft); margin-top: 1.2rem; }
.lp-prose p strong { color: var(--text); font-weight: 600; }
.lp-prose .lp-sign { margin-top: 1.6rem; font-style: italic; color: var(--text-mute); }

/* rotating circular text badge ("rolling circle") */
.lp-spin-badge { position: relative; width: clamp(108px, 12vw, 138px); height: clamp(108px, 12vw, 138px); flex: none; }
.lp-spin-badge .ring { width: 100%; height: 100%; animation: lp-spin 34s linear infinite; transform-origin: center; }
.lp-spin-badge text { font-size: 13.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; fill: var(--text-soft); }
.lp-spin-badge .core { position: absolute; inset: 0; display: grid; place-items: center; }
.lp-spin-badge .core i { width: 24px; height: 24px; color: var(--accent); }
.lp-spin-badge .core .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
@keyframes lp-spin { to { transform: rotate(360deg); } }

/* orbiting dots / rolling circles around a focal point */
.lp-orbit { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.lp-orbit span { position: absolute; top: 50%; left: 50%; border: 1px solid var(--stroke-2); border-radius: 50%; transform: translate(-50%, -50%); }
.lp-orbit span::before, .lp-orbit span::after { content: ""; position: absolute; left: 50%; margin-left: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }
.lp-orbit span::before { top: -5px; }
.lp-orbit span::after { bottom: -5px; width: 7px; height: 7px; margin-left: -3.5px; opacity: .7; }
.lp-orbit .o1 { width: 116%; height: 116%; animation: lp-spin 18s linear infinite; }
.lp-orbit .o2 { width: 148%; height: 148%; animation: lp-spin 28s linear infinite reverse; opacity: .7; }
.lp-orbit .o2::before, .lp-orbit .o2::after { background: var(--accent-soft); }
.lp-orbit .o3 { width: 178%; height: 178%; animation: lp-spin 40s linear infinite; opacity: .5; }
@media (max-width: 560px) { .lp-orbit .o3 { display: none; } .lp-orbit .o2 { width: 132%; height: 132%; } }

/* big word marquee strips */
.lp-wordstrip { overflow: hidden; padding: clamp(1.6rem, 4vw, 2.8rem) 0; border-block: 1px solid var(--stroke); position: relative; z-index: 2; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%); }
.lp-wordstrip-track { display: flex; align-items: center; gap: 0; width: max-content; animation: lp-marq 34s linear infinite; will-change: transform; }
.lp-wordstrip.rev .lp-wordstrip-track { animation-direction: reverse; }
.lp-wordstrip:hover .lp-wordstrip-track, .lp-wordstrip:focus-within .lp-wordstrip-track { animation-play-state: paused; }
.lp-word { display: inline-flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; font-size: clamp(2rem, 6vw, 4.2rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.lp-word em { font-style: italic; color: var(--accent); }
.lp-word.out { -webkit-text-stroke: 1.4px var(--text); color: transparent; }
.lp-word .wd { width: 13px; height: 13px; border-radius: 50%; background: var(--accent); flex: none; }
@keyframes lp-marq { to { transform: translateX(-50%); } }

/* editorial numbered feature list (replaces value-card grid) */
.lp-features { max-width: 1000px; margin: 0 auto; }
.lp-feature { display: grid; grid-template-columns: 3.2rem 1fr auto; gap: clamp(1.25rem, 4vw, 3rem); align-items: start; padding: clamp(1.7rem, 4vw, 2.6rem) 0; border-top: 1px solid var(--stroke); }
.lp-feature:last-child { border-bottom: 1px solid var(--stroke); }
.lp-feature-num { font-size: 1rem; font-weight: 600; color: var(--text-mute); font-variant-numeric: tabular-nums; padding-top: .5rem; transition: color var(--t-fast) var(--ease); }
.lp-feature-main h3 { font-size: clamp(1.35rem, 3vw, 1.95rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: .5rem; transition: color var(--t-fast) var(--ease); }
.lp-feature-main p { color: var(--text-soft); line-height: 1.65; max-width: 54ch; font-size: 1.02rem; }
.lp-feature-ic { width: 46px; height: 46px; display: grid; place-items: center; color: var(--accent); opacity: .55; transition: opacity var(--t-fast) var(--ease), transform var(--t-med) var(--ease); }
.lp-feature-ic [data-lucide] { width: 26px; height: 26px; stroke-width: 1.5; }
.lp-feature:hover .lp-feature-num { color: var(--accent); }
.lp-feature:hover .lp-feature-main h3 { color: var(--accent); }
.lp-feature:hover .lp-feature-ic { opacity: 1; transform: translateX(-4px) rotate(-6deg); }

/* big centered statement / pull quote */
.lp-statement { max-width: 1120px; margin: 0 auto; padding: clamp(4.5rem, 10vw, 8rem) var(--pad); text-align: center; position: relative; z-index: 2; }
.lp-statement .mark { font-size: clamp(3rem, 8vw, 6rem); line-height: 0; color: var(--accent-soft); font-weight: 700; }
.lp-statement p { font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 500; line-height: 1.28; letter-spacing: -0.02em; }
.lp-statement em { font-style: italic; color: var(--accent); }
.lp-statement .soft { color: var(--text-mute); }
.lp-statement .by { margin-top: 1.75rem; font-size: .95rem; color: var(--text-mute); letter-spacing: .02em; }

/* flowing dashed wave divider */
.lp-flowline { width: 100%; height: 56px; display: block; color: var(--accent); opacity: .55; }
.lp-flowline path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 7 11; animation: lp-flow 1.1s linear infinite; }
@keyframes lp-flow { to { stroke-dashoffset: 18; } }

/* inline editorial stats (no boxes) */
.lp-stats-inline { display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 5.5rem); justify-content: center; }
.lp-statx { text-align: center; min-width: 150px; }
.lp-statx strong { display: block; font-size: clamp(3rem, 7.5vw, 5.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-statx strong em { font-style: normal; color: var(--accent); }
.lp-statx .lab { display: block; margin-top: .75rem; color: var(--text-mute); font-size: .96rem; }
.lp-statx .uf { width: 56%; height: 2px; margin: 1rem auto 0; background: linear-gradient(90deg, transparent, var(--accent), transparent); transform: scaleX(0); transform-origin: center; transition: transform .9s var(--ease); }
.lp-statx.in .uf, .reveal.in .uf { transform: scaleX(1); }

/* flowing testimonials marquee (borderless quotes) */
.lp-testi-flow { overflow: hidden; position: relative; }
.lp-testi-flow::before, .lp-testi-flow::after { content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 3; pointer-events: none; }
.lp-testi-flow::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.lp-testi-flow::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.lp-testi-row { display: flex; gap: 0; width: max-content; animation: lp-marq 60s linear infinite; }
.lp-testi-row.rev { animation-direction: reverse; }
.lp-testi-flow:hover .lp-testi-row, .lp-testi-flow:focus-within .lp-testi-row { animation-play-state: paused; }
.lp-quote { flex: 0 0 clamp(320px, 36vw, 440px); padding: .4rem clamp(1.75rem, 3vw, 2.75rem); border-left: 1px solid var(--stroke); }
.lp-quote p { font-size: 1.06rem; line-height: 1.6; color: var(--text); }
.lp-quote-by { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.lp-quote-by img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.lp-quote-by b { display: block; font-size: .92rem; font-weight: 600; }
.lp-quote-by span { display: block; font-size: .82rem; color: var(--text-mute); }

/* closing CTA band with rolling badge */
.lp-cta-band { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--pad); }
.lp-cta-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; background: linear-gradient(135deg, #1a1530 0%, #2a1f56 60%, #3b2a78 100%); color: #fff; border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.lp-cta-inner .sky { position: absolute; inset: -40% -10% auto auto; width: 60%; height: 200%; background: radial-gradient(circle, rgba(124,58,237,.5) 0%, transparent 60%); pointer-events: none; }
.lp-cta-inner h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; position: relative; }
.lp-cta-inner h2 em { font-style: italic; color: var(--accent-soft); }
.lp-cta-inner p { margin-top: 1rem; color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.6; max-width: 46ch; position: relative; }
.lp-cta-actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .85rem; position: relative; }
.lp-cta-band .lp-spin-badge text { fill: rgba(255,255,255,.8); }
.lp-cta-band .lp-spin-badge .core i { color: #fff; }
.lp-btn-light { display: inline-flex; align-items: center; gap: .6rem; padding: 1.15rem 1.9rem; border-radius: var(--radius-pill); background: #fff; color: var(--text); font-weight: 500; font-size: 1rem; transition: all var(--t-fast) var(--ease); }
.lp-btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.lp-btn-light [data-lucide] { width: 18px; height: 18px; }
.lp-btn-outline-light { display: inline-flex; align-items: center; gap: .55rem; padding: 1.15rem 1.7rem; border-radius: var(--radius-pill); border: 1.5px solid rgba(255,255,255,.35); color: #fff; font-weight: 500; font-size: 1rem; transition: all var(--t-fast) var(--ease); }
.lp-btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* gauge with orbiting rings + hero floating badge */
.lp-gauge-wrap { position: relative; width: clamp(210px, 28vw, 280px); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; }
.lp-gauge-wrap .lp-gauge { width: clamp(150px, 19vw, 190px); }
.lp-hero-badge { position: absolute; width: 104px; height: 104px; left: -34px; bottom: -38px; z-index: 5; background: var(--bg-2); border-radius: 50%; box-shadow: var(--shadow-pop); padding: 7px; }
@media (max-width: 720px) { .lp-hero-badge { width: 84px; height: 84px; left: -14px; bottom: -22px; } }

/* price floor note */
.lp-floor { display: inline-flex; align-items: center; gap: .6rem; margin: 0 auto 0; padding: .6rem 1.1rem; border: 1px dashed var(--accent); border-radius: var(--radius-pill); color: var(--accent); font-weight: 600; font-size: .92rem; }
.lp-floor [data-lucide] { width: 16px; height: 16px; }

/* v2 responsive */
@media (max-width: 900px) {
  .lp-cta-inner { grid-template-columns: 1fr; }
  .lp-feature { grid-template-columns: 2.4rem 1fr; }
  .lp-feature-ic { display: none; }
}
@media (max-width: 720px) {
  .lp-wrap { padding: clamp(3.5rem, 12vw, 5rem) var(--pad); }
  .lp-statx { min-width: 40%; }
}

/* v2 reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-spin-badge .ring, .lp-orbit span, .lp-wordstrip-track, .lp-testi-row, .lp-flowline path { animation: none !important; }
  .lp-statx .uf { transform: scaleX(1) !important; }
}

/* ============================================================
   v3 — REVIEW FIXES: a11y, resilience, de-boxing, WhatsApp
   ============================================================ */

/* keyboard focus visibility (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: inherit; }
.lp-cta-inner :focus-visible { outline-color: #fff; }

/* no-JS / pre-JS resilience — never leave the page invisible */
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.no-js .lp-gauge-arc { stroke-dashoffset: 2; }
.no-js .lp-chart-line { stroke-dashoffset: 0; }
.no-js .lp-chart-area { opacity: 1; }
.no-js .lp-statx .uf { transform: scaleX(1); }

/* skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--text); color: var(--bg-2); padding: .75rem 1.15rem; border-radius: 0 0 var(--radius) 0; font-weight: 600; }
.skip-link:focus { left: 0; }

/* shared section intro (replaces drifting inline styles) */
.lp-section-intro { margin-top: 1.25rem; color: var(--text-soft); font-size: 1.1rem; line-height: 1.7; max-width: 58ch; }
.lp-section-intro.center { margin-left: auto; margin-right: auto; }

/* DE-BOXED SERVICES — editorial index list (rhymes with .lp-features) */
.lp-svc { max-width: 1000px; margin: 0 auto; }
.lp-svc-row { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.25rem, 4vw, 2.5rem); align-items: center; padding: clamp(1.5rem, 3.5vw, 2.3rem) 0; border-top: 1px solid var(--stroke); }
.lp-svc-row:last-child { border-bottom: 1px solid var(--stroke); }
.lp-svc-logos { display: flex; align-items: center; flex: none; }
.lp-svc-logos span { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--stroke); box-shadow: var(--shadow-card); margin-left: -12px; }
.lp-svc-logos span:first-child { margin-left: 0; }
.lp-svc-logos img { width: 21px; height: 21px; }
.lp-svc-main h3 { font-size: clamp(1.3rem, 2.6vw, 1.85rem); font-weight: 600; letter-spacing: -0.02em; transition: color var(--t-fast) var(--ease); }
.lp-svc-main p { color: var(--text-soft); margin-top: .4rem; max-width: 60ch; line-height: 1.6; font-size: 1.02rem; }
.lp-svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; padding: 0; }
.lp-svc-tags li { list-style: none; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-mute); border: 1px solid var(--stroke); border-radius: var(--radius-pill); padding: .28rem .7rem; }
.lp-svc-arrow { color: var(--text-pale); transition: transform .35s var(--ease), color var(--t-fast) var(--ease); }
.lp-svc-arrow [data-lucide] { width: 26px; height: 26px; }
.lp-svc-row:hover .lp-svc-main h3 { color: var(--accent); }
.lp-svc-row:hover .lp-svc-arrow { color: var(--accent); transform: translate(5px, -5px); }
@media (max-width: 760px) { .lp-svc-row { grid-template-columns: 1fr; gap: .9rem; } .lp-svc-arrow { display: none; } .lp-svc-logos span { width: 34px; height: 34px; } }

/* FEATURED PRICE CARD — lighter accent treatment so the dark CTA band is the only dark climax */
.price-card.featured { background: linear-gradient(180deg, var(--accent-pale) 0%, var(--bg-2) 62%); color: var(--text); border: 1.5px solid var(--accent); box-shadow: var(--shadow-soft); }
.price-card.featured .price-tag { color: var(--accent); }
.price-card.featured .price-head p { color: var(--text-soft); }
.price-card.featured .price-amount { border-bottom-color: var(--stroke); }
.price-card.featured .price-amount sup { color: var(--text-soft); }
.price-card.featured .price-amount strong { color: var(--text); }
.price-card.featured .price-amount span { color: var(--text-mute); }
.price-card.featured .price-list li { color: var(--text-soft); }
.price-card.featured .price-list li [data-lucide] { background: var(--accent-pale); color: var(--accent); }
.price-card.featured .price-cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.price-card.featured .price-cta:hover { background: var(--accent-2); border-color: var(--accent-2); box-shadow: var(--shadow-pop); }

/* WhatsApp CTA — on-brand outline with a green icon affordance */
.lp-btn-wa { display: inline-flex; align-items: center; gap: .55rem; padding: 1.15rem 1.6rem; border-radius: var(--radius-pill); background: transparent; border: 1.5px solid var(--stroke-2); color: var(--text); font-weight: 500; font-size: 1rem; transition: all var(--t-fast) var(--ease); }
.lp-btn-wa:hover { transform: translateY(-3px); border-color: #25D366; box-shadow: var(--shadow-card); }
.lp-btn-wa [data-lucide] { width: 18px; height: 18px; color: #25D366; }

/* sticky mobile action bar (call + WhatsApp) */
.lp-mobile-bar { display: none; }
@media (max-width: 720px) {
  .lp-mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom, 0px)); background: rgba(255,255,255,.86); -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%); border-top: 1px solid var(--stroke); }
  .lp-mobile-bar a { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .9rem; border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem; }
  .lp-mobile-bar .mb-call { background: var(--text); color: var(--bg-2); }
  .lp-mobile-bar .mb-wa { background: transparent; border: 1.5px solid var(--stroke-2); color: var(--text); }
  .lp-mobile-bar .mb-wa [data-lucide] { width: 17px; height: 17px; color: #25D366; }
  body { padding-bottom: 4.6rem; }
}

/* ============================================================
   v4 — REVIEW PASS 2: de-boxing, motion fallbacks, polish
   ============================================================ */

/* anchor offset for ALL navigation paths (skip-link, deep-links, no-JS) */
section[id], #top { scroll-margin-top: 6rem; }

/* DE-BOX the back third so only Pricing stays a boxed grid */
.process-section .proc-card { background: transparent; border: none; box-shadow: none; padding: 1.25rem 0 0; }
.process-section .proc-card:hover { transform: none; box-shadow: none; }
.contact-section .contact-shell { background: transparent; border: none; box-shadow: none; padding: 0; }

/* logo marquee seam fix (scoped to landing pages) */
.logo-track { padding-right: 0 !important; }

/* featured price card — clearly the recommended anchor, still lighter than the dark CTA band */
.price-card.featured { transform: translateY(-10px); box-shadow: var(--shadow-pop); border-width: 2px; }
.price-card.featured:hover { transform: translateY(-14px); }
@media (max-width: 900px) { .price-card.featured { transform: none; } .price-card.featured:hover { transform: translateY(-6px); } }

/* mixed Bengali + Latin in marquee: avoid glyph clipping */
.lp-word { line-height: 1.12; }

/* gauge orbit: keep the largest visible ring inside the column on small phones */
@media (max-width: 480px) { .lp-orbit .o2 { width: 120%; height: 120%; } }

/* testimonial pause/play control (WCAG 2.2.2) */
.lp-testi-head { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.lp-testi-toggle { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.1rem; border-radius: var(--radius-pill); border: 1px solid var(--stroke); background: var(--bg-2); color: var(--text-soft); font: inherit; font-size: .85rem; font-weight: 500; cursor: pointer; transition: all var(--t-fast) var(--ease); }
.lp-testi-toggle:hover { color: var(--text); border-color: var(--text); }
.lp-testi-toggle [data-lucide] { width: 15px; height: 15px; }
.lp-testi-flow.is-paused .lp-testi-row { animation-play-state: paused !important; }

/* reduced-motion: reflow auto-marquees into static, readable layouts */
@media (prefers-reduced-motion: reduce) {
  .lp-testi-row { flex-wrap: wrap; width: auto; justify-content: center; gap: .5rem 0; }
  .lp-testi-row [aria-hidden="true"] { display: none; }
  .lp-testi-flow { overflow: visible; }
  .lp-testi-flow::before, .lp-testi-flow::after { display: none; }
  .logo-track { flex-wrap: wrap; width: auto; justify-content: center; }
  .logo-track [aria-hidden="true"] { display: none; }
  html { scroll-behavior: auto !important; }
}

/* ============================================================
   v5 — REVIEW PASS 3: hover-pause class, robustness, rhythm
   ============================================================ */

/* offscreen pause via class (lets CSS :hover/:focus-within pause win on screen) */
.lp-offscreen { animation-play-state: paused !important; }

/* outlined display/marquee word — safe fallback when text-stroke unsupported / forced-colors */
.lp-display .out, .lp-word.out { color: var(--text); -webkit-text-stroke: 0; }
@supports ((-webkit-text-stroke: 1px black)) {
  .lp-display .out, .lp-word.out { color: transparent; -webkit-text-stroke: 1.8px var(--text-soft); }
}
@media (forced-colors: active) {
  .lp-display .out, .lp-word.out { color: currentColor; -webkit-text-fill-color: currentColor; }
}

/* visible keyboard focus on the topic chips (input is visually hidden) */
.chip:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }

/* form error styling driven by aria-invalid (no inline styles) */
.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: var(--error, #ef4444) !important; }

/* hierarchy: keep stats as supporting evidence, not louder than headings */
.lp-statx strong { font-size: clamp(2.6rem, 6vw, 4.2rem); }

/* contact heading inherits the kicker → H2 → lead rhythm used elsewhere */
.contact-head .lp-display { margin: .75rem 0 1.25rem; }

/* named guarantee badge */
.lp-guarantee { display: flex; align-items: center; justify-content: center; gap: .7rem; max-width: 640px; margin: 1.75rem auto 0; padding: .9rem 1.3rem; border: 1px solid var(--accent); border-radius: var(--radius); background: var(--accent-pale); color: var(--text); font-size: .98rem; line-height: 1.45; text-align: left; }
.lp-guarantee [data-lucide] { width: 22px; height: 22px; color: var(--accent); flex: none; }
.lp-guarantee strong { font-weight: 600; }

/* featured static pull-quote (the best result, before the marquee) */
.lp-feature-quote { max-width: 880px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.lp-feature-quote p { font-size: clamp(1.3rem, 2.8vw, 2rem); font-weight: 500; line-height: 1.4; letter-spacing: -0.01em; }
.lp-feature-quote p em { font-style: italic; color: var(--accent); }
.lp-feature-quote .by { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.4rem; }
.lp-feature-quote .by img { width: 44px; height: 44px; border-radius: 50%; }
.lp-feature-quote .by b { font-weight: 600; }
.lp-feature-quote .by span { color: var(--text-mute); }

/* hero rolling badge: relax offsets earlier so it never crowds the floating pills */
@media (max-width: 900px) { .lp-hero-badge { width: 94px; height: 94px; left: -20px; bottom: -24px; } }

/* hero price/benefit subhead + outcome micro-proof (answers "credible?" + "koto taka?" above the fold) */
.lp-hero-lead { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 500; color: var(--text); letter-spacing: -0.01em; line-height: 1.35; margin: .3rem 0 1.1rem; max-width: 32ch; }
.lp-hero-lead em { font-style: italic; color: var(--accent); }
.lp-hero-lead strong { font-weight: 700; }
.lp-hero-proof { display: flex; align-items: center; gap: .5rem; margin: 0 0 1.4rem; font-size: .92rem; color: var(--text-soft); }
.lp-hero-proof [data-lucide] { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ============================================================
   v6 — REVIEW PASS 4: H1 promise, hierarchy, finish de-boxing
   ============================================================ */
.lp-h1-tail { display: block; font-size: .3em; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; color: var(--text); margin-top: .45em; max-width: 24ch; }
.lp-h1-tail em { font-style: italic; color: var(--accent); }
.field .opt { color: var(--text-mute); font-weight: 400; font-size: .85em; }

/* display-type hierarchy: H1 (≤4.6rem) clearly outranks section H2 and marquee */
.lp-display { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.lp-word { font-size: clamp(1.8rem, 5vw, 3.4rem); }

/* finish the de-boxing: FAQ joins the hairline index language (only Pricing stays boxed) */
.faq-list .faq-item { background: transparent; border: none; border-top: 1px solid var(--stroke); border-radius: 0; box-shadow: none; }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--stroke); }
.faq-list .faq-item:hover { transform: none; box-shadow: none; }

/* Selected Work rhythm — stagger so it reads editorial, not a uniform card grid */
@media (min-width: 761px) { .works-row .work-tile:nth-child(even) { margin-top: 2.75rem; } }

/* price currency: inline + baseline-aligned, not a floating superscript */
.price-amount { align-items: baseline; }
.price-amount sup { font-size: .5em; top: 0; vertical-align: baseline; color: var(--text-soft); margin-right: .1rem; }

/* per-card terms sub-line under each pricing CTA */
.lp-price-terms { margin-top: .7rem; font-size: .78rem; color: var(--text-mute); text-align: center; }
.price-card.featured .lp-price-terms { color: var(--text-soft); }

/* stat row: clean 2x2 instead of stranding the 4th stat at tablet */
@media (max-width: 900px) { .lp-stats-inline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.25rem 1rem; } .lp-statx { min-width: 0; } }

/* keep the floating speed pill clear of the in-browser button in the 540–720px band */
@media (max-width: 720px) and (min-width: 521px) { .lp-pill.speed { bottom: 16%; } }

/* FAQ sticky heading — only when the two-column layout is active */
@media (min-width: 1025px) { .lp-faq-sticky { position: sticky; top: 6rem; } }

/* calmer ambient motion: slow the hero live dot */
.lp-dot-live { animation-duration: 3.2s !important; }

/* related-services internal-link grid (programmatic-SEO link graph) */
.lp-rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--stroke); }
.lp-rel-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--stroke); border-right: 1px solid var(--stroke); color: var(--text); font-weight: 500; line-height: 1.35; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.lp-rel-link:hover { background: var(--accent-pale); color: var(--accent); }
.lp-rel-link [data-lucide] { width: 16px; height: 16px; color: var(--text-mute); flex: none; }
.lp-rel-link:hover [data-lucide] { color: var(--accent); }
@media (max-width: 1024px) { .lp-rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-rel-grid { grid-template-columns: 1fr; } }
