:root {
  /* Cores da Logo Probato */
  --probato-slate: #3d4d6f;
  --probato-green: #348715;
  --probato-midnight: #1c2331;

  /* Backgrounds: Tintados com o Midnight Blue para coesão */
  --black: #0b0e14;
  --off-black: #111620;
  --card: var(--probato-midnight);
  --card-hover: #262f42;

  /* Tipografia: Alto contraste para leitura */
  --white: #ffffff;
  --off-white: #e2e8f0;
  --muted: #8b9bb4;

  /* UI Elements & Borders */
  --faint: var(--probato-slate);
  --border: rgba(61, 77, 111, 0.3);
  --border-strong: rgba(61, 77, 111, 0.6);

  /* Accents & CTAs: Foco total no Verde para conversão */
  --accent: var(--probato-green);
  --accent-light: rgba(52, 135, 21, 0.15);
  --accent-border: rgba(52, 135, 21, 0.3);

  /* States */
  --red: #ff3b3b;
  --red-light: rgba(255, 59, 59, 0.1);
  --green: var(--probato-green);

  /* Fontes */
  --f-display: "Syne", sans-serif;
  --f-body: "IBM Plex Sans", sans-serif;
  --f-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--f-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── GRID OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NOISE ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.z1 {
  position: relative;
  z-index: 1;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(52, 135, 21, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(52, 135, 21, 0);
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.anim {
  opacity: 0;
}
.anim.visible {
  animation: fadeUp 0.7s ease-out both;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo-word {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-image {
  display: block;
  width: auto;
  height: 40px;
  max-width: 170px;
}
nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta {
  color: var(--white) !important;
  background: var(--accent) !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: #2b7011 !important;
  transform: none !important;
}

/* ─── TICKER ─── */
.ticker-wrap {
  margin-top: 60px;
  background: var(--probato-slate);
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-strong);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after {
  content: "//";
  color: rgba(255, 255, 255, 0.4);
}

/* ─── HERO ─── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(52, 135, 21, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 12px;
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  background: var(--accent-light);
}
.hero-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin-bottom: 28px;
}
.hero h1 .line-accent {
  color: var(--accent);
}
.hero h1 .line-strike {
  position: relative;
  color: var(--muted);
}

.pare {
  position: relative;
  z-index: 1;
  color: rgb(255, 11, 11);
}

.visto {
  color: rgb(26, 131, 206);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-sub strong {
  color: var(--off-white);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #2b7011;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(52, 135, 21, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:first-child {
  padding-left: 0;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-num span {
  color: var(--accent);
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: var(--f-mono);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ─── CONTRAST SECTION ─── */
.contrast-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.contrast-header {
  text-align: center;
  margin-bottom: 72px;
}
.contrast-header h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contrast-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 0;
  align-items: stretch;          /* colunas ocupam mesma altura */
}
.contrast-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vs-badge {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.06),
    0 0 60px rgba(255, 255, 255, 0.03);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}
.contrast-head {
  padding: 20px 24px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.head-old {
  background: rgba(255, 43, 43, 0.08);
  color: var(--red);
  border: 1px solid rgba(255, 43, 43, 0.15);
  border-bottom: none;
}
.head-new {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-bottom: none;
}
.contrast-head .h-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.h-dot-red {
  background: var(--red);
}
.h-dot-blue {
  background: var(--accent);
}
.contrast-body {
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.cb-old {
  border: 1px solid rgba(255, 43, 43, 0.12);
  border-top: none;
  background: rgba(255, 43, 43, 0.03);
}
.cb-new {
  border: 1px solid var(--accent-border);
  border-top: none;
  background: rgba(61, 77, 111, 0.15);
}
.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
  line-height: 1.5;
}
.contrast-item:last-child {
  border-bottom: none;
}
.ci-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.ci-bad .ci-icon {
  color: var(--red);
  opacity: 0.7;
}
.ci-good .ci-icon {
  color: var(--green);
}
.ci-bad {
  color: rgba(255, 255, 255, 0.45);
}
.ci-good {
  color: rgba(255, 255, 255, 0.7);
}
.ci-good strong {
  color: var(--white);
  font-weight: 600;
}
.ci-bad .ci-label-bad {
  color: var(--red);
  font-size: 11px;
  font-family: var(--f-mono);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ─── FEATURES ─── */
.features-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.features-header {
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 16px;
}
.features-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.f-card {
  background: var(--off-black);
  padding: 40px 32px;
  transition: background 0.25s;
  position: relative;
}
.f-card:hover {
  background: var(--card-hover);
}
.f-card.f-hero-card {
  grid-column: span 2;
  background: var(--card);
}
.f-card.f-hero-card:hover {
  background: var(--card-hover);
}
.f-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.f-tag-blue {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}
.f-tag-green {
  background: rgba(0, 197, 110, 0.08);
  color: var(--green);
  border: 1px solid rgba(0, 197, 110, 0.2);
}
.f-tag-white {
  background: rgba(255, 255, 255, 0.05);
  color: var(--off-white);
  border: 1px solid var(--border-strong);
}
.f-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.f-card.f-hero-card h3 {
  font-size: 28px;
}
.f-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.f-card.f-hero-card p {
  font-size: 15px;
  max-width: 480px;
}
.f-card .f-highlight {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(61, 77, 111, 0.15);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--off-white);
  line-height: 1.6;
}
.f-card .f-audit-log {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--faint);
  font-family: var(--f-mono);
  font-size: 11px;
}
.log-header {
  background: var(--faint);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}
.log-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  align-items: center;
}
.log-row:last-child {
  border-bottom: none;
}
.log-time {
  color: var(--muted);
}
.log-event {
  color: var(--off-white);
}
.log-status {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
}
.log-ok {
  background: rgba(0, 197, 110, 0.1);
  color: var(--green);
}
.log-warn {
  background: rgba(255, 43, 43, 0.08);
  color: var(--red);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.how-header {
  margin-bottom: 72px;
  text-align: center;
}
.how-header h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.how-header p {
  font-size: 16px;
  color: var(--muted);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-border) 20%,
    var(--accent-border) 80%,
    transparent
  );
  z-index: 0;
}
.step-card {
  padding: 0 32px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--faint);
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.3s;
}
.step-card:hover .step-num-circle {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-light);
}
.step-card h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── TRUST SECTION ─── */
.trust-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.trust-header {
  margin-bottom: 64px;
}
.trust-header h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 540px;
  margin-bottom: 14px;
}
.trust-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  padding: 28px 28px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.trust-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}
.trust-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.trust-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.trust-card h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.trust-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── QUOTE ─── */
.quote-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.quote-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 64px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  position: relative;
}
.quote-box::before {
  content: '"';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
}
blockquote {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
blockquote em {
  font-style: normal;
  color: var(--accent);
}
.quote-source {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── CTA ─── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(52, 135, 21, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-copy h2 em {
  font-style: normal;
  color: var(--accent);
}
.cta-copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--off-white);
}
.cta-bullets li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 197, 110, 0.1);
  border: 1px solid rgba(0, 197, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-bullets li .check svg {
  width: 10px;
  height: 10px;
  color: var(--green);
}
.cta-form-box {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 40px 36px;
}
.form-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-subtitle .spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
}
.form-subtitle .spots::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 7px;
  border: 1px solid var(--faint);
  background: var(--off-black);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}
