/* ================================
   NimbleBee — main.css
   ================================ */

/* --- Custom Properties --- */
:root {
  --charcoal:  #2D3748;
  --coral:     #FF595E;
  --emerald:   #10B981;
  --offwhite:  #FAF8F6;

  --text-dark:        #FAF8F6;
  --text-dark-muted:  rgba(250, 248, 246, 0.60);
  --text-light:       #2D3748;
  --text-light-muted: #6B7280;

  --font-sans:  'Poppins', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --section-pad:   clamp(5rem, 10vw, 9rem);
  --container-max: 1120px;
  --container-pad: clamp(1.5rem, 5vw, 5rem);

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--charcoal);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: clip;
}

html {
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Sections --- */
.section-dark {
  background: var(--charcoal);
  color: var(--text-dark);
  padding: var(--section-pad) 0;
  position: relative;
}

.section-light {
  background: var(--offwhite);
  color: var(--text-light);
  padding: var(--section-pad) 0;
  position: relative;
}

/* --- Section diagonal transitions via ::after on each section --- */
.section-dark,
.section-light {
  position: relative;
  z-index: 0;
  overflow: visible;
}

/* Sections with diagonal edge get extra bottom padding so content clears the wedge */
.edge-to-light,
.edge-to-dark {
  padding-bottom: calc(var(--section-pad) + 80px);
}

/* Dark section → Light section: offwhite wedge at bottom */
.section-dark.edge-to-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--offwhite);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* Light section → Dark section: charcoal wedge at bottom */
.section-light.edge-to-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* --- Typography --- */

/* Eyebrow / section label — Cormorant Garamond, strict brand rule:
   Light 300, upright (never italic), emerald, letter-spaced, uppercase */
.eyebrow {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
  display: block;
}

h1, h2, h3 {
  font-family: var(--font-sans);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 1.75rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.h1-bold {
  font-weight: 700;
  display: block;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-light h2 {
  color: var(--text-light);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-light h3 {
  color: var(--text-light);
}

p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.body-lg {
  font-size: clamp(1rem, 1.4vw, 1.175rem);
  font-weight: 300;
  line-height: 1.9;
  max-width: 680px;
}

.section-light .body-lg {
  color: var(--text-light);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.8125rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-coral {
  background: var(--coral);
  color: var(--offwhite);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 89, 94, 0.38);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 1rem 2.75rem;
  margin-top: 1.5rem;
}

/* --- NAV --- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--offwhite);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

#nav.scrolled {
  background: rgba(250, 248, 246, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(45, 55, 72, 0.10);
}

.nav-logo img {
  height: 48px;
  width: auto;
}

/* --- HERO --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden; /* clips hex cluster at viewport edges */
  padding-top: calc(var(--section-pad) + 80px);
  padding-bottom: var(--section-pad);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-body {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: var(--text-dark-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

/* Hero hex cluster — animated on load, exits on scroll */
.hero-hexes {
  position: absolute;
  right: -350px;
  top: 50%;
  transform: translateY(-50%);
  width: 1400px;
  height: 1400px;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}

.hero-hex {
  position: absolute;
  width: 440px;
  height: 510px;
  opacity: 0.22;
  transition: transform 1.4s var(--ease-out), opacity 1.4s var(--ease-out);
  will-change: transform, opacity;
}

.hero-hex img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(1.4);
}

/* Honeycomb cluster positions — doubled from original 220×255px layout.
   Container 1400×1400, cluster center at (700,700).
   Each div top-left = center_x - 220, center_y - 255 */
.hero-hex:nth-child(1) { left: 480px; top: 445px; transition-delay: 0s; }     /* center */
.hero-hex:nth-child(2) { left: 700px; top:  65px; transition-delay: 0.08s; }  /* NE */
.hero-hex:nth-child(3) { left: 920px; top: 445px; transition-delay: 0.16s; }  /* E */
.hero-hex:nth-child(4) { left: 700px; top: 825px; transition-delay: 0.24s; }  /* SE */
.hero-hex:nth-child(5) { left: 260px; top: 825px; transition-delay: 0.32s; }  /* SW */
.hero-hex:nth-child(6) { left:  40px; top: 445px; transition-delay: 0.40s; }  /* W */
.hero-hex:nth-child(7) { left: 260px; top:  65px; transition-delay: 0.48s; }  /* NW */

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Problem section grid --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed rgba(45, 55, 72, 0.20);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-placeholder .placeholder-label {
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  opacity: 0.6;
  margin: 0;
}

/* --- What We Do hex (Section 03) --- */
/* Clip wrapper: sits flush with section, clips top/bottom only.
   clip-path right extends 200vw so the hex can bleed off the right edge. */
.what-hex-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 -200vw 0 0);
  pointer-events: none;
  z-index: 0;
}

.what-hex-icon {
  position: absolute;
  width: 1080px;
  height: 1080px;
  top: 50%;
  /* Centre aligns with the right-column position of the old grid layout */
  left: calc(50% + 20px);
  transform: translateY(-50%);
  opacity: 0.15;
  will-change: transform;
}

#what .what-body {
  color: var(--text-dark-muted);
  max-width: 620px;
}

#what h2 {
  max-width: 620px;
}

