/* ============================================================
   ELITE POLAR — GLOBAL COLD MONEY
   Frozen Power · Dark cinematic · Ice cyan luxury
   ============================================================ */

:root {
  --bg-0: #000000;
  --bg-1: #05080C;
  --bg-2: #0A0E14;
  --bg-3: #11161F;

  --ice: #7CC8E8;
  --ice-soft: #A8DCEE;
  --glacier: #4A9BC4;
  --arctic: #F0F8FF;
  --silver: #C0C0C0;
  --steel: #6E7884;
  --ash: #8A95A3;

  --glow: rgba(124, 200, 232, 0.42);
  --glow-soft: rgba(124, 200, 232, 0.12);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.14);

  --red-cold: #B26C72;

  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html, body {
  background: var(--bg-0);
  color: var(--arctic);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { position: relative; }

/* Noise grain overlay (8%) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Aurora ambient gradient */
.aurora {
  position: fixed; inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(40% 30% at 20% 30%, rgba(74,155,196,0.18), transparent 70%),
    radial-gradient(50% 35% at 80% 70%, rgba(124,200,232,0.12), transparent 70%),
    radial-gradient(35% 25% at 60% 10%, rgba(124,200,232,0.08), transparent 70%);
  filter: blur(60px);
  animation: aurora-drift 22s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(2%, -2%, 0) scale(0.96); }
}

::selection { background: var(--ice); color: var(--bg-0); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, video { display: block; max-width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 80px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}
.nav__brand {
  display: flex; align-items: center; gap: 16px;
  color: var(--arctic);
}
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 1100px) { .nav__logo-img { height: 50px; } }
@media (max-width: 768px)  { .nav__logo-img { height: 44px; } }
.nav__links { display: flex; gap: 36px; }
.nav__links a { transition: color 0.3s; }
.nav__links a:hover { color: var(--ice); }
.nav__cta {
  padding: 14px 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  color: var(--arctic);
  font-size: 11px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav__cta:hover {
  border-color: var(--ice);
  color: var(--ice);
  box-shadow: 0 0 24px var(--glow-soft);
}
@media (max-width: 1100px) { .nav { padding: 20px 40px; } }
@media (max-width: 800px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section {
  position: relative;
  padding: 140px 40px;
}
@media (max-width: 800px) {
  section { padding: 88px 20px; }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ice);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ice);
  box-shadow: 0 0 10px var(--glow);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Section divider — vertical light beam */
.beam {
  position: absolute;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ice), transparent);
  opacity: 0.4;
  filter: drop-shadow(0 0 8px var(--glow));
}
.beam--top { top: -1px; height: 120px; }
.beam--bottom { bottom: -1px; height: 120px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"].is-in { transition-delay: 0.08s; }
.reveal[data-delay="2"].is-in { transition-delay: 0.16s; }
.reveal[data-delay="3"].is-in { transition-delay: 0.24s; }
.reveal[data-delay="4"].is-in { transition-delay: 0.32s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video, .hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: auto;
  filter: brightness(1.18) saturate(1.25) contrast(1.05);
}
.hero__poster {
  z-index: 1;
  transition: opacity 0.6s;
}
.hero__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s;
}
.hero__video.is-ready { opacity: 1; }
.hero__video.is-ready ~ .hero__poster { opacity: 0; }

/* Vignette so text reads — darken only the left so diamond stays vivid */
.hero__vignette {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 25%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 30%, transparent 75%, rgba(0,0,0,0.7) 100%);
}
.hero__vignette::after {
  content: "";
  position: absolute;
  right: -10%; top: 50%;
  width: 70%; height: 90%;
  transform: translateY(-50%);
  background: radial-gradient(closest-side, rgba(124,200,232,0.18), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  /* top padding clears the fixed nav (~88px) so the headline never hides behind it */
  padding: clamp(132px, 17vh, 196px) 80px clamp(48px, 8vh, 88px);
}
@media (max-width: 1100px) { .hero__content { padding: clamp(108px, 15vh, 160px) 40px 56px; } }
@media (max-width: 600px)  { .hero__content { padding: 104px 24px 72px; } }

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(25px, 2.7vw, 43px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 36px;
  max-width: max-content;
}
.hero__headline .word-reveal > span { display: inline-block; }
.hero__headline .l1 { color: var(--arctic); display: block; margin-bottom: 12px; }
.hero__headline .word-reveal { margin-right: 0.22em; }
.hero__headline .word-reveal:last-child { margin-right: 0; }
@media (max-width: 900px) {
  .hero__headline { max-width: 100%; font-size: clamp(24px, 5vw, 38px); }
}
.hero__headline .l1 { color: var(--arctic); display: block; margin-bottom: 12px; }
.hero__headline .l2 {
  color: var(--ice);
  display: block;
  text-shadow: 0 0 60px rgba(124,200,232,0.25);
}

.hero__sub {
  max-width: 540px;
  color: var(--silver);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero__sub b { color: var(--arctic); font-weight: 500; }

/* Word reveal */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: top; padding: 0.05em 0.04em 0.12em; margin: -0.05em -0.04em -0.12em; }
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-expo);
  transition-delay: var(--d, 0s);
}
.is-loaded .word-reveal > span { transform: translateY(0); }

/* CTA Pill */
.cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124,200,232,0.16), rgba(124,200,232,0.04));
  border: 1px solid rgba(124,200,232,0.4);
  color: var(--arctic);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s, border-color 0.4s, background 0.4s;
  box-shadow: 0 0 0 rgba(124,200,232,0);
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-expo);
}
.cta:hover {
  transform: translateY(-2px);
  border-color: var(--ice);
  background: linear-gradient(180deg, rgba(124,200,232,0.28), rgba(124,200,232,0.08));
  box-shadow: 0 18px 60px -10px var(--glow), 0 0 30px var(--glow-soft);
}
.cta:hover::after { transform: translateX(120%); }
.cta__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--bg-0);
  transition: transform 0.4s var(--ease-expo);
}
.cta:hover .cta__arrow { transform: translateX(4px); }
.cta--lg {
  padding: 28px 48px 28px 52px;
  font-size: 16px;
}
.cta--lg .cta__arrow { width: 38px; height: 38px; }

