/* ========================================================
   BinDay Official Website — Friendly & Cozy Kitchen Theme
   Clean, Warm, Non-Robotic, Human-Centric Design
   ======================================================== */

:root {
  /* Warm Morning Kitchen Palette */
  --bg-warm: #FAF8F5;
  --bg-warm-secondary: #F3EFEA;
  --bg-card: #FFFFFF;
  --border-soft: rgba(0, 0, 0, 0.07);
  --border-focus: rgba(22, 163, 74, 0.4);

  /* Typography */
  --text-main: #1E293B;
  --text-body: #475569;
  --text-muted: #64748B;

  /* Friendly Accent Colors */
  --green-main: #16A34A;
  --green-hover: #15803D;
  --green-soft: #EBFBF0;
  --amber-main: #D97706;
  --amber-soft: #FEF3C7;

  /* E-Paper Display Palette */
  --epd-paper: #E1E6EA;
  --epd-ink: #111417;
  --epd-font: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max-width: 1140px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 9999px;
  --shadow-soft: 0 10px 30px rgba(30, 41, 59, 0.04);
  --shadow-card: 0 14px 35px rgba(30, 41, 59, 0.06);
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #F0FDF4 0%, #FAF8F5 55%);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-2xl { max-width: 780px; }
.text-center { text-align: center; }

/* Friendly Typography */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-main);
  background: var(--green-soft);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Friendly Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.45rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--green-main);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.38);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
  background: #F8FAFC;
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}

.btn-audio {
  background: var(--amber-soft);
  color: #B45309;
  border: 1px solid rgba(217, 119, 6, 0.2);
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
}

.btn-audio:hover {
  background: #FDE68A;
  transform: translateY(-1px);
}

.btn-audio.active-pulse {
  animation: audioPulse 0.5s ease;
}

@keyframes audioPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 0 14px rgba(217, 119, 6, 0.35); }
  100% { transform: scale(1); }
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.86rem;
}

.btn-lg {
  padding: 0.95rem 1.95rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==================== STICKY NAV ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-mark-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform 0.2s ease;
}

.brand-mark-img:hover {
  transform: scale(1.06);
}

.brand-name {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #111417;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--green-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.friendly-badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-main);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
}

