/* ============================================================
   MC CRED — Compra e Recuperação de Carteiras de Crédito
   Dark-luxury: preto quente + ouro · verde como apoio
   Fraunces (display) + Instrument Sans (UI/texto)
   ============================================================ */

:root {
  --bg: #060504;
  --bg-2: #0b0906;
  --bg-3: #121008;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-2: rgba(255, 255, 255, 0.055);

  --gold-1: #f7dc8a;
  --gold-2: #e8b84b;
  --gold-3: #c9930f;
  --gold-4: #8a6206;
  --gold-glow: rgba(232, 184, 75, 0.32);
  --gold-soft: rgba(232, 184, 75, 0.12);

  --green: #2aa85c;
  --green-deep: #0e5e33;
  --green-glow: rgba(42, 168, 92, 0.3);

  --ink: #f7f3e9;
  --ink-2: #d9d2c2;
  --muted: #a79e8c;
  --muted-2: #6f685a;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;

  --r-card: 24px;
  --r-pill: 999px;

  --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 25px 0 var(--gold-glow), inset 0 1.5px 1.5px rgba(255, 245, 210, 0.45);
  --shadow-glass: inset 0 0 0 1px var(--line), 0 20px 50px -20px rgba(0, 0, 0, 0.65);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--gold-2); color: #14100a; }

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

/* ---------- cursor customizado (só ponteiro fino) ---------- */

@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor [data-cursor] { cursor: none; }
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-1);
  box-shadow: 0 0 10px 2px var(--gold-glow);
  transition: opacity 0.3s, width 0.25s var(--ease-out), height 0.25s var(--ease-out);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(232, 184, 75, 0.55);
  display: grid;
  place-items: center;
  transition: opacity 0.3s, width 0.35s var(--ease-back), height 0.35s var(--ease-back),
    border-color 0.3s, background 0.3s;
}

.cursor-ring .cursor-label {
  font-size: 0;
  font-weight: 600;
  color: #191307;
  letter-spacing: 0.02em;
  transition: font-size 0.25s var(--ease-out);
  white-space: nowrap;
  font-family: var(--font-body);
}

.cursor-ring.is-hover {
  width: 62px;
  height: 62px;
  border-color: rgba(232, 184, 75, 0.9);
  background: rgba(232, 184, 75, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cursor-ring.is-label {
  width: 84px;
  height: 84px;
  background: linear-gradient(145deg, var(--gold-1), var(--gold-3));
  border-color: transparent;
  box-shadow: 0 10px 30px -6px var(--gold-glow);
}

.cursor-ring.is-label .cursor-label { font-size: 12.5px; }
.cursor-ring.is-label ~ .cursor-dot, .cursor-dot.is-hidden { opacity: 0; }

.cursor-ring.is-down { transform: translate(-50%, -50%) scale(0.82); }

/* ---------- preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: transform 0.8s var(--ease-out) 0.15s, visibility 0s 1s;
}

.preloader .pl-mono {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: 54px;
  background: linear-gradient(115deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pl-pop 0.9s var(--ease-back) both;
}

.preloader .pl-bar {
  width: 148px;
  height: 2px;
  margin-top: 18px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader .pl-bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-1));
  animation: pl-fill 0.9s var(--ease-out) both 0.1s;
}

body.loaded .preloader { transform: translateY(-100%); visibility: hidden; }

@keyframes pl-pop { from { opacity: 0; transform: translateY(20px) scale(0.9); } }
@keyframes pl-fill { from { transform: scaleX(0); } }

/* ---------- barra de progresso de scroll ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 100%;
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-3), var(--gold-1), var(--gold-2));
  box-shadow: 0 0 12px 0 var(--gold-glow);
  pointer-events: none;
}

/* ---------- grain ---------- */

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 998;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- utilitários ---------- */

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.section { position: relative; padding: 110px 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-1), var(--gold-3));
  box-shadow: 0 0 10px 1px var(--gold-glow);
}

.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 560; line-height: 1.08; letter-spacing: -0.015em; }

.section-head h2 { font-size: clamp(34px, 4.6vw, 52px); margin: 22px 0 18px; }
.section-head p { color: var(--muted); font-size: 17.5px; max-width: 58ch; }
.section-head.center p { margin-inline: auto; }