/* Reusable mid-page CTA (repeated apply button) */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .section-cta { margin-top: 44px; }
  .section-cta .cta--lg { padding: 18px 26px 18px 30px; font-size: 12px; }
  .section-cta .cta--lg .cta__arrow { width: 30px; height: 30px; }
}

/* Hero ticker */
.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 56px;
  padding: 18px 0;
  white-space: nowrap;
  animation: ticker-scroll 48s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}
.ticker > span { display: inline-flex; align-items: center; gap: 56px; }
.ticker em { color: var(--ice); font-style: normal; margin-right: 8px; font-weight: 600; }
.ticker .dot { color: var(--steel); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 90px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex; align-items: center; gap: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--ice), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 900px) {
  .hero__video, .hero__poster { object-fit: cover; object-position: center; opacity: 0.5; }
  .hero__vignette { background:
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.98) 100%); }
  .hero__scroll { display: none; }
  .hero { padding: 0; }
  .hero__ticker { margin: 0; }
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc {
  background: var(--bg-1);
  padding-top: 180px;
  padding-bottom: 180px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.calc__head {
  text-align: center;
  margin-bottom: 80px;
}
.calc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto 24px;
}
.calc__title .ice { color: var(--ice); }

.calc__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel);
}

.calc__explain {
  font-family: var(--font-body);
  max-width: 640px;
  margin: 26px auto 0;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--ash);
}
.calc__explain b {
  color: var(--arctic);
  font-weight: 600;
}

.calc__input-wrap {
  max-width: 720px;
  margin: 0 auto 100px;
  position: relative;
}
.calc__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 16px;
  text-align: center;
}
.calc__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--arctic);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.03em;
  text-align: center;
  padding: 18px 0;
  outline: none;
  transition: border-color 0.4s, box-shadow 0.4s;
  caret-color: var(--ice);
}
.calc__input:focus { border-color: var(--ice); box-shadow: 0 1px 0 var(--ice), 0 14px 40px -20px var(--glow); }
.calc__input::placeholder { color: var(--steel); font-weight: 700; }

.calc__chips {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-top: 22px;
}
.calc__chip {
  padding: 11px 20px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ash);
  transition: all 0.3s;
}
.calc__chip:hover { border-color: var(--ice); color: var(--ice); }
.calc__chip.is-active { background: rgba(124,200,232,0.12); border-color: var(--ice); color: var(--ice); }

/* --- Secondary params: conversion % + ticket $ --- */
.calc__params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 56px;
}
.calc__param {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc__param-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.calc__param-input-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  background: rgba(8, 14, 22, 0.55);
  transition: border-color 0.22s ease, background 0.22s ease;
}
.calc__param-input-wrap:focus-within {
  border-color: var(--ice-soft);
  background: rgba(124, 200, 232, 0.06);
}
.calc__param-prefix,
.calc__param-suffix {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ice-soft);
  font-weight: 600;
}
.calc__param-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ice);
  font-family: var(--font-display, var(--font-sans));
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  width: 100%;
  -moz-appearance: textfield;
}
.calc__param-input::-webkit-outer-spin-button,
.calc__param-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc__param-input-wrap--locked { background: rgba(8, 14, 22, 0.35); }
.calc__param-static {
  flex: 1;
  color: var(--ice);
  font-family: var(--font-display, var(--font-sans));
  font-size: 24px;
  font-weight: 600;
}
.calc__param-lock {
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--steel);
  text-transform: uppercase;
}

.calc__results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
}
.calc__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hairline);
}
.calc__row:last-child { border-bottom: none; }
.calc__period {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  padding-bottom: 14px;
}
.calc__period em { color: var(--ice); font-style: normal; }
.calc__value {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--arctic);
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;          /* $ stays on the same line as digits */
}
.calc__row.is-year .calc__value {
  color: var(--ice);
  text-shadow: 0 0 60px rgba(124,200,232,0.25);
}
/* Resized to keep the largest value (year) fitting on one line at all desktop widths */
.calc__value-week  { font-size: clamp(40px, 5.2vw, 64px); }
.calc__value-month { font-size: clamp(52px, 6.6vw, 88px); }
.calc__value-year  { font-size: clamp(64px, 9vw, 120px); }

.calc__footnote {
  margin-top: 60px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel);
  font-style: italic;
}
.calc__footnote b { color: var(--arctic); font-style: normal; font-weight: 500; }

@media (max-width: 800px) {
  .calc__row { grid-template-columns: 1fr; gap: 8px; }
  .calc__value { text-align: left; }
}

/* ============================================================
   PROVOCATION
   ============================================================ */
.prov {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.prov__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease-expo);
  z-index: 0;
  pointer-events: none;
}
.prov__bg.is-ready { opacity: 1; }
.prov__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg-0) 0%, rgba(5,8,12,0.72) 22%, rgba(5,8,12,0.72) 78%, var(--bg-0) 100%),
    radial-gradient(120% 80% at 50% 50%, rgba(5,8,12,0.45) 0%, rgba(5,8,12,0.82) 100%);
}
.prov__inner { position: relative; z-index: 1; }
.svc { padding-top: 80px; }
.prov__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.prov__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin-bottom: 48px;
  text-wrap: balance;
}
.prov__title .ice { color: var(--ice); }
.prov__body p {
  color: var(--silver);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 580px;
}
.prov__body p mark {
  background: none;
  color: var(--ice);
  font-weight: 600;
}
.prov__visual {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.prov-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50px 150px 50px 150px 50px;
  gap: 16px;
}
.pg-cell {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,200,232,0.08) inset;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  filter: blur(10px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo), filter 0.9s var(--ease-expo);
}
.pg-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.7s var(--ease-expo);
}
/* Per-image framing — focus on faces */
.pg-cell--1 img { object-position: 50% 18%; }   /* woman / jeans  — pull crop up to face */
.pg-cell--2 img { object-position: 50% 22%; }   /* man curly hair */
.pg-cell--3 img { object-position: 50% 12%; }   /* woman orange top — face was being cut */
.pg-cell--4 img { object-position: 50% 28%; }   /* night street */
.pg-cell:hover img { transform: scale(1.08); }

