:root {
  --bg: #09121a;
  --bg-deep: #060d14;
  --panel: rgba(20, 29, 40, 0.88);
  --panel-strong: rgba(12, 20, 29, 0.96);
  --border: rgba(245, 201, 106, 0.16);
  --text: #f4ede0;
  --muted: #9aa8b5;
  --accent: #e8a838;
  --accent-soft: #f3cf78;
  --accent-shadow: rgba(232, 168, 56, 0.28);
  --surface-blue: #152131;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 168, 56, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(45, 123, 171, 0.18), transparent 24%),
    linear-gradient(180deg, #0b131c 0%, #071019 52%, #050b11 100%);
  font-family: Inter, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  opacity: 0.24;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar,
.hero,
.feature-grid,
.waitlist-panel,
.site-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.brand-wordmark {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ghost-link,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(17, 25, 36, 0.6);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ghost-link:hover,
.secondary-btn:hover,
.primary-btn:hover,
.waitlist-form button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
  padding: 32px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.waitlist-copy h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-text,
.feature-card p,
.waitlist-copy p,
.form-note,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  font-size: 1.06rem;
}

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

.primary-btn,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0b744 0%, #df9f27 100%);
  box-shadow: 0 16px 32px var(--accent-shadow);
  color: #101922;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 390px);
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(245, 201, 106, 0.22), rgba(31, 45, 63, 0.7));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 201, 106, 0.34), transparent 30%),
    radial-gradient(circle at 80% 76%, rgba(56, 132, 199, 0.2), transparent 28%);
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 620px;
  padding: 22px 18px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0c151f 0%, #0b131c 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-chip {
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(22, 34, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.screen-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(21, 33, 49, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-card--gold {
  background: linear-gradient(180deg, rgba(79, 58, 18, 0.5), rgba(24, 25, 26, 0.95));
  border-color: rgba(245, 201, 106, 0.34);
}

.screen-card__label {
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-card__title {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 800;
}

.screen-card__meta {
  margin-top: 8px;
  color: var(--muted);
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: auto;
}

.screen-orb {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(232, 168, 56, 0.22), rgba(17, 28, 41, 0.1) 55%, transparent 56%),
    rgba(8, 14, 21, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--accent-soft);
  font-size: 2.25rem;
}

.screen-banner {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(77, 58, 24, 0.38);
  border: 1px solid rgba(245, 201, 106, 0.22);
  color: #f1ddac;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

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

.feature-card,
.waitlist-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 24px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(245, 201, 106, 0.12);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h2 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: center;
  margin-top: 34px;
  padding: 30px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 13, 19, 0.72);
  color: var(--text);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: #748493;
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(26, 63, 41, 0.42);
  border: 1px solid rgba(118, 194, 137, 0.28);
  color: #d8f4dd;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 8px 4px 0;
  font-size: 0.94rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .waitlist-panel,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

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

  .hero {
    padding-top: 18px;
  }

  .hero h1,
  .waitlist-copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .phone-screen {
    min-height: 540px;
  }

  .waitlist-panel,
  .feature-card {
    border-radius: 22px;
  }
}

