:root {
  --bg: #07080d;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --text: #f7f7fb;
  --muted: #b5b8c7;
  --muted-2: #8f93a6;
  --primary: linear-gradient(135deg, #f472b6 0%, #fb923c 55%, #facc15 100%);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.85;
}
.orb-1 { width: 420px; height: 420px; left: -7%; top: -5%; background: rgba(232, 121, 249, 0.2); }
.orb-2 { width: 340px; height: 340px; right: -7%; top: 10%; background: rgba(251, 146, 60, 0.16); }
.orb-3 { width: 360px; height: 360px; left: 18%; bottom: -10%; background: rgba(56, 189, 248, 0.09); }
.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 82%);
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 13, 0.76);
  border-bottom: 1px solid var(--border);
}
.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand-logo { width: 48px; height: 48px; }
.brand-name { font-weight: 700; letter-spacing: -0.02em; }
.brand-sub { color: var(--muted-2); font-size: 0.84rem; }

.site-nav {
  display: flex;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.site-nav a:hover,
.footer-links a:hover { color: #fff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--primary);
  color: #12070a;
  box-shadow: 0 18px 40px rgba(244, 114, 182, 0.22);
}
.button-ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 3rem;
  align-items: center;
  padding: 5.8rem 0 4.2rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(232, 121, 249, 0.22);
  background: rgba(232, 121, 249, 0.12);
  color: #f4c7fb;
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f472b6, #fb923c);
}
.hero h1,
.section-intro h2,
.split-copy h2,
.cta-card h2,
.legal-page h1 {
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.section-intro h2,
.split-copy h2,
.cta-card h2,
.legal-page h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  line-height: 1.05;
}
.text-gradient {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #fed7aa 45%, #f5b2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text,
.section-intro p,
.split-copy p,
.cta-card p,
.legal-card p,
.glass-card p,
.faq-card p,
.benefit-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.03rem;
}
.hero-actions,
.hero-pills,
.cta-actions,
.footer-links,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-actions { margin-top: 2rem; }
.hero-pills { margin-top: 1.5rem; }
.hero-pills span,
.feature-list li {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
}
.hero-pills span {
  padding: 0.74rem 0.98rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}
.mock {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.mock-phone {
  left: 0;
  bottom: 0;
  width: 34%;
  border-radius: 34px;
}
.mock-dashboard {
  right: 0;
  top: 0;
  width: 78%;
  border-radius: 34px;
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.stats-grid,
.feature-grid,
.benefit-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}
.stats-grid {
  padding: 1.5rem 0;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card,
.feature-card,
.benefit-card,
.faq-card,
.glass-card,
.legal-card,
.showcase-card,
.showcase-stack > .glass-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.045);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.stat-card {
  padding: 1.3rem 1.25rem;
}
.stat-card strong,
.feature-card h3,
.benefit-card h3,
.faq-card h3,
.glass-card h3,
.legal-card h2,
.showcase-stack h3 {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 1.18rem;
}
.stat-card span { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }

.section { padding: 6rem 0; }
.section-intro { max-width: 760px; margin-bottom: 2rem; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card,
.benefit-card,
.faq-card,
.glass-card,
.legal-card { padding: 1.6rem; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(244,114,182,0.18), rgba(251,146,60,0.14));
  color: #ffd6ef;
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.3rem;
  align-items: stretch;
  margin-top: 2rem;
}
.showcase-card { overflow: hidden; }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-stack {
  display: grid;
  gap: 1rem;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.4rem;
}
.feature-list-plain {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.feature-list-plain li {
  padding: 0.95rem 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.split-stack {
  display: grid;
  gap: 1rem;
}
.benefit-grid,
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}
.cta-copy { max-width: 720px; }
.contact-row a {
  color: #fff;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  color: var(--muted);
}
.legal-page { padding-top: 3rem; }
.legal-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.045);
  border-radius: 24px;
  margin-bottom: 1.2rem;
  color: var(--muted);
}
.legal-contact a { color: #fff; }
.legal-card + .legal-card { margin-top: 1rem; }

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms ease;
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.flip-in { transform: perspective(1200px) rotateX(14deg) rotateY(-8deg) translateY(36px); }
.flip-in.is-visible { transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (max-width: 1100px) {
  .hero,
  .section-split,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 690px;
  }
  .mock-phone {
    width: 38%;
  }
  .mock-dashboard {
    width: 88%;
  }
  .stats-grid,
  .feature-grid,
  .benefit-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .site-nav,
  .header-cta {
    display: none;
  }
  .hero {
    padding-top: 4rem;
    gap: 2rem;
  }
  .hero-visual {
    min-height: 560px;
  }
  .mock-phone {
    width: 42%;
  }
  .mock-dashboard {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 1.25rem, 1180px); }
  .hero h1,
  .section-intro h2,
  .split-copy h2,
  .cta-card h2,
  .legal-page h1 {
    font-size: 2.5rem;
    line-height: 1.04;
  }
  .hero-visual {
    min-height: 520px;
  }
  .mock-phone {
    position: relative;
    width: 64%;
    left: 0;
    bottom: 0;
    margin-top: 2rem;
  }
  .mock-dashboard {
    position: relative;
    width: 100%;
    top: 0;
    right: 0;
    margin-top: -1.2rem;
  }
  .stats-grid,
  .feature-grid,
  .benefit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-pills,
  .hero-actions,
  .contact-row,
  .footer-links,
  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .button,
  .contact-row a,
  .hero-pills span {
    width: 100%;
  }
}