.field input::placeholder {
  color: rgba(106, 106, 114, 0.6);
}
.field input:focus {
  border-color: var(--accent);
  background: var(--black);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, #3f9b1a 0%, #2b7011 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.form-btn:hover {
  background: linear-gradient(180deg, #46ac1d 0%, #2f7a12 100%);
  box-shadow: 0 12px 32px rgba(52, 135, 21, 0.3);
  transform: translateY(-1px);
}
.form-btn .btn-label {
  position: relative;
  z-index: 2;
}
.form-btn .btn-icon,
.form-btn .btn-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.form-btn .btn-check {
  display: none;
}
.form-btn:disabled {
  cursor: not-allowed;
}
.form-btn.is-sending {
  box-shadow: 0 0 0 3px rgba(52, 135, 21, 0.2);
}
.form-btn.is-sending .btn-icon {
  animation: send-arrow 0.9s ease-in-out infinite;
}
.form-btn.is-success {
  background: linear-gradient(180deg, #40a21b 0%, #2a6f10 100%);
}
.form-btn.is-success .btn-icon {
  display: none;
}
.form-btn.is-success .btn-check {
  display: inline-block;
  animation: pop-check 0.25s ease-out;
}
.form-btn.is-error {
  background: linear-gradient(180deg, #7b2d2d 0%, #5f2222 100%);
}
.form-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.form-note a {
  color: var(--muted);
}
.form-status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  transition: color 0.2s ease;
}
.form-status.is-loading {
  color: #c8d2e4;
}
.form-status.is-success {
  color: #9bd678;
}
.form-status.is-error {
  color: #ff9a9a;
}
@keyframes send-arrow {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(4px) scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@keyframes pop-check {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.footer-center {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--off-white);
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(61, 77, 111, 0.18),
      transparent 36%
    ),
    radial-gradient(circle at 80% 0%, rgba(52, 135, 21, 0.08), transparent 30%),
    var(--black);
  color: var(--off-white);
}

.legal-header {
  padding: 28px 0 0;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.legal-brand img {
  display: block;
  width: auto;
  height: 28px;
  max-width: 170px;
}

.legal-hero {
  position: relative;
  padding: 72px 0 42px;
  border-bottom: 1px solid var(--border);
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0 72px;
}

.legal-sidebar,
.legal-article,
.legal-callout {
  border: 1px solid var(--border-strong);
  background: rgba(17, 22, 32, 0.92);
}

.legal-sidebar {
  padding: 20px;
  position: sticky;
  top: 24px;
}

.legal-sidebar h2,
.legal-article h2,
.legal-callout h2,
.legal-page .title {
  font-family: var(--f-display);
  letter-spacing: -0.04em;
  color: var(--white);
}

.legal-page .title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.95;
}

.legal-sidebar h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.legal-page .subtitle {
  margin: 18px 0 0;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal-page .lead {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: #d8e0ee;
}

.legal-sidebar ul {
  margin: 0;
  padding-left: 18px;
  color: var(--off-white);
}

.legal-sidebar li + li {
  margin-top: 10px;
}

.legal-article {
  padding: 28px;
}

.legal-article section + section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(61, 77, 111, 0.28);
}

.legal-article h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin-bottom: 12px;
}

.legal-article p,
.legal-article li,
.legal-sidebar p,
.legal-callout p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--off-white);
}

.legal-article ul {
  margin: 0;
  padding-left: 18px;
}

.legal-article li + li {
  margin-top: 10px;
}

.legal-callout {
  padding: 28px;
  margin: 0 0 72px;
}

.legal-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(52, 135, 21, 0.35);
  background: rgba(52, 135, 21, 0.12);
  color: #9bd678;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--border);
  background: rgba(11, 14, 20, 0.94);
}

.legal-footer-inner {
  display: grid;
  gap: 14px;
}

.legal-footer-brand {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.legal-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.legal-footer-links a:hover {
  color: var(--off-white);
}

.legal-copyright {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {

  .contrast-divider {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .f-card.f-hero-card {
    grid-column: span 2;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item {
    padding: 0 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .f-card.f-hero-card {
    grid-column: span 1;
  }
  .how-steps {
    grid-template-columns: 1fr 1fr;
  }
  .how-steps::before {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .quote-box {
    padding: 40px 28px;
  }
  nav a:not(.nav-cta) {
    display: none;
  }
  .hero {
    padding: 72px 0 60px;
  }
  .ticker-wrap {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
