:root {
  --bg: #0b0c10;
  --panel: #11131a;
  --muted: #a9b0c0;
  --text: #eef2f8;
  --accent: #9c7cff;
  --accent-strong: #c9b3ff;
  --border: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.03);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(156, 124, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 16, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.hero { padding: 90px 0 60px; }

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px;
}

h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 46px); }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 20px; }

[data-type-text] { position: relative; }
[data-type-text].is-typing::after {
  content: '';
  position: absolute;
  right: -4px;
  bottom: 4px;
  width: 2px;
  height: 1.1em;
  background: var(--text);
  animation: caretBlink 1s steps(2, start) infinite;
}

@keyframes caretBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.lede { color: var(--muted); max-width: 640px; margin-bottom: 18px; }
.body { color: var(--muted); max-width: 560px; }

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #0b0c10;
  box-shadow: 0 10px 30px rgba(156, 124, 255, 0.35);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(156, 124, 255, 0.42); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); }

.btn--large { padding: 14px 24px; font-size: 17px; }

.hero__proof {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero__visual { display: flex; justify-content: flex-end; }
.hero__mock {
  width: min(640px, 100%);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,0.5));
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
  padding: 60px 0;
}

.card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card--glass { background: var(--glass); }
.card--border { border-color: rgba(156, 124, 255, 0.4); }

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list--compact li { line-height: 1.4; }

.problem { padding: 40px 0; }
.problem__content { display: grid; gap: 16px; align-content: start; }
.problem__visual {
  border-radius: var(--radius);
  background: radial-gradient(circle at 20% 20%, rgba(156,124,255,0.16), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 12px;
  max-width: 430px;
  margin: 0 auto;
}
.problem__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 80, 80, 0.18);
  color: #ffb3b3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 80, 80, 0.45);
}

.solution__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(154, 240, 197, 0.18);
  color: #b2ffd9;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(154, 240, 197, 0.45);
}
.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(156,124,255,0.22));
  display: grid;
  place-items: center;
}
.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.video-overlay {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(11,12,16,0.78);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}
.video-hint { margin: 10px 4px 0; text-align: center; }
.benefits { padding: 60px 0; }

.section-head { text-align: left; margin-bottom: 28px; }

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

.benefit-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit-card:hover { transform: translateY(-4px); border-color: rgba(156, 124, 255, 0.4); }

.cost { padding: 30px 0 10px; }

.cost__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.cost__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.cost__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.cost__row:last-child { border-bottom: none; }
.cost__strike { position: relative; display: inline-block; padding: 2px 0; }

.cost__grid[data-animate].visible .cost__strike::before,
.cost__grid[data-animate].visible .cost__strike::after {
  content: '';
  position: absolute;
  left: -5%;
  width: 110%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #ff3b30);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  pointer-events: none;
}

.cost__grid[data-animate].visible .cost__strike::before {
  top: 50%;
  transform: rotate(42deg) scaleX(0);
  animation: strikeX 520ms ease forwards 260ms;
}

.cost__grid[data-animate].visible .cost__strike::after {
  top: 50%;
  transform: rotate(-42deg) scaleX(0);
  animation: strikeX 520ms ease forwards 420ms;
}

.cost__grid[data-animate].visible .cost__row:nth-child(2) .cost__strike::before { animation-delay: 360ms; }
.cost__grid[data-animate].visible .cost__row:nth-child(2) .cost__strike::after { animation-delay: 520ms; }
.cost__grid[data-animate].visible .cost__row:nth-child(3) .cost__strike::before { animation-delay: 460ms; }
.cost__grid[data-animate].visible .cost__row:nth-child(3) .cost__strike::after { animation-delay: 620ms; }

@keyframes strikeX {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 0.9; }
}

.cost__total {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}

.white-label { padding: 40px 0 20px; }

.how { padding: 60px 0; }

.steps { display: grid; gap: 16px; }

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--panel);
}

.step__index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent-strong);
  font-weight: 700;
}

.pricing { padding: 60px 0; }

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
}

.price__strike {
  text-decoration: line-through;
  color: var(--muted);
  opacity: 0.7;
  font-size: 14px;
}