.gold-i {
  font-style: italic;
  font-weight: 480;
  background: linear-gradient(115deg, var(--gold-1) 0%, var(--gold-2) 30%, var(--gold-3) 50%, var(--gold-1) 72%, var(--gold-2) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5.5s linear infinite;
}

@keyframes shimmer { to { background-position: -220% 0; } }

/* split text (palavra a palavra) */

.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(112%);
  transition: transform 0.85s var(--ease-out);
  transition-delay: calc(var(--wi) * 0.045s);
}
.split.in-view .w > i { transform: translateY(0); }

/* ---------- botões ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s, border-color 0.35s, color 0.35s;
  will-change: transform;
}

.btn > * { position: relative; z-index: 2; }
.btn svg { flex: none; transition: transform 0.35s var(--ease-back); }
.btn:hover svg { transform: translateX(3px) rotate(-4deg) scale(1.08); }

/* varredura de brilho */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.btn:hover::after { transform: translateX(120%) skewX(-12deg); }

.btn-gold {
  color: #191307;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 52%, var(--gold-3) 100%);
  box-shadow: var(--shadow-gold);
  animation: breathe 3.6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 10px 25px 0 var(--gold-glow), inset 0 1.5px 1.5px rgba(255, 245, 210, 0.45); }
  50% { box-shadow: 0 14px 38px 2px rgba(232, 184, 75, 0.48), inset 0 1.5px 1.5px rgba(255, 245, 210, 0.45); }
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
  box-shadow: 0 18px 48px 0 rgba(232, 184, 75, 0.5), inset 0 1.5px 1.5px rgba(255, 248, 220, 0.6);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(232, 184, 75, 0.16), rgba(232, 184, 75, 0.05));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
}

.btn-ghost:hover { border-color: rgba(232, 184, 75, 0.5); transform: translateY(-2px); }
.btn-ghost:hover::before { transform: scaleY(1); }

.btn-whats {
  color: #06130b;
  background: linear-gradient(180deg, #5fd68b 0%, var(--green) 55%, #1d7c43 100%);
  box-shadow: 0 10px 25px 0 var(--green-glow), inset 0 1.5px 1.5px rgba(220, 255, 233, 0.5);
}

.btn-whats:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 44px 0 rgba(42, 168, 92, 0.5), inset 0 1.5px 1.5px rgba(226, 255, 238, 0.6);
}

.btn-lg { padding: 18px 38px; font-size: 16.5px; }

/* ---------- navegação ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
  padding: 18px 0;
}

.nav.scrolled {
  background: rgba(8, 6, 4, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
  padding: 12px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #191207 0%, #0c0904 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.35), 0 6px 18px -6px rgba(0, 0, 0, 0.8);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 640;
  font-size: 19px;
}

.logo-mark span {
  background: linear-gradient(115deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-word { display: flex; flex-direction: column; line-height: 1.05; }

.logo-word b { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: 0.06em; }

.logo-word b em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-word small { font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 34px; }

.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color 0.25s; position: relative; }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav .btn { padding: 11px 22px; font-size: 14px; animation: none; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero { position: relative; padding: 190px 0 90px; overflow: clip; }

.hero::before, .hero::after {
  content: "";
  position: absolute;
  top: 0;
  width: 44%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero::before { left: 0; background: radial-gradient(50% 55% at 0% 42%, rgba(232, 184, 75, 0.16) 0%, rgba(232, 184, 75, 0) 100%); }
.hero::after { right: 0; background: radial-gradient(50% 55% at 100% 50%, rgba(232, 184, 75, 0.13) 0%, rgba(232, 184, 75, 0) 100%); }

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -32%;
  width: 900px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(94% 69% at 50% 100%, rgba(120, 88, 12, 0.34) 0%, rgba(120, 88, 12, 0) 100%);
  pointer-events: none;
}

#fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 { width: 340px; height: 340px; top: 8%; left: -8%; background: radial-gradient(circle, rgba(232, 184, 75, 0.14), transparent 70%); }
.orb-2 { width: 420px; height: 420px; bottom: -10%; right: -10%; background: radial-gradient(circle, rgba(42, 168, 92, 0.1), transparent 70%); }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }

.hero h1 { font-size: clamp(40px, 5.2vw, 64px); margin: 26px 0 22px; }

.hero-sub { color: var(--muted); font-size: 18px; max-width: 52ch; margin-bottom: 36px; }
.hero-sub strong { color: var(--ink-2); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 580px;
}

.stat { flex: 1; padding: 20px 24px; border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: none; }

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 560;
  background: linear-gradient(115deg, var(--gold-1), var(--gold-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.stat span { font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }

/* hero visual */

