:root {
  --bg: #070a16;
  --panel: #11162a;
  --panel-2: #171d34;
  --line: #2a3154;
  --text: #f6f4ff;
  --muted: #b7b0cf;
  --pink: #ff0aa8;
  --violet: #9828ff;
  --cyan: #6be8d3;
  --gold: #ffd35b;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(152, 40, 255, .26), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(255, 10, 168, .18), transparent 28rem),
    linear-gradient(180deg, #090516 0%, var(--bg) 42%, #050814 100%);
  color: var(--text);
}

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

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .1px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 12px 32px rgba(255, 10, 168, .28);
}

.brand-name,
.gradient-text {
  background: linear-gradient(100deg, #b32cff 0%, var(--pink) 58%, #ff8f70 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .82fr);
  gap: 54px;
  align-items: center;
  padding: 78px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(107, 232, 211, .12);
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(54px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -2px;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-weight: 900;
}

.button.primary {
  border: 0;
  background: linear-gradient(110deg, var(--violet), var(--pink));
  box-shadow: 0 14px 36px rgba(255, 10, 168, .28);
}

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

.phone-stage {
  position: relative;
  min-height: 570px;
}

.glow {
  position: absolute;
  inset: 42px 0 auto 30px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 10, 168, .26), rgba(152, 40, 255, .1), transparent 68%);
  filter: blur(8px);
}

.phone {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 44px;
  background: linear-gradient(180deg, #161b31, #050813);
  box-shadow: var(--shadow);
}

.phone-screen {
  overflow: hidden;
  min-height: 660px;
  border-radius: 32px;
  background: #070a16;
  border: 1px solid rgba(255, 255, 255, .09);
}

.screen-header {
  margin: 22px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.coin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #0d1224;
  border: 1px solid var(--line);
  font-weight: 900;
}

.coin::before {
  content: "+";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #5a3b00;
  background: var(--gold);
}

.feature-card {
  margin: 0 22px 18px;
  min-height: 270px;
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .54)),
    linear-gradient(135deg, #f7b345, #5b2148 58%, #15162d);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.prompt-lines {
  display: grid;
  gap: 9px;
}

.line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
}

.line:nth-child(2) {
  width: 82%;
}

.line:nth-child(3) {
  width: 64%;
}

.generate-button {
  margin: 0 22px 18px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(100deg, var(--violet), var(--pink));
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(255, 10, 168, .18);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 22px 22px;
}

.mini {
  height: 132px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 10, 168, .38), rgba(107, 232, 211, .2)), #141a30;
}

.mini:nth-child(2) {
  transform: translateY(18px);
  background: linear-gradient(135deg, rgba(255, 211, 91, .38), rgba(152, 40, 255, .24)), #141a30;
}

.section {
  padding: 44px 0;
}

.section h2,
.policy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -1px;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(17, 22, 42, .84);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

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

.policy {
  max-width: 900px;
  padding: 54px 0 80px;
}

.policy-card {
  margin: 22px 0;
  padding: 28px;
  border-radius: 26px;
  background: rgba(17, 22, 42, .86);
  border: 1px solid var(--line);
}

.policy h2 {
  margin-top: 36px;
  font-size: 28px;
}

.policy a {
  color: var(--cyan);
  font-weight: 800;
}

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

.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 28px 0;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 28px, 560px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 0 28px;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone {
    width: min(360px, 100%);
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

