/* ==========================================================================
   Ballpark Score - Modern Wear OS Landing Page Design System
   Developer: ExplrLabs
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #080C14;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(31, 41, 55, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(59, 130, 246, 0.4);

  /* Brand & Accent Colors */
  --color-primary: #3B82F6;
  /* Electric Stadium Blue */
  --color-accent: #10B981;
  /* Ballpark Turf Green */
  --color-purple: #7C3AED;
  /* ExplrLabs Brand Purple */
  --color-gold: #F59E0B;
  /* Favorite Pin Gold */

  /* Gradients */
  --grad-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 50%, rgba(16, 185, 129, 0.1) 100%);
  --grad-accent: linear-gradient(135deg, #3B82F6 0%, #7C3AED 50%, #10B981 100%);
  --grad-text: linear-gradient(135deg, #FFFFFF 30%, #9CA3AF 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.25), transparent 70%);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-glow: 0 0 50px rgba(59, 130, 246, 0.25);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-watch: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(59, 130, 246, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: #F3F4F6;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(124, 58, 237, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(59, 130, 246, 0.15), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.12), transparent 50%),
    var(--bg-dark);
  min-height: 100vh;
}

/* Links & Buttons defaults */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Headings */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.section-badge i {
  font-size: 1rem;
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #9CA3AF;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.85rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
  transition: var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.brand-logo .logo-explr {
  background: linear-gradient(135deg, #818CF8 0%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.brand-logo .logo-labs {
  color: #FFFFFF;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #D1D5DB;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: #F3F4F6;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #FFFFFF;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.wear-os-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #D1D5DB;
}

.wear-os-badge svg {
  width: 24px;
  height: 24px;
  fill: #4285F4;
}

/* Watch Graphic Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(124, 58, 237, 0.2) 40%, transparent 70%);
  filter: blur(50px);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.watch-hero-container {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.watch-hero-frame {
  position: relative;
  width: 320px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatWatch 4s ease-in-out infinite alternate;
}

@keyframes floatWatch {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

.watch-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.85));
}

/* Floating feature pills around watch */
.hero-floating-pill {
  position: absolute;
  padding: 0.6rem 1.1rem;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 10;
  white-space: nowrap;
  animation: pillFloat 3.5s ease-in-out infinite alternate;
}

.pill-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.pill-2 {
  bottom: 20%;
  right: -25px;
  animation-delay: 1.5s;
}

.pill-3 {
  bottom: -10px;
  left: 20px;
  animation-delay: 0.75s;
}

@keyframes pillFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.pill-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pill-icon.green {
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.pill-icon.blue {
  background: #3B82F6;
  box-shadow: 0 0 10px #3B82F6;
}

.pill-icon.gold {
  background: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
}

/* ==========================================================================
   Interactive Showcase Section (4 Watch Screens)
   ========================================================================== */
.showcase-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.5) 50%, transparent 100%);
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: #9CA3AF;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: var(--grad-accent);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.showcase-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.showcase-preview-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.showcase-watch-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-watch));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.showcase-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-screen-num {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.showcase-screen-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.showcase-screen-desc {
  font-size: 1.05rem;
  color: #9CA3AF;
  line-height: 1.7;
}

.showcase-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.showcase-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #E5E7EB;
}

.showcase-feature-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Features Grid (7 Key Feature Areas)
   ========================================================================== */
.features-section {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0;
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--grad-accent);
  color: #FFFFFF;
  transform: scale(1.08);
}

.feature-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.feature-bullets {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.feature-bullets li {
  font-size: 0.875rem;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-bullets li i {
  color: var(--color-accent);
  font-size: 0.75rem;
}

/* ==========================================================================
   Wear OS Specs & Highlights Bar
   ========================================================================== */
.specs-section {
  padding: 4rem 0 6rem 0;
}

.specs-banner {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.spec-icon {
  font-size: 2.2rem;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spec-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

.spec-label {
  font-size: 0.875rem;
  color: #9CA3AF;
}

/* ==========================================================================
   Test Group CTA Section & Banner
   ========================================================================== */
.cta-section {
  padding: 6rem 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(124, 58, 237, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--grad-glow);
  pointer-events: none;
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.cta-desc {
  font-size: 1.15rem;
  color: #D1D5DB;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  z-index: 2;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
}

/* ==========================================================================
   Modal Dialog (Join Test Group)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #111827;
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-bounce);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #9CA3AF;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #FFFFFF;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 1.75rem;
  color: var(--color-accent);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: #9CA3AF;
}

.modal-steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.modal-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: var(--transition-fast);
}

.modal-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
  letter-spacing: 0.05em;
}

.step-badge.accent {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent);
  border-color: rgba(16, 185, 129, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.step-desc {
  font-size: 0.88rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.step-btn {
  width: 100%;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  padding: 0.7rem 1.25rem;
}

.modal-footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  text-align: center;
}

.modal-footer-note p {
  font-size: 0.82rem;
  color: #9CA3AF;
  line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-glass);
  background: #04070D;
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand .brand-logo {
  font-size: 1.5rem;
  align-self: flex-start;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #9CA3AF;
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
  color: #9CA3AF;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6B7280;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    margin: 0 auto;
  }

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

  .showcase-display {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

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

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

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

  .mobile-menu-toggle {
    display: block;
  }

  .hero-floating-pill {
    display: none;
  }

  .specs-banner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Privacy Policy & Document Page Styling
   ========================================================================== */
.policy-page {
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.policy-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.policy-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-content p {
  font-size: 1.05rem;
  color: #D1D5DB;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.policy-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.policy-content ul li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  color: #E5E7EB;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.policy-content ul li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.policy-content code {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93C5FD;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

.policy-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition-fast);
}

.policy-content a:hover {
  color: var(--color-accent);
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9CA3AF;
  transition: var(--transition-fast);
  margin-bottom: 1.5rem;
}

.back-home-btn:hover {
  color: #FFFFFF;
  transform: translateX(-4px);
}