.hero-visual { position: relative; min-height: 540px; z-index: 2; perspective: 1100px; }

.hv-card {
  position: absolute;
  border-radius: var(--r-card);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--shadow-glass), var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* borda conica girando no card principal */
.hv-main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(370px, 90%);
  padding: 28px;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hv-main::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 26px;
  padding: 1.5px;
  background: conic-gradient(from var(--angle), transparent 8%, rgba(232, 184, 75, 0.85) 16%, transparent 26%, transparent 55%, rgba(232, 184, 75, 0.35) 66%, transparent 78%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-border 6s linear infinite;
  pointer-events: none;
}

@keyframes rotate-border { to { --angle: 360deg; } }

.hv-main-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hv-main-head span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.hv-chip-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: #7fe3a6;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(42, 168, 92, 0.12);
  border: 1px solid rgba(42, 168, 92, 0.25);
}

.hv-chip-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fd884;
  box-shadow: 0 0 8px 1px rgba(79, 216, 132, 0.7);
  animation: pulse 2.2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hv-value { font-family: var(--font-display); font-size: 38px; font-weight: 560; line-height: 1; margin-bottom: 4px; }
.hv-value sup { font-size: 16px; font-weight: 500; color: var(--muted); margin-right: 4px; }
.hv-label { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.hv-bar { height: 9px; border-radius: var(--r-pill); background: rgba(255, 255, 255, 0.07); overflow: hidden; margin-bottom: 8px; }

.hv-bar i {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-1));
  box-shadow: 0 0 14px 0 var(--gold-glow);
  position: relative;
  animation: fill 2.4s var(--ease-out) both 0.5s;
}

.hv-bar i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  animation: bar-shine 2.6s linear infinite 1.2s;
}

@keyframes fill { from { width: 6%; } }
@keyframes bar-shine { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.hv-bar-meta { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted-2); margin-bottom: 20px; }

/* feed ao vivo */
.feed { display: grid; gap: 10px; position: relative; }

.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-2);
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
}

.feed-item.enter { animation: feed-in 0.6s var(--ease-back) both; }
@keyframes feed-in { from { opacity: 0; transform: translateY(-14px) scale(0.96); } }

.feed-item .f-ic {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.feed-item h5 { font-size: 13px; font-weight: 600; color: var(--ink); }
.feed-item p { font-size: 11.5px; color: var(--muted); }
.feed-item b { margin-left: auto; font-size: 12.5px; color: var(--gold-1); font-weight: 600; white-space: nowrap; }

.hv-float {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  max-width: 300px;
  z-index: 3;
}

.hv-float .ic { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; }
.hv-float h5 { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; }
.hv-float p { font-size: 12px; color: var(--muted); }

.hv-f1 { top: 4%; left: -4%; animation: floaty 7s ease-in-out infinite; }
.hv-f2 { bottom: 8%; right: -6%; animation: floaty 8s ease-in-out infinite 1.2s; }
.hv-f3 { top: 12%; right: -2%; animation: floaty 9s ease-in-out infinite 0.6s; z-index: 1; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.ic-gold { background: linear-gradient(145deg, var(--gold-1), var(--gold-3)); box-shadow: 0 6px 16px -4px var(--gold-glow); }
.ic-green { background: linear-gradient(145deg, #5fd68b, #1d7c43); box-shadow: 0 6px 16px -4px var(--green-glow); }
.ic-dark { background: var(--bg-3); box-shadow: inset 0 0 0 1px var(--line); }

.hv-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(232, 184, 75, 0.18);
  animation: spin 60s linear infinite;
  pointer-events: none;
}

.hv-ring::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 16px 2px var(--gold-glow);
}

.hv-ring-2 {
  width: 700px;
  height: 700px;
  border-color: rgba(232, 184, 75, 0.08);
  animation-duration: 90s;
  animation-direction: reverse;
}

.hv-ring-2::before { width: 7px; height: 7px; opacity: 0.7; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ---------- marquee duplo ---------- */

.marquee-section { padding: 40px 0; border-block: 1px solid var(--line-soft); background: var(--bg-2); overflow: clip; }

.marquee-title {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 22px;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12.5%, #000 87.5%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12.5%, #000 87.5%, transparent 100%);
}

.marquee + .marquee { margin-top: 14px; }

.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; animation-duration: 44s; }
.marquee:hover .marquee-track { animation-play-state: paused; }

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

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-2);
  white-space: nowrap;
}