.price__amount { font-size: 44px; font-weight: 700; }
.price__meta { color: var(--muted); }

.checkout { padding: 70px 0 80px; }

.checkout__card {
  background: linear-gradient(140deg, rgba(156, 124, 255, 0.18), rgba(11, 12, 16, 0.7));
  border: 1px solid rgba(156, 124, 255, 0.32);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.checkout__actions { display: flex; flex-direction: column; gap: 8px; }
.micro { color: var(--muted); font-size: 13px; margin: 0; }

.apps { padding: 40px 0 30px; }
.apps__grid {
  display: block;
  max-width: 1140px;
  margin: 0 auto;
}
.apps__row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 1.2fr) minmax(180px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.apps__img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  flex-direction: column;
  gap: 8px;
}

.apps__img img {
  width: auto;
  max-width: 280px;
  max-height: 520px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 8px);
}

.apps__label {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(154, 240, 197, 0.16);
  color: #b2ffd9;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(154, 240, 197, 0.35);
}

.apps__text {
  text-align: center;
  display: grid;
  gap: 8px;
  padding: 6px 10px;
}

.apps__link-icon {
  font-size: 22px;
  color: #7ac4ff;
  filter: drop-shadow(0 4px 10px rgba(122, 196, 255, 0.35));
}

@media (max-width: 860px) {
  .apps__row { grid-template-columns: 1fr; }
  .apps__img img { max-width: 220px; max-height: 360px; }
}

.hoverable .container {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hoverable:hover .container {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(156, 124, 255, 0.35);
}

.blog-hero {
  padding: 80px 0 60px;
}

.blog-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.blog-hero__badge {
  justify-self: end;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.pill--accent {
  background: rgba(156, 124, 255, 0.18);
  border-color: rgba(156, 124, 255, 0.35);
  color: var(--accent-strong);
}

.blog {
  padding: 30px 0 50px;
}

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

.blog-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.text-link {
  color: var(--accent-strong);
  font-weight: 600;
}

.blog-cta {
  padding: 20px 0 70px;
}

.blog-cta__card {
  background: linear-gradient(140deg, rgba(156, 124, 255, 0.18), rgba(11, 12, 16, 0.7));
  border: 1px solid rgba(156, 124, 255, 0.32);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
  align-items: center;
}

.blog-post { padding: 70px 0 60px; }

.blog-article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.blog-article h1 { margin-top: 4px; font-size: clamp(30px, 4.6vw, 42px); }
.blog-article h2 { margin-top: 8px; }

.blog-article ul, .blog-article ol { color: var(--muted); padding-left: 18px; margin: 4px 0 6px; }
.blog-article li { margin-bottom: 6px; }

.blog-cta-inline {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  background: linear-gradient(120deg, rgba(156,124,255,0.12), rgba(11,12,16,0.7));
  display: grid;
  gap: 10px;
}


.footer {
  border-top: 1px solid var(--border);
  background: #090a0f;
  padding: 24px 0 32px;
}

.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.footer__links { display: flex; gap: 14px; font-size: 14px; color: var(--muted); }
.footer__links a:hover { color: var(--accent-strong); }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity 480ms ease, transform 480ms ease; }
[data-animate].visible { opacity: 1; transform: none; }
[data-animate="fade"] { transform: translateY(6px); }
[data-animate="stagger"] > * { opacity: 0; transform: translateY(22px); transition: opacity 520ms ease, transform 520ms ease; }
[data-animate="stagger"].visible > * { opacity: 1; transform: none; }
[data-animate="stagger"].visible > *:nth-child(1) { transition-delay: 80ms; }
[data-animate="stagger"].visible > *:nth-child(2) { transition-delay: 140ms; }
[data-animate="stagger"].visible > *:nth-child(3) { transition-delay: 200ms; }
[data-animate="stagger"].visible > *:nth-child(4) { transition-delay: 260ms; }
[data-animate="stagger"].visible > *:nth-child(5) { transition-delay: 320ms; }
[data-animate="stagger"].visible > *:nth-child(6) { transition-delay: 380ms; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .hero { padding-top: 70px; }
  .footer__inner { flex-direction: column; }
}
