:root {
  --bg: #07070b;
  --bg-elevated: #101018;
  --card: #14141c;
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f3f3f7;
  --muted: #9a9aac;
  --faint: #6e6e80;
  --white: #ffffff;
  --accent: #c9c4ff;
  --radius: 22px;
  --radius-pill: 999px;
  --header-h: 76px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 80% 8%, rgba(120, 110, 255, 0.16), transparent 55%),
    radial-gradient(700px 380px at 12% 18%, rgba(80, 90, 180, 0.1), transparent 50%);
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.82rem;
}

.wordmark span {
  color: var(--faint);
  font-weight: 500;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.72rem 1.2rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

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

.btn-primary {
  background: var(--white);
  color: #111118;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 3rem 0 4rem;
}

.kicker {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

h1,
.h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.lede {
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.phones {
  position: relative;
  height: 620px;
}

.phone {
  position: absolute;
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 8px solid #1a1a22;
  background: #111;
}

.phone img {
  width: 100%;
  height: auto;
}

.phone-back {
  left: 8%;
  top: 48px;
  transform: rotate(-8deg);
}

.phone-front {
  right: 4%;
  top: 0;
  transform: rotate(7deg);
  z-index: 2;
}

.section {
  padding: 5.5rem 0;
}

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.8rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 0.9rem;
  max-width: 18ch;
}

.section-intro {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 2.2rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.15rem 1.25rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.icon-pink { background: #f3d5e4; }
.icon-blue { background: #d7e4fb; }
.icon-green { background: #d8f0dc; }
.icon-lilac { background: #e3dcfb; }
.icon-peach { background: #f7e2d4; }

.feature h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.feature .sub {
  color: var(--text);
  font-weight: 500;
  margin: 0 0 0.55rem;
}

.feature p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature p:last-child {
  margin-bottom: 0;
}

.cta {
  text-align: center;
  padding: 6rem 0 7rem;
}

.cta h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h4 {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.site-footer a,
.site-footer p {
  color: var(--muted);
}

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

.legal {
  padding: 4rem 0 6rem;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.4rem;
}

.updated {
  color: var(--faint);
  margin-bottom: 2rem;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  font-size: 1.2rem;
  margin: 2.2rem 0 0.7rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: 1.02rem;
  margin: 1.4rem 0 0.45rem;
}

.prose p,
.prose li {
  color: #c9c9d6;
  font-size: 0.98rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.muted {
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.25rem;
}

.stack {
  display: grid;
  gap: 0.9rem;
}

.coming-soon {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.socials {
  display: flex;
  gap: 0.8rem;
}

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

  .phones {
    height: 460px;
    margin: 0 auto;
    width: min(100%, 360px);
  }

  .phone {
    width: 210px;
  }

  .section h2 {
    max-width: none;
  }

  .site-header {
    padding: 0 1rem;
  }

  .nav-actions .btn-ghost {
    display: none;
  }
}