/* --- Before / During / After cards --- */
.bda-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.bda-card {
  background: #ffffff;
  border: 1px solid rgba(45, 55, 72, 0.10);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}

.bda-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(45, 55, 72, 0.11);
}

.bda-label {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.bda-card p:last-child {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(45, 55, 72, 0.10);
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
}

/* --- Social proof --- */
.proof-subline {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  margin-bottom: 1.25rem;
  display: block;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: rgba(250, 248, 246, 0.05);
  border: 1px solid rgba(250, 248, 246, 0.09);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), background 0.24s;
}

.product-card:hover {
  transform: translateY(-5px);
  background: rgba(250, 248, 246, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.product-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--emerald);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.product-card > p:last-child {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

/* --- Contact / CTA --- */
.section-contact {
  overflow: hidden;
}

.contact-hex {
  position: absolute;
  width: 520px;
  height: auto;
  opacity: 0.04;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.section-contact h2 {
  max-width: 560px;
}

.section-contact .body-lg {
  color: var(--text-dark-muted);
  max-width: 560px;
}

/* --- Persona Picker (Section 05) --- */
.persona-picker {
  width: 100%;
}

.persona-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.persona-card {
  background: var(--offwhite);
  border: 1.5px solid rgba(45, 55, 72, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  color: var(--text-light);
  transition: background 0.22s var(--ease-out), border-color 0.22s var(--ease-out), transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}

.persona-card:hover {
  background: #fff;
  border-color: rgba(45, 55, 72, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 55, 72, 0.10);
}

.persona-card[aria-selected="false"] {
  opacity: 0.80;
}

.persona-card[aria-selected="true"] {
  background: #fff;
  border: 4px solid var(--emerald);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 55, 72, 0.10);
  opacity: 1;
}

.persona-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  opacity: 0.80;
  transition: opacity 0.22s;
}

.persona-card[aria-selected="true"] .persona-icon {
  opacity: 1;
}

.persona-title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-light);
}

.persona-sub {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* Panel */
.persona-panel {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.36s var(--ease-out), transform 0.36s var(--ease-out);
  pointer-events: none;
}

.persona-panel.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.persona-panel-inner {
  background: var(--offwhite);
  border: 1px solid rgba(45, 55, 72, 0.10);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
}

.persona-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.persona-ba-col-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.persona-ba-col--before .persona-ba-col-label {
  color: var(--coral);
}

.persona-ba-col--after .persona-ba-col-label {
  color: var(--emerald);
}

.persona-ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.persona-ba-list li {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  padding-left: 1.25rem;
  position: relative;
}

.persona-ba-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.persona-ba-col--before .persona-ba-list li::before {
  background: var(--coral);
  opacity: 0.55;
}

.persona-ba-col--after .persona-ba-list li::before {
  background: var(--emerald);
  opacity: 0.70;
}

.persona-ba-col--after .persona-ba-list li {
  color: var(--text-light);
}

.persona-panel-cta {
  display: flex;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(45, 55, 72, 0.10);
}

.persona-panel-cta .btn {
  background: var(--emerald);
  color: var(--offwhite);
}

.persona-panel-cta .btn:hover {
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}

/* --- Placeholders (to be replaced section by section) --- */
.section-placeholder {
  margin-top: 4rem;
  padding: 3rem;
  border: 1px dashed rgba(250, 248, 246, 0.14);
  border-radius: 8px;
  text-align: center;
}

.section-placeholder-light {
  border-color: rgba(45, 55, 72, 0.14);
}

.placeholder-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark-muted);
  margin: 0;
  opacity: 0.5;
}

