/* ==========================================================================
   TEEKHA CHUTNEY — REFINED DESIGN SYSTEM & STYLESHEET
   Clean Edges, Hardware-Grade Components, High-Voltage Polish
   ========================================================================== */

:root {
  /* Dynamic Heat Tokens (Level 3: Kolhapuri Default) */
  --heat-color: #FF3D00;
  --heat-color-bright: #FF6E40;
  --heat-color-dark: #C41C00;
  --heat-glow: rgba(255, 61, 0, 0.25);
  --heat-glow-soft: rgba(255, 61, 0, 0.08);
  --border-heat: rgba(255, 61, 0, 0.4);

  /* Core Dark Palette */
  --bg-primary: #0C0A09;
  --bg-surface: #151210;
  --bg-surface-elevated: #1F1A17;
  --bg-surface-glass: rgba(21, 18, 16, 0.7);
  --text-primary: #F5F3EF;
  --text-secondary: #A8A29E;
  --text-muted: #78716C;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-subtle-hover: rgba(255, 255, 255, 0.16);

  /* Accents */
  --chili-green: #22C55E;
  --turmeric-gold: #F59E0B;

  /* Typography */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-impact: 'Bebas Neue', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Easing */
  --trans-fast: 0.16s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-theme: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Heat Level 1: Sookha Mild */
body[data-heat="1"] {
  --heat-color: #F59E0B;
  --heat-color-bright: #FBBF24;
  --heat-color-dark: #B45309;
  --heat-glow: rgba(245, 158, 11, 0.22);
  --heat-glow-soft: rgba(245, 158, 11, 0.06);
  --border-heat: rgba(245, 158, 11, 0.35);
}

/* Heat Level 2: Desi Mirch */
body[data-heat="2"] {
  --heat-color: #FB923C;
  --heat-color-bright: #FDBA74;
  --heat-color-dark: #C2410C;
  --heat-glow: rgba(251, 146, 60, 0.24);
  --heat-glow-soft: rgba(251, 146, 60, 0.08);
  --border-heat: rgba(251, 146, 60, 0.4);
}

/* Heat Level 3: Kolhapuri Rocket */
body[data-heat="3"] {
  --heat-color: #FF3D00;
  --heat-color-bright: #FF6E40;
  --heat-color-dark: #C41C00;
  --heat-glow: rgba(255, 61, 0, 0.28);
  --heat-glow-soft: rgba(255, 61, 0, 0.09);
  --border-heat: rgba(255, 61, 0, 0.45);
}

/* Heat Level 4: Bhoot Jolokia Nuclear */
body[data-heat="4"] {
  --heat-color: #E11D48;
  --heat-color-bright: #FB7185;
  --heat-color-dark: #9F1239;
  --heat-glow: rgba(225, 29, 72, 0.35);
  --heat-glow-soft: rgba(225, 29, 72, 0.12);
  --border-heat: rgba(225, 29, 72, 0.55);
}

/* ==========================================================================
   RESET & SETUP
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color var(--trans-theme);
}

/* Tactile Grain Overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Ambient Radial Heat Aura */
.heat-aura {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--heat-glow) 0%, rgba(12, 10, 9, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transition: background var(--trans-theme);
  opacity: 0.85;
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker-wrap {
  width: 100%;
  background: #110E0C;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  position: relative;
  z-index: 10;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 1.8rem;
  animation: tickerSlide 28s linear infinite;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   CONTAINER & NAVIGATION
   ========================================================================== */
.page-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 6px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  transition: border-color var(--trans-fast);
}

.hindi-mark {
  color: var(--heat-color);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--trans-theme);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--chili-green);
  box-shadow: 0 0 8px var(--chili-green);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.status-text {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sound-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.sound-pill:hover {
  border-color: var(--heat-color);
  color: var(--text-primary);
}

.sound-pill.active {
  background: var(--heat-color);
  color: #FFFFFF;
  border-color: var(--heat-color);
}

.domain-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   HERO STAGE
   ========================================================================== */
.hero-section {
  padding: 3.5rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-heat);
  color: var(--heat-color);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all var(--trans-theme);
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--heat-color);
  transition: background var(--trans-theme);
}

.scoville-display {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hero-title-stack {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.75rem;
}

.main-title {
  font-family: var(--font-impact);
  font-size: clamp(4.5rem, 13vw, 9.8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
}

.title-teekha {
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.title-chutney {
  color: var(--heat-color);
  position: relative;
  transition: color var(--trans-theme);
  text-shadow: 0 0 35px var(--heat-glow);
}

.chili-accent {
  display: inline-block;
  font-size: 0.65em;
  vertical-align: middle;
  margin-left: 0.1em;
  transform-origin: center bottom;
  animation: chiliWobble 4s ease-in-out infinite;
}

@keyframes chiliWobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* Floating Batch Tag (Clean, Sharp replacement for awkward stamp) */
.batch-floating-tag {
  position: absolute;
  top: -10px;
  right: -60px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-heat);
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: border-color var(--trans-theme);
  transform: rotate(4deg);
}

.tag-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--heat-color);
  letter-spacing: 0.08em;
  transition: color var(--trans-theme);
}

.tag-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
}