/* Bottom scrim so the follower badge stays legible over any photo */
.pg-cell::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(3,8,14,0.82) 0%, rgba(3,8,14,0.35) 45%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Follower count badge */
.pg-badge {
  position: absolute;
  left: 11px; bottom: 11px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px 7px 10px;
  margin: 0;
  border-radius: 999px;
  background: rgba(8, 14, 22, 0.5);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(124, 200, 232, 0.24);
  box-shadow: 0 6px 22px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.2);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-expo) 0.3s, transform 0.7s var(--ease-expo) 0.3s;
}
.reveal.is-in .pg-badge { opacity: 1; transform: none; }
.pg-badge__icon {
  color: var(--ice);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(124,200,232,0.4));
}
.pg-badge__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.pg-badge__label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice-soft);
  line-height: 1;
}

/* Staircase layout matching the source spec */
.pg-cell--1 { grid-column: 2 / 3; grid-row: 1 / 3; }
.pg-cell--2 { grid-column: 1 / 2; grid-row: 2 / 4; }
.pg-cell--3 { grid-column: 1 / 2; grid-row: 4 / 6; }
.pg-cell--4 { grid-column: 2 / 3; grid-row: 3 / 5; }

/* Reveal stagger when parent .reveal triggers */
.reveal.is-in .pg-cell { opacity: 1; transform: none; filter: blur(0); }
.reveal.is-in .pg-cell--1 { transition-delay: 0.20s; }
.reveal.is-in .pg-cell--2 { transition-delay: 0.40s; }
.reveal.is-in .pg-cell--3 { transition-delay: 0.60s; }
.reveal.is-in .pg-cell--4 { transition-delay: 0.80s; }

/* glow behind gallery */
.prov__visual::before {
  content: "";
  position: absolute;
  inset: 5% -5%;
  background: radial-gradient(closest-side, rgba(124,200,232,0.22), transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .prov-gallery { grid-template-rows: 40px 120px 40px 120px 40px; gap: 12px; }
}
@media (max-width: 900px) {
  .prov__inner { grid-template-columns: 1fr; gap: 32px; }
  .prov__visual { order: 2; max-width: 460px; }   /* IMAGES BELOW TEXT on mobile */
  .prov__text { order: 1; }
}

/* ============================================================
   SERVICES (O QUE FAZEMOS)
   ============================================================ */
.svc__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.svc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.svc__intro {
  color: var(--silver);
  max-width: 540px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}
.svc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.svc__card {
  position: relative;
  padding: 48px 40px 44px;
  background: linear-gradient(180deg, rgba(17,22,31,0.6), rgba(10,14,20,0.4));
  border: 1px solid var(--hairline);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 360px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.5s, box-shadow 0.5s, background 0.5s;
  will-change: transform;
}
.svc__card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  background: radial-gradient(400px at var(--mx, 50%) var(--my, 50%), rgba(124,200,232,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.svc__card:hover {
  border-color: rgba(124,200,232,0.45);
  box-shadow: 0 30px 80px -30px var(--glow), 0 0 0 1px rgba(124,200,232,0.12) inset;
}
.svc__card:hover::before { opacity: 1; }

.svc__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
  margin-bottom: auto;
}
.svc__card:hover .svc__num { -webkit-text-stroke-color: var(--ice); }

.svc__icon {
  position: absolute;
  top: 40px; right: 40px;
  width: 64px; height: 64px;
  color: var(--ice);
  transition: transform 0.6s var(--ease-expo);
}
.svc__card:hover .svc__icon { transform: rotate(180deg); }

.svc__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 32px 0 12px;
}
.svc__card p {
  color: var(--ash);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .svc__head { grid-template-columns: 1fr; gap: 24px; }
  .svc__grid { grid-template-columns: 1fr; }
  .svc__card { min-height: auto; padding: 36px 28px; }
  .svc__icon { width: 48px; height: 48px; top: 28px; right: 28px; }
  .svc__num { font-size: 64px; }
}

/* ============================================================
   METRICS — NÚMEROS REAIS
   ============================================================ */
.metrics {
  position: relative;
  background: var(--bg-1);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.metrics::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/hero-poster-v4.jpg") center/cover no-repeat;
  opacity: 0.16;
  filter: blur(2px);
  z-index: 0;
}
.metrics::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,12,0.6), rgba(5,8,12,0.92));
  z-index: 1;
}
.metrics .container { position: relative; z-index: 2; }
.metrics__head { text-align: center; margin: 0 auto 80px; max-width: 1000px; }
.metrics__head .kicker { justify-content: center; }
.metrics__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0 auto;
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.metric--hero {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 32px 56px;
}
.metric--hero::before {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}
.metric--hero .metric__label { margin-bottom: 22px; }
.metric--hero .metric__value {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.035em;
  color: var(--ice);
  text-shadow: 0 0 60px rgba(124,200,232,0.22);
}
.metric {
  background: var(--bg-2);
  padding: 48px 32px 40px;
  position: relative;
  overflow: hidden;
}
.metric::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--ice);
  box-shadow: 0 0 10px var(--glow);
}
.metric__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 28px;
}
.metric__value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  color: var(--arctic);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
  white-space: nowrap;
}
.metric__value .unit { color: var(--ice); font-size: 0.5em; margin-left: 4px; vertical-align: super; }
.metric__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel);
}
@media (max-width: 900px) {
  .metrics__grid { grid-template-columns: 1fr 1fr; }
  .metric--hero { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .metrics__grid { grid-template-columns: 1fr; }
  .metric { padding: 36px 24px 32px; }
  .metric--hero { padding: 48px 24px 40px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test {
  overflow: hidden;
  padding-bottom: 60px;
}
.qual {
  padding-top: 60px;
}
.test__head { text-align: center; margin-bottom: 80px; }
.test__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.test__stage {
  position: relative;
  height: 460px;
  perspective: 1200px;
  margin: 0 auto;
  max-width: 1100px;
}
.test__card {
  position: absolute;
  top: 50%; left: 50%;
  width: 520px;
  max-width: 90vw;
  padding: 48px 44px;
  background: linear-gradient(180deg, rgba(17,22,31,0.8), rgba(10,14,20,0.6));
  border: 1px solid var(--hairline);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-origin: center;
  transition: transform 0.9s var(--ease-expo), opacity 0.9s var(--ease-expo), box-shadow 0.9s;
}
.test__card.is-center {
  z-index: 3;
  box-shadow: 0 30px 80px -20px var(--glow-soft), 0 0 0 1px rgba(124,200,232,0.25) inset;
  border-color: rgba(124,200,232,0.35);
}
.test__quote-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 180px;
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke: 1px rgba(124,200,232,0.3);
  position: absolute;
  top: 20px; left: 24px;
  pointer-events: none;
}
.test__card blockquote {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  color: var(--arctic);
  margin-bottom: 32px;
  padding-top: 60px;
}
.test__card .test__author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.test__avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ice), var(--glacier));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bg-0);
  font-size: 16px;
  flex-shrink: 0;
}
.test__author-info b {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--arctic);
}
.test__author-info span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}

