/* ========== RESET & TOKENS ========== */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img,svg { display: block; max-width: 100%; }

:root {
  --bg:        #0a0a0c;
  --bg-2:      #0f0f12;
  --surface:   #14141a;
  --surface-2: #1a1a22;
  --border:    #23232c;
  --border-2:  #2e2e3a;
  --text:      #f4f4f5;
  --muted:     #9b9ba5;
  --muted-2:   #6c6c78;
  --accent:    #e9f35c;
  --accent-2:  #d6e045;
  --danger:    #ff6b6b;
  --radius:    16px;
  --radius-lg: 24px;
  --container: 1180px;
  --shadow:    0 12px 40px -12px rgba(0,0,0,.7);
  --shadow-glow: 0 0 80px -20px rgba(233,243,92,.35);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
ul,ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-weight: 600; }

em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow--light { background: rgba(255,255,255,0.06); }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head__sub { color: var(--muted); font-size: 1.06rem; }
.section-head--light h2 { color: var(--text); }
.section-head--light .section-head__sub { color: rgba(255,255,255,0.7); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 26px; font-size: 1rem; }
.btn--primary {
  background: var(--accent);
  color: #0a0a0c;
}
.btn--primary:hover { background: var(--accent-2); color: #0a0a0c; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,12,0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand:hover { color: inherit; }
.brand__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #0a0a0c;
  font-weight: 800;
  border-radius: 8px;
  font-size: 0.95rem;
}
.brand__name { font-size: 1.05rem; }
.brand__name span { color: var(--muted); font-weight: 500; }

