/* FlowState Page Sections - Complete Responsive Specification */

/* ==========================================================================
   1. NAVIGATION BAR
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(246, 242, 236, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background-color: rgba(246, 242, 236, 0.98);
  border-bottom-color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.5px;
  user-select: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-drawer-actions {
  display: none;
}

/* Tactical Neo-Brutalist Hamburger Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--paper-raised);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0px var(--ink);
  cursor: pointer;
  z-index: 1002;
  box-sizing: border-box;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--ink);
  margin: 2.5px 0;
  border-radius: 1px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  transform-origin: center;
}

.site-nav.menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-nav.menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
  color: var(--ink);
  word-break: break-word;
}

.hero-headline .italic {
  font-style: italic;
  display: block;
}

.hero-subhead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
  word-break: normal;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Hero Waveform Canvas Card */
.hero-visual-card {
  background: var(--paper-raised);
  border: var(--border);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius-card);
  padding: 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.visual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 16px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00D084;
  box-shadow: 0 0 8px rgba(0, 208, 132, 0.6);
  animation: pulseDot 2s infinite ease-in-out;
  flex-shrink: 0;
}

.waveform-canvas-container {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--paper-alt);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

#waveform-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.visual-card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  font-size: 18px;
  animation: bounceDown 1.8s infinite ease-in-out;
}

/* ==========================================================================
   3. SOCIAL PROOF TICKER
   ========================================================================== */
.proof-ticker-band {
  background-color: var(--ink);
  color: var(--paper);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  will-change: transform;
  animation: tickerLoop 24s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}

.ticker-item .diamond {
  color: var(--lime);
}

/* ==========================================================================
   4. FEATURES BENTO GRID
   ========================================================================== */
.features-section {
  padding: 100px 0 80px;
  box-sizing: border-box;
}

.section-header-wrap {
  margin-bottom: 48px;
}