.test__controls {
  display: flex; justify-content: center; align-items: center;
  gap: 24px;
  margin-top: 40px;
}
.test__arrow {
  width: 52px; height: 52px;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  color: var(--arctic);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.test__arrow:hover { border-color: var(--ice); color: var(--ice); box-shadow: 0 0 24px var(--glow-soft); }
.test__dots { display: flex; gap: 8px; }
.test__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--hairline-strong);
  transition: all 0.3s;
  cursor: pointer;
}
.test__dot.is-active { background: var(--ice); width: 28px; box-shadow: 0 0 12px var(--glow); }

@media (max-width: 700px) {
  .test__stage { height: 520px; }
  .test__card { padding: 36px 28px; }
  .test__card blockquote { font-size: 17px; padding-top: 50px; }
  .test__quote-mark { font-size: 140px; }
}

/* ============================================================
   QUALIFICAÇÃO — PRA QUEM É
   ============================================================ */
.qual__head { text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto; }
.qual__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.qual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.qual__col {
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(17,22,31,0.4), rgba(10,14,20,0.2));
}
.qual__col--yes {
  border-color: rgba(124,200,232,0.4);
  box-shadow: 0 0 0 1px rgba(124,200,232,0.08) inset, 0 30px 80px -40px var(--glow-soft);
}
.qual__col--no { opacity: 0.78; }
.qual__col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.qual__col--yes h3 { color: var(--ice); }
.qual__col--no h3 { color: var(--red-cold); }
.qual__list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.qual__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.qual__list li:last-child { border-bottom: none; padding-bottom: 0; }
.qual__list svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.qual__col--yes .qual__list svg { color: var(--ice); }
.qual__col--no .qual__list svg { color: var(--red-cold); }
@media (max-width: 800px) {
  .qual__grid { grid-template-columns: 1fr; }
  .qual__col { padding: 36px 28px; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 40px;
  background: radial-gradient(ellipse at center, rgba(74,155,196,0.15), transparent 60%), var(--bg-0);
}
.cta-final__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
}
.cta-final__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  margin-bottom: 56px;
  text-wrap: balance;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__title .l1 { color: var(--arctic); }
.cta-final__title .l2 {
  color: var(--ice);
  text-shadow: 0 0 80px rgba(124,200,232,0.35);
}

/* Word-by-word reveal with blur (DigitalSerenity-style) */
@keyframes word-appear {
  0%   { opacity: 0; transform: translateY(30px) scale(0.85); filter: blur(10px); }
  50%  { opacity: 0.85; transform: translateY(10px) scale(0.96); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.cta-final__title .word-anim {
  display: inline-block;
  opacity: 0;
  margin: 0 0.12em;
  filter: blur(10px);
  transform: translateY(30px) scale(0.85);
  will-change: opacity, transform, filter;
}
.cta-final__title.is-animating .word-anim {
  animation: word-appear 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0ms);
}
.cta-final .cta {
  /* entry pulse removed per request */
}

.cta-final__caption {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 80px 40px 40px;
  text-align: center;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  width: 280px; height: 1px;
  background: var(--ice);
  transform: translateX(-50%);
  box-shadow: 0 0 14px var(--glow);
}
.footer__logo {
  display: inline-flex; align-items: center;
  margin-bottom: 24px;
}
.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 768px) { .footer__logo-img { height: 44px; } }
.footer__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--arctic);
  max-width: 800px;
  margin: 0 auto 40px;
}
.footer__tag .dot { color: var(--ice); }

/* Reusable brand statement band (repeated tagline divider) */
.brand-band {
  position: relative;
  text-align: center;
  padding: clamp(56px, 9vw, 110px) 24px;
}
.brand-band::before,
.brand-band::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 78%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}
.brand-band::before { top: 0; }
.brand-band::after { bottom: 0; }
.brand-band__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3.6vw, 44px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--arctic);
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.22;
}
@media (max-width: 768px) {
  .brand-band { padding: 52px 22px; }
  .brand-band__text { font-size: clamp(18px, 6vw, 26px); }
}

/* Lead statement before Diagnóstico */
.lead-statement {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 24px clamp(24px, 4vw, 48px);
}
.lead-statement__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--arctic);
  max-width: 16ch;
  margin: 0 auto;
}
.lead-statement__text .ice { color: var(--ice); }
@media (max-width: 768px) {
  .lead-statement { padding: 44px 22px 20px; }
  .lead-statement__text { font-size: clamp(24px, 7.4vw, 36px); max-width: 18ch; }
}
.footer__social {
  display: flex; justify-content: center; gap: 36px;
  margin-bottom: 60px;
}
.footer__social a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  position: relative;
  transition: color 0.3s;
}
.footer__social a:hover { color: var(--ice); text-shadow: 0 0 12px var(--glow); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel);
}
@media (max-width: 700px) {
  .footer { padding: 60px 20px 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; }
}


