@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Bebas+Neue&display=swap');

:root {
  --bg: #070a12;
  --panel: rgba(16, 22, 38, 0.8);
  --panel-2: rgba(20, 31, 51, 0.85);
  --line: rgba(119, 151, 220, 0.28);
  --text: #edf3ff;
  --muted: #a4b4d9;
  --accent: #ff6b35;
  --accent-2: #37c9ff;
  --ok: #56ffbf;
  --shadow: 0 20px 45px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 540px at 6% -5%, rgba(255,107,53,.15), transparent 58%),
    radial-gradient(800px 440px at 92% -8%, rgba(55,201,255,.22), transparent 55%),
    linear-gradient(180deg, #090d18 0%, #060912 60%, #04070f 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
}

.container { width: min(1120px, 92vw); margin: 0 auto; padding: 24px 0 68px; position: relative; z-index: 1; }
.minimal-nav {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(7, 12, 22, 0.72); border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 18px; margin-bottom: 20px; backdrop-filter: blur(8px);
}
.brandmark { font-family: 'Bebas Neue', sans-serif; letter-spacing: .08em; font-size: 1.8rem; color: var(--ok); }
.nav-link { color: var(--muted); text-decoration: none; }

.hero, .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px clamp(18px, 2.5vw, 36px);
  margin-bottom: 16px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  background: linear-gradient(150deg, rgba(255,107,53,.16), rgba(55,201,255,.08)) , var(--panel-2);
}
.eyebrow { text-transform: uppercase; letter-spacing: .09em; color: var(--accent-2); font-size: .78rem; }
h1, h2, h3 { margin: 0 0 10px; }
h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); line-height: 1.04; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { color: var(--accent-2); font-size: 1rem; }
.lead { font-size: 1.02rem; color: #dbe6ff; max-width: 62ch; }
p { color: #d5e0f9; line-height: 1.72; margin: 0 0 12px; }
.muted { color: var(--muted); }

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  color: #180a02; background: linear-gradient(90deg, var(--accent), #ff9f45);
  border-radius: 12px; padding: 12px 18px; box-shadow: 0 10px 22px rgba(255,107,53,.3);
}
.btn-ghost {
  display: inline-block; text-decoration: none; font-weight: 600;
  border: 1px solid rgba(255,255,255,.28); color: var(--text); border-radius: 12px; padding: 11px 17px;
}

.storyboard { border: 1px dashed rgba(255,255,255,.24); border-radius: 16px; padding: 16px; background: rgba(4,10,20,.45); }
.storyboard ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.storyboard li { display: flex; align-items: center; gap: 8px; color: #e3edff; }
.storyboard span { color: #061021; background: var(--ok); border-radius: 8px; padding: 3px 8px; font-weight: 700; }

.steps-grid, .benefits-grid, .grid { display: grid; gap: 12px; }
.steps-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step, .benefit, .tile { border: 1px solid var(--line); background: rgba(10,16,29,.8); border-radius: 14px; padding: 14px; }
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.benefit h3 { margin: 0; color: var(--ok); }
.grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-box { border: 1px dashed rgba(255,255,255,.24); border-radius: 14px; padding: 14px; }
.demo-placeholder { border-radius: 10px; padding: 28px 14px; text-align: center; color: var(--muted); background: rgba(255,255,255,.04); }

blockquote {
  margin: 0; padding: 16px; border-radius: 12px;
  background: rgba(86,255,191,.08); border-left: 4px solid var(--ok);
  font-size: 1.05rem;
}

.faq details { border-top: 1px solid var(--line); padding: 10px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq a { color: var(--accent-2); }

.cta-bottom { display: block; text-align: center; }
footer { margin-top: 22px; color: var(--muted); text-align: center; font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(12px); animation: rise .65s ease forwards; }
.reveal:nth-child(2) { animation-delay: .06s; }
.reveal:nth-child(3) { animation-delay: .12s; }
.reveal:nth-child(4) { animation-delay: .18s; }
.reveal:nth-child(5) { animation-delay: .24s; }
.reveal:nth-child(6) { animation-delay: .30s; }
.reveal:nth-child(7) { animation-delay: .36s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero, .split { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .btn, .btn-ghost { width: 100%; text-align: center; }
}
