/* ============================================================
   BATFAX — styles.css
   Design System: Deep Navy + Optic Yellow + Clean White
   Mobile-first responsive layout
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --navy:        #0A1628;
  --navy-mid:    #111f3a;
  --navy-light:  #1a2f50;
  --yellow:      #C8FF00;
  --yellow-dim:  #a8d400;
  --yellow-glow: rgba(200, 255, 0, 0.18);
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f0f2f5;
  --gray-200:    #e2e6ea;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --gray-700:    #374151;
  --red-miss:    #ef4444;

  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.18);

  --header-h:    140px;
  --transition:  0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Typography helpers ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dim);
  background: var(--yellow-glow);
  border: 1px solid rgba(200,255,0,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* Primary — Yellow CTA */
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: #d8ff20;
  box-shadow: 0 0 28px rgba(200,255,0,0.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost — transparent on dark */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Outline — for lighter backgrounds */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg  { font-size: 1rem;  padding: 14px 28px; }
.btn-sm  { font-size: 0.85rem; padding: 8px 18px; }
.btn-full { width: 100%; margin-top: 20px; padding: 14px 20px; font-size: 1rem; }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-bat { color: var(--white); }
.logo-fax { color: var(--yellow); }
.logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 2px;
  display: none;
}
.logo-img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 90px;
}

@media (min-width: 900px) {
  .logo-img { height: 144px; }
  .logo-img--footer { height: 105px; }
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.desktop-nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.desktop-nav a:not(.btn):hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open { max-height: 260px; }

.mobile-link {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), color var(--transition);
}
.mobile-link:hover { background: var(--navy-light); color: var(--white); }
.mobile-cta { color: var(--yellow) !important; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(200,255,0,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,255,0,0.12);
  border: 1px solid rgba(200,255,0,0.35);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  width: 100%;
}

.proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 24px 0 0;
}
.proof-item:first-child { padding-left: 0; }

.proof-number {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  margin: 0 24px 0 0;
  flex-shrink: 0;
}


/* ============================================================
   HEAVY LIFTING
   ============================================================ */
.heavy-lifting {
  background: var(--navy-mid);
  color: var(--white);
  padding: 80px 0;
}

.heavy-lifting .section-heading { color: var(--white); }
.heavy-lifting .section-sub { color: rgba(255,255,255,0.6); }

.lifting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.lifting-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), background var(--transition);
}
.lifting-card:hover {
  border-color: rgba(200,255,0,0.3);
  background: rgba(200,255,0,0.04);
}

.lifting-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.lifting-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.lifting-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Pipeline visualization */
.data-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  line-height: 1.4;
}
.pipeline-step .pipeline-icon { font-size: 1.5rem; margin-bottom: 6px; }
.pipeline-step.active {
  background: rgba(200,255,0,0.12);
  border: 1px solid rgba(200,255,0,0.3);
  color: var(--yellow);
}

.pipeline-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.25);
  padding: 0 4px;
}


/* ============================================================
   REPORTS / OFFERINGS
   ============================================================ */
.reports {
  background: var(--gray-50);
  padding: 80px 0;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.report-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.report-card--offense { border-top: 4px solid var(--navy); }
.report-card--defense { border-top: 4px solid var(--yellow-dim); }

.report-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.report-card-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.report-card-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.report-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.report-card-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gray-200);
}
.report-card--offense .stat-list li { border-left-color: var(--navy); }
.report-card--defense .stat-list li { border-left-color: var(--yellow-dim); }

.stat-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-abbr {
  font-weight: 500;
  color: var(--gray-400);
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--gray-600);
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--white);
  padding: 80px 0;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.step-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
}

.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--yellow-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.step-detail {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  font-style: italic;
}

.step-connector {
  font-size: 1.5rem;
  color: var(--gray-200);
  text-align: center;
  transform: rotate(90deg);
  line-height: 1;
  padding: 4px 0;
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}

.pricing .section-heading { color: var(--white); }
.pricing .section-sub { color: rgba(255,255,255,0.62); }
.pricing .section-sub strong { color: var(--yellow); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  color: var(--navy);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.pricing-card--featured {
  border: 3px solid var(--yellow);
  box-shadow: 0 0 40px rgba(200,255,0,0.25);
}

.pricing-card--tournament {
  border: 3px solid #f59e0b;
}

.pricing-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px 0;
}
.pricing-badge--gold { background: #f59e0b; color: var(--white); }

.pricing-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card--featured .pricing-card-header,
.pricing-card--tournament .pricing-card-header {
  padding-top: 44px;
}

.pricing-plan-name {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.pricing-amounts {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.pricing-original {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: line-through;
}
.pricing-current {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-period {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-card-body { padding: 20px 28px 28px; }

.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
}
.pricing-features li { display: flex; gap: 8px; align-items: flex-start; }
.pricing-features li:not(.feature-missing)::before { color: #22c55e; }

.feature-missing {
  color: var(--gray-400);
  text-decoration: line-through;
}

/* Pricing disclaimer */
.pricing-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  padding-top: 8px;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy-mid);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(200,255,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--white); transition: color var(--transition); }

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.footer-disclaimer {
  font-size: 0.7rem;
  margin-top: 4px;
}


/* ============================================================
   SAMPLE REPORT PREVIEW
   ============================================================ */
.sample-report {
  background: var(--navy-mid);
  padding: 80px 0;
  color: var(--white);
}

.sample-report .section-heading { color: var(--white); }
.sample-report .section-sub { color: rgba(255,255,255,0.6); }

.report-preview {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}

.preview-tab {
  flex: 1;
  min-width: 140px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
}
.preview-tab:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
}
.preview-tab.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
  background: rgba(200,255,0,0.05);
}

.preview-panels { padding: 0; }

.preview-panel { display: none; }
.preview-panel.active { display: block; }

.preview-frame {
  overflow-x: auto;
  background: #f0f4f8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 0;
}
.preview-frame img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.preview-caption {
  padding: 14px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-style: italic;
}
.preview-caption strong { color: var(--white); font-style: normal; }


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-100);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--navy);
}
.faq-question:hover { background: var(--gray-100); }
.faq-item[open] .faq-question { background: var(--gray-100); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--yellow-dim); }


/* ============================================================
   TABLET (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .lifting-grid {
    grid-template-columns: 1fr 1fr;
  }
  .report-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
  .steps-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .step-card { flex: 1; }
  .step-connector {
    transform: none;
    padding: 0;
    align-self: center;
    font-size: 1.5rem;
  }
}


/* ============================================================
   DESKTOP (900px+)
   ============================================================ */
@media (min-width: 900px) {
  :root { --header-h: 160px; }

  .hamburger { display: none; }
  .desktop-nav { display: flex; }
  .logo-tag { display: inline; }

  .hero { padding: 100px 0 112px; }

  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pricing-grid > :last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-links { justify-content: flex-start; }
}


/* ============================================================
   ACCESSIBILITY — reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
