:root {
  color-scheme: dark;
  --bg: #06080f;
  --bg-2: #0b1020;
  --ink: #f3f6ff;
  --muted: #9ba8c4;
  --teal: #2afadf;
  --magenta: #ff4fd8;
  --glow: rgba(42, 250, 223, 0.35);
  --card: rgba(15, 22, 40, 0.92);
  --border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.6), 0 12px 24px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(ellipse at top, #0f1a35 0%, var(--bg) 50%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

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

.bg-orbit {
  position: fixed;
  inset: -15% -10% auto auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.12), transparent 65%);
  filter: blur(80px);
  z-index: 0;
  animation: orbPulse 8s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 20%,
      rgba(42, 250, 223, 0.08),
      transparent 42%
    ),
    radial-gradient(
      circle at 75% 15%,
      rgba(255, 79, 216, 0.1),
      transparent 38%
    ),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 20px
    );
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 32px 8vw 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.logo {
  width: 130px;
  filter: drop-shadow(0 2px 16px rgba(255, 79, 216, 0.35));
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 4px 20px rgba(255, 79, 216, 0.5));
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.pill {
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(42, 250, 223, 0.4);
  box-shadow: 0 4px 16px rgba(42, 250, 223, 0.2);
}

.pill.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.pill.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 79, 216, 0.4);
  box-shadow: 0 4px 16px rgba(255, 79, 216, 0.15);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.hero-text h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.08;
  margin: 16px 0 20px;
  letter-spacing: -0.025em;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ink) 0%, rgba(243, 246, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  text-shadow: 0 0 20px rgba(42, 250, 223, 0.4);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.cta {
  padding: 15px 28px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.cta.primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--magenta) 100%);
  color: #0a0d16;
  box-shadow: 0 8px 24px rgba(42, 250, 223, 0.25), 0 4px 12px rgba(255, 79, 216, 0.15);
  position: relative;
  overflow: hidden;
}

.cta.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cta.primary:hover::before {
  opacity: 1;
}

.cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 250, 223, 0.35), 0 6px 16px rgba(255, 79, 216, 0.25);
}

.cta.secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 22, 40, 0.6);
  backdrop-filter: blur(10px);
}

.cta.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(15, 22, 40, 0.8);
  box-shadow: var(--shadow-md);
}

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  color: var(--muted);
}

.hero-meta span::before {
  content: '✓';
  margin-right: 8px;
  color: var(--teal);
  font-weight: 600;
}

.hero-card {
  position: relative;
  background: var(--card);
  border-radius: 28px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  animation: floatIn 1.2s ease both;
  max-width: 440px;
  margin-left: auto;
  backdrop-filter: blur(20px);
}

.hero-card img {
  border-radius: 20px;
}

.card-glow {
  position: absolute;
  inset: 30% 10% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 250, 223, 0.3), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.section {
  position: relative;
  z-index: 1;
  padding: 100px 8vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section.why {
  padding: 80px 8vw 60px;
  text-align: center;
}

.section.why .section-header {
  max-width: 720px;
  margin: 0 auto;
}

.section.why .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
  color: var(--ink);
}

.section.why .section-header p {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.section.why .section-header p:last-child {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.screen-card {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 1s ease both;
  max-width: 400px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(42, 250, 223, 0.2);
}

.screen-card img {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.screen-card figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.step {
  background: rgba(15, 22, 40, 0.75);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 250, 223, 0.3);
  box-shadow: var(--shadow-md);
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(42, 250, 223, 0.4);
}

.step h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.step p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.step-image {
  margin-top: 20px;
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Compare section */
.section.compare {
  padding: 60px 8vw 80px;
  display: flex;
  justify-content: center;
}

.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 12px;
  text-align: left;
}

.compare-table thead th {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-table thead th.highlight-col {
  color: var(--magenta);
}

.compare-table tbody td {
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.compare-table tbody td:nth-child(2) {
  color: var(--muted);
  text-align: center;
}

.compare-table tbody td.highlight-col {
  color: var(--teal);
  font-weight: 600;
  text-align: center;
}

.icon-no {
  color: #ff6b6b;
  font-weight: 700;
}

.icon-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(42, 250, 223, 0.2);
  border-radius: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.875rem;
}

.compare-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.compare-footer h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.compare-footer p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.tier-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.tier-card {
  background: rgba(15, 22, 40, 0.8);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.tier-card h3 {
  font-size: 1.75rem;
  margin: 8px 0 20px;
  font-weight: 700;
}

.tier-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--magenta), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tier-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.tier-card ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.tier-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.tier-card.highlight {
  background: rgba(20, 28, 50, 0.9);
  border-color: rgba(255, 79, 216, 0.5);
  box-shadow: 0 16px 48px rgba(255, 79, 216, 0.2), 0 8px 24px rgba(42, 250, 223, 0.1);
}

.tier-card.highlight:hover {
  border-color: rgba(255, 79, 216, 0.6);
  box-shadow: 0 20px 60px rgba(255, 79, 216, 0.25), 0 10px 30px rgba(42, 250, 223, 0.15);
}

.tier-card.highlight ul li::before {
  color: var(--magenta);
}

.badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 79, 216, 0.2);
  color: var(--magenta);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 79, 216, 0.3);
}

