
/* ═══ POLISHED OVERRIDES ═══ */

/* Без фоновых сеток на секциях */
.section::before {
  display: none;
}

.sec-label {
  font-size: var(--fs-xs);
  margin-bottom: 14px;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.035em;
}

.sec-sub {
  font-size: var(--fs-body);
  max-width: 620px;
  line-height: 1.65;
}

.sec-sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.nav-links a {
  font-size: var(--fs-sm);
}

.gradient-btn--nav .gradient-btn__label {
  font-size: 13px;
  padding: 9px 16px;
}

/* Кнопка без модификатора — базовый padding (не nav / lg / bar) */
.gradient-btn:not(.gradient-btn--bar):not(.gradient-btn--nav):not(.gradient-btn--lg) > .gradient-btn__label {
  padding: 14px 26px;
  font-size: 15px;
}

button.gradient-btn {
  font: inherit;
}

button.gradient-btn > .gradient-btn__label {
  width: 100%;
}

.logo-word {
  font-size: 17px;
}

/* Hero — LOCKED: работает без тормозов. НЕ менять без явной просьбы.
   Ключевое: min-height auto, overflow hidden (не overflow-x!), hero::after off,
   canvas = hero.clientHeight, IntersectionObserver пауза вне экрана. */
.hero {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: auto;
  padding: 40px 20px 48px;
  background: var(--bg-0);
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero-inner {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-canvas {
  z-index: 1;
}

/* Hero — ambient как у футера (только визуал, scroll не трогаем) */
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient-glow-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 36%;
  height: 1px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(46, 230, 168, 0.35);
  filter: blur(1px);
}

.ambient-glow-line--bottom {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ambient-orb--1 {
  top: -20%;
  left: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(46, 230, 168, 0.1), transparent 68%);
}

.ambient-orb--2 {
  top: 10%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08), transparent 68%);
}

.ambient-orb--3 {
  bottom: -30%;
  left: 30%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.07), transparent 68%);
}

/* How-band — фон/поверхность как в main.css; только margin-top:0 для hero */
.how-band {
  margin-top: 0;
  z-index: auto;
}

.how-band-surface {
  background: var(--bg-1);
  border-radius: 32px 32px 0 0;
  border-top: 1px solid rgba(46, 230, 168, 0.14);
  box-shadow:
    0 -32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 64px 0 80px;
}

.how-flow-art {
  background: var(--bg-2);
}

.hero-title {
  display: block;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #fff;
  animation: fadeUp 0.55s 0.06s var(--ease) both;
}

.hero-title-post {
  color: var(--text-2);
}

.hero-tw-inline {
  display: inline;
  white-space: nowrap;
}

.tw-word {
  font-size: inherit;
  font-weight: 800;
  letter-spacing: inherit;
  line-height: inherit;
}

.tw-caret {
  font-weight: 300;
  color: var(--mint);
  animation: caret-blink 1s step-end infinite;
  margin-left: 1px;
}

@keyframes caret-blink {
  50% { opacity: 0; }
}

.h1-tw,
.h1-static { display: none; }

.hero-tagline {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  margin-bottom: 32px;
}

.pill {
  font-size: var(--fs-sm);
}

.pill-brand {
  letter-spacing: 0.04em;
  text-transform: none;
}

.badge {
  font-size: var(--fs-xs);
}

.search-input {
  font-size: var(--fs-body);
  padding: 16px 20px;
}

.search-submit {
  font-size: var(--fs-sm);
  padding: 0 22px;
}

.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}

.trust-item span {
  font-size: var(--fs-sm);
  color: var(--text-3);
}

.how-band-lead {
  font-size: var(--fs-body);
}

.how-flow-label {
  font-size: var(--fs-sm);
}

.how-flow-text h3 {
  font-size: 18px;
}

.how-flow-text p {
  font-size: var(--fs-body);
}

.how-gift-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--mint);
  background: rgba(46, 230, 168, 0.1);
  border: 1px solid rgba(46, 230, 168, 0.25);
  vertical-align: middle;
}