.hero-highlight {
  color: var(--green-main);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Friendly Pill Chips */
.friendly-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pill-chip {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-reassurance {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==================== HERO PRODUCT RENDER ==================== */
.hero-hardware {
  position: relative;
}

.hero-product-render {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14), 0 6px 20px rgba(0, 0, 0, 0.06);
  line-height: 0; /* remove gap below img */
}

.hero-render-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ==================== PRODUCT GALLERY SECTION ==================== */
.gallery-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  position: relative;
  background: #111;
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item-large {
  grid-row: span 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ==================== INTERACTIVE SIMULATOR SECTION ==================== */
.simulator-section {
  padding: 5rem 0;
}

.simulator-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.simulator-wrapper .device-chassis {
  flex-shrink: 0;
  width: min(420px, 100%);
}

.simulator-wrapper .simulator-controls {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-large { grid-row: span 1; }

  .simulator-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .simulator-wrapper .simulator-controls {
    width: 100%;
    max-width: 100%;
  }
}


  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-card);
}

.fridge-tag {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 1rem;
}

/* Device Physical Enclosure (Sculpted Matte Arctic White) */
.device-chassis {
  background: linear-gradient(175deg, #FFFFFF 0%, #F1F5F8 100%);
  border-radius: 26px;
  padding: 16px;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    0 22px 50px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid #DDE3EA;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.chassis-bezel {
  background: #181B20;
  border-radius: 14px;
  padding: 11px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* E-Paper Screen Frame (Authentic SSD1680 250x122) */
.epaper-screen-frame {
  position: relative;
  background: #E4E8EB;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 250 / 122;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.epd-display-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Inverted Alert State */
.epaper-screen.inverted-screen {
  background: var(--epd-ink);
  color: var(--epd-paper);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  border-bottom: 2px solid var(--epd-ink);
  padding-bottom: 4px;
}

.epaper-screen.inverted-screen .screen-header {
  border-color: var(--epd-paper);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.epd-logo-mark {
  height: 14px;
  width: auto;
  object-fit: contain;
}

.epaper-screen.inverted-screen .epd-logo-mark {
  filter: invert(1);
}

.screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
}

/* Bin Stream Row */
.epd-stream-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.75rem;
}

.epd-bin-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.epd-bin-icon {
  width: 48px;
  height: 56px;
  object-fit: contain;
  filter: contrast(150%) brightness(20%);
}

.epaper-screen.inverted-screen .epd-bin-icon {
  filter: invert(1) contrast(150%);
}

.epd-bin-badge {
  background: var(--epd-ink);
  color: var(--epd-paper);
  font-size: 0.64rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 3px;
}

.epaper-screen.inverted-screen .epd-bin-badge {
  background: var(--epd-paper);
  color: var(--epd-ink);
}

.epd-bin-label {
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 2px;
}

/* Urgent Banner */
.epd-urgent-hero {
  text-align: center;
}

.epd-urgent-banner {
  background: var(--epd-paper);
  color: var(--epd-ink);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.epd-urgent-sub {
  font-size: 0.72rem;
  font-weight: 700;
}

/* Screen Footer */
.screen-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  border-top: 2px solid var(--epd-ink);
  padding-top: 4px;
}

.epaper-screen.inverted-screen .screen-footer {
  border-color: var(--epd-paper);
}

.pill-outline {
  border: 1px solid var(--epd-ink);
  padding: 1px 6px;
  border-radius: 3px;
}

.epaper-screen.inverted-screen .pill-outline {
  border-color: var(--epd-paper);
}

/* E-Paper Refresh Flash */
.epaper-flash-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: black;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

.epaper-flash-overlay.flashing {
  animation: epaperRefresh 0.4s steps(1) forwards;
}

@keyframes epaperRefresh {
  0% { opacity: 0; }
  20% { opacity: 1; background: #000000; }
  45% { opacity: 1; background: #FFFFFF; }
  75% { opacity: 1; background: #000000; }
  100% { opacity: 0; }
}

.chassis-accents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 700;
}

/* Simulator Controls */
.simulator-controls {
  margin-top: 1.25rem;
}

.controls-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.controls-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill-btn {
  background: #F1F5F9;
  color: var(--text-body);
  border: 1px solid transparent;
  padding: 0.42rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pill-btn:hover {
  background: #E2E8F0;
  color: var(--text-main);
}

.pill-btn.active {
  background: var(--green-soft);
  color: var(--green-main);
  border-color: rgba(22, 163, 74, 0.4);
  font-weight: 700;
}

.stream-switcher-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #E2E8F0;
}

.switcher-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.stream-chip {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--text-body);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.stream-chip:hover {
  background: #F1F5F9;
  border-color: #94A3B8;
  color: var(--text-main);
}

.stream-chip.active {
  background: var(--green-soft);
  color: var(--green-main);
  border-color: var(--green-main);
  font-weight: 700;
}

/* ==================== HUMOR / RELIEF ==================== */
.humor-section {
  padding: 5rem 0;
}

.humor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.humor-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.card-struggle {
  border-color: #FEE2E2;
  background: #FFFDFD;
}

.card-calm {
  border-color: #DCFCE7;
  background: #FDFEFE;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.humor-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.friendly-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.friendly-checklist li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
  position: relative;
  padding-left: 1.8rem;
}

.friendly-checklist.bad li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 800;
}

.friendly-checklist.good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 800;
}

/* ==================== 4 FRIENDLY REASONS ==================== */
.features-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  box-shadow: var(--shadow-card);
}

.feature-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==================== COUNCIL CHECKER ==================== */
.council-section {
  padding: 5rem 0;
}

.council-box {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
}

.council-interactive {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.picker-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

/* Coverage Checker Interactive Card */
.coverage-search-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.5rem;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #DCFCE7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.live-pulse-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.3);
  animation: liveDotPulse 1.8s infinite;
}

@keyframes liveDotPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.postcode-input-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.postcode-input {
  flex: 1;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 2px solid #E2E8F0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.postcode-input:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.sample-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.sample-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
}

.sample-chip {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: var(--text-body);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.sample-chip:hover {
  background: #E2E8F0;
  color: var(--text-main);
  border-color: #CBD5E1;
}

.coverage-loading-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  color: #0369A1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 1rem;
}

.spinner-dot {
  width: 14px;
  height: 14px;
  border: 2px solid #BAE6FD;
  border-top-color: #0284C7;
  border-radius: 50%;
  animation: spinnerRotate 0.75s linear infinite;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

.coverage-error-box {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Dynamic Live Result Card */
.council-summary-box {
  margin-top: 0;
  padding: 1.65rem;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}

.result-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.verified-pill {
  background: #DCFCE7;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.cadence-tag {
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.council-summary-box h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.coverage-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 0.85rem 0 1rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.meta-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 0.15rem;
}

.stream-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.stream-badges {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.badge-chip {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  width: fit-content;
}

.chip-green { background: #DCFCE7; color: #166534; }
.chip-caddy { background: #FEF3C7; color: #92400E; }
.chip-black { background: #F1F5F9; color: #334155; }

.council-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-main);
}

.coverage-cta-row {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed #CBD5E1;
}

.council-manual-select-wrap {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}

.picker-label-sm {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.friendly-select-sm {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E1;
  font-family: inherit;
  font-size: 0.88rem;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.friendly-select-sm:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.preview-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.badge-screen-mode {
  background: #F1F5F9;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

.screen-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

  background: var(--epd-paper);
  color: var(--epd-ink);
  border-radius: 8px;
  padding: 14px;
  font-family: var(--epd-font);
  border: 3px solid #111417;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ==================== PRICING ==================== */
.pricing-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.price-card.popular {
  background: #FFFFFF;
  border-color: var(--green-main);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.12);
}

.ribbon-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-main);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}

.price-display .curr {
  font-size: 1.6rem;
  font-weight: 800;
}

.price-display .val {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-display .was {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.tier-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 1.25rem;
}

.tier-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.tier-perks li {
  font-size: 0.88rem;
  color: var(--text-body);
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 5rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.chevron {
  transition: transform 0.22s ease;
  font-size: 1.25rem;
  color: var(--text-muted);
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
  color: var(--green-main);
}

.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ==================== VIP MODAL ==================== */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(15px);
  transition: transform 0.2s ease;
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-main);
  margin-bottom: 0.4rem;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.vip-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #CBD5E1;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.modal-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 3.5rem 0 2.5rem;
  background: var(--bg-warm-secondary);
  border-top: 1px solid var(--border-soft);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.footer-brand .brand-mark-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--text-body);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--green-main);
}


/* ==================== SCROLL-IN REVEAL ANIMATIONS (PROGRESSIVE ENHANCEMENT) ==================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delay via CSS custom property --i */
.reveal-stagger > .reveal {
  transition-delay: calc(var(--i, 0) * 85ms);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==================== PRIVATE ACCESS PASSWORD GATE ==================== */
.site-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.gate-card {
  background: #FFFFFF;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  animation: gateCardPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gateCardPop {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.gate-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.gate-mark-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.gate-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.gate-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gate-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.gate-sub {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.gate-input-wrap {
  margin-bottom: 1rem;
}

.gate-input {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 2px solid #E2E8F0;
  font-family: inherit;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.08em;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.gate-input:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.gate-submit-btn {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.gate-error-msg {
  color: #DC2626;
  font-size: 0.84rem;
  font-weight: 700;
  margin-top: 0.85rem;
}

.gate-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.4;
}

.error-shake {
  animation: errorShakeAnim 0.4s ease-in-out;
}

@keyframes errorShakeAnim {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-7px); }
  40%, 80% { transform: translateX(7px); }
}

/* ==================== COMPREHENSIVE RESPONSIVE STYLES ==================== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .humor-grid { grid-template-columns: 1fr; }
  .council-interactive { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Global Spacing */
  .container {
    padding: 0 1.15rem;
  }

  /* Nav — Clean, uncluttered header */
  .site-header {
    padding: 0.85rem 0;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions .btn-audio {
    display: none;
  }
  .nav-brand .brand-name {
    font-size: 1.25rem;
  }
  .nav-actions .btn-sm {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero-section {
    padding: 2.25rem 0 1.5rem;
  }
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .friendly-pills-row {
    gap: 0.35rem;
    margin-bottom: 1.5rem;
  }
  .pill-chip {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
  }
  .hero-hardware {
    margin-top: 1.5rem;
  }
  .hero-product-render {
    border-radius: 16px;
  }

  /* Gallery Grid */
  .gallery-section {
    padding: 3rem 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .gallery-item {
    border-radius: 14px;
    height: 220px;
  }
  .gallery-item-large {
    grid-row: span 1;
    height: 240px;
  }

  /* Humor & Reasons */
  .humor-section, .features-section {
    padding: 3rem 0;
  }
  .humor-card, .feature-card {
    padding: 1.5rem 1.25rem;
  }

  /* Council & Screen Interactive Section */
  .council-section {
    padding: 3rem 0;
  }
  .council-box {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }
  .council-interactive {
    gap: 1.75rem;
    margin-top: 1.5rem;
  }
  .coverage-search-card {
    padding: 1.25rem 1rem;
    margin-bottom: 1.25rem;
  }
  .sample-chips-wrap {
    gap: 0.35rem;
  }
  .sample-chip {
    font-size: 0.74rem;
    padding: 0.3rem 0.6rem;
  }
  .coverage-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
  }
  .council-summary-box {
    padding: 1.25rem 1rem;
  }
  .council-summary-box h4 {
    font-size: 1.25rem;
  }

  /* Right Column: Physical Device Enclosure */
  .screen-preview-card {
    padding: 0;
  }
  .device-chassis {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 20px;
  }
  .chassis-accents {
    font-size: 0.68rem;
    margin-top: 8px;
  }

  /* Touch-friendly Horizontal Scrolling for Simulator Controls */
  .simulator-controls {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--radius-md);
  }
  .controls-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    gap: 0.45rem;
  }
  .controls-pills::-webkit-scrollbar { display: none; }
  .pill-btn {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  .stream-switcher-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    gap: 0.45rem;
  }
  .stream-switcher-row::-webkit-scrollbar { display: none; }
  .stream-chip {
    white-space: nowrap;
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  /* Pricing Cards */
  .pricing-section {
    padding: 3rem 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .price-card {
    padding: 1.75rem 1.25rem;
  }
  .tier-title {
    font-size: 1.35rem;
  }

  /* FAQ Accordion */
  .faq-section {
    padding: 3rem 0;
  }
  .faq-summary {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .faq-body {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* VIP Modal */
  .modal-card {
    width: 94%;
    max-width: 440px;
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

  /* Footer */
  .site-footer {
    padding: 3rem 0 2rem;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .postcode-input-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .postcode-input-row .btn {
    width: 100%;
    padding: 0.85rem 1rem;
  }
  .coverage-meta-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
}


