/* ============================================
   Ultimate Bee Management — Shared Stylesheet
   straightfromthehive.co.uk/ultimatebeemanagement
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --honey:        #E8930A;
  --honey-light:  #FFF3DC;
  --honey-mid:    #F5C14E;
  --amber:        #C97A00;
  --cream:        #FFFDF6;
  --warm-white:   #FDF8EE;
  --bark:         #3D2E1A;
  --bark-mid:     #6B4E2A;
  --bark-light:   #A07848;
  --sage:         #6B7C5A;
  --sage-light:   #EEF1E8;
  --text:         #2A1F0E;
  --text-mid:     #5C4830;
  --text-light:   #9A8060;
  --border:       rgba(61,46,26,0.12);
  --border-warm:  rgba(232,147,10,0.25);
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --shadow-sm:    0 2px 8px rgba(61,46,26,0.07);
  --shadow-md:    0 4px 24px rgba(61,46,26,0.09);
  --shadow-lg:    0 8px 40px rgba(61,46,26,0.12);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(255,253,246,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--bark); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span { color: var(--honey); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-size: 0.84rem; color: var(--text-mid);
  text-decoration: none; padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--honey); background: var(--honey-light); }
.nav-links a.active { color: var(--honey); font-weight: 500; }
.nav-cta {
  background: var(--honey); color: white;
  font-size: 0.82rem; font-weight: 500;
  padding: 0.6rem 1.3rem; border-radius: var(--radius-sm);
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--amber); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--bark); font-size: 1.2rem;
  padding: 0.25rem;
}
.nav-mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem; flex-direction: column; gap: 0.25rem;
}
.nav-mobile-menu a {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu.open { display: flex; }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 6rem 3rem; }
.section-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--honey); margin-bottom: 0.85rem;
}
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--bark); margin-bottom: 1.25rem;
}
h1 em { font-style: italic; color: var(--honey); }
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2;
  color: var(--bark); margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--honey); }
h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600; line-height: 1.25;
  color: var(--bark); margin-bottom: 0.75rem;
}
h4 {
  font-size: 0.95rem; font-weight: 600;
  color: var(--bark); margin: 1.75rem 0 0.6rem;
}
.lead {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.85; font-weight: 300;
  max-width: 560px;
}
.rule {
  width: 48px; height: 2px;
  background: var(--honey-mid);
  margin: 1.5rem 0; border-radius: 1px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--honey);
  color: white; font-size: 0.9rem; font-weight: 500;
  padding: 0.85rem 2rem; border-radius: var(--radius-sm);
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; background: white;
  color: var(--bark); font-size: 0.9rem; font-weight: 500;
  padding: 0.85rem 2rem; border-radius: var(--radius-sm);
  text-decoration: none; border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--honey); color: var(--honey); }
.btn-ghost {
  display: inline-block; color: var(--bark-mid);
  font-size: 0.9rem; padding: 0.85rem 1.25rem;
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--honey); }
.btn-white {
  display: inline-block; background: white;
  color: var(--honey); font-size: 0.9rem; font-weight: 600;
  padding: 0.9rem 2rem; border-radius: var(--radius-sm);
  text-decoration: none; transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-1px); }
.btn-outline-white {
  display: inline-block; background: transparent;
  color: white; font-size: 0.9rem;
  padding: 0.9rem 1.5rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.45);
  text-decoration: none; transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--warm-white);
  padding: 8rem 3rem 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(61,46,26,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,147,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; max-width: 700px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; background: var(--honey-light);
  color: var(--amber); font-size: 0.75rem; font-weight: 500;
  padding: 0.35rem 0.85rem; border-radius: 20px;
  border: 1px solid var(--border-warm); margin-bottom: 1.5rem;
}
.platform-pill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; background: var(--sage-light);
  color: var(--sage); padding: 0.2rem 0.6rem;
  border-radius: 3px; font-weight: 500;
}

/* ── STRIP ── */
.strip {
  background: var(--bark); color: white;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.strip-item { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.strip-item strong { color: white; font-weight: 500; }
.strip-sep { color: rgba(255,255,255,0.2); }

/* ── MOCK PANELS (shared app UI) ── */
.mock-panel {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mock-bar {
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--text-light);
}
.mock-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.mock-body { padding: 1.25rem; }

/* App-style card rows */
.hive-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem; border-radius: 6px; margin-bottom: 0.5rem;
  border: 1px solid var(--border);
}
.hive-name { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--bark); }
.hive-meta { font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }
.hive-right { text-align: right; }
.health-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 0.3rem; }
.health-good  { background: #4ade80; }
.health-fair  { background: #fbbf24; }
.health-check { background: #f87171; }
.health-label { font-size: 0.75rem; font-weight: 500; }
.health-label.good  { color: #16a34a; }
.health-label.fair  { color: #d97706; }
.health-label.check { color: #dc2626; }
.days-ago { font-size: 0.7rem; color: var(--text-light); margin-top: 0.2rem; }

/* Inspection rows */
.insp-row {
  padding: 0.75rem; border-radius: 6px;
  border: 1px solid var(--border); margin-bottom: 0.5rem;
}
.insp-date   { font-size: 0.7rem; color: var(--text-light); margin-bottom: 0.2rem; }
.insp-headline { font-size: 0.88rem; font-weight: 500; color: var(--bark); }
.insp-note   { font-size: 0.78rem; color: var(--text-mid); margin-top: 0.2rem; font-style: italic; }
.insp-tags   { display: flex; gap: 0.4rem; margin-top: 0.5rem; flex-wrap: wrap; }
.tag         { font-size: 0.65rem; font-weight: 500; padding: 0.15rem 0.5rem; border-radius: 3px; border: 1px solid; }
.tag-green   { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.tag-amber   { background: #fffbeb; color: #92400e; border-color: #fcd34d; }
.tag-blue    { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.tag-red     { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.tag-sage    { background: var(--sage-light); color: var(--sage); border-color: rgba(107,124,90,0.3); }
.tag-purple  { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }

/* Queen cards */
.queen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.queen-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 6px; padding: 0.85rem; }
.queen-colour-dot { width: 20px; height: 20px; border-radius: 50%; margin-bottom: 0.5rem; border: 2px solid rgba(255,255,255,0.6); box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.queen-name   { font-size: 0.82rem; font-weight: 600; color: var(--bark); }
.queen-hive   { font-size: 0.72rem; color: var(--text-light); }
.queen-status { font-size: 0.65rem; font-weight: 500; margin-top: 0.4rem; display: inline-block; padding: 0.1rem 0.4rem; border-radius: 3px; }
.queen-active { background: #f0fdf4; color: #16a34a; }
.queen-watch  { background: #fffbeb; color: #92400e; }

/* Advisor */
.advisor-msg { background: var(--honey-light); border: 1px solid var(--border-warm); border-radius: var(--radius-md); padding: 1rem; margin-bottom: 0.75rem; font-size: 0.85rem; color: var(--bark); line-height: 1.65; }
.advisor-msg strong { color: var(--amber); }
.advisor-action { background: var(--sage-light); border: 1px solid rgba(107,124,90,0.2); border-radius: var(--radius-md); padding: 0.85rem 1rem; font-size: 0.82rem; color: var(--sage); margin-bottom: 0.5rem; }
.advisor-action strong { color: #3d5c2a; }

/* Calendar */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 0.75rem; }
.cal-day { text-align: center; font-size: 0.68rem; padding: 0.25rem; border-radius: 3px; color: var(--text-light); }
.cal-day.has-event { background: var(--honey-light); color: var(--amber); font-weight: 600; }
.cal-day.today { background: var(--honey); color: white; font-weight: 600; }
.cal-event { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.6rem; border-radius: 5px; margin-bottom: 0.35rem; font-size: 0.78rem; }
.cal-event-insp    { background: #eff6ff; color: #1d4ed8; }
.cal-event-harvest { background: var(--honey-light); color: var(--amber); }
.cal-event-maint   { background: #f0fdf4; color: #16a34a; }
.cal-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* NFC card (dark) */
.nfc-tag-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
}
.nfc-card-top { padding: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.nfc-hive-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: white; }
.nfc-live { font-size: 0.68rem; font-weight: 500; color: var(--honey-mid); background: rgba(232,147,10,0.15); border: 1px solid rgba(232,147,10,0.3); padding: 0.2rem 0.6rem; border-radius: 3px; display: flex; align-items: center; gap: 0.3rem; }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey-mid); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.nfc-rows { padding: 0.75rem 1.25rem; }
.nfc-data-row { display: flex; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; }
.nfc-data-label { color: rgba(255,253,246,0.45); }
.nfc-data-value { color: rgba(255,253,246,0.9); font-weight: 500; }
.nfc-data-value.alert { color: #fbbf24; }
.nfc-footer { padding: 1rem 1.25rem; background: rgba(232,147,10,0.08); border-top: 1px solid rgba(232,147,10,0.15); font-size: 0.78rem; color: rgba(255,253,246,0.5); }

/* Card chrome (app window) */
.card-header { background: var(--bark); padding: 0.85rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.card-dots { display: flex; gap: 6px; }
.card-dot { width: 10px; height: 10px; border-radius: 50%; }
.card-dot:nth-child(1){ background: #ff5f57; }
.card-dot:nth-child(2){ background: #febc2e; }
.card-dot:nth-child(3){ background: #28c840; }
.card-title { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin-left: 0.5rem; }
.card-footer-row {
  padding: 1rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--warm-white);
}
.footer-stat { text-align: center; }
.footer-stat-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--bark); display: block; }
.footer-stat-label { font-size: 0.7rem; color: var(--text-light); }
.offline-badge { font-size: 0.68rem; font-weight: 500; background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; padding: 0.2rem 0.5rem; border-radius: 3px; }

/* ── CTA BLOCK ── */
.cta-section {
  background: var(--honey); padding: 6rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
}
.cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
.cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section .lead { color: rgba(255,255,255,0.8); margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--bark); color: rgba(255,253,246,0.5);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: 0.82rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.05rem; color: rgba(255,253,246,0.85); font-weight: 600; }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a { color: rgba(255,253,246,0.45); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--honey-mid); }

/* ── FEATURE ROW LAYOUT ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }
.feature-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 400; color: var(--honey-light); line-height: 1; margin-bottom: -0.5rem; }
.feature-title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600; color: var(--bark); margin-bottom: 0.75rem; line-height: 1.3; }
.feature-body { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.feature-points { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-points li { font-size: 0.88rem; color: var(--text-mid); padding-left: 1.25rem; position: relative; line-height: 1.7; }
.feature-points li::before { content: '→'; position: absolute; left: 0; color: var(--honey); }
.feature-points li strong { color: var(--bark); font-weight: 500; }

/* ── TIP BOX ── */
.tip {
  background: var(--honey-light); border: 1px solid var(--border-warm);
  border-left: 3px solid var(--honey);
  padding: 0.85rem 1.1rem; border-radius: 0 5px 5px 0; margin: 1.25rem 0;
}
.tip-head { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.3rem; }
.tip p { font-size: 0.85rem; color: var(--bark-mid); margin: 0; }

/* ── STEP LIST ── */
.step-list { display: flex; flex-direction: column; gap: 0.85rem; margin: 0.85rem 0 1.25rem; }
.step-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.step-n { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--honey); color: white; font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-top: 0.15rem; }
.step-t { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.step-t strong { color: var(--bark); }

code { font-family: monospace; font-size: 0.82rem; background: rgba(61,46,26,0.06); color: var(--bark-mid); padding: 0.1rem 0.35rem; border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 6.5rem 1.25rem 3.5rem; }
  .strip { gap: 1.25rem; padding: 1rem 1.25rem; flex-direction: column; gap: 0.6rem; }
  .strip-sep { display: none; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .feature-row.flip .feature-text { order: 1; }
  .feature-row.flip > div:not(.feature-text) { order: 2; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.25rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .cta-section { padding: 4rem 1.25rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .queen-grid { grid-template-columns: 1fr; }
}

/* ── PHOTO PLACEHOLDERS ── */
.photo-placeholder {
  position: relative;
  background: linear-gradient(135deg, #f5ead4 0%, #e8d5b0 50%, #d4b888 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed rgba(232,147,10,0.4);
  color: var(--bark-mid);
  min-height: 80px;
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, rgba(232,147,10,0.04) 0px, rgba(232,147,10,0.04) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(232,147,10,0.04) 0px, rgba(232,147,10,0.04) 1px, transparent 1px, transparent 10px);
}
.photo-placeholder-icon { font-size: 2rem; position: relative; z-index: 1; opacity: 0.6; }
.photo-placeholder-label {
  position: relative; z-index: 1;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); background: rgba(255,243,220,0.9);
  border: 1px solid rgba(232,147,10,0.35);
  padding: 0.25rem 0.75rem; border-radius: 3px;
}
.photo-placeholder-desc {
  position: relative; z-index: 1;
  font-size: 0.78rem; color: var(--bark-mid);
  text-align: center; padding: 0 1.25rem;
  line-height: 1.55; font-style: italic; opacity: 0.75;
}

/* Page hero (used on features, nfc, how-it-works pages) */
.page-hero {
  padding: 8rem 3rem 5rem;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(61,46,26,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,147,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }

/* Strip */
.strip {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.strip-sep { color: var(--honey-light); }
.strip-item strong { color: var(--bark); }

/* Platform pills */
.platform-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  background: white;
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage);
  background: var(--sage-light);
  border: 1px solid rgba(107,124,90,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

/* Mock panels */
.mock-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mock-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--honey-light);
  border: 1px solid var(--border-warm);
}
.mock-body { padding: 1.25rem; }
