/* ── Reset ──────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0A1628;
  color: #F5E6C8;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Hero glow ─────────────────────────────────────────────────── */
.hero-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Header ────────────────────────────────────────────────────── */
.header {
  width: 100%;
  max-width: 960px;
  padding: 32px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.header-brand,
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.header-name {
  font-size: 20px;
  font-weight: 700;
  color: #D4A843;
  letter-spacing: 4px;
}

.header-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-links a {
  font-size: 14px;
  color: #F5E6C8;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-links a:hover { opacity: 1; }

/* ── Language Switcher ─────────────────────────────────────────── */
.lang-switcher {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  padding: 8px;
  color: #D4A843;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
}

.lang-btn:hover {
  border-color: #D4A843;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #1A2740;
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  flex-direction: column;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown {
  display: flex;
}

.lang-dropdown a {
  padding: 8px 12px;
  color: #8899AA;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.lang-dropdown a:hover {
  background: rgba(212, 168, 67, 0.1);
  color: #F5E6C8;
}

.lang-dropdown a.active {
  color: #D4A843;
  font-weight: 600;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  max-width: 640px;
  padding: 80px 24px 60px;
  text-align: center;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin-bottom: 32px;
  box-shadow:
    0 0 0 1px rgba(212, 168, 67, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #F5E6C8 0%, #D4A843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #8899AA;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D4A843 0%, #E8B94B 100%);
  color: #0A1628;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.35);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(212, 168, 67, 0.4);
  color: #D4A843;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.cta-secondary:hover {
  border-color: #D4A843;
  background: rgba(212, 168, 67, 0.05);
}

/* ── Waitlist Form ─────────────────────────────────────────────── */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  background: rgba(26, 39, 64, 0.8);
  color: #F5E6C8;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}
.waitlist-form input::placeholder { color: #8899AA; }
.waitlist-form input:focus {
  outline: none;
  border-color: #D4A843;
}
.waitlist-form button {
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.waitlist-note {
  font-size: 0.9rem;
  color: #D4A843;
  margin-bottom: 16px;
}
.waitlist-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 1.4em;
}
.waitlist-msg.success { color: #4CAF50; }
.waitlist-msg.error { color: #FF6B6B; }
.waitlist-msg.info { color: #D4A843; }

/* ── Divider ───────────────────────────────────────────────────── */
.section-divider {
  width: 100%;
  max-width: 960px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.15), transparent);
}

/* ── Truth Section ─────────────────────────────────────────────── */
.truth {
  max-width: 960px;
  padding: 80px 24px;
  width: 100%;
}

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

.truth-card {
  background: linear-gradient(135deg, #1A2740 0%, #162236 100%);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.truth-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.truth-number {
  font-size: 14px;
  font-weight: 700;
  color: #D4A843;
  opacity: 0.5;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.truth-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #E8B94B;
  margin-bottom: 8px;
}

.truth-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #8899AA;
}

/* ── Features ──────────────────────────────────────────────────── */
.features {
  max-width: 960px;
  padding: 80px 24px;
  width: 100%;
}

.features-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4A843;
  opacity: 0.7;
  margin-bottom: 16px;
}

.features-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #F5E6C8;
}

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

.feature-card {
  background: linear-gradient(135deg, #1A2740 0%, #162236 100%);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #E8B94B;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #8899AA;
}

/* ── Stats ─────────────────────────────────────────────────────── */
.stats {
  max-width: 960px;
  width: 100%;
  padding: 0 24px 80px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #D4A843;
}

.stat-label {
  font-size: 14px;
  color: #8899AA;
  margin-top: 4px;
}

/* ── How It Works ──────────────────────────────────────────────── */
.how-it-works {
  max-width: 640px;
  padding: 80px 24px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1.5px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #D4A843;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #F5E6C8;
  margin-bottom: 4px;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
  color: #8899AA;
}

/* ── Founder Quote ─────────────────────────────────────────────── */
.founder-quote {
  max-width: 640px;
  padding: 60px 24px;
  text-align: center;
}

.founder-quote blockquote {
  position: relative;
}

.founder-quote blockquote::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: rgba(212, 168, 67, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.founder-quote blockquote p {
  font-size: 20px;
  line-height: 1.7;
  color: #F5E6C8;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}

.founder-quote cite {
  font-size: 14px;
  color: #D4A843;
  font-style: normal;
  font-weight: 600;
}

/* ── Final CTA ─────────────────────────────────────────────────── */
.final-cta {
  max-width: 640px;
  padding: 60px 24px 80px;
  text-align: center;
}

.final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #F5E6C8;
}

.final-cta p {
  font-size: 16px;
  color: #8899AA;
  margin-bottom: 32px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 13px;
  color: #8899AA;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #D4A843; }

.footer-copy {
  font-size: 12px;
  color: #5A6A7A;
}

.footer-disclaimer {
  font-size: 12px;
  color: #5A6A7A;
  max-width: 480px;
  margin: 12px auto 0;
  line-height: 1.5;
}

/* ── Legal Pages ───────────────────────────────────────────────── */
.legal-container {
  max-width: 720px;
  width: 100%;
  padding: 40px 24px 80px;
  line-height: 1.7;
}

.legal-container h1 {
  color: #D4A843;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.legal-container .subtitle {
  color: #E8B94B;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.legal-container h2 {
  color: #D4A843;
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #1A2740;
}

.legal-container h3 {
  color: #E8B94B;
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-container p {
  margin-bottom: 1rem;
  color: #d6cbb3;
}

.legal-container ul,
.legal-container ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-container li {
  margin-bottom: 0.4rem;
  color: #d6cbb3;
}

.legal-container a {
  color: #E8B94B;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-container .highlight {
  background-color: #1A2740;
  border-left: 3px solid #D4A843;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
}

.legal-container .highlight p {
  margin-bottom: 0;
}

.legal-container .warning {
  background-color: #1A2740;
  border-left: 3px solid #c44;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
}

.legal-container .warning p {
  margin-bottom: 0;
}

.legal-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-container th,
.legal-container td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border: 1px solid #1A2740;
  color: #d6cbb3;
  font-size: 0.95rem;
}

.legal-container th {
  background-color: #1A2740;
  color: #E8B94B;
  font-weight: 600;
}

.legal-container .effective-date {
  font-size: 0.85rem;
  color: #8a7e6a;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1A2740;
}

/* ── Blog Preview ─────────────────────────────────────────────── */
.blog-preview {
  max-width: 960px;
  padding: 80px 24px;
  width: 100%;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-preview-card {
  display: block;
  background: linear-gradient(135deg, #1A2740 0%, #162236 100%);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  -webkit-text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}

.blog-preview-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-4px);
  text-decoration: none;
}

.blog-preview-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #F5E6C8;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-preview-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #8899AA;
  margin-bottom: 12px;
}

.blog-preview-card .card-meta {
  font-size: 12px;
  color: #D4A843;
  opacity: 0.7;
}

.blog-preview .see-all {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: #D4A843;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.blog-preview .see-all:hover { opacity: 0.7; }

/* ── Mobile Menu Toggle ───────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  padding: 8px;
  color: #D4A843;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.mobile-menu-btn:hover {
  border-color: #D4A843;
}

.mobile-menu-btn svg { display: block; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .truth-cards { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .features-title { font-size: 26px; }
  .stats-row { gap: 32px; }

  .mobile-menu-btn { display: flex; }

  .header-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 24px;
    margin-top: 12px;
    background: #1A2740;
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .header-links.open {
    display: flex;
  }

  .header-links a {
    padding: 10px 12px;
    border-radius: 8px;
    opacity: 0.8;
  }

  .header-links a:hover {
    background: rgba(212, 168, 67, 0.1);
    opacity: 1;
  }

  .header {
    position: relative;
  }

  .lang-switcher {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .lang-dropdown {
    position: static;
    margin-top: 4px;
    box-shadow: none;
    border: none;
    background: rgba(10, 22, 40, 0.5);
  }

  .waitlist-form { flex-direction: column; }
  .founder-quote blockquote p { font-size: 17px; }
  .legal-container { padding: 24px 16px 60px; }
  .legal-container h1 { font-size: 1.6rem; }
  .legal-container table { font-size: 0.85rem; }
}
