/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

:root {
  --bg:        #060810;
  --bg-2:      #0b0e1a;
  --bg-card:   rgba(255,255,255,.035);
  --bg-card-hi:rgba(255,255,255,.065);
  --border:    rgba(255,255,255,.07);
  --border-hi: rgba(255,255,255,.16);

  --text:   #eef2ff;
  --muted:  rgba(238,242,255,.5);
  --dim:    rgba(238,242,255,.28);

  --blue:   #4f8cff;
  --indigo: #818cf8;
  --violet: #a78bfa;
  --teal:   #2dd4bf;

  --grad:         linear-gradient(135deg, #4f8cff 0%, #a78bfa 100%);
  --grad-soft:    linear-gradient(135deg, rgba(79,140,255,.12) 0%, rgba(167,139,250,.08) 100%);
  --grad-border:  linear-gradient(135deg, rgba(79,140,255,.4), rgba(167,139,250,.3));
  --glow:         0 0 60px rgba(79,140,255,.18), 0 0 120px rgba(167,139,250,.1);
  --glow-sm:      0 0 24px rgba(79,140,255,.22);

  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono','Fira Code',monospace;
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,.55,.45,1);
  --max:       1160px;
  --r:         14px;
  --r-lg:      20px;
}

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

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

/* ── Aurora background ── */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}
.aurora__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,140,255,.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: drift1 18s ease-in-out infinite alternate;
}
.aurora__blob--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(167,139,250,.15) 0%, transparent 70%);
  top: 100px; right: -100px;
  animation: drift2 22s ease-in-out infinite alternate;
}
.aurora__blob--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,.08) 0%, transparent 70%);
  bottom: -150px; left: 30%;
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(60px, 80px); } }
@keyframes drift2 { to { transform: translate(-50px, 60px); } }
@keyframes drift3 { to { transform: translate(-40px, -60px); } }

/* ── Grid overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.05em;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
}
h3 { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }

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

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .2s, opacity .15s, background .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(79,140,255,.38), 0 1px 0 rgba(255,255,255,.12) inset;
}
.btn--grad:hover { box-shadow: 0 8px 36px rgba(79,140,255,.55), 0 1px 0 rgba(255,255,255,.15) inset; }

.btn--glass {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }

.btn--outline-grad {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.btn--outline-grad::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  background: var(--grad-border);
  z-index: -1;
  opacity: .5;
  transition: opacity .2s;
}
.btn--outline-grad:hover::before { opacity: 1; }

.btn--lg  { padding: 15px 34px; font-size: 1rem; }
.btn--sm  { padding: 9px 18px; font-size: .8125rem; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,8,16,.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--grad);
  transition: width .2s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

/* ============================================================
   HERO — centred layout
============================================================ */
.hero {
  position: relative;
  z-index: 1;
  padding: 110px 0 80px;
  text-align: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,140,255,.08);
  border: 1px solid rgba(79,140,255,.22);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 32px;
  letter-spacing: .02em;
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; }

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__note {
  font-size: .8rem;
  color: var(--dim);
  margin-bottom: 64px;
}
.hero__note span { color: var(--muted); }

/* Stats row */
.hero__stats {
  display: inline-flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  margin-bottom: 64px;
}
.hero__stat {
  padding: 20px 36px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.hero__stat-label { font-size: .775rem; color: var(--muted); }

/* Screenshot wrapper */
.hero__screen-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.hero__screen-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 0%, rgba(79,140,255,.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.hero__screenshot {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-hi);
  box-shadow: var(--glow), 0 48px 96px rgba(0,0,0,.6);
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: rgba(6,8,16,.85);
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.hero__badge--tl {
  top: -16px; left: -16px;
  animation: float1 4s ease-in-out infinite;
}
.hero__badge--br {
  bottom: 24px; right: -16px;
  animation: float2 5s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.badge-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: flex;
  align-items: stretch;
}
.trust__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  font-size: .8rem;
  color: var(--muted);
  border-right: 1px solid var(--border);
}
.trust__item:last-child { border-right: none; }
.trust__item:not(:first-child) { padding-left: 28px; }
.t-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.section-title { color: var(--text); margin-bottom: 16px; }
.section-sub   { color: var(--muted); line-height: 1.75; }

/* ============================================================
   FEATURES
============================================================ */
.features__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  background: var(--bg);
  padding: 36px 32px;
  transition: background .22s;
  position: relative;
}
.feature:hover { background: var(--bg-card-hi); }
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.feature:hover::after { opacity: 1; }