.heading-accent-bar {
  width: 56px;
  height: 5px;
  background-color: var(--lime);
  border: 1.5px solid var(--ink);
  margin-top: 12px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.bento-card-large { grid-column: span 8; }
.bento-card-small { grid-column: span 4; }
.bento-card-third { grid-column: span 4; }

.bento-card-tall {
  grid-column: span 4;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hotkey-preview-widget {
  margin-top: 20px;
  background: var(--paper-alt);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}

.hotkey-live-keys {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hotkey-animated-key {
  animation: keyTap 4s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

.simulation-bar {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.simulation-fill {
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--orange));
  animation: barProgress 4s infinite ease-in-out;
}

.transform-preview-box {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.speech-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink);
  word-break: break-word;
}

.speech-bubble.raw {
  background: var(--paper-alt);
  color: var(--muted);
  font-style: italic;
}

.speech-bubble.cleaned {
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 2px 2px 0px var(--ink);
}

.screen-pointer-mock {
  margin-top: 18px;
  height: 100px;
  background: var(--paper-alt);
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.target-reticle {
  width: 46px;
  height: 46px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  position: relative;
  animation: reticlePulse 2.5s infinite ease-in-out;
}

.target-reticle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.app-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.app-badge-item {
  background: var(--paper-alt);
  border: 1.5px solid var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

/* ==========================================================================
   5. HOW IT WORKS
   ========================================================================== */
.workflow-section {
  padding: 100px 0;
  background-color: var(--paper-alt);
  border-top: var(--border);
  border-bottom: var(--border);
  box-sizing: border-box;
}

.steps-flow-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  width: 100%;
  box-sizing: border-box;
}

.step-card {
  background: var(--paper-raised);
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-lift);
  box-sizing: border-box;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 16px;
}

.step-card:nth-child(1) .step-number { color: var(--lime); }
.step-card:nth-child(2) .step-number { color: var(--orange); }
.step-card:nth-child(3) .step-number { color: var(--pink); }

.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.step-card-visual {
  margin-top: 20px;
  padding: 14px;
  background: var(--paper-alt);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* ==========================================================================
   6. ARCHITECTURE TABLE & STATS
   ========================================================================== */
.architecture-section {
  padding: 100px 0;
  background-color: var(--gradient-dark);
  color: var(--paper);
  box-sizing: border-box;
}

.architecture-section .section-label { color: #8C8780; }
.architecture-section .section-heading { color: var(--paper); }
.architecture-section .section-subheading { color: #B5AFA6; }

.tech-table-wrap {
  margin: 48px 0 60px;
  border: 2px solid var(--gradient-dark-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  width: 100%;
  box-sizing: border-box;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tech-table th {
  background: #151515;
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8C8780;
  border-bottom: 2px solid var(--gradient-dark-border);
}

.tech-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gradient-dark-border);
  font-size: 15px;
}

.tech-table tr {
  background: var(--gradient-dark-surface);
  transition: background-color 0.2s ease;
}

.tech-table tr:hover { background: #202020; }

.tech-table tr td:first-child {
  border-left: 4px solid var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--paper);
  white-space: nowrap;
}

.tech-table code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime);
  background: rgba(214, 255, 56, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(214, 255, 56, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--gradient-dark-border);
  padding-top: 48px;
  width: 100%;
  box-sizing: border-box;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--gradient-dark-surface);
  border: 1.5px solid var(--gradient-dark-border);
  border-radius: var(--radius);
  box-sizing: border-box;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 8px;
}

.stat-number.accent { color: var(--lime); }

.stat-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #B5AFA6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   7. PRIVACY MANIFESTO
   ========================================================================== */
.manifesto-section {
  padding: 100px 0;
  background-color: var(--gradient-dark);
  border-top: 1px solid var(--gradient-dark-border);
  text-align: center;
  box-sizing: border-box;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--paper);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 32px;
  word-break: normal;
}

.manifesto-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   8. DOWNLOAD CTA
   ========================================================================== */
.download-section {
  padding: 100px 0;
  background-color: var(--paper);
  text-align: center;
  box-sizing: border-box;
}

.download-box {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.download-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.download-subhead {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
}

.download-btn-giant {
  padding: 20px 44px;
  font-size: 17px;
  letter-spacing: 0.8px;
}

.download-meta-info {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.download-links-sub { margin-top: 24px; }

.github-link-underlined {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}

.github-link-underlined::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--lime);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--ink);
  color: var(--paper);
  border-top: var(--border);
  padding: 32px 0;
  box-sizing: border-box;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
}

.footer-copy {
  font-size: 13px;
  color: #B5AFA6;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #B5AFA6;
}

.footer-links a:hover { color: var(--lime); }


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES & MOBILE BREAKPOINTS
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual-card {
    max-width: 580px;
    margin: 0 auto;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .bento-card-large { grid-column: span 2; }
  .bento-card-small, .bento-card-third { grid-column: span 1; }
  .bento-card-tall {
    grid-column: span 2;
    grid-row: auto;
  }
  .steps-flow-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Mobile Devices (< 768px) */
@media (max-width: 768px) {
  /* Navigation & Mobile Fullscreen Drawer */
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }

  .site-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background-color: var(--paper);
    padding: 24px 20px 40px;
    border-top: 1px solid var(--line);
    border-bottom: var(--border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    gap: 14px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
    box-sizing: border-box;
  }

  .site-nav.menu-open .nav-link {
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .mobile-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
    padding-top: 6px;
  }

  .mobile-drawer-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 13px;
  }

  /* Hero Section */
  .hero-section {
    padding: 32px 0 24px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(34px, 9.5vw, 48px);
    line-height: 1.04;
    margin: 12px 0 16px;
  }

  .hero-subhead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .hero-cta-group {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    font-size: 14px;
    padding: 14px 16px;
    box-sizing: border-box;
  }

  .hero-visual-card {
    padding: 14px;
    border-radius: var(--radius);
    max-width: 100%;
  }

  .waveform-canvas-container {
    height: 160px;
  }

  .hud-mode-group {
    display: flex;
    width: 100%;
    gap: 6px;
  }

  .hud-mode-btn {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    font-size: 10px;
    box-sizing: border-box;
  }

  /* Bento Grid */
  .features-section {
    padding: 60px 0;
  }

  .section-header-wrap {
    margin-bottom: 30px;
  }

  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hotkey-preview-widget {
    padding: 14px;
    margin-top: 14px;
  }

  .hotkey-live-keys {
    gap: 6px;
  }

  .hotkey-live-keys .chip {
    margin-left: 0 !important;
    margin-top: 4px;
    width: 100%;
    justify-content: center;
  }

  /* Steps Flow */
  .workflow-section {
    padding: 60px 0;
  }

  .steps-flow-container {
    margin-top: 30px;
    gap: 16px;
  }

  .step-card {
    padding: 22px 18px;
  }

  .step-number {
    font-size: 44px;
    margin-bottom: 10px;
  }

  .step-title { font-size: 20px; }
  .step-desc { font-size: 14px; }

  /* Architecture Table: Complete Native Conversion to Tactile Cards */
  .architecture-section {
    padding: 60px 0;
  }

  .tech-table-wrap {
    margin: 30px 0 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .tech-table,
  .tech-table tbody {
    display: block !important;
    width: 100% !important;
  }

  .tech-table thead {
    display: none !important;
  }

  .tech-table tr {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
    padding: 16px !important;
    background: var(--gradient-dark-surface) !important;
    border: 1.5px solid var(--gradient-dark-border) !important;
    border-radius: var(--radius-card) !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .tech-table td {
    display: block !important;
    padding: 0 !important;
    border: none !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .tech-table tr td:first-child {
    border-left: none !important;
    font-size: 17px !important;
    color: var(--lime) !important;
    font-family: var(--font-display) !important;
  }

  .tech-table code {
    display: inline-block !important;
    font-size: 12px !important;
    padding: 3px 6px !important;
  }

  .stats-grid {
    padding-top: 32px;
    gap: 14px;
  }

  .stat-item {
    padding: 18px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Privacy Manifesto */
  .manifesto-section {
    padding: 70px 0;
  }

  .manifesto-quote {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 20px;
  }

  .manifesto-chips {
    gap: 8px;
  }

  .manifesto-chips .chip {
    font-size: 10px;
    padding: 6px 10px;
  }

  /* Download CTA */
  .download-section {
    padding: 70px 0;
  }

  .download-heading {
    font-size: clamp(30px, 8vw, 40px);
  }

  .download-subhead {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .download-btn-giant {
    padding: 16px 16px !important;
    font-size: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
  }

  /* Footer */
  .site-footer {
    padding: 24px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}
