/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
   CreaScreen — Marketing Site Styles
   Brand: #6C63FF  ·  Font: Inter
   ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ */

:root {
  --brand: #6C63FF;
  --brand-2: #8B7BFF;
  --brand-deep: #4B43C9;
  --amber: #F5A623;
  --ink: #14152B;
  --ink-2: #3A3B57;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --line: #E8E8F2;
  --bg: #FFFFFF;
  --bg-alt: #F7F7FC;
  --dark: #14152B;
  --dark-2: #1C1D38;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(20,21,43,.06), 0 4px 12px rgba(20,21,43,.05);
  --shadow-md: 0 10px 30px rgba(20,21,43,.10);
  --shadow-lg: 0 30px 70px rgba(76,67,201,.18);
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ───────────────── Buttons ───────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  padding: 11px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn--lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(108,99,255,.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(108,99,255,.42); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: rgba(108,99,255,.07);
  color: var(--brand-deep);
  border-color: rgba(108,99,255,.16);
}
.btn--ghost:hover { background: rgba(108,99,255,.13); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--brand-deep); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }

/* ───────────────── Navbar ───────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(20,21,43,.05);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 6px 16px rgba(108,99,255,.35);
}
.brand--light { color: #fff; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  position: relative; transition: color .2s; white-space: nowrap;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--brand); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--brand-deep); }
.nav__links a:hover::after { width: 100%; }

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

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────────────── Hero ───────────────── */
.hero {
  position: relative;
  padding: 150px 0 70px;
  background:
    radial-gradient(900px 500px at 75% -5%, rgba(108,99,255,.12), transparent 60%),
    radial-gradient(700px 500px at 5% 20%, rgba(245,166,35,.08), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 420px at 70% 10%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 420px at 70% 10%, #000, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(108,99,255,.08);
  border: 1px solid rgba(108,99,255,.18);
  color: var(--brand-deep);
  font-size: 13.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(108,99,255,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(108,99,255,.3);} 50%{ box-shadow: 0 0 0 6px rgba(108,99,255,0);} }

.hero__title {
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.grad {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-deep) 60%, var(--amber) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: 18.5px; color: var(--muted);
  max-width: 540px; margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.hero__trust svg { color: var(--brand); }

/* Hero art */
.hero__art { position: relative; }
.hero__screen {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  aspect-ratio: 16 / 10;
  background: #1c1d38;
}
.hero__screen img { width: 100%; height: 100%; object-fit: cover; }
.hero__livebadge {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,21,43,.62); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 6px 11px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.hero__livedot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 0 rgba(52,211,153,.7); animation: pulse-green 1.8s infinite; }
@keyframes pulse-green { 0%,100%{ box-shadow: 0 0 0 0 rgba(52,211,153,.6);} 50%{ box-shadow: 0 0 0 7px rgba(52,211,153,0);} }

.hero__phone {
  position: absolute;
  right: -18px; bottom: -38px;
  width: 168px;
  border-radius: 28px;
  background: #0c0c1a;
  padding: 8px;
  box-shadow: 0 24px 50px rgba(20,21,43,.32);
  border: 1px solid rgba(255,255,255,.08);
  animation: float 6s ease-in-out infinite;
}
.hero__phone img { border-radius: 22px; }
.hero__phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 54px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.22); z-index: 2; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; margin-top: 90px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; }
.stat__n { font-size: 40px; font-weight: 800; letter-spacing: -.03em; color: var(--brand-deep); line-height: 1; }
.stat__l { font-size: 13.5px; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ───────────────── Marquee ───────────────── */
.marquee-wrap { padding: 46px 0 10px; text-align: center; overflow: hidden; }
.marquee-label { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; gap: 14px; white-space: nowrap; animation: scroll 38s linear infinite; }
.marquee__track span {
  display: inline-flex; align-items: center;
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 100px;
  font-size: 15px; font-weight: 600; color: var(--ink-2);
}
@keyframes scroll { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ───────────────── Sections ───────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow--light { color: var(--brand-2); }
.section__title { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; }
.section__title--light { color: #fff; }
.section__lead { font-size: 18px; color: var(--muted); margin-top: 16px; }
.section__lead--light { color: rgba(255,255,255,.72); }

/* ───────────────── Two apps ───────────────── */
.apps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.apps__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.apps__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(108,99,255,.3); }
.apps__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.apps__icon--purple { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: 0 10px 22px rgba(108,99,255,.32); }
.apps__icon--amber { background: linear-gradient(135deg, #FFB547, #F57C00); box-shadow: 0 10px 22px rgba(245,124,0,.3); }
.apps__card h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.apps__card > p { color: var(--muted); margin-bottom: 18px; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-2); font-weight: 500; font-size: 15px; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(108,99,255,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236C63FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ───────────────── Features grid ───────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.feature::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(280px 140px at 100% 0%, rgba(108,99,255,.07), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(108,99,255,.28); }
.feature:hover::after { opacity: 1; }
.feature__ic {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  color: var(--c); background: color-mix(in srgb, var(--c) 12%, transparent);
}
.feature h3 { font-size: 18.5px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; position: relative; }
.feature p { color: var(--muted); font-size: 15px; position: relative; }

/* ───────────────── Steps ───────────────── */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  text-align: left; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__n {
  font-size: 15px; font-weight: 800; color: var(--brand);
  background: rgba(108,99,255,.1); width: 46px; height: 46px;
  border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.step__line { align-self: center; width: 46px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px); margin: 0 6px; }

/* ───────────────── Split / dark showcase ───────────────── */
.section--dark {
  background:
    radial-gradient(700px 500px at 85% 0%, rgba(108,99,255,.28), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(245,166,35,.12), transparent 55%),
    var(--dark);
  color: #fff;
}
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.split__media { position: relative; justify-self: center; }
.split__media img {
  width: 280px; border-radius: 30px;
  border: 9px solid #0c0c1a;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.split__chip {
  position: absolute; background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.16);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 9px 14px; border-radius: 12px; box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.split__chip--1 { top: 36px; left: -36px; }
.split__chip--2 { bottom: 54px; right: -28px; animation-delay: 1.2s; }
.source-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin-top: 26px; }
.source-list li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 500; color: rgba(255,255,255,.88); }
.source-list span { font-size: 19px; width: 26px; text-align: center; }

/* ───────────────── Use cases ───────────────── */
.usecases { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 34px; }
.usecase {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.usecase:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.usecase img { width: 100%; height: 200px; object-fit: cover; }
.usecase__body { padding: 22px 24px 26px; }
.usecase__body h3 { font-size: 19px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 7px; }
.usecase__body p { color: var(--muted); font-size: 14.5px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips span {
  background: #fff; border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.chips span:hover { background: rgba(108,99,255,.08); color: var(--brand-deep); border-color: rgba(108,99,255,.25); }

/* ───────────────── Pricing ───────────────── */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 1.5px solid var(--brand);
  box-shadow: 0 24px 50px rgba(108,99,255,.2);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-5px); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 100px;
  box-shadow: 0 8px 18px rgba(108,99,255,.4);
}
.plan__name { font-size: 17px; font-weight: 700; color: var(--brand-deep); margin-bottom: 6px; }
.plan__price { font-size: 48px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.plan__cur { font-size: 24px; font-weight: 700; vertical-align: super; margin-right: 2px; }
.plan__per { font-size: 16px; font-weight: 600; color: var(--muted-2); letter-spacing: 0; }
.plan__tag { color: var(--muted); font-size: 14.5px; margin: 14px 0 20px; }
.plan__list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); font-weight: 500; }
.plan__list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(108,99,255,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236C63FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.pricing__note { text-align: center; color: var(--muted-2); font-size: 14px; margin-top: 26px; }

/* ───────────────── FAQ ───────────────── */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 22px;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] { border-color: rgba(108,99,255,.3); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-weight: 600; font-size: 17px; color: var(--ink);
  padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 24px; font-weight: 400; color: var(--brand);
  transition: transform .3s var(--ease); line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 20px; font-size: 15.5px; max-width: 92%; }

/* ───────────────── CTA ───────────────── */
.cta { padding: 30px 0 100px; }
.cta__card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 55%, #7d74ff 100%);
  border-radius: 30px; padding: 70px 40px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 15% 10%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(500px 300px at 90% 110%, rgba(245,166,35,.3), transparent 55%);
  pointer-events: none;
}
.cta__card h2 { color: #fff; font-size: clamp(26px, 3.8vw, 42px); font-weight: 800; letter-spacing: -.03em; position: relative; max-width: 680px; margin: 0 auto 14px; }
.cta__card p { color: rgba(255,255,255,.85); font-size: 18px; position: relative; margin-bottom: 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ───────────────── Footer ───────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin-top: 16px; font-size: 14.5px; max-width: 300px; color: rgba(255,255,255,.55); }
.footer__col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .04em; margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.6); margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 50px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; color: rgba(255,255,255,.45);
}

/* ───────────────── Scroll reveal ───────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ───────────────── Responsive ───────────────── */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__sub { max-width: none; }
  .hero__art { max-width: 520px; }
  .apps, .feature-grid, .usecases, .pricing { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step__line { display: none; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-5px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px 24px 22px; box-shadow: var(--shadow-md);
  }
  .nav__links.open a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav__links.open a::after { display: none; }
}

@media (max-width: 720px) {
  .hero { padding: 120px 0 50px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 24px; padding: 26px 20px; margin-top: 70px; }
  .apps, .feature-grid, .usecases, .pricing { grid-template-columns: 1fr; }
  .source-list { grid-template-columns: 1fr; }
  .hero__phone { width: 130px; right: 0; bottom: -26px; }
  .section { padding: 72px 0; }
  .cta__card { padding: 50px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

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