@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0d1b33;
  --panel: rgba(12, 20, 36, 0.76);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.72);
  --gold: #f5c542;
  --sky: #64c7ff;
  --red: #ff5a6a;
  --green: #5ef0a3;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(100, 199, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(245, 197, 66, 0.18), transparent 26%),
    linear-gradient(160deg, var(--bg) 0%, #091425 45%, #04080f 100%);
  color: var(--text);
}

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

img {
  max-width: 100%;
  display: block;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(5, 10, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(245, 197, 66, 0.18), rgba(100, 199, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

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

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 0.92rem;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(245, 197, 66, 0.8);
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 10ch;
  margin-top: 18px;
}

.hero p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #ffd86d);
  color: #111827;
  box-shadow: 0 16px 40px rgba(245, 197, 66, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-meta {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.meta-card {
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-card strong {
  display: block;
  font-size: 1.15rem;
}

.meta-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.app-frame {
  position: relative;
  padding: 20px;
}

.app-glow {
  position: absolute;
  inset: 12% 10% auto;
  height: 72%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-shell {
  position: relative;
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 15, 26, 0.16), rgba(9, 15, 26, 0.46)),
    radial-gradient(circle at 25% 20%, rgba(100, 199, 255, 0.12), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(245, 197, 66, 0.1), transparent 26%),
    #09111f;
  min-height: 640px;
  position: relative;
}

.phone-screen::before,
.phone-screen::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.phone-screen::before {
  width: 180px;
  height: 180px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.03);
}

.phone-screen::after {
  width: 290px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.03);
}

.overlay-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 13, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
}

.overlay-chip.top {
  left: 24px;
  top: 20px;
}

.overlay-chip.bottom {
  right: 24px;
  bottom: 20px;
}

.section {
  padding: 32px 0 84px;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 70ch;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

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

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

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

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

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.2), rgba(100, 199, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;}

.hero-logo {
  width: min(420px, 80%);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

.footer {
  padding: 32px 0 52px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

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

.lead-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

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

  .hero {
    padding-top: 40px;
  }

  .phone-screen {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    align-items: start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-shell {
    padding: 10px;
  }

  .phone-screen {
    min-height: 480px;
  }
}