.how-band-note {
  font-size: var(--fs-sm);
}

/* Порядок секций: how → params → platforms → for-who → … */
#params {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
}

#platforms {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}

#leadsy {
  border-top: 1px solid var(--line);
}

#reviews {
  border-top: 1px solid var(--line);
}

.for-who--mini {
  padding: 28px 0;
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.for-who--mini .for-who-lead {
  margin-bottom: 14px;
}

/* For who */
.for-who {
  padding: 32px 0;
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.for-who-lead {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-3);
  margin-bottom: 16px;
}

.for-who-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.for-who-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  font-size: var(--fs-sm);
  color: var(--text-2);
}

.for-who-ico {
  font-size: 16px;
  line-height: 1;
}

/* Platforms — logo imgs */
.plat-ico {
  width: auto;
  height: auto;
  background: none !important;
  box-shadow: none;
}

.plat-ico img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.plat-name {
  font-size: var(--fs-sm);
}

.plat-owner,
.plat-tag {
  font-size: var(--fs-xs);
}

.plat-rank {
  font-size: 10px;
}

/* Params icons */
.param-card {
  position: relative;
  padding-top: 56px;
}

.param-icon {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(46, 230, 168, 0.12);
  border: 1px solid rgba(46, 230, 168, 0.22);
}

.param-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--mint);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0.85;
}

.param-icon--a::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 6h16v2H4zm0 5h10v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E");
}

.param-icon--b::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8zm0 2l2 2h-2z'/%3E%3C/svg%3E");
}

.param-icon--c::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.param-icon--d::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 17h2v-7H3zm4 0h2V7H7zm4 0h2v-4h-2zm4 0h2V4h-2zm4 0h2v-9h-2z'/%3E%3C/svg%3E");
}

.param-head {
  font-size: 11px;
}

.param-title {
  font-size: var(--fs-body);
}

.param-list li {
  font-size: var(--fs-sm);
}

/* Audit result */
.audit-result {
  margin-top: 64px;
}

.audit-result-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.audit-result-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
  margin: 12px 0 14px;
}

.audit-result-lead {
  font-size: var(--fs-body);
  color: var(--text-2);
  line-height: 1.65;
}

.audit-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.audit-frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.audit-frame-dots {
  display: flex;
  gap: 6px;
}

.audit-frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.audit-frame-dots span:nth-child(1) { background: #ff5f57; }
.audit-frame-dots span:nth-child(2) { background: #ffbd2e; }
.audit-frame-dots span:nth-child(3) { background: #28ca41; }

.audit-frame-url {
  flex: 1;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-0);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-xs);
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audit-frame-badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--mint);
  background: rgba(46, 230, 168, 0.1);
  border: 1px solid rgba(46, 230, 168, 0.25);
}

.audit-frame-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audit-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.audit-score-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: var(--bg-2);
}

.audit-gauge {
  --score: 14;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: conic-gradient(
    var(--red) calc(var(--score) * 1%),
    var(--bg-3) calc(var(--score) * 1%)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-gauge-inner {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.audit-gauge-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.audit-gauge-lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.audit-score-site {
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-xs);
  color: var(--text-3);
  margin-bottom: 6px;
}

.audit-score-potential {
  font-size: var(--fs-body);
  color: var(--text);
  margin-bottom: 8px;
}

.audit-score-potential strong {
  color: var(--mint);
}

.audit-score-checks {
  font-size: var(--fs-sm);
  color: var(--text-2);
}

.audit-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.audit-plat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: var(--fs-sm);
}

.audit-plat-name {
  color: var(--text-2);
}

.audit-plat-val {
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-xs);
  font-weight: 700;
}

.audit-plat-val--bad { color: var(--red); }
.audit-plat-val--warn { color: var(--orange); }

.audit-issues {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
}

.audit-issues-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--text-3);
  text-transform: uppercase;
}

