/* ======================================
   TAPES - Using App Theme
   Colors from TapesColors:
   - background: #000000
   - surface: #121212
   - orange: #FF5F00 (Safety Orange)
   - textHeading: #FFFFFF
   - textBody: #E0E0E0
   - textMuted: #666666
   - border: #222222
   
   Fonts:
   - Anton (headings)
   - JetBrains Mono (tech specs)
   - Outfit (body text)
   ====================================== */

:root {
  /* TapesColors */
  --bg-dark: #000000;
  --bg-surface: #121212;
  --border-color: #222222;

  --primary-color: #ff5f00;
  --primary-hover: #ff7a1a;

  --text-heading: #ffffff;
  --text-body: #e0e0e0;
  --text-muted: #666666;

  /* Typography */
  --font-heading: "Anton", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-body: "Outfit", sans-serif;

  /* Spacing */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text-heading);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

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

.nav-links a {
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--text-heading);
  color: #000;
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: #444;
}

.btn-small {
  padding: 8px 16px;
  font-size: 11px;
  background: var(--primary-color);
  color: #000;
  border-radius: 4px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero {
  padding: 140px 0 60px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin-bottom: 60px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 90px); /* Scaled down from 120px */
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text-heading);
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-device {
  width: 100%;
  max-width: 420px; /* Increased for better presence */
  margin: 60px auto 0;
}

.hero-screenshot {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 95, 0, 0.03);
}

/* ======================================
   FEATURE SECTIONS
   ====================================== */
.feature-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.section-header {
  text-align: left;
  margin-bottom: 80px;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: var(--text-heading);
  text-transform: uppercase;
}

.section-header p {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 48px 32px;
  margin-top: 40px;
}

.feature-grid.cols-4 {
  grid-template-columns: repeat(
    3,
    1fr
  ); /* 3 columns for better balance on desktop */
}

.feature-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid.cols-2-large {
  grid-template-columns: repeat(2, 1fr);
}

/* On very large screens we can allow more columns but keep them BIG */
@media (min-width: 1400px) {
  .feature-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Feature Cards */
.feature-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: none;
}