.mq-item::after { content: "✦"; font-size: 13px; color: var(--gold-3); font-style: normal; }

.mq-item.small { font-size: 15px; font-style: normal; font-family: var(--font-body); font-weight: 500; color: var(--muted); }

/* ---------- faixa gigante outline ---------- */

.big-strip { padding: 54px 0 40px; overflow: clip; border-bottom: 1px solid var(--line-soft); }

.big-strip .marquee-track { animation-duration: 50s; }

.big-word {
  font-family: var(--font-display);
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
  padding: 0 34px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 184, 75, 0.35);
  transition: color 0.5s;
}

.big-word.fill {
  background: linear-gradient(115deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0;
}

/* ---------- como funciona (timeline) ---------- */

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.timeline::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 75, 0.4) 15%, rgba(232, 184, 75, 0.4) 85%, transparent);
}

.step {
  position: relative;
  padding: 36px 26px;
  border-radius: var(--r-card);
  background: linear-gradient(165deg, var(--glass-2) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.3), 0 30px 60px -24px rgba(0, 0, 0, 0.8);
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  font-weight: 480;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(232, 184, 75, 0.5);
  color: transparent;
  margin-bottom: 20px;
  transition: color 0.4s;
}

.step:hover .step-num { color: rgba(232, 184, 75, 0.22); }

.step h3 { font-size: 21px; margin-bottom: 11px; }
.step p { color: var(--muted); font-size: 14.5px; }

.step::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.step:hover::after { opacity: 1; }

/* ---------- bento com spotlight ---------- */

.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(240px, auto); gap: 22px; }

.spot { position: relative; }

.spot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 184, 75, 0.1), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.spot:hover::before { opacity: 1; }

.bento-card {
  position: relative;
  padding: 34px 32px;
  border-radius: var(--r-card);
  background: linear-gradient(165deg, var(--glass-2) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.3), 0 30px 60px -24px rgba(0, 0, 0, 0.8);
}

.bento-card > * { position: relative; z-index: 2; }

.bento-wide { grid-column: span 2; }

.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(145deg, rgba(232, 184, 75, 0.16), rgba(232, 184, 75, 0.05));
  box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.28);
  transition: transform 0.4s var(--ease-back);
}

.bento-card:hover .bento-icon { transform: rotate(-6deg) scale(1.08); }

.bento-card h3 { font-size: 24px; margin-bottom: 10px; }
.bento-card > p { color: var(--muted); font-size: 15px; max-width: 54ch; }

.bento-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }

.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-back);
}

.chip:hover { border-color: rgba(232, 184, 75, 0.45); background: var(--gold-soft); transform: translateY(-2px); }

.chip.gold { color: #f2d488; border-color: rgba(232, 184, 75, 0.35); background: var(--gold-soft); }

.bento-foot { margin-top: auto; padding-top: 22px; }

.bento-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold-1); transition: gap 0.3s var(--ease-out); }
.bento-link:hover { gap: 13px; }

.notif-stack { display: grid; gap: 10px; margin-top: 22px; }

.notif {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-soft);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.notif:hover { transform: translateX(6px); border-color: rgba(232, 184, 75, 0.3); }

.notif .dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex: none; background: var(--gold-2); box-shadow: 0 0 8px 1px var(--gold-glow); }
.notif .dot.green { background: #4fd884; box-shadow: 0 0 8px 1px var(--green-glow); }
.notif h5 { font-size: 13.5px; font-weight: 600; }
.notif p { font-size: 12px; color: var(--muted); }
.notif time { margin-left: auto; font-size: 11px; color: var(--muted-2); flex: none; }

/* ---------- comparativo ---------- */

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin-inline: auto; }

.cmp-col {
  border-radius: 28px;
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
}

