/* ============================================================
   Agility Tecno — Design System
   Tema: dark tech | Acentos: cyan → azul → violeta
   ============================================================ */

:root {
  --bg: #04060f;
  --bg-2: #080d1c;
  --bg-3: #0c1428;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eaf0ff;
  --muted: #96a0c2;
  --brand: #4f7cff;
  --brand-2: #8b5cf6;
  --accent: #22d3ee;
  --green: #25d366;
  --grad: linear-gradient(120deg, #22d3ee 0%, #4f7cff 50%, #8b5cf6 100%);
  --grad-soft: linear-gradient(120deg, rgba(34, 211, 238, 0.14), rgba(79, 124, 255, 0.14), rgba(139, 92, 246, 0.14));
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --shadow-glow: 0 0 60px rgba(79, 124, 255, 0.25);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: rgba(79, 124, 255, 0.45); color: #fff; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

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

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 14px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.07);
}

.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
}

.section-head p { color: var(--muted); font-size: 17.5px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px rgba(79, 124, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(79, 124, 255, 0.5); }

.btn-ghost {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--brand); background: var(--surface-2); transform: translateY(-2px); }

.btn-wpp {
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4be382;
}
.btn-wpp:hover { background: rgba(37, 211, 102, 0.24); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(4, 6, 15, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header .container { display: flex; align-items: center; gap: 32px; }

.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }

.logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(79, 124, 255, 0.45);
  flex: none;
}
.logo-mark svg { width: 21px; height: 21px; color: #fff; }

.logo span em { font-style: normal; color: var(--accent); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }

.nav a.nav-link {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav a.nav-link:hover, .nav a.nav-link.active { color: var(--text); background: var(--surface-2); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.lang-switch { display: flex; gap: 2px; padding: 3px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); flex: none; }
.lang-switch button { padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); transition: color 0.2s, background 0.2s; }
.lang-switch button.active { color: var(--text); background: var(--surface-2); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }
body.nav-open .nav-toggle .icon-menu { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 24px 28px;
    background: rgba(4, 6, 15, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  body.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a.nav-link { padding: 14px 16px; font-size: 16px; }
  .header-cta .btn { display: none; }
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 90px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122, 148, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 148, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}

.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.orb-1 { width: 520px; height: 520px; background: rgba(79, 124, 255, 0.32); top: -160px; right: -80px; animation: drift 14s ease-in-out infinite alternate; }
.orb-2 { width: 420px; height: 420px; background: rgba(139, 92, 246, 0.26); bottom: -140px; left: -120px; animation: drift 18s ease-in-out infinite alternate-reverse; }
.orb-3 { width: 300px; height: 300px; background: rgba(34, 211, 238, 0.18); top: 34%; left: 38%; animation: drift 11s ease-in-out infinite alternate; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(46px, -34px) scale(1.12); }
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 22px 0 20px;
}

.hero p.lead { color: var(--muted); font-size: clamp(16.5px, 1.6vw, 19px); max-width: 520px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat b i { font-style: normal; color: var(--accent); }
.stat span { font-size: 13.5px; color: var(--muted); }

/* painel "terminal" do hero */

.hero-visual { position: relative; }

.terminal {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: rgba(8, 13, 28, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), var(--shadow-glow);
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.terminal-bar i { width: 11px; height: 11px; border-radius: 50%; }
.terminal-bar i:nth-child(1) { background: #ff5f57; }
.terminal-bar i:nth-child(2) { background: #febc2e; }
.terminal-bar i:nth-child(3) { background: #28c840; }
.terminal-bar span { margin-left: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

.terminal-body { padding: 22px 22px 26px; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.9; }
.terminal-body .ln { display: flex; gap: 14px; }
.terminal-body .no { color: #3d4767; user-select: none; width: 2ch; text-align: right; flex: none; }
.tk-k { color: #c792ea; } .tk-f { color: #82aaff; } .tk-s { color: #c3e88d; }
.tk-c { color: #546089; } .tk-p { color: #89ddff; } .tk-n { color: #f78c6c; }

.terminal-cursor { display: inline-block; width: 8px; height: 15px; background: var(--accent); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(10, 16, 34, 0.9);
  backdrop-filter: blur(10px);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 18px; height: 18px; color: var(--accent); }
.chip-1 { top: -24px; right: 26px; }
.chip-2 { bottom: -22px; left: -26px; animation-delay: 1.6s; }
.chip-2 svg { color: var(--brand-2); }

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

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 70px; }
  .hero { min-height: 0; }
  .hero-visual { max-width: 560px; }
}

/* ---------- marquee de tecnologias ---------- */

.stack-strip { border-block: 1px solid var(--border); padding: 26px 0; background: rgba(255, 255, 255, 0.015); overflow: hidden; }

.marquee { display: flex; gap: 14px; width: max-content; animation: marquee 30s linear infinite; }
.stack-strip:hover .marquee { animation-play-state: paused; }

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  white-space: nowrap;
}
.marquee span i { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); flex: none; }

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

/* ---------- cards de serviços ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 18px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.svc-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  flex: none;
}
.svc-icon svg { width: 24px; height: 24px; color: var(--accent); }

.svc-card h3 { font-family: var(--font-display); font-size: 18.5px; font-weight: 600; letter-spacing: -0.01em; }
.svc-card p { color: var(--muted); font-size: 14.5px; flex: 1; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}
.svc-link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- diferenciais ---------- */

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

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }

.why-card { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: border-color 0.3s, transform 0.3s; }
.why-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.why-card .num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.why-card h3 { font-family: var(--font-display); font-size: 19px; margin: 14px 0 10px; }
.why-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- processo ---------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; counter-reset: step; }

.step {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.step h3 { font-family: var(--font-display); font-size: 18.5px; margin: 16px 0 10px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(139, 92, 246, 0.18), transparent 60%),
    var(--bg-3);
  padding: clamp(44px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}

.cta-banner h2 { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 50px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.cta-banner p { color: var(--muted); font-size: 17px; margin: 16px auto 32px; max-width: 520px; }
.cta-banner .hero-actions { justify-content: center; margin-top: 0; }

.cta-contact-alt { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px; font-size: 15px; color: var(--muted); }
.cta-contact-alt a { color: var(--text); font-weight: 600; border-bottom: 1px solid var(--border-strong); transition: color 0.2s, border-color 0.2s; }
.cta-contact-alt a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- contato ---------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: start; }

.contact-cards { display: grid; gap: 14px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover { border-color: var(--border-strong); transform: translateX(4px); }
.contact-card .svc-icon { width: 46px; height: 46px; border-radius: 12px; }
.contact-card .svc-icon svg { width: 21px; height: 21px; }
.contact-card b { display: block; font-size: 15.5px; }
.contact-card span { color: var(--muted); font-size: 14px; }

.contact-form {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  gap: 16px;
}

.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(4, 6, 15, 0.6);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.18);
}
.field select option { background: var(--bg-3); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */

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

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 54px; }

.footer-brand p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 300px; }

.footer h4 { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { color: var(--muted); font-size: 14.5px; transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- botão flutuante WhatsApp ---------- */

.wpp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55); }
.wpp-float svg { width: 28px; height: 28px; color: #fff; }

/* ---------- páginas internas ---------- */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 26px;
}
.page-hero .breadcrumb a { color: var(--accent); font-weight: 500; }
.page-hero .breadcrumb svg { width: 14px; height: 14px; opacity: 0.6; }

.page-hero .inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }

.page-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5.4vw, 58px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin: 18px 0 18px; }
.page-hero p.lead { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); max-width: 560px; }

.page-hero .page-icon {
  width: clamp(96px, 12vw, 148px);
  height: clamp(96px, 12vw, 148px);
  border-radius: 32px;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
}
.page-hero .page-icon svg { width: 46%; height: 46%; color: var(--accent); }

@media (max-width: 720px) {
  .page-hero .inner { grid-template-columns: 1fr; }
  .page-hero .page-icon { display: none; }
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px; }
.split p { color: var(--muted); font-size: 16.5px; margin-bottom: 16px; }
.split .hero-actions { margin-top: 28px; }

.split-panel {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 34px;
  display: grid;
  gap: 12px;
}
.split-panel h3 { font-family: var(--font-display); font-size: 17px; color: var(--text); margin-bottom: 6px; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.check-list { display: grid; gap: 13px; margin-top: 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 15px; }
.check-list svg { width: 19px; height: 19px; color: var(--accent); flex: none; margin-top: 2px; }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- reveal on scroll ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
}
[data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
