:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #030014;
  color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 20%, rgba(34, 211, 238, 0.32), transparent 34rem),
    radial-gradient(circle at 86% 16%, rgba(217, 70, 239, 0.28), transparent 32rem),
    linear-gradient(135deg, #05d4dd 0%, #1cb7d4 42%, #7e22ce 100%);
}

a {
  color: inherit;
}

.page {
  margin: 0 auto;
  max-width: 1160px;
  min-height: 100vh;
  padding: 28px;
}

.narrow {
  max-width: 860px;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 12px 0 42px;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 18px;
}

.links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 420px;
  padding: 50px 0 72px;
}

.eyebrow {
  color: #fef08a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  margin: 0;
  max-width: 780px;
}

.lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 650px;
}

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

.button {
  background: #c026d3;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(126, 34, 206, 0.34);
  color: white;
  display: inline-flex;
  font-weight: 900;
  padding: 14px 20px;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.phone {
  background: #080814;
  border-radius: 54px;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.38);
  padding: 18px;
}

.phone-screen {
  background: linear-gradient(#030014, #16072f);
  border-radius: 40px;
  min-height: 760px;
  padding: 38px 28px;
}

.app-header {
  align-items: center;
  display: flex;
  gap: 14px;
}

.app-icon {
  align-items: center;
  background: rgba(217, 70, 239, 0.28);
  border: 1px solid rgba(245, 208, 254, 0.38);
  border-radius: 18px;
  color: #fde047;
  display: inline-flex;
  font-size: 25px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.app-header strong {
  display: block;
  font-size: 20px;
}

.app-header small {
  color: #94a3b8;
}

.result-card {
  background: rgba(217, 70, 239, 0.14);
  border: 1px solid rgba(245, 208, 254, 0.28);
  border-radius: 28px;
  margin-top: 42px;
  padding: 34px 22px;
  text-align: center;
}

.result-card span {
  color: #f5d0fe;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.result-card h2 {
  font-size: 56px;
  line-height: 1;
  margin: 18px 0;
}

.result-card p {
  color: #e2e8f0;
  margin: 0 auto;
  max-width: 310px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chips span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 14px;
}

.generate {
  background: #c026d3;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 900;
  margin-top: 28px;
  padding: 18px;
  text-align: center;
}

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

.features article,
.content {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 28px;
}

.features h2,
.content h2,
.content h3 {
  margin-bottom: 8px;
}

.features p,
.content p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.content h1 {
  font-size: clamp(34px, 6vw, 56px);
}

.content a {
  font-weight: 900;
}

.updated {
  color: #fef08a !important;
  font-weight: 800;
}

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

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

  .phone {
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }
}
