/* ── Design tokens (from Intuition admin panel) ── */
:root {
  --bg: #0e0e0e;
  --card: #1a1919;
  --card-glass: linear-gradient(135deg, rgba(38,38,38,.45) 0%, rgba(19,19,19,.75) 100%);
  --text: #fff;
  --muted: #adaaaa;
  --accent: #8eff71;
  --accent-dim: #2be800;
  --danger: #e63946;
  --border: #333;
  --input-bg: #262626;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Heebo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(142, 255, 113, 0.3);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 640px) {
  .nav-hamburger { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(14,14,14,0.97);
    backdrop-filter: blur(12px);
    padding: 20px 24px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--text); }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #0d6100;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(142, 255, 113, 0.25);
  text-decoration: none;
  transition: filter 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 32px rgba(142, 255, 113, 0.4);
  text-decoration: none;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(142, 255, 113, 0.2);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-store:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  text-decoration: none;
}
.btn-store .store-icon { font-size: 1.4rem; line-height: 1; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store .store-text small { font-size: 0.7rem; color: var(--muted); font-weight: 400; }

/* ── Glass card ── */
.card {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(142, 255, 113, 0.12);
}

/* ── Section layout ── */
section {
  padding: 80px 24px;
  max-width: 1000px;
  margin-inline: auto;
}

section .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

section .section-title {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

section .section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(142,255,113,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(142, 255, 113, 0.3);
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.hero-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(142, 255, 113, 0.12);
  text-align: center;
}

.step-number {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Rooms ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
}

.room-card {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(142, 255, 113, 0.10);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.room-card:hover {
  border-color: rgba(142, 255, 113, 0.3);
  transform: translateY(-2px);
}

.room-emoji { font-size: 1.8rem; margin-bottom: 8px; }

.room-card h3 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.room-card p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.room-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(142, 255, 113, 0.12);
  color: var(--accent);
  border: 1px solid rgba(142, 255, 113, 0.25);
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(142, 255, 113, 0.10);
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(142, 255, 113, 0.28); }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

.feature-card h3 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Download CTA ── */
.download-section {
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at 50% 50%, rgba(142,255,113,0.05) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.download-section .section-title {
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 32px;
}

/* ── Footer ── */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { color: var(--muted); font-size: 0.85rem; }

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

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Prose (legal pages) ── */
.prose-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.prose-wrap h1 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(142, 255, 113, 0.2);
  margin-bottom: 8px;
}

.prose-wrap .prose-meta {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 48px;
}

.prose-wrap h2 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.prose-wrap p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose-wrap ul {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 16px 20px;
}

.prose-wrap ul li { margin-bottom: 6px; }

.prose-wrap a { color: var(--accent); }

.prose-wrap .contact-box {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(142, 255, 113, 0.06);
  border: 1px solid rgba(142, 255, 113, 0.2);
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.prose-wrap .contact-box a {
  font-weight: 600;
}

/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

details {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(142, 255, 113, 0.10);
  border-radius: 12px;
  overflow: hidden;
}

details[open] { border-color: rgba(142, 255, 113, 0.25); }

summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  margin-inline-start: 12px;
}

details[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Support hero ── */
.support-hero {
  text-align: center;
  padding: 110px 24px 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(142,255,113,0.06) 0%, transparent 60%);
}

.support-hero h1 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.support-hero p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.support-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.faq-category {
  margin-top: 40px;
  margin-bottom: 12px;
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card {
  margin-top: 48px;
  padding: 28px;
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(142, 255, 113, 0.2);
  border-radius: 16px;
  text-align: center;
}

.contact-card h2 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