.section-placeholder-light .placeholder-label {
  color: var(--text-light-muted);
}

/* --- How It Works — scroll-driven stepper (Section 06) --- */

#how {
  padding: 0;
}

.how-scroll-track {
  position: relative;
  min-height: 270vh;
  padding-bottom: calc(var(--section-pad) + 80px);
}

.how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-top: 5rem; /* clearance for fixed nav */
}

/* Left column */
.how-left {
  display: flex;
  flex-direction: column;
}

.how-rail-wrap {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.how-rail-line {
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(45, 55, 72, 0.12);
  border-radius: 2px;
}

.how-rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--emerald);
  border-radius: 2px;
  transition: height 0.08s linear;
}

.how-stages {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.how-stage {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.how-stage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(45, 55, 72, 0.22);
  background: transparent;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.how-stage.active .how-stage-dot {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.25);
}

.how-stage.passed .how-stage-dot {
  background: var(--emerald);
  border-color: var(--emerald);
}

.how-stage-content {
  opacity: 0.28;
  transform: translateX(-6px);
  transition: opacity 0.42s var(--ease-out), transform 0.42s var(--ease-out);
}

.how-stage.active .how-stage-content {
  opacity: 1;
  transform: translateX(0);
}

.how-stage.passed .how-stage-content {
  opacity: 0.48;
  transform: translateX(0);
}

.how-stage-label {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.how-stage.active .how-stage-label {
  color: var(--coral);
}

.how-stage-body {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

.how-hint {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  margin: 0;
  letter-spacing: 0.04em;
  transition: opacity 0.6s ease;
}

/* Right column — visuals */
.how-right {
  position: relative;
  min-height: 320px;
}

.how-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}

.how-visual.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Visual 0: scattered tool cards */
.how-scatter {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 280px;
}

.how-tool-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(45, 55, 72, 0.11);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(45, 55, 72, 0.09);
  white-space: nowrap;
}

/* Visual 1: process steps */
.how-process {
  width: 100%;
  max-width: 340px;
}

.how-process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(45, 55, 72, 0.07);
}

.how-process-step:last-child {
  border-bottom: none;
}

.how-process-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(45, 55, 72, 0.08);
  border: 2px solid rgba(45, 55, 72, 0.13);
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}

.how-process-step.active .how-process-num {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.how-process-text {
  opacity: 0.35;
  transition: opacity 0.35s var(--ease-out);
}

.how-process-step.active .how-process-text {
  opacity: 1;
}

.how-process-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.how-process-text p {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  margin: 0;
}

/* Visual 2: dashboard card */
.how-dashboard {
  background: #fff;
  border: 1px solid rgba(45, 55, 72, 0.10);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(45, 55, 72, 0.10);
}

.how-dashboard-header {
  background: var(--charcoal);
  color: var(--offwhite);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.how-db-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
  animation: how-pulse 2s ease-in-out infinite;
}

@keyframes how-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.how-dashboard-rows {
  padding: 0.25rem 0;
}

.how-db-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(45, 55, 72, 0.06);
}

.how-db-row:last-child {
  border-bottom: none;
}

.how-db-check {
  color: var(--emerald);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.how-db-label {
  flex: 1;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.how-db-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-live {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald);
}

.badge-yours {
  background: rgba(45, 55, 72, 0.08);
  color: var(--text-light-muted);
}

/* --- Footer --- */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(250, 248, 246, 0.07);
  padding: 1.75rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  margin: 0;
}