.cmp-before { background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)); box-shadow: inset 0 0 0 1px var(--line); }

.cmp-after {
  background: linear-gradient(160deg, #16110a 0%, #0b0906 100%);
  box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.35), 0 30px 70px -30px rgba(232, 184, 75, 0.25);
}

.cmp-after::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 30px;
  padding: 1.5px;
  background: conic-gradient(from var(--angle), transparent 10%, rgba(232, 184, 75, 0.8) 20%, transparent 32%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-border 7s linear infinite;
  pointer-events: none;
}

.cmp-col h3 { font-size: 22px; margin-bottom: 6px; }
.cmp-col .cmp-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }

.cmp-col ul { list-style: none; display: grid; gap: 0; }

.cmp-col li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--ink-2);
}

.cmp-x, .cmp-c { width: 26px; height: 26px; flex: none; border-radius: 50%; display: grid; place-items: center; }
.cmp-x { background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 0 0 1px var(--line); color: var(--muted-2); }
.cmp-c { background: linear-gradient(145deg, var(--gold-1), var(--gold-3)); color: #191307; box-shadow: 0 6px 14px -4px var(--gold-glow); }

.cmp-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: linear-gradient(145deg, var(--gold-1), var(--gold-3));
  color: #191307;
}

/* ---------- números gigantes ---------- */

.metrics { border-block: 1px solid var(--line-soft); background: var(--bg-2); }

.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.metric { padding: 54px 26px; text-align: center; border-left: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.metric:first-child { border-left: none; }

.metric b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 520;
  line-height: 1.05;
  background: linear-gradient(115deg, var(--gold-1), var(--gold-2) 60%, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

.metric::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 160px;
  height: 100px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.metric:hover::after { opacity: 1; }

/* ---------- para devedores ---------- */

.debt { overflow: clip; }

.debt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.debt-card {
  position: relative;
  padding: 44px 42px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0d1410 0%, #0a0d0a 100%);
  box-shadow: inset 0 0 0 1px rgba(42, 168, 92, 0.3), var(--shadow-card);
}

.debt-card::before {
  content: "";
  position: absolute;
  inset: -60px -80px;
  background: radial-gradient(50% 50% at 60% 40%, rgba(42, 168, 92, 0.12) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.debt-card > * { position: relative; }

.debt-check-list { list-style: none; display: grid; gap: 16px; margin: 26px 0 30px; }

.debt-check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }

.debt-check-list .ck {
  width: 26px;
  height: 26px;
  flex: none;
  margin-top: 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5fd68b, #1d7c43);
  color: #06130b;
  box-shadow: 0 6px 14px -4px var(--green-glow);
}

.why-list { display: grid; }

.why-item { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.why-item:last-child { border-bottom: none; }

.why-check {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 6px 14px -4px var(--gold-glow);
  margin-top: 3px;
}

.why-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 14.5px; }

/* ---------- depoimentos (carrossel arrastavel) ---------- */

.car {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  display: flex;
  gap: 22px;
  padding: 10px 4px 26px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.car::-webkit-scrollbar { display: none; }
.car.dragging { scroll-snap-type: none; }
.car.dragging .testi { pointer-events: none; }

.testi {
  flex: 0 0 min(380px, 84vw);
  scroll-snap-align: start;
  padding: 32px 30px;
  border-radius: var(--r-card);
  background: linear-gradient(165deg, var(--glass-2) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  user-select: none;
}

.testi:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.3), 0 30px 60px -24px rgba(0, 0, 0, 0.8); }

.stars { display: flex; gap: 4px; color: var(--gold-2); }

.testi p { color: var(--ink-2); font-size: 15px; }

.testi footer { margin-top: auto; display: flex; align-items: center; gap: 12px; }

.testi .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: #191307;
  background: linear-gradient(145deg, var(--gold-1), var(--gold-3));
  flex: none;
}

.testi .avatar.green { background: linear-gradient(145deg, #5fd68b, #1d7c43); color: #06130b; }

.testi b { display: block; font-size: 14.5px; }
.testi small { color: var(--muted); font-size: 12.5px; }

.car-hint { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted-2); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ---------- faq ---------- */

.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }

.faq-item {
  border-radius: 18px;
  background: linear-gradient(165deg, var(--glass-2) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  transition: box-shadow 0.35s;
}

.faq-item.open { box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.3), var(--shadow-card); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}

.faq-q .faq-ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), background 0.35s, border-color 0.35s;
}

.faq-item.open .faq-ic {
  transform: rotate(45deg);
  background: linear-gradient(145deg, var(--gold-1), var(--gold-3));
  border-color: transparent;
  color: #191307;
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15px; max-width: 64ch; }
.faq-a a { color: var(--gold-1); }

/* ---------- cta final (duplo) ---------- */

.cta-final { position: relative; overflow: clip; padding: 130px 0; }

.cta-final::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: 1000px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(94% 69% at 50% 100%, rgba(140, 100, 16, 0.4) 0%, rgba(140, 100, 16, 0) 100%);
  pointer-events: none;
}