.audit-issues-count {
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--red);
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.audit-issue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audit-issue {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.audit-sev {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.audit-sev--crit {
  color: var(--red);
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

.audit-sev--high {
  color: var(--orange);
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.audit-issue-text {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.45;
}

.audit-issue-cat {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: var(--text-3);
  white-space: nowrap;
}

.audit-more {
  margin-top: 12px;
  font-size: var(--fs-sm);
  color: var(--text-3);
  text-align: center;
}

.audit-priority {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(46, 230, 168, 0.2);
  background: rgba(46, 230, 168, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.55;
}

.audit-priority-label {
  color: var(--mint);
  font-weight: 600;
}

.audit-footnotes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.audit-footnote {
  font-size: var(--fs-sm);
  color: var(--text-2);
}

.audit-footnote strong {
  color: #fff;
  font-weight: 700;
}

/* Leadsy mascotte */
.leadsy-mascotte {
  margin-bottom: 20px;
}

.leadsy-mascotte img {
  filter: drop-shadow(0 0 20px rgba(46, 230, 168, 0.35));
}

.leadsy-text p {
  font-size: var(--fs-body);
}

.stat-val {
  font-size: 28px;
}

.stat-label {
  font-size: var(--fs-sm);
}

.term-line {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.term-line.visible {
  opacity: 1;
  transform: none;
}

.rep-fill--anim {
  transition: width 1s var(--ease);
}

/* Reviews bg */
#reviews {
  background: #13131c;
  position: relative;
  overflow: hidden;
}

#reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(129, 140, 248, 0.06), transparent 65%);
}

#reviews .container {
  position: relative;
  z-index: 1;
}

.rev-text {
  font-size: var(--fs-body);
}

.rev-name {
  font-size: var(--fs-sm);
}

.rev-role {
  font-size: var(--fs-sm);
}

.faq-q {
  font-size: var(--fs-body);
}

.faq-a {
  font-size: var(--fs-body);
}

/* CTA — симметричные отступы перед футером */
.section--cta {
  position: relative;
  padding: 96px 0;
}

.section--cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(46, 230, 168, 0.1), transparent 65%);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(46, 230, 168, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(46, 230, 168, 0.18) !important;
  background:
    radial-gradient(35% 120px at 50% 0%, rgba(46, 230, 168, 0.12), transparent),
    rgba(255, 255, 255, 0.025) !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-box-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.cta-box-ambient .ambient-orb--1 {
  top: -40%;
  left: -20%;
  width: 320px;
  height: 320px;
  opacity: 0.7;
}

.cta-box-ambient .ambient-orb--2 {
  top: -20%;
  right: -10%;
  width: 260px;
  height: 260px;
  opacity: 0.6;
}

#leadsy {
  position: relative;
}

#leadsy .container,
#leadsy .leadsy-layout {
  position: relative;
  z-index: 1;
}

.cta-box > :not(.cta-box-ambient):not(.cta-glow) {
  position: relative;
  z-index: 1;
}

#leadsy .leadsy-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

#leadsy .leadsy-ambient .ambient-orb--1 {
  top: 0;
  right: -5%;
  width: 500px;
  height: 500px;
  opacity: 0.45;
}

.cta-sub {
  text-align: center;
  font-size: var(--fs-body);
  color: var(--text-2);
  margin: 12px auto 0;
}

/* Footer — efferd footer-section / footer-6 sticky reveal */
.footer--reveal {
  --footer-height: 520px;
  position: relative;
  height: var(--footer-height);
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.footer-shell {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);
  z-index: 40;
  pointer-events: none;
}

