* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-2: #0d0b08;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --gold: #d6a23f;
  --gold-light: #f8d98a;
  --text: #f8f2e7;
  --muted: #b9b0a2;
  --line: rgba(214, 162, 63, 0.32);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 162, 63, 0.22), transparent 28rem),
    radial-gradient(circle at 18% 35%, rgba(214, 162, 63, 0.13), transparent 28rem),
    linear-gradient(135deg, #050505, #12100c 55%, #060606);
  color: var(--text);
  min-height: 100vh;
}

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

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-mark,
.mini-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #1b160c, #070707);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(214, 162, 63, 0.18);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

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

.nav-cta {
  color: #050505 !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 40px auto 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button.primary {
  color: #080704;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 48px rgba(214, 162, 63, 0.24);
}

.button.secondary {
  color: var(--text);
  background: var(--card);
}

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row span {
  border: 1px solid var(--line);
  background: rgba(214, 162, 63, 0.08);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.phone {
  width: min(390px, 100%);
  padding: 12px;
  border-radius: 46px;
  background: linear-gradient(145deg, #2d2b28, #040404);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55), 0 0 80px rgba(214, 162, 63, 0.18);
  transform: rotate(3deg);
}

.phone-screen {
  min-height: 720px;
  border-radius: 36px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(214, 162, 63, 0.15), transparent 14rem),
    linear-gradient(180deg, #111, #060606);
  border: 1px solid rgba(255,255,255,0.08);
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.bell {
  color: var(--gold-light);
  font-size: 2rem;
}

.welcome {
  color: var(--gold-light);
  margin: 26px 0 6px;
}

.phone h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stats div,
.quick span,
.hearing-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-light);
}

.stats span,
.hearing-card span,
.hearing-card small {
  color: var(--muted);
  font-size: 0.85rem;
}

.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 20px 0;
  font-size: 0.78rem;
  text-align: center;
}

.hearing-card strong {
  display: block;
  margin: 8px 0;
}

.tabs {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}

.tabs b {
  color: var(--gold-light);
}

.section,
.notice {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 80px;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2,
.beta h2,
.notice h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

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

.feature-grid article {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(214, 162, 63, 0.22);
  min-height: 220px;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(214, 162, 63, 0.12);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-grid p,
.beta p,
.notice li,
footer p {
  color: var(--muted);
  line-height: 1.65;
}

.beta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214,162,63,0.16), rgba(255,255,255,0.04)),
    var(--card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.notice {
  padding: 30px;
  border-radius: 26px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
}

.notice ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 26px;
  padding-left: 20px;
}

footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid rgba(214, 162, 63, 0.24);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

footer strong {
  color: var(--text);
}

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

.footer-links a {
  color: var(--gold-light);
}

.page {
  width: min(850px, calc(100% - 32px));
  margin: 45px auto 100px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
}

.page h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

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

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .phone {
    transform: none;
  }

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

  .beta,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .notice ul {
    grid-template-columns: 1fr;
  }
}