.feature__icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
/* 6 different accent colours for icons */
.feature:nth-child(1) .feature__icon { background: rgba(79,140,255,.15); color: #4f8cff; }
.feature:nth-child(2) .feature__icon { background: rgba(167,139,250,.15); color: #a78bfa; }
.feature:nth-child(3) .feature__icon { background: rgba(45,212,191,.12); color: #2dd4bf; }
.feature:nth-child(4) .feature__icon { background: rgba(251,191,36,.12); color: #fbbf24; }
.feature:nth-child(5) .feature__icon { background: rgba(251,113,133,.12); color: #fb7185; }
.feature:nth-child(6) .feature__icon { background: rgba(52,211,153,.12); color: #34d399; }

.feature h3 { color: var(--text); margin-bottom: 8px; position: relative; z-index: 1; }
.feature p  { color: var(--muted); font-size: .875rem; line-height: 1.65; position: relative; z-index: 1; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews__head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.review:hover { border-color: var(--border-hi); transform: translateY(-3px); }

.review__stars { color: #fbbf24; font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review__text { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.review__author { display: flex; align-items: center; gap: 10px; }
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review__name  { font-size: .8125rem; font-weight: 600; color: var(--text); }
.review__from  { font-size: .75rem; color: var(--dim); }

/* ============================================================
   COMPARE
============================================================ */
.compare__head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare__table th {
  padding: 18px 24px;
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
  background: var(--bg-2);
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare__table th.highlight {
  background: linear-gradient(180deg, rgba(79,140,255,.08) 0%, rgba(167,139,250,.05) 100%);
  color: var(--text);
  border-bottom-color: rgba(79,140,255,.2);
}
.compare__table th.highlight span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.compare__table td {
  padding: 15px 24px;
  font-size: .875rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare__table td:first-child { text-align: left; color: var(--text); }
.compare__table tr:last-child td { border-bottom: none; }
.compare__table tr:hover td { background: rgba(255,255,255,.02); }
.compare__table td.highlight-cell {
  background: rgba(79,140,255,.04);
  color: var(--text);
  font-weight: 600;
}
.yes { color: #34d399; font-size: 1.1rem; }
.no  { color: rgba(255,255,255,.2); font-size: 1.1rem; }
.meh { color: #fbbf24; font-size: .8rem; font-weight: 500; }

/* ============================================================
   FORMATS
============================================================ */
.formats__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.formats__groups { display: flex; flex-direction: column; gap: 28px; }
.format-group__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
.format-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(79,140,255,.07);
  border: 1px solid rgba(79,140,255,.16);
  border-radius: 6px;
  padding: 5px 12px;
  transition: background .15s, border-color .15s;
  cursor: default;
}
.tag:hover { background: rgba(79,140,255,.15); border-color: rgba(79,140,255,.35); }

/* ============================================================
   HOW TO USE
============================================================ */
.how__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.how__steps { display: flex; flex-direction: column; }
.how__step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.how__step:first-child { padding-top: 0; }
.how__step:last-child  { border-bottom: none; padding-bottom: 0; }

.how__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--glow-sm);
  margin-top: 1px;
}
.how__step h3 { color: var(--text); margin-bottom: 6px; }
.how__step p  { font-size: .875rem; color: var(--muted); }

/* ============================================================
   DOWNLOAD CTA
============================================================ */
.download {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,140,255,.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.download__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.download h2 { color: var(--text); margin-bottom: 16px; }
.download__lead { color: var(--muted); margin-bottom: 32px; }
.download__checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.check-row { display: flex; align-items: center; gap: 12px; font-size: .875rem; color: var(--muted); }
.check-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.download__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.download__version { font-size: .78rem; color: var(--dim); }

.sys-req {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  backdrop-filter: blur(12px);
}
.sys-req__title {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 20px;
}
.sys-req table { width: 100%; border-collapse: collapse; }
.sys-req td {
  padding: 11px 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
}
.sys-req tr:last-child td { border-bottom: none; }
.sys-req td:first-child { color: var(--muted); }
.sys-req td:last-child  { color: var(--text); text-align: right; font-weight: 500; }

/* ============================================================
   FAQ
============================================================ */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color .2s;
}
.faq__item[open] { border-color: rgba(79,140,255,.3); }
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--muted);
  transition: transform .22s var(--ease), color .2s;
}
.faq__item[open] .faq__chevron { transform: rotate(45deg); color: var(--blue); }
.faq__item p { padding: 0 22px 18px; font-size: .875rem; line-height: 1.75; color: var(--muted); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .logo { margin-bottom: 12px; }
.footer__brand p { font-size: .875rem; color: var(--muted); max-width: 240px; }

.footer__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer__col h5 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col span { font-size: .875rem; color: var(--muted); transition: color .15s; }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   INNER PAGES
============================================================ */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.page-hero p  { color: var(--muted); font-size: .9375rem; }

.prose {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  position: relative;
  z-index: 1;
}
.prose h2 { font-size: 1.25rem; font-weight: 700; margin: 40px 0 10px; color: var(--text); }
.prose h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 6px; color: var(--text); }
.prose p  { font-size: .9375rem; color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.prose ul { color: var(--muted); padding-left: 20px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; font-size: .9375rem; line-height: 1.7; }
.prose a  { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

/* ============================================================
   ANIMATIONS
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .features__grid  { grid-template-columns: repeat(2,1fr); }
  .reviews__grid   { grid-template-columns: 1fr 1fr; }
  .formats__layout { grid-template-columns: 1fr; gap: 48px; }
  .how__layout     { grid-template-columns: 1fr; gap: 48px; }
  .download__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__layout     { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner   { grid-template-columns: 1fr; gap: 40px; }
  .compare__table  { font-size: .8125rem; }
}

@media (max-width: 640px) {
  .container       { padding: 0 20px; }
  .section         { padding: 72px 0; }
  .hero            { padding: 80px 0 56px; }
  .features__grid  { grid-template-columns: 1fr; }
  .reviews__grid   { grid-template-columns: 1fr; }
  .nav             { display: none; }
  .trust__inner    { flex-direction: column; }
  .trust__item     { border-right: none; border-bottom: 1px solid var(--border); padding-left: 0 !important; }
  .trust__item:last-child { border-bottom: none; }
  .footer__links   { grid-template-columns: 1fr 1fr; }
  .hero__stats     { flex-direction: column; }
  .hero__stat      { border-right: none; border-bottom: 1px solid var(--border); }
  .hero__stat:last-child { border-bottom: none; }
  .hero__badge     { display: none; }
  .compare__table  { display: none; }
}
