:root {
  --bg-deep: #030402;
  --bg: #070807;
  --surface: #101210;
  --surface-elevated: #171a17;
  --surface-glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f7f8f2;
  --muted: #a8ad9f;
  --accent: #bafa20;
  --accent-soft: #aedd46;
  --accent-deep: #617b24;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 600px at 15% -5%, rgba(186, 250, 32, 0.09), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(174, 221, 70, 0.07), transparent 65%), var(--bg-deep);
  color: var(--text);
  font-family: Outfit, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.topbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 134px;
  height: auto;
}

.mini-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.hero {
  padding: 34px 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.lede {
  margin-top: 18px;
  max-width: 60ch;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #101208;
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface-glass);
}

.phone-stage {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.phone-stage::before {
  content: '';
  position: absolute;
  inset: 16% 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 250, 32, 0.22) 0%, rgba(186, 250, 32, 0) 75%);
  filter: blur(28px);
}

.phone-shell {
  width: min(310px, 86vw);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.phone-shell img {
  border-radius: 28px;
  width: 100%;
  aspect-ratio: 9/18;
  object-fit: cover;
}

.section {
  padding: 80px 0 0;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.icon-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(186, 250, 32, 0.14);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.media {
  padding: 0;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.brand-block {
  margin-top: 12px;
}

.brand-block p {
  max-width: 72ch;
}

.final-cta {
  margin-top: 10px;
  padding-bottom: 64px;
}

.final-cta p {
  margin-bottom: 20px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer .muted {
  color: var(--muted);
  font-size: 14px;
}

.footer nav {
  display: flex;
  gap: 14px;
}

.footer nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

.ambient-a {
  width: 460px;
  height: 460px;
  left: -160px;
  top: 12vh;
  background: radial-gradient(circle, rgba(186, 250, 32, 0.1), transparent 70%);
}

.ambient-b {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 44vh;
  background: radial-gradient(circle, rgba(174, 221, 70, 0.08), transparent 72%);
}

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

  .phone-stage {
    min-height: 360px;
  }

  .grid.three,
  .preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .topbar {
    height: 72px;
  }

  .section {
    padding-top: 56px;
  }

  .grid.two,
  .grid.three,
  .preview-grid {
    grid-template-columns: 1fr;
  }
}