/* ============================================================
   MOBILE OVERRIDES (≤ 768px) — phone-first polish
   ============================================================ */
@media (max-width: 768px) {

  /* ---- NAV ---- */
  .nav {
    padding: 14px 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.55) 80%, transparent);
  }
  .nav__globe { width: 38px; height: 38px; }
  .nav__brand { gap: 10px; }
  .nav__brand-text b { font-size: 14px; letter-spacing: 0.18em; }
  .nav__brand-text em { font-size: 8.5px; letter-spacing: 0.22em; }
  .nav__cta {
    padding: 9px 13px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    line-height: 1.15;
    max-width: 92px;
    text-align: center;
  }

  /* ---- HERO (mobile: layout idêntico ao desktop — vídeo full-bleed atrás, texto sobreposto) ---- */
  .hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 56px;
    overflow: hidden;
    background: var(--bg-0);
  }
  /* vídeo cobre toda a hero (sem animação de flutuação — estável) */
  .hero__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    animation: none;            /* mata o heroFloat — sem tremor */
    -webkit-mask-image: none;
            mask-image: none;
    box-shadow: none;
  }
  .hero__video, .hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;   /* sobe a moldura levemente pra centrar o diamante */
  }
  .hero__poster { opacity: 1; }
  .hero__video { opacity: 0; }
  .hero__video.is-ready { opacity: 1; }
  /* scrim sobre o vídeo: contraste forte sob o texto (legibilidade máxima sem matar o vídeo) */
  .hero__vignette {
    position: absolute;
    inset: 0;
    background:
      /* top: vinheta leve pra nav */
      linear-gradient(to bottom,
        rgba(2,5,9,0.55) 0%,
        rgba(2,5,9,0.18) 18%,
        transparent 38%,
        rgba(2,5,9,0.55) 55%,
        rgba(2,5,9,0.88) 78%,
        var(--bg-0) 100%);
    pointer-events: none;
  }
  /* segunda camada: scrim sólido ancorado atrás do texto (garante contraste em qualquer frame) */
  .hero__content::after {
    content: "";
    position: absolute;
    inset: -120px -24px 0;
    background:
      radial-gradient(120% 90% at 50% 80%, rgba(2,5,9,0.85) 0%, rgba(2,5,9,0.55) 55%, transparent 100%);
    z-index: -1;
    pointer-events: none;
  }
  .hero__content { position: relative; isolation: isolate; }
  /* reforça peso visual nas headlines */
  .hero__headline {
    text-shadow: 0 2px 24px rgba(2,5,9,0.85), 0 0 1px rgba(2,5,9,0.6);
  }
  .hero__sub {
    text-shadow: 0 1px 8px rgba(2,5,9,0.9);
  }
  .hero__vignette::after { display: none; }
  /* texto sobreposto, centralizado e ancorado abaixo */
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 0 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__content::before { display: none; }
  .hero__headline {
    font-size: clamp(20px, 5.9vw, 27px);   /* menor: "CONVERTIMOS FOLLOWERS" cabe em 1 linha */
    line-height: 1.08;
    margin: 0 0 14px;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;                  /* nunca quebra no meio da palavra */
    hyphens: none;
  }
  .hero__headline .l1 { margin-bottom: 8px; }
  .hero__sub {
    font-size: 12.5px; line-height: 1.5;
    margin: 0 0 20px;
    max-width: 340px;
    color: var(--silver);
  }
  .hero__scroll { display: none; }
  .cta { padding: 15px 22px 15px 26px; font-size: 11px; letter-spacing: 0.14em; gap: 12px; }
  .cta__arrow { width: 26px; height: 26px; }
  .cta__arrow svg { width: 12px; height: 12px; }

  /* ---- SECTIONS ---- */
  section { padding: 72px 20px; }

  /* ---- CALCULATOR ---- */
  .calc { padding-top: 88px; padding-bottom: 88px; }
  .calc__head { margin-bottom: 48px; }
  .calc__title { font-size: clamp(28px, 8.5vw, 40px); }
  .calc__input { font-size: clamp(36px, 11vw, 52px); padding: 14px 0; }
  .calc__input-wrap { margin-bottom: 40px; }
  .calc__params { grid-template-columns: 1fr; gap: 14px; margin-bottom: 48px; }
  .calc__param-input { font-size: 20px; }
  .calc__param-input-wrap { padding: 11px 14px; }
  .calc__chips { gap: 9px; }
  .calc__chip { padding: 9px 16px; font-size: 14px; }
  .calc__results { gap: 32px; }
  .calc__row { grid-template-columns: 1fr; gap: 4px; padding-bottom: 24px; }
  .calc__period { padding-bottom: 4px; font-size: 11px; }
  .calc__value { text-align: left; white-space: nowrap; }
  .calc__value-week { font-size: clamp(34px, 10vw, 48px); }
  .calc__value-month { font-size: clamp(40px, 12vw, 58px); }
  .calc__value-year { font-size: clamp(46px, 14vw, 70px); line-height: 1.0; }
  .calc__footnote { font-size: 12px; margin-top: 36px; }

  /* ---- PROVOCATION ---- */
  .prov { padding-bottom: 56px; }
  .prov__title { font-size: clamp(26px, 7.2vw, 38px); margin-bottom: 28px; }
  .prov__body p { font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
  .prov-gallery { grid-template-rows: 30px 90px 30px 90px 30px; gap: 10px; }
  .pg-badge { left: 8px; bottom: 8px; gap: 5px; padding: 5px 9px 5px 8px; }
  .pg-badge__num { font-size: 12.5px; }
  .pg-badge__label { font-size: 7px; letter-spacing: 0.12em; }
  .pg-badge__icon { width: 9px; height: 9px; }

  /* ---- SERVICES ---- */
  .svc { padding-top: 56px; }
  .svc__head { margin-bottom: 48px; gap: 18px; }
  .svc__title { font-size: clamp(32px, 9vw, 48px); }
  .svc__intro { font-size: 15px; line-height: 1.6; }
  .svc__grid { gap: 14px; }
  .svc__card { padding: 32px 24px 28px; min-height: auto; }
  .svc__num { font-size: 52px; }
  .svc__icon { width: 38px; height: 38px; top: 24px; right: 24px; }
  .svc__card h3 { font-size: 18px; margin: 24px 0 10px; }
  .svc__card p { font-size: 14px; line-height: 1.55; }

  /* ---- METRICS ---- */
  .metrics__head { margin-bottom: 48px; }
  .metrics__title { font-size: clamp(26px, 7.5vw, 40px); }
  .metric { padding: 32px 22px 28px; }
  .metric--hero { padding: 42px 22px 36px; }
  .metric--hero .metric__value { font-size: clamp(36px, 11vw, 56px); }
  .metric__label { font-size: 10px; margin-bottom: 18px; letter-spacing: 0.2em; }
  .metric__value { font-size: clamp(24px, 7vw, 36px); }
  .metric__sub { font-size: 11px; }

  /* ---- TESTIMONIALS ---- */
  .test__head { margin-bottom: 48px; }
  .test__title { font-size: clamp(30px, 8.6vw, 44px); }
  .test__stage { height: 480px; perspective: 800px; }
  .test__card { padding: 28px 22px; width: 86vw; }
  .test__card blockquote { font-size: 15px; padding-top: 44px; line-height: 1.55; margin-bottom: 22px; }
  .test__quote-mark { font-size: 110px; top: 12px; left: 16px; }
  .test__avatar { width: 40px; height: 40px; font-size: 14px; }
  .test__author-info b { font-size: 13px; }
  .test__author-info span { font-size: 10px; }
  .test__arrow { width: 44px; height: 44px; }
  .test__controls { gap: 16px; margin-top: 24px; }

  /* ---- QUAL ---- */
  .qual__head { margin-bottom: 48px; }
  .qual__title { font-size: clamp(28px, 8vw, 42px); }
  .qual__grid { gap: 16px; }
  .qual__col { padding: 30px 22px; }
  .qual__col h3 { font-size: 20px; margin-bottom: 24px; }
  .qual__col h3 svg { width: 22px; height: 22px; }
  .qual__list { gap: 16px; }
  .qual__list li { font-size: 14px; line-height: 1.45; padding-bottom: 14px; grid-template-columns: 22px 1fr; gap: 10px; }
  .qual__list svg { width: 18px; height: 18px; }

  /* ---- CTA FINAL ---- */
  .cta-final { padding: 96px 24px; min-height: auto; }
  .cta-final__title { font-size: clamp(34px, 11vw, 56px); margin-bottom: 44px; line-height: 1; }
  .cta-final .cta--lg { padding: 18px 26px 18px 30px; font-size: 12px; }
  .cta-final .cta--lg .cta__arrow { width: 30px; height: 30px; }
  .cta-final__caption { font-size: 10px; margin-top: 24px; letter-spacing: 0.22em; }
  .eyebrow { font-size: 9px; letter-spacing: 0.24em; }
  .kicker { font-size: 9.5px; letter-spacing: 0.2em; margin-bottom: 22px; }
  .kicker::before { width: 18px; }

  /* ---- FOOTER ---- */
  .footer { padding: 56px 20px 28px; }
  .footer__logo svg { width: 36px; height: 36px; }
  .footer__logo-text b { font-size: 15px; }
  .footer__logo-text em { font-size: 9px; }
  .footer__tag { font-size: 16px; margin-bottom: 28px; line-height: 1.4; }
  .footer__social { gap: 14px 22px; flex-wrap: wrap; margin-bottom: 32px; }
  .footer__social a { font-size: 9.5px; letter-spacing: 0.2em; }
  .footer__bottom { font-size: 9px; letter-spacing: 0.18em; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switch {
  position: relative;
  margin-left: 18px;
  font-family: var(--font-mono);
}
.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: rgba(8, 14, 22, 0.55);
  color: var(--silver);
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lang-switch__toggle:hover,
.lang-switch.is-open .lang-switch__toggle {
  color: var(--ice);
  border-color: var(--ice-soft);
  background: rgba(124, 200, 232, 0.06);
}
.lang-switch__globe {
  color: var(--ice-soft);
  transition: transform 0.4s var(--ease-in-out);
}
.lang-switch__toggle:hover .lang-switch__globe,
.lang-switch.is-open .lang-switch__globe {
  transform: rotate(20deg);
  color: var(--ice);
}
.lang-switch__chev {
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.lang-switch.is-open .lang-switch__chev { transform: rotate(180deg); }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: rgba(6, 11, 18, 0.94);
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(124, 200, 232, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 60;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-switch__menu[hidden] { display: none; }
.lang-switch.is-open .lang-switch__menu[hidden] { display: block; }
.lang-switch__menu li { margin: 0; }
.lang-switch__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--silver);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}
.lang-switch__menu button:hover {
  background: rgba(124, 200, 232, 0.08);
  color: var(--ice);
}
.lang-switch__menu button.is-active {
  color: var(--ice);
  background: rgba(124, 200, 232, 0.05);
}
.lang-switch__menu button.is-active::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-left: auto;
  background: var(--ice);
  box-shadow: 0 0 8px var(--glow);
}
.lang-switch__flag { font-size: 15px; line-height: 1; filter: saturate(0.95); }

@media (max-width: 800px) {
  .nav { gap: 10px; }
  .lang-switch { margin-left: 8px; }
  .lang-switch__toggle { padding: 6px 9px; font-size: 9.5px; gap: 6px; }
  .lang-switch__globe { width: 16px; height: 16px; }
  .lang-switch__menu { min-width: 156px; }
}

/* ============================================================
   VISIONAIRE — PREMIUM MOTION LAYER (cinematic dark × editorial)
   ============================================================ */

/* — Top scroll progress (cinema-grade hairline) — */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 100; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(124,200,232,0.08));
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ice-soft), var(--ice) 60%, #fff);
  box-shadow: 0 0 14px rgba(124,200,232,0.55), 0 0 2px rgba(255,255,255,0.6);
  transition: width 80ms linear;
}

