/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #d4af37;
  --gold-light: #e8c84a;
  --gold-dim:   rgba(212,175,55,0.15);
  --gold-glow:  rgba(212,175,55,0.08);
  --bg:         #0d0b12;
  --surface:    rgba(19,16,30,0.7);
  --text:       #e8e0d0;
  --text-mid:   #c8c0d0;
  --text-muted: #7a6f88;
  --border:     rgba(212,175,55,0.15);
  --border-hi:  rgba(212,175,55,0.3);
  --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Background ────────────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(88,28,135,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 65%, rgba(30,58,138,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 55% 85%, rgba(120,40,100,0.09) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* star field */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 8%  12%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 28%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 37%  5%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 51% 42%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 63% 18%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 74% 55%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 88%  8%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 14% 70%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 29% 85%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 45% 62%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 78%, rgba(255,255,255,0.2)  0%, transparent 100%),
    radial-gradient(1px 1px at 72% 92%, rgba(255,255,255,0.3)  0%, transparent 100%),
    radial-gradient(1px 1px at 83% 35%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 72%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 33% 50%, rgba(212,175,55,0.4)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 67% 30%, rgba(212,175,55,0.3)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 18% 90%, rgba(212,175,55,0.35) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

section, nav, footer { position: relative; z-index: 1; }

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.2; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ─── Glass utility ─────────────────────────────────────────────────────── */
.glass {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ─── Nav ───────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,11,18,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold-dim);
  border: 1px solid var(--border-hi);
  color: var(--gold) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(212,175,55,0.2) !important;
  border-color: rgba(212,175,55,0.5) !important;
  color: var(--gold-light) !important;
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  font-family: Georgia, serif;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #0d0b12;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #0d0b12;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  background: var(--gold-glow);
  color: var(--text);
  border-color: var(--gold);
}

/* hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orb {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    rgba(212,175,55,0.12) 0%,
    rgba(100,50,150,0.08) 40%,
    transparent 70%);
  border: 1px solid var(--border-hi);
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.06);
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.orb-ring-1 { width: 80%;  height: 80%;  animation: spin 40s linear infinite; }
.orb-ring-2 { width: 60%;  height: 60%;  animation: spin 28s linear infinite reverse; border-color: rgba(212,175,55,0.1); }
.orb-ring-3 { width: 110%; height: 110%; animation: spin 60s linear infinite; border-color: rgba(212,175,55,0.06); }

.orb-glyph {
  font-family: Georgia, serif;
  font-size: 56px;
  color: var(--gold);
  opacity: 0.7;
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
  position: relative;
  z-index: 1;
}

.orb-dots {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.orb-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── About strip ───────────────────────────────────────────────────────── */
.about-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.about-stat {
  text-align: center;
}

.about-stat-num {
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Features ──────────────────────────────────────────────────────────── */
#features { padding: 96px 0; }

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-sub {
  margin: 0 auto;
}

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

.feature-card {
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.feature-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Pricing ───────────────────────────────────────────────────────────── */
#pricing { padding: 96px 0; }

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.beta-notice {
  text-align: center;
  margin-bottom: 56px;
  padding: 14px 24px;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-mid);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.beta-notice strong { color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.04);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0d0b12;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 6px;
}

.pricing-amount {
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-tokens {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 18px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✦';
  font-size: 9px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-features li.dim {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features li.dim::before { opacity: 0.4; }

.pricing-btn {
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid var(--border-hi);
  background: transparent;
  color: var(--gold);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.pricing-btn:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  border-color: var(--gold);
}

.pricing-card.featured .pricing-btn {
  background: var(--gold);
  color: #0d0b12;
  border-color: var(--gold);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--gold-light);
  color: #0d0b12;
}

/* ─── Waitlist ──────────────────────────────────────────────────────────── */
#waitlist { padding: 96px 0; }

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.waitlist-copy { padding-top: 8px; }

.waitlist-copy .section-sub {
  margin-top: 16px;
  margin-bottom: 32px;
}

.waitlist-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mid);
}

.waitlist-perk-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* form */
.waitlist-form-wrap {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.form-group label span { color: var(--text-muted); font-size: 11px; }

.form-control {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: rgba(212,175,55,0.4);
  background: rgba(255,255,255,0.06);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control option {
  background: #1a1525;
  color: var(--text);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}

.radio-label input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-section-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  margin-top: 4px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #0d0b12;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.25);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-msg {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  display: none;
  padding: 12px;
  border-radius: 7px;
}

.form-msg.success {
  display: block;
  background: rgba(95,186,125,0.1);
  border: 1px solid rgba(95,186,125,0.3);
  color: #5fba7d;
}

.form-msg.error {
  display: block;
  background: rgba(224,112,112,0.1);
  border: 1px solid rgba(224,112,112,0.3);
  color: #e07070;
}

/* ─── Contact ───────────────────────────────────────────────────────────── */
#contact {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-text h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-email {
  font-size: 16px;
  color: var(--gold);
  border: 1px solid var(--border-hi);
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--gold-glow);
  transition: all 0.2s;
  white-space: nowrap;
}

.contact-email:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
}

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

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-mid); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Divider ───────────────────────────────────────────────────────────── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  margin: 0;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; text-align: center; }
  .hero-visual         { display: none; }
  .hero-actions        { justify-content: center; }
  .hero-eyebrow        { justify-content: center; }
  .features-grid       { grid-template-columns: 1fr 1fr; }
  .pricing-grid        { grid-template-columns: 1fr 1fr; }
  .waitlist-inner      { grid-template-columns: 1fr; }
  .about-strip-inner   { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section              { padding: 64px 0; }
  .features-grid       { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .nav-links           { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(13,11,18,0.95); backdrop-filter: blur(24px); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open      { display: flex; }
  .nav-toggle          { display: flex; }
  .waitlist-form-wrap  { padding: 24px; }
  .contact-inner       { flex-direction: column; text-align: center; }
}