.hero-manifesto {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

/* ==========================================================================
   SCOVILLE REGULATOR (CLEAN COMPONENT DESIGN)
   ========================================================================== */
.regulator-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: border-color var(--trans-theme);
}

.regulator-box:hover {
  border-color: var(--border-heat);
}

.regulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.reg-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.reg-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.heat-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--heat-color);
  letter-spacing: 0.04em;
  transition: color var(--trans-theme);
}

.heat-meter-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-heat);
  color: var(--heat-color);
  padding: 4px 10px;
  border-radius: 6px;
  transition: all var(--trans-theme);
}

.slider-container {
  margin-bottom: 1.5rem;
}

.slider-track-wrap {
  padding: 0.5rem 0;
}

input[type="range"]#heatSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #26201D;
  outline: none;
  cursor: pointer;
  transition: background var(--trans-smooth);
}

input[type="range"]#heatSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--heat-color);
  box-shadow: 0 0 14px var(--heat-glow), 0 0 0 3px rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform var(--trans-fast), background var(--trans-theme);
}

input[type="range"]#heatSlider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.slider-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.tick-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 9px 8px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  transition: all var(--trans-fast);
}

.tick-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background var(--trans-fast);
}

.tick-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-subtle-hover);
}

.tick-btn.active {
  background: #251D19;
  border-color: var(--heat-color);
  color: var(--heat-color);
  font-weight: 700;
}

.tick-btn.active .tick-dot {
  background: var(--heat-color);
  box-shadow: 0 0 6px var(--heat-color);
}

.spice-quote-card {
  background: var(--bg-primary);
  border-left: 3px solid var(--heat-color);
  padding: 0.9rem 1.25rem;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  transition: border-color var(--trans-theme);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 0.9;
  color: var(--heat-color);
  transition: color var(--trans-theme);
}

.spice-quote-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  transition: opacity var(--trans-fast);
}

/* ==========================================================================
   ACCESS FORM WRAPPER (CLEAN EDGES)
   ========================================================================== */
.access-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.sub-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--heat-color);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.35rem;
}

.form-instruction h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-instruction p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.early-access-form {
  margin-bottom: 1.25rem;
}

.input-group {
  display: flex;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 5px;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.input-group:focus-within {
  border-color: var(--heat-color);
  box-shadow: 0 0 0 3px var(--heat-glow);
}

.input-group input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.input-group input[type="email"]::placeholder {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--heat-color);
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 11px 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform var(--trans-fast), background var(--trans-theme), box-shadow var(--trans-fast);
  white-space: nowrap;
}

.submit-btn:hover {
  background: var(--heat-color-bright);
  transform: translateX(1px);
  box-shadow: 0 4px 14px var(--heat-glow);
}

.submit-btn:active {
  transform: scale(0.98);
}

.form-feedback {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  min-height: 20px;
}

.form-feedback.success {
  color: var(--chili-green);
}

.form-feedback.error {
  color: #F87171;
}

.form-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-subtle);
  padding-top: 1rem;
}

.form-stats strong {
  color: var(--heat-color);
}

/* ==========================================================================
   DOSSIER SECTION (CLEAN CARDS WITH TOP ACCENT LINES)
   ========================================================================== */
.dossier-section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.dossier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.d-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dossier-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--heat-color);
  letter-spacing: 0.12em;
}

.dossier-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0.01em;
}

.dossier-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text-muted);
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dossier-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-fast), border-color var(--trans-smooth);
}

.card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--heat-color);
  opacity: 0.4;
  transition: opacity var(--trans-fast), background var(--trans-theme);
}

.dossier-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-heat);
}

.dossier-card:hover .card-top-line {
  opacity: 1;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--heat-color);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.dossier-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.35;
}

.dossier-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   HOT TAKE GENERATOR
   ========================================================================== */
.generator-section {
  padding: 4.5rem 0 3.5rem;
}

.gen-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.gen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.9rem;
}

.gen-tag-group {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.gen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--heat-color);
}

.gen-tag {
  color: var(--heat-color);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.gen-sub {
  color: var(--text-muted);
}

.gen-content {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.gen-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--text-primary);
  line-height: 1.45;
  transition: opacity var(--trans-fast);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.secondary-btn:hover {
  background: var(--heat-color);
  color: #FFF;
  border-color: var(--heat-color);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-logo {
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.footer-copy {
  color: var(--text-muted);
}

.footer-credits {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer-credits strong {
  color: var(--text-primary);
}

.heart-pulse {
  display: inline-block;
  animation: heartBeat 1.8s infinite ease-in-out;
  transform-origin: center;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.18); }
}

.credit-link {
  color: var(--heat-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: color var(--trans-fast), opacity var(--trans-fast);
}

.credit-link:hover {
  opacity: 0.85;
  color: var(--heat-color-bright);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-link {
  color: var(--heat-color);
  text-decoration: none;
  transition: opacity var(--trans-fast);
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-link-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  cursor: pointer;
  transition: color var(--trans-fast);
}

.footer-link-btn:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 768px) {
  .page-container {
    padding: 0 1.25rem 3.5rem;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
  }

  .nav-controls {
    width: 100%;
    justify-content: space-between;
  }

  .batch-floating-tag {
    display: none;
  }

  .input-group {
    flex-direction: column;
    gap: 0.5rem;
    padding: 6px;
  }

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

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

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