/* Game Modes Showcase */
.section-header.centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.mode-showcase {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.mode-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.mode-row.reverse {
  direction: rtl;
}

.mode-row.reverse > * {
  direction: ltr;
}


.mode-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.mode-label.accent-teal {
  color: var(--teal);
}

.mode-label.accent-magenta {
  color: var(--magenta);
}

.mode-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
}

.mode-text p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.mode-images {
  display: flex;
  gap: 20px;
}

.mode-images img {
  width: 220px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mode-row.reverse .mode-images {
  justify-content: flex-end;
}

.mode-row:not(.reverse) .mode-images {
  justify-content: flex-start;
}

/* Tiers Section */
.section.tiers .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* What's New Section */
.section.whats-new {
  text-align: center;
}

.section.whats-new .section-header {
  max-width: 720px;
  margin: 0 auto;
}

.version-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(42, 250, 223, 0.15), rgba(255, 79, 216, 0.15));
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(42, 250, 223, 0.3);
  margin-bottom: 16px;
}

.update-card {
  background: rgba(15, 22, 40, 0.8);
  border-radius: 24px;
  padding: 32px 40px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  max-width: 700px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.update-card:hover {
  border-color: rgba(42, 250, 223, 0.3);
  box-shadow: 0 16px 48px rgba(42, 250, 223, 0.1);
}

.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.update-date {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.update-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.update-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.update-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.update-list li:first-child {
  padding-top: 0;
}

.update-list li strong {
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 600;
}

.update-list li span {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 80px 8vw 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.footer-card h2 {
  font-size: clamp(1.875rem, 2.5vw, 2.5rem);
  margin: 0 0 16px;
  font-weight: 700;
}

.footer-card p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 12px auto 32px;
  max-width: 560px;
}

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

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 22, 40, 0.7);
  backdrop-filter: blur(10px);
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.socials a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 250, 223, 0.4);
  background: rgba(15, 22, 40, 0.9);
  box-shadow: 0 4px 16px rgba(42, 250, 223, 0.15);
}

.footer-meta {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9375rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 24px 6vw 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .hero-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .section {
    padding: 80px 6vw;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    text-align: center;
  }

  .mode-row {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .mode-row.reverse {
    direction: ltr;
  }

  .mode-images {
    justify-content: center;
  }

  .mode-images img {
    width: 140px;
  }

  .mode-showcase {
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 20px 5vw 60px;
  }

  .section {
    padding: 60px 5vw;
  }

  .section.compare {
    padding: 40px 5vw 60px;
  }

  .compare-card {
    padding: 24px 20px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 8px;
    font-size: 0.9375rem;
  }

  .compare-footer h3 {
    font-size: 1.5rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .nav-actions {
    gap: 8px;
  }

  .pill {
    padding: 9px 16px;
    font-size: 0.8125rem;
  }

  .screen-grid,
  .steps,
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-card {
    padding: 36px 24px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(42, 250, 223, 0.4);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: rgba(6, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 100px 32px 32px;
  gap: 8px;
}

.mobile-menu-nav a {
  display: block;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-menu-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
}

/* FAQ Page Styles */
.faq-section {
  padding: 40px 8vw 100px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  font-weight: 700;
}

.faq-header p {
  color: var(--muted);
  font-size: 1.125rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(42, 250, 223, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer-content a {
  color: var(--teal);
  text-decoration: underline;
}

.android-signup {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.android-signup input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-size: 1rem;
}

.android-signup input::placeholder {
  color: var(--muted);
}

.android-signup button {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  border: none;
  border-radius: 10px;
  color: #0a0d16;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.android-signup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42, 250, 223, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