.cta-final .section-head { margin-bottom: 46px; }

.cta-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 940px; margin-inline: auto; }

.cta-card {
  position: relative;
  padding: 42px 38px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.cta-card:hover { transform: translateY(-6px); }

.cta-card h3 { font-size: 26px; }
.cta-card p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.cta-card .btn { align-self: flex-start; margin-top: auto; }

.cta-card-gold { background: linear-gradient(160deg, #16110a 0%, #0b0906 100%); box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.35), var(--shadow-card); }
.cta-card-gold:hover { box-shadow: inset 0 0 0 1px rgba(232, 184, 75, 0.6), 0 34px 80px -30px rgba(232, 184, 75, 0.3); }

.cta-card-green { background: linear-gradient(160deg, #0d1410 0%, #0a0d0a 100%); box-shadow: inset 0 0 0 1px rgba(42, 168, 92, 0.3), var(--shadow-card); }
.cta-card-green:hover { box-shadow: inset 0 0 0 1px rgba(42, 168, 92, 0.55), 0 34px 80px -30px rgba(42, 168, 92, 0.28); }

.cta-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.cta-trust { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; color: var(--muted); font-size: 13.5px; font-weight: 500; margin-top: 46px; }
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- rodapé ---------- */

.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 70px 0 36px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-brand p { color: var(--muted); font-size: 14px; max-width: 40ch; margin-top: 18px; }

.footer h4 { font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 20px; }

.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a, .footer ul li { color: var(--ink-2); font-size: 14.5px; transition: color 0.25s; }
.footer ul a:hover { color: var(--gold-1); }
.footer ul li.addr { color: var(--muted); line-height: 1.7; }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 12.5px;
}

.footer-legal { color: var(--muted-2); font-size: 12px; margin-top: 26px; line-height: 1.7; }

/* ---------- páginas legais ---------- */

.legal-page { padding: 170px 0 100px; }
.legal-page h1 { font-size: clamp(34px, 4.6vw, 50px); margin: 20px 0 14px; }
.legal-page .updated { color: var(--muted-2); font-size: 13.5px; margin-bottom: 46px; }
.legal-body { max-width: 760px; display: grid; gap: 8px; }
.legal-body h2 { font-size: 23px; margin-top: 34px; margin-bottom: 6px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 15.5px; }
.legal-body ul { padding-left: 22px; display: grid; gap: 8px; }
.legal-body a { color: var(--gold-1); }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal, .split .w > i { opacity: 1; transform: none; }
  .preloader { display: none; }
}

/* ---------- responsivo ---------- */

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero { padding-top: 160px; }
  .hero-visual { min-height: 500px; }
  .hv-f1 { left: 0; }
  .hv-f2 { right: 0; }
  .hv-f3 { right: 2%; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .debt-grid { grid-template-columns: 1fr; gap: 56px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric { border-top: 1px solid var(--line-soft); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 64px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 26px;
    background: rgba(6, 5, 4, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 19px; }
  .nav-burger { display: flex; }
  .nav .btn-gold { display: none; }
  .hero-stats { flex-direction: column; }
  .stat { border-left: none; border-top: 1px solid var(--line-soft); }
  .stat:first-child { border-top: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .timeline { grid-template-columns: 1fr; }
  .compare, .cta-duo { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hv-f1 { top: -4%; }
  .hv-f2 { bottom: -2%; }
  .hv-f3 { display: none; }
  .hv-ring { width: 420px; height: 420px; }
  .hv-ring-2 { width: 520px; height: 520px; }
}