/* — Film grain (texture, not noise; reads as cinema not artifact) — */
.ambient-noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

/* — Smooth scroll & global polish — */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* — 3D tilt setup (JS-driven, perspective parent) — */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  will-change: transform;
}
[data-tilt]::after {
  /* glare layer */
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(124, 200, 232, 0.14),
    transparent 40%
  );
  opacity: 0; transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}
[data-tilt]:hover::after { opacity: 1; }

/* — Animated conic-gradient hairline on cards (premium border that breathes) — */
.svc__card { position: relative; isolation: isolate; }
.svc__card::before {
  content: ""; position: absolute; inset: 0;
  padding: 1px; border-radius: inherit;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(124,200,232,0.55) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(124,200,232,0.25) 300deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0; transition: opacity 0.5s ease;
  pointer-events: none; z-index: 1;
  animation: visAngle 6s linear infinite;
}
.svc__card:hover::before { opacity: 1; }
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes visAngle { to { --angle: 360deg; } }

/* — CTA sheen sweep (Apple-grade) — */
.cta, .nav__cta {
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta::after, .nav__cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255,255,255,0.18) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; mix-blend-mode: screen;
}
.cta:hover::after, .nav__cta:hover::after { transform: translateX(120%); }
.cta:hover { box-shadow: 0 12px 40px -12px rgba(124,200,232,0.55), 0 0 0 1px rgba(124,200,232,0.4) inset; }

