* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0d12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #b8c0cf;
  --accent: #8be9fd;
  --accent-2: #b88cff;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(92, 35, 120, 0.35), transparent 30%),
    linear-gradient(180deg, #0a0d12 0%, #0f131b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: #7c3aed;
  top: 80px;
  left: -60px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: #06b6d4;
  right: -40px;
  top: 260px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 18, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.brand {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-weight: 600;
}

nav a:hover {
  color: var(--text);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin: 0 0 14px;
}

h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

.lead,
.section p,
.card p,
.tiny-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #091018;
  border: none;
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-width: 130px;
}

.stat-number {
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.phone-card {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(350px, 100%);
  aspect-ratio: 10 / 18;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.12);
}

.screen {
  height: 100%;
  border-radius: 26px;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 140, 255, 0.28), transparent 35%),
    linear-gradient(180deg, #111827 0%, #0f172a 46%, #111827 100%);
  position: relative;
  overflow: hidden;
}

.screen::after {
  content: "";
  position: absolute;
  inset: auto -20% -10% -20%;
  height: 45%;
  background: radial-gradient(circle, rgba(139, 233, 253, 0.16), transparent 60%);
}

.screen-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 0.85rem;
}

.screen-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-top: 20px;
  max-width: 8ch;
}

.screen-battle {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-top: 30px;
  min-height: 180px;
}

.screen-battle span {
  flex: 1;
  background: linear-gradient(180deg, rgba(184, 140, 255, 0.95), rgba(139, 233, 253, 0.35));
  border-radius: 999px 999px 10px 10px;
  box-shadow: 0 0 20px rgba(184, 140, 255, 0.3);
}

.screen-battle span:nth-child(1) { height: 60px; }
.screen-battle span:nth-child(2) { height: 110px; }
.screen-battle span:nth-child(3) { height: 150px; }
.screen-battle span:nth-child(4) { height: 95px; }
.screen-battle span:nth-child(5) { height: 130px; }

.screen-footer {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 72px 0;
}

.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.quote-card,
.download-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.quote-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text);
}

.quote-note {
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.92rem;
}

.download-box {
  padding: 32px;
  text-align: center;
}

.tiny-note code {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2px 6px;
}

.site-footer {
  padding: 26px 0 38px;
}

.footer-row {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-grid,
  .story-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .phone-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  nav {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .btn {
    width: 100%;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
  }
}