.footer-sticky {
  position: sticky;
  top: calc(100vh - var(--footer-height));
  height: 100%;
  overflow-y: auto;
  pointer-events: auto;
  border-top: 1px solid rgba(46, 230, 168, 0.14);
  border-radius: 32px 32px 0 0;
  background: var(--bg-0);
  background-image: radial-gradient(35% 128px at 50% 0%, rgba(46, 230, 168, 0.1), transparent);
  box-shadow:
    0 -32px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-glow-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 33%;
  height: 1px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(46, 230, 168, 0.35);
  filter: blur(1px);
  pointer-events: none;
  z-index: 2;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.footer-orb--1 {
  top: 0;
  left: 0;
  width: 560px;
  height: 1280px;
  transform: translateY(-87%) rotate(-45deg);
  background: radial-gradient(
    68.54% 68.72% at 55.02% 31.46%,
    rgba(46, 230, 168, 0.07) 0%,
    rgba(46, 230, 168, 0.02) 50%,
    transparent 80%
  );
}

.footer-orb--2 {
  top: 0;
  left: 0;
  width: 240px;
  height: 1280px;
  transform: translate(5%, -50%) rotate(-45deg);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(46, 230, 168, 0.05) 0%,
    rgba(46, 230, 168, 0.01) 80%,
    transparent 100%
  );
}

.footer-orb--3 {
  top: 0;
  left: 120px;
  width: 240px;
  height: 1280px;
  transform: translateY(-87%) rotate(-45deg);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(46, 230, 168, 0.04) 0%,
    rgba(46, 230, 168, 0.01) 80%,
    transparent 100%
  );
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-col .logo {
  display: inline-flex;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(46, 230, 168, 0.2);
  background: rgba(46, 230, 168, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-xs);
  color: var(--text-2);
  line-height: 1;
  width: fit-content;
}

.footer-status .f-dot {
  flex-shrink: 0;
  margin: 0;
}

.footer-tagline {
  margin-top: 12px;
  font-size: var(--fs-sm);
  color: var(--text-3);
  line-height: 1.55;
  max-width: 260px;
}

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}

.footer-col .footer-links {
  flex-direction: column;
  gap: 10px;
}

.footer-col .footer-links a {
  font-size: var(--fs-sm);
  color: var(--text-3);
  transition: color 0.25s var(--ease);
}

.footer-col .footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  font-size: var(--fs-xs);
}

.footer-legal-link {
  font-size: var(--fs-xs);
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-legal-link:hover {
  color: var(--text-1);
}

.f-status {
  font-size: var(--fs-xs);
  margin-top: 14px;
}

.footer-brand-col .f-status {
  margin-top: 0;
}

.footer-watermark {
  position: absolute;
  bottom: -0.12em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(46, 230, 168, 0.07);
  opacity: 0.9;
}

.footer-watermark span {
  -webkit-text-stroke-color: rgba(46, 230, 168, 0.12);
}

.footer-animate {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
  transition-delay: calc(var(--anim-delay, 0) * 0.1s);
}

.footer-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.cookie-banner--glass {
  bottom: 16px;
  padding: 16px 20px;
  border-radius: 999px;
  border-color: rgba(46, 230, 168, 0.15);
}

.cookie-text {
  font-size: var(--fs-sm);
}

.btn-cookie-ok {
  font-size: var(--fs-sm);
}

@media (max-width: 1024px) {
  .audit-top {
    grid-template-columns: 1fr;
  }

  .footer--reveal {
    --footer-height: 580px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .how-gift-badge {
    display: block;
    margin: 8px auto 0;
    width: fit-content;
  }

  .trust-strip {
    gap: 16px;
  }

  .how-band {
    margin-top: 0;
  }

  .how-band-surface {
    border-radius: 24px 24px 0 0;
    padding: 48px 0 64px;
  }

  .footer--reveal {
    --footer-height: 680px;
  }

  .footer-sticky {
    border-radius: 24px 24px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-watermark {
    font-size: clamp(56px, 18vw, 96px);
  }

  .cookie-banner--glass {
    border-radius: var(--radius);
  }

  .audit-frame-body {
    padding: 16px;
  }

  .audit-score-card {
    flex-direction: column;
    text-align: center;
  }

  .audit-issue {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .audit-issue-cat {
    justify-self: start;
  }

  .audit-frame-url {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tw-caret {
    animation: none;
  }

  .footer-animate {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