/* — Magnetic CTA arrow extra polish — */
.cta:hover .cta__arrow { transform: translateX(3px) scale(1.06); background: var(--ice); color: #021018; }
.cta__arrow { transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, color 0.35s ease; }

/* — Calc value glow pulse on update — */
.calc__value { transition: text-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.calc__value.is-pulse {
  text-shadow: 0 0 32px rgba(124,200,232,0.55), 0 0 4px rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

/* — Metric hero value: subtle perpetual shimmer — */
.metric--hero .metric__value {
  background-image: linear-gradient(110deg,
    var(--ice) 40%, #ffffff 50%, var(--ice) 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: visShimmer 4.5s linear infinite;
}
@keyframes visShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* — Section eyebrows: subtle dot pulse — */
.eyebrow { position: relative; padding-left: 18px; }
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 0 0 rgba(124,200,232,0.6);
  transform: translateY(-50%);
  animation: visDot 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes visDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,200,232,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(124,200,232,0); }
}

/* — Headline letter-mask reveal (replaces the old word-reveal jankiness) — */
.hero__headline .vis-char {
  display: inline-block;
  transform: translateY(110%) rotateX(-25deg);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
  transition-delay: var(--cd, 0ms);
}
.hero__headline.is-vis-revealed .vis-char { transform: none; opacity: 1; }

/* — Nav glass refinement on scroll — */
.nav { transition: backdrop-filter 0.4s ease, background 0.4s ease, border-color 0.4s ease; }
body.is-scrolled .nav {
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(4, 8, 14, 0.55);
  border-bottom: 1px solid rgba(124,200,232,0.08);
}

/* — Reduce motion respect — */
@media (prefers-reduced-motion: reduce) {
  [data-tilt], [data-tilt]::after, .svc__card::before,
  .cta::after, .nav__cta::after, .metric--hero .metric__value,
  .eyebrow::before { animation: none !important; transition: none !important; }
}

/* ============================================================
   VISIONAIRE — MOBILE MOTION LAYER
   ============================================================ */

/* — Scroll reveal: blur + scale + opacity (premium entrance for sections) — */
.vis-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--vis-delay, 0ms);
  will-change: opacity, transform, filter;
}
.vis-reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* — Touch ripple (Material × Ice — for taps on cards/CTAs) — */
.vis-ripple {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,200,232,0.45) 0%, rgba(124,200,232,0) 70%);
  transform: scale(0);
  animation: visRippleExpand 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  mix-blend-mode: screen;
  z-index: 5;
}
@keyframes visRippleExpand {
  0%   { transform: scale(0); opacity: 0.9; }
  100% { transform: scale(4); opacity: 0; }
}
.svc__card, .calc__chip, .metric { position: relative; overflow: hidden; }

/* — Marquee de credenciais (cinematic horizontal scroll) — */
.vis-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(8,14,22,0.6), rgba(2,5,9,0.9));
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.vis-marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: visMarquee 38s linear infinite;
  align-items: center;
}
.vis-marquee__item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.vis-marquee__item::after {
  content: "◆";
  font-size: 7px;
  color: var(--ice);
  opacity: 0.5;
}
@keyframes visMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vis-marquee:hover .vis-marquee__track { animation-play-state: paused; }

/* — Gyroscope parallax target (subtle 3D depth via device tilt) — */
[data-gyro] {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* — Mobile: section number flourish — */
@media (max-width: 768px) {
  .vis-reveal {
    transform: translateY(28px) scale(0.97);
    filter: blur(6px);
  }
}

/* — Reduce motion respect — */
@media (prefers-reduced-motion: reduce) {
  .vis-reveal, .vis-marquee__track, [data-gyro] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ===================== LANGUAGE WELCOME MODAL ===================== */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lang-modal[hidden] { display: none; }

.lang-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 9, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-expo);
}
.lang-modal.is-visible .lang-modal__backdrop { opacity: 1; }

.lang-modal__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 48px 38px 42px;
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(124, 200, 232, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(17, 22, 31, 0.92), rgba(5, 8, 12, 0.96));
  border: 1px solid var(--hairline-strong);
  box-shadow:
    0 0 0 1px rgba(124, 200, 232, 0.06),
    0 40px 120px -20px rgba(0, 0, 0, 0.8),
    0 0 80px -30px var(--glow);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.55s var(--ease-expo), transform 0.55s var(--ease-expo);
}
.lang-modal.is-visible .lang-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lang-modal__logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 26px;
  display: block;
}
.lang-modal__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ash);
  margin: 0 0 12px;
}
.lang-modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.15;
  color: var(--arctic);
  margin: 0 0 30px;
}