.card-visual {
  height: auto;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border: 1px solid var(--border-color);
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover .card-visual img {
  transform: scale(1.08);
}

.card-visual-top {
  height: auto;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 0px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.card-visual-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover .card-visual-top img {
  transform: scale(1.08);
}

.icon-visual {
  background: rgba(255, 95, 0, 0.08);
  border: 1px solid rgba(255, 95, 0, 0.15);
}

.feature-icon {
  font-size: 56px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 18px; /* Scaled down from 24px */
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: 0px;
  color: var(--text-heading);
  text-transform: none;
}

.feature-card p {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Light Cards - Now Dark themed */
.light-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.light-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #333;
}

.light-card h3 {
  color: var(--text-heading);
}

.light-card p {
  color: var(--text-muted);
}

/* Playback Quad Icon */
.playback-quad {
  width: 100px;
  height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Playback Icons Grid */
.playback-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 220px;
  padding: 20px;
}

.playback-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.playback-icon:hover {
  background: rgba(255, 95, 0, 0.15);
  border-color: var(--primary-color);
}

.playback-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.playback-icon span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quad {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q1 {
  background: #ffe589;
}

.q2 {
  background: #e599f7;
}

.q3 {
  background: #8ce99a;
}

.q4 {
  background: #74c0fc;
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.cta-content {
  text-align: left;
  max-width: 800px;
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--text-heading);
  text-transform: uppercase;
}

.cta-content p {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======================================
   FOOTER
   ====================================== */
footer {
  padding: 100px 0 60px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-name {
  display: none; /* Keep it minimalist with just the logo */
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.copyright {
  font-family: var(--font-mono);
  color: var(--text-muted);
  opacity: 0.5;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
}

/* ======================================
   RESPONSIVE
   ====================================== */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .feature-grid.cols-4,
  .feature-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 56px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .card-visual,
  .card-visual-top {
    height: auto; /* Remove fixed height to respect aspect-ratio */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Hero Section */
  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: 1px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
  }

  .hero-device {
    max-width: 280px;
  }

  /* Navbar */
  .navbar {
    padding: 12px 0;
  }

  .logo {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .btn-small {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Sections */
  .feature-section {
    padding: 80px 0;
  }

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

  .section-header h2 {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .section-header p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Feature Grid */
  .feature-grid {
    gap: 20px;
  }

  .feature-grid.cols-4,
  .feature-grid.cols-3,
  .feature-grid.cols-2-large {
    grid-template-columns: 1fr;
  }

  /* Feature Cards */
  .feature-card {
    padding: 24px;
  }

  .card-visual,
  .card-visual-top {
    height: auto; /* Respect aspect-ratio */
    margin-bottom: 20px;
  }

  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Playback Quad */
  .playback-quad {
    width: 90px;
    height: 90px;
  }

  /* CTA Section */
  .cta-section {
    padding: 90px 0;
  }

  .cta-content h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .btn-large {
    padding: 16px 36px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 50px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-name {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .copyright {
    font-size: 11px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: 0.5px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .section-header p {
    font-size: 14px;
  }

  .card-visual,
  .card-visual-top {
    height: auto; /* Respect aspect-ratio */
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* ======================================
   IMAGE MODAL
   ====================================== */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98); /* Increased opacity since blur is removed */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
  padding: 40px;
}

.image-modal.active {
  opacity: 1;
  pointer-events: all;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  /* Removed box-shadow for performance */
  /* box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); */

  /* Use translateZ to force GPU layer, no scale animation for GIFs */
  transform: translateZ(0);
  will-change: opacity;
}

.image-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5); /* Darker background for visibility */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 28px;
  z-index: 10000; /* Ensure on top */
  /* Remove transition to feel instant */
  /* transition: all 0.2s; */
}

.image-modal-close:hover {
  background: var(--primary-color);
  color: black;
  border-color: var(--primary-color);
}

/* Add cursor pointer to zoomable images */
.card-visual img,
.card-visual-top img,
.hero-screenshot {
  cursor: zoom-in;
}

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: #000;
}

/* =
=====================================
   SIMPLE LEGAL PAGES (Terms, Privacy, Support)
   ====================================== */
.legal-page {
  padding: 140px 0 80px;
  min-height: 80vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--text-heading);
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-body {
  color: var(--text-body);
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-heading);
}

.legal-body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.legal-body p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body p.highlight {
  background: rgba(255, 95, 0, 0.08);
  border-left: 3px solid var(--primary-color);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.legal-body li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.legal-body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.legal-body a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-body a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.legal-body strong {
  font-weight: 600;
  color: var(--text-heading);
}

.legal-body .btn {
  margin: 24px 0;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }

  .legal-header h1 {
    font-size: 36px;
  }

  .legal-body h2 {
    font-size: 20px;
    margin-top: 36px;
  }

  .legal-body h3 {
    font-size: 15px;
  }

  .legal-body p,
  .legal-body li {
    font-size: 14px;
  }
}

/* =
=====================================
   LEGACY LEGAL & SUPPORT PAGES (keeping for backwards compatibility)
   ====================================== */
.page-content {
  padding: 160px 0 80px;
  min-height: 80vh;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--text-heading);
}

.page-header p {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid var(--border-color);
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--text-heading);
}

.legal-section p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-section li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.legal-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
}

.legal-section li strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Support Page */
.support-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-color);
}

.support-card h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 32px;
  text-transform: uppercase;
  color: var(--text-heading);
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-heading);
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--primary-color);
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  margin-top: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Contact Card */
.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-card .btn {
  width: 100%;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 1px;
}

.contact-info {
  text-align: left;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.contact-info p {
  font-family: var(--font-mono);
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-body);
}

.contact-info strong {
  color: var(--text-heading);
  font-weight: 700;
}

/* Mono Text for Document Headers */
.mono-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Highlight Section */
.highlight-section {
  background: rgba(255, 95, 0, 0.08);
  border: 1px solid rgba(255, 95, 0, 0.2);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 48px;
}

.highlight-section h2 {
  color: var(--primary-color);
}

/* Legal Section Sub-headers */
.legal-section h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* Support Page Enhanced Styles */
.support-tips {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.support-tips h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.support-tips p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 12px;
}

.support-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-tips li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 16px;
  margin-bottom: 8px;
  position: relative;
}

.support-tips li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Beta Card */
.beta-card {
  grid-column: span 1;
}

.beta-info {
  margin-top: 24px;
}

.beta-info h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.beta-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.beta-info li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-body);
  padding-left: 16px;
  margin-bottom: 8px;
  position: relative;
}

.beta-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.beta-info li strong {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beta-info p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Links Card */
.links-card {
  grid-column: span 2;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quick-link:hover {
  background: rgba(255, 95, 0, 0.08);
  border-color: var(--primary-color);
}

.link-icon {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.link-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.quick-link:hover .link-text {
  color: var(--text-heading);
}

/* Support Grid Full Width */
.support-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .links-card {
    grid-column: span 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-content {
    padding: 120px 0 60px;
  }

  .page-header {
    margin-bottom: 48px;
  }

  .page-header h1 {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .page-header p {
    font-size: 10px;
  }

  .legal-content {
    padding: 40px 28px;
    border-radius: var(--radius-md);
  }

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

  .legal-section h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 14px;
    line-height: 1.8;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-card {
    padding: 36px 28px;
  }

  .support-card h2 {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .faq-item {
    padding: 22px 0;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-info p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 34px;
  }

  .legal-content {
    padding: 32px 20px;
  }

  .support-card {
    padding: 28px 20px;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .support-card h2 {
    font-size: 24px;
  }
}