.nav__links {
  display: flex; gap: 28px;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav__links a:hover { color: var(--text); }

.nav__cta { display: flex; gap: 10px; align-items: center; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .2s;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav__links.open a {
    padding: 14px 24px;
    border-top: 1px solid var(--border);
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(233,243,92,0.08), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(233,243,92,0.05), transparent 50%),
    linear-gradient(180deg, transparent 0%, var(--bg) 80%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }
.hero__title { margin-bottom: 24px; }
.hero__sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.stat { background: var(--bg-2); padding: 28px 20px; text-align: center; }
.stat__num {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.stat__num span { color: var(--accent); }
.stat__label {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero__stats { grid-template-columns: 1fr; }
}

/* ========== LOGOS BAR ========== */
.logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  background: var(--bg-2);
}
.logos__label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 36px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.8;
}
.logos__row span { font-size: 1.05rem; }

/* ========== PROBLEM ========== */
.problem { padding: 120px 0; }

.serp {
  max-width: 760px;
  margin: 0 auto 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.serp__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}
.serp__url {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.78rem;
}
.serp__count { font-size: 0.78rem; color: var(--muted-2); }
.serp__results { padding: 8px 0; }
.serp__results li {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.serp__results li:last-child { border-bottom: 0; }
.serp__crumb {
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.serp__title {
  color: #c8c8e0;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 500;
}
.serp__title:first-letter { color: var(--text); }
.serp__snippet {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.serp__rating {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.stars { color: var(--danger); letter-spacing: 1px; }
.rating { color: var(--text); font-weight: 600; }
.serp__pager {
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
  color: var(--muted-2);
  letter-spacing: 4px;
  border-top: 1px solid var(--border);
}
.serp__pager strong { color: var(--accent); }

.problem__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.fact {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}
.fact__num {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.fact__num span { color: var(--accent); font-size: 0.65em; margin-left: 4px; }
.fact__label { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 720px) {
  .problem__facts { grid-template-columns: 1fr; }
}

/* ========== GUARANTEE ========== */
.guarantee {
  background: var(--accent);
  color: #0a0a0c;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before, .guarantee::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  pointer-events: none;
}
.guarantee::before { top: -200px; left: -100px; }
.guarantee::after  { bottom: -200px; right: -100px; }
.guarantee__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.guarantee .eyebrow {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.7);
}
.guarantee .dot { background: #0a0a0c; box-shadow: 0 0 8px rgba(0,0,0,0.4); }
.guarantee h2 { margin-bottom: 20px; color: #0a0a0c; }
.guarantee p {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.75);
  margin-bottom: 40px;
}
.guarantee__stats {
  display: flex; justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.guarantee__stats > div {
  display: flex; flex-direction: column; align-items: center;
}
.guarantee__stats strong {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.025em;
  line-height: 1;
}
.guarantee__stats span {
  margin-top: 6px;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== SERVICES ========== */
.services { padding: 120px 0; }
.grid { display: grid; gap: 20px; }
.services__grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 820px) { .services__grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: all .25s ease;
  display: flex; flex-direction: column;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(233,243,92,0.1);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.service h3 { margin-bottom: 12px; }
.service > p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.service__bullets {
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.service__bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
}
.service__bullets li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.card__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.card__link:hover { letter-spacing: 0.01em; }

/* ========== PROCESS ========== */
.process {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: steps;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: .2s;
}
.step:hover { border-color: var(--border-2); transform: translateY(-2px); }
.step__num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .steps { grid-template-columns: 1fr; } }

/* ========== SOFTWARE ========== */
.software {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233,243,92,0.06), transparent 60%),
    var(--bg);
}
.software__grid {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 820px) { .software__grid { grid-template-columns: 1fr; } }

.soft-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.soft-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.soft-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(233,243,92,0.08);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.soft-card h3 { font-size: 1.65rem; margin-bottom: 14px; }
.soft-card p { color: var(--muted); margin-bottom: 22px; }
.soft-card ul {
  display: flex; flex-direction: column; gap: 10px;
}
.soft-card ul li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
}
.soft-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 120px 0; }
.testimonials__grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute; top: 8px; right: 24px;
  font-family: 'Instrument Serif', serif;
  font-size: 6rem; line-height: 1;
  color: var(--accent);
  opacity: 0.4;
}
.quote blockquote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.6;
}
.quote figcaption {
  display: flex; flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.quote figcaption strong { font-weight: 600; font-size: 0.92rem; }
.quote figcaption span { color: var(--muted-2); font-size: 0.85rem; }

/* ========== INDUSTRIES ========== */
.industries { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.ind {
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  font-size: 0.95rem;
  color: var(--muted);
  transition: .2s;
}
.ind:hover { border-color: var(--accent); color: var(--text); }
.ind a { color: var(--accent); font-weight: 500; }
@media (max-width: 760px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .industries__grid { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq { padding: 120px 0; }
.faq__inner { max-width: 820px; }
.faq__list {
  display: flex; flex-direction: column;
  gap: 10px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 8px;
  transition: .2s;
}
.faq details[open] {
  border-color: var(--border-2);
  background: var(--surface-2);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 16px;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ========== CTA ========== */
.cta {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(233,243,92,0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta__inner h2 { margin-bottom: 18px; }
.cta__inner > p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 36px;
}
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.cta__form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}
.cta__form input::placeholder { color: var(--muted-2); }
.cta__form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233,243,92,0.1);
}
.cta__form input:nth-child(3) { grid-column: 1 / -1; }
.cta__form button { grid-column: 1 / -1; padding: 18px 26px; }
.cta__fineprint { font-size: 0.85rem; color: var(--muted-2); }
@media (max-width: 540px) { .cta__form { grid-template-columns: 1fr; } }

/* Submit button: label + spinner */
.cta__form button { position: relative; }
.btn__label { display: inline-flex; align-items: center; gap: 8px; transition: opacity .2s; }
.btn__spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(10,10,12,0.25);
  border-top-color: #0a0a0c;
  border-radius: 50%;
  opacity: 0;
  animation: spin .7s linear infinite;
  transition: opacity .2s;
}
.cta__form button.is-loading { cursor: wait; }
.cta__form button.is-loading .btn__label  { opacity: 0; }
.cta__form button.is-loading .btn__spinner { opacity: 1; }
.cta__form button:disabled { transform: none !important; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form fade-out / success fade-in */
.cta__form.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.cta__success {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  animation: fadeUp .45s ease both;
}
.cta__success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0c;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 32px -4px rgba(233,243,92,0.5);
}
.cta__success h3 { margin-bottom: 8px; }
.cta__success p { color: var(--muted); }
.cta__success p span { color: var(--accent); font-weight: 600; }

/* ========== FOOTER ========== */
.footer {
  background: #050507;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand p {
  color: var(--muted);
  margin-top: 18px;
  max-width: 280px;
  font-size: 0.95rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer__cols a { color: var(--muted); font-size: 0.95rem; }
.footer__cols a:hover { color: var(--text); }
.footer__cols address {
  color: var(--muted);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer__contact { font-size: 0.95rem; }
.footer__contact a { color: var(--text); font-weight: 500; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--text); }

@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; gap: 30px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__title, .hero__sub, .hero__ctas, .hero__stats {
  animation: fadeUp .6s ease both;
}
.hero__sub   { animation-delay: .08s; }
.hero__ctas  { animation-delay: .16s; }
.hero__stats { animation-delay: .24s; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Scrollbar polish */
::selection { background: var(--accent); color: #0a0a0c; }