.lang-modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lang-modal__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--arctic);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.28s var(--ease-expo), background 0.28s var(--ease-expo), transform 0.28s var(--ease-expo);
}
.lang-modal__flag {
  font-size: 24px;
  line-height: 1;
  filter: saturate(1.05);
}
.lang-modal__name { flex: 1; }
.lang-modal__arrow {
  color: var(--steel);
  opacity: 0;
  transform: translateX(-6px);
  transition: color 0.28s var(--ease-expo), opacity 0.28s var(--ease-expo), transform 0.28s var(--ease-expo);
}
.lang-modal__btn:hover,
.lang-modal__btn:focus-visible {
  border-color: var(--ice);
  background: rgba(124, 200, 232, 0.08);
  transform: translateY(-2px);
  outline: none;
}
.lang-modal__btn:hover .lang-modal__arrow,
.lang-modal__btn:focus-visible .lang-modal__arrow {
  color: var(--ice);
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .lang-modal__panel { padding: 40px 24px 34px; border-radius: 20px; }
  .lang-modal__title { font-size: 22px; }
  .lang-modal__logo { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .lang-modal__backdrop,
  .lang-modal__panel,
  .lang-modal__btn,
  .lang-modal__arrow { transition: opacity 0.2s linear !important; transform: none !important; }
}

/* ============================================================
   READABILITY PASS — engrossa a tipografia de detalhe (pedido do cliente)
   Mantém os TÍTULOS (Space Grotesk display) intactos. Aumenta o peso
   dos parágrafos (Manrope) e dos microrrótulos em mono, e calibra o
   tracking excessivo para uma leitura mais sólida e fácil.
   ============================================================ */

/* Corpo: Manrope medium como base — parágrafos deixam de nascer finos (400) */
body { font-weight: 500; }

/* Parágrafos e textos de leitura — peso 600 para solidez */
.hero__sub,
.calc__explain,
.prov__body p,
.svc__card p,
.svc__intro,
.calc__footnote,
.metric__sub,
.qual__list li span,
.test__author-info b { font-weight: 600; }

/* Citações longas: medium (mais encorpado que antes, sem perder a elegância) */
.test__card blockquote { font-weight: 500; }

/* Microrrótulos: a mono (JetBrains) é fina por natureza e quase não
   engrossa com o peso. Troca por Manrope ENCORPADA (700) com tracking
   menor — mantém o ar de "rótulo em caixa alta" mas sólido e legível. */
.kicker,
.eyebrow,
.calc__sub,
.calc__label,
.calc__chip,
.calc__param-label,
.calc__param-lock,
.calc__period,
.metric__label,
.test__author-info span,
.cta-final__caption,
.footer__social a,
.footer__bottom,
.lang-modal__eyebrow {
  font-family: var(--font-body) !important;   /* Manrope */
  font-weight: 700 !important;
}

/* Sub-rótulos e nav: Manrope semibold (sólido sem pesar demais) */
.metric__sub,
.nav__links a {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
}

/* Tracking calibrado para sans em caixa alta (precisa de bem menos que a mono) */
.eyebrow,
.calc__period,
.cta-final__caption,
.lang-modal__eyebrow { letter-spacing: 0.12em !important; }
.kicker,
.calc__sub,
.calc__label,
.calc__param-label,
.calc__chip,
.metric__label,
.metric__sub,
.test__author-info span,
.footer__social a,
.footer__bottom,
.nav__links a { letter-spacing: 0.08em !important; }

/* ============================================================
   CONTRAST PASS — texto quase-branco em vez de cinza (pedido do cliente)
   Os tons --ash/--steel/--silver eram cinza-escuro e sumiam no fundo
   preto. Aqui sobem para quase-branco; mantém uma hierarquia sutil
   (corpo mais claro, fine-print levemente mais suave) mas tudo legível.
   ============================================================ */
:root {
  --silver: #F2F6FA;  /* parágrafos principais (hero/prov) — branco */
  --ash:    #E4EAF0;  /* textos e rótulos secundários — quase branco */
  --steel:  #CAD3DC;  /* fine-print / placeholders — cinza muito claro */
}

/* Garante branco pleno nos textos de leitura mais importantes */
.calc__explain,
.hero__sub,
.prov__body p,
.svc__card p,
.calc__sub,
.calc__label { color: var(--arctic); }

/* ============================================================
   CALCULADORA SIMPLIFICADA (pedido do cliente)
   Esconde conversão/ticket (fixos no JS). Usuário só escolhe os
   views; setinha guia até o número e resultado vem em destaque.
   ============================================================ */
.calc__label {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(20px, 3.2vw, 32px) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.18 !important;
  text-transform: none !important;
  color: var(--arctic) !important;
  max-width: 22ch;
  margin: 0 auto 22px;
}
.calc__cue {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ice-soft);
  text-align: center;
}
.calc__cue-arrow {
  color: var(--ice); flex: none;
  animation: calcCueBounce 1.8s var(--ease-in-out) infinite;
}
@keyframes calcCueBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.calc__results-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-align: center;
  color: var(--arctic);
  font-size: clamp(28px, 5vw, 56px);
  max-width: 16ch;
  margin: 0 auto 52px;
}
.calc__results-title::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  margin: 22px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}
@media (prefers-reduced-motion: reduce) { .calc__cue-arrow { animation: none; } }
@media (max-width: 600px) {
  .calc__results-title { font-size: clamp(24px, 8vw, 38px); margin-bottom: 36px; }
}

/* ============================================================
   HERO — promessa direta + prova social (pedido do cliente:
   "bater o olho e entender que vai ganhar dinheiro")
   ============================================================ */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 12px 2px var(--glow);
  flex: none;
}

.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(13px, 1.05vw, 15px);
  color: var(--silver);
}
.hero__proof b {
  color: var(--ice);
  font-weight: 700;
  font-size: 1.18em;
  letter-spacing: -0.01em;
}
.hero__proof i {
  width: 1px; height: 16px;
  background: var(--hairline-strong);
  display: inline-block;
}

@media (max-width: 768px) {
  .hero__eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero__proof {
    justify-content: center;
    margin-top: 22px;
    gap: 10px 14px;
    font-size: 12.5px;
  }
  .hero__proof i { height: 13px; }
}
