/* ===========================
   Tranquir Website Styles
   =========================== */

/* CSS Variables */
:root {
  /* Colors from app */
  --celestial-indigo: #2C2E6C;
  --cosmic-violet: #7C4DFF;
  --auric-gold: #D4A857;
  --soft-nebula-pink: #F0A3CE;
  --deep-space: #050510;
  --dark-indigo: #0A0A1A;
  --card-background: #12122A;
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8D0;
  --text-muted: #6B6B8C;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ===========================
   Coming Soon Banner
   =========================== */
.coming-soon-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--cosmic-violet), var(--auric-gold));
  color: var(--text-primary);
  text-align: center;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.coming-soon-icon {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.coming-soon-cta {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: all 0.3s ease;
}

.coming-soon-cta:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--deep-space);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
  background: linear-gradient(135deg, var(--cosmic-violet), var(--auric-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   Navigation
   =========================== */
.nav {
  position: fixed;
  top: 40px; /* Account for coming soon bar */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 77, 255, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--text-primary), var(--auric-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.nav-cta {
  background: var(--cosmic-violet);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  color: var(--text-primary) !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--auric-gold);
  transform: translateY(-2px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 var(--space-xxl); /* Extra padding for coming soon bar */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--cosmic-violet);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--celestial-indigo);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--auric-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 10px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(124, 77, 255, 0.2);
  border: 1px solid rgba(124, 77, 255, 0.3);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--cosmic-violet);
  margin-bottom: var(--space-md);
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--cosmic-violet);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: #9a6fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--auric-gold);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Phone mockup */
.hero-phone {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--deep-space);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-app-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ===========================
   Sections
   =========================== */
.section {
  padding: var(--space-xxl) 0;
}

.section-dark {
  background: var(--dark-indigo);
}

.section-gradient {
  background: linear-gradient(180deg, var(--deep-space) 0%, var(--celestial-indigo) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-badge {
  display: inline-block;
  background: rgba(212, 168, 87, 0.2);
  border: 1px solid rgba(212, 168, 87, 0.3);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--auric-gold);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ===========================
   Info Cards (What are frequencies)
   =========================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.info-card {
  background: var(--card-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(124, 77, 255, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(124, 77, 255, 0.3);
  transform: translateY(-5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(124, 77, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cosmic-violet);
}

.info-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   Features
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--card-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(124, 77, 255, 0.3);
  transform: translateY(-5px);
}

.feature-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(44, 46, 108, 0.2));
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.frequency-wave {
  width: 100%;
  height: 80px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      var(--cosmic-violet) 2px,
      var(--cosmic-violet) 4px
    );
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25 Q25 0 50 25 T100 25 T150 25 T200 25' stroke='black' fill='none' stroke-width='3'/%3E%3C/svg%3E");
  mask-size: 100px 50px;
  animation: wave 2s linear infinite;
}

@keyframes wave {
  0% { mask-position: 0 0; }
  100% { mask-position: 100px 0; }
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-badge {
  display: inline-block;
  background: var(--cosmic-violet);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon-violet {
  background: rgba(124, 77, 255, 0.2);
}
.feature-icon-violet svg { stroke: var(--cosmic-violet); }

.feature-icon-gold {
  background: rgba(212, 168, 87, 0.2);
}
.feature-icon-gold svg { stroke: var(--auric-gold); }

.feature-icon-pink {
  background: rgba(240, 163, 206, 0.2);
}
.feature-icon-pink svg { stroke: var(--soft-nebula-pink); }

.feature-icon-indigo {
  background: rgba(44, 46, 108, 0.3);
}
.feature-icon-indigo svg { stroke: #8b8fd1; }

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   Frequencies
   =========================== */
.frequency-category {
  margin-bottom: var(--space-xl);
}

.frequency-category-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.frequency-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.frequency-dot-violet { background: var(--cosmic-violet); }
.frequency-dot-indigo { background: var(--celestial-indigo); }
.frequency-dot-gold { background: var(--auric-gold); }

.frequency-category-desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  padding-left: calc(12px + var(--space-sm));
}

.frequency-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.freq-card {
  background: var(--card-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.freq-card:hover {
  border-color: rgba(124, 77, 255, 0.3);
  transform: translateY(-3px);
}

.freq-card-featured {
  border-color: var(--auric-gold);
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.1), var(--card-background));
}

.freq-featured-badge {
  position: absolute;
  top: -10px;
  right: var(--space-md);
  background: var(--auric-gold);
  color: var(--deep-space);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.freq-hz {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cosmic-violet);
  margin-bottom: 4px;
}

.freq-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.freq-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.freq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.freq-tag {
  background: rgba(124, 77, 255, 0.15);
  color: var(--cosmic-violet);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

/* ===========================
   Science
   =========================== */
.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.science-card {
  background: var(--card-background);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.science-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 168, 87, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.science-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--auric-gold);
}

.science-card h3 {
  margin-bottom: var(--space-sm);
}

.science-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.science-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===========================
   Benefits
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--auric-gold);
}

.benefit-item h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   Steps
   =========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.step-card {
  text-align: center;
  padding: var(--space-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cosmic-violet), var(--celestial-indigo));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   CTA Section
   =========================== */
.section-cta {
  background: linear-gradient(180deg, var(--celestial-indigo) 0%, var(--deep-space) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.store-button {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--text-primary);
  color: var(--deep-space);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-label {
  font-size: 0.7rem;
  opacity: 0.8;
}

.store-name {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Waitlist Form */
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cosmic-violet), var(--auric-gold));
  color: var(--text-primary);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

.waitlist-input-group {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.waitlist-input {
  flex: 1;
  padding: var(--space-md);
  border: 2px solid rgba(124, 77, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--cosmic-violet);
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.waitlist-button {
  padding: var(--space-md) var(--space-xl);
  background: var(--auric-gold);
  color: var(--deep-space);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.waitlist-button:hover {
  background: #e5b968;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 168, 87, 0.3);
}

.waitlist-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.waitlist-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xxl);
  margin-bottom: var(--space-xl);
}

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

.waitlist-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--auric-gold);
}

.waitlist-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cta-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--auric-gold);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--dark-indigo);
  padding: var(--space-xxl) 0 var(--space-lg);
  border-top: 1px solid rgba(124, 77, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.footer-tagline {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--card-background);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--cosmic-violet);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
}

.footer-social a:hover svg {
  fill: var(--text-primary);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-jonkai {
  height: 30px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-jonkai:hover {
  opacity: 1;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .hero-phone {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .feature-card-large {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 160px; /* Account for nav + coming soon bar */
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .feature-visual {
    order: -1;
    min-height: 150px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .coming-soon-bar {
    font-size: 0.8rem;
    padding: var(--space-xs);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .waitlist-input-group {
    flex-direction: column;
  }

  .waitlist-button {
    width: 100%;
  }

  .waitlist-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }
}
