/* ─────────────────────────────────────────────────────────────
   Pondering Phoenix — site.css
   Websites, apps & games by Glen Vanderpost
   Design language: warm paper, deep navy ink, phoenix-gradient
   accents used sparingly. The semicolon from the phoenix mark
   is the quiet signature (a pause for thought).
   ───────────────────────────────────────────────────────────── */

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

:root {
  --paper: #faf6f0;
  --surface: #fffdfa;
  --ink: #1d2d44;
  --ink-deep: #16233a;
  --ink-soft: #3e4d68;
  --muted: #5f6a81;
  --border: #e7ddcf;
  --border-soft: #efe7db;

  --ember: #e8590c;
  --flame: #f08c00;
  --rose: #c2255c;
  --violet: #6741d9;
  --teal: #0b7285;

  --phoenix-gradient: linear-gradient(120deg, #f08c00 0%, #e8590c 28%, #c2255c 55%, #6741d9 80%, #0b7285 100%);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(29, 45, 68, 0.05), 0 10px 28px -18px rgba(29, 45, 68, 0.25);
  --shadow-lift: 0 2px 4px rgba(29, 45, 68, 0.06), 0 18px 38px -18px rgba(29, 45, 68, 0.32);
  --measure: 62ch;
  --site-max: 1180px;
  --char: #17181c;      /* Ember Tiles charcoal */
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Typography ─────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; margin: 0 0 0.5em; }

p { margin: 0 0 1.1em; max-width: var(--measure); }
li { margin-bottom: 0.35em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--ember) 55%, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

a:hover { color: var(--ember); text-decoration-color: var(--ember); }

:focus-visible {
  outline: 2.5px solid var(--ember);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: color-mix(in srgb, var(--flame) 30%, transparent); }

/* Section eyebrow — the semicolon signature */
.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: '; ';
  font-family: var(--font-display);
  font-size: 1.25em;
  font-weight: 600;
  color: var(--ember);
  letter-spacing: 0;
}

/* ── Layout ─────────────────────────────────────────────────── */

.wrap {
  width: min(var(--site-max), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: clamp(3.2rem, 7vw, 5.5rem); }
.section-tight { padding-block: clamp(2.2rem, 5vw, 3.5rem); }
.section-alt { background: var(--surface); border-block: 1px solid var(--border-soft); }

.section-head { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand img { width: 34px; height: auto; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.6rem); }

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--ember); }
.site-nav a[aria-current='page'] {
  color: var(--ink);
  border-bottom-color: var(--ember);
}

/* The CTA pill inside the nav must not inherit nav-link colours */
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover {
  color: #fff;
  border-bottom: none;
  padding: 0.6rem 1.25rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lift);
    padding: 0.5rem 1.25rem 1.1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.8rem 0.25rem; border-bottom: 1px solid var(--border-soft); }
  .site-nav a[aria-current='page'] { border-bottom-color: var(--border-soft); color: var(--ember); }
  .site-nav .btn { margin-top: 0.9rem; text-align: center; }
}

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
    transform 0.16s ease, box-shadow 0.16s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(29, 45, 68, 0.55);
}
.btn-primary:hover {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(232, 89, 12, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
}
.btn-secondary:hover { border-color: var(--ember); color: var(--ember); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 7rem);
}

.hero::after {
  /* faint phoenix ember wash, kept restrained */
  content: '';
  position: absolute;
  inset: -22% -18% auto auto;
  width: min(640px, 75vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 55% 45%,
      rgba(240, 140, 0, 0.13),
      rgba(194, 37, 92, 0.06) 45%,
      transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

/* The hero spans the same width as the rest of the site; the headline and
   lede keep their own comfortable measures rather than a narrow container. */
.hero h1 { max-width: 28ch; font-size: clamp(2.3rem, 5.4vw, 4.1rem); }

.hero .lede { max-width: 62ch; margin-bottom: 1.8rem; }

.hero-mark {
  width: clamp(52px, 7vw, 72px);
  height: auto;
  margin-bottom: 1.4rem;
}

/* ── Cards & grids ──────────────────────────────────────────── */

.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.card h3 a { text-decoration: none; }

.point-card { padding: 1.35rem 1.5rem; }
.point-card h3 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 650; }
.point-card p { font-size: 0.97rem; color: var(--muted); }

/* Project cards */
.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.project-card:hover { box-shadow: var(--shadow-lift); }

.project-card .shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border-soft);
  background: var(--border-soft);
}

.project-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }

.chip {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--teal) 25%, transparent);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
}

.chip-rose { color: var(--rose); background: color-mix(in srgb, var(--rose) 8%, transparent); border-color: color-mix(in srgb, var(--rose) 25%, transparent); }
.chip-violet { color: var(--violet); background: color-mix(in srgb, var(--violet) 8%, transparent); border-color: color-mix(in srgb, var(--violet) 25%, transparent); }

.project-card h3 { margin-bottom: 0.1em; }
.project-card p { font-size: 0.97rem; color: var(--muted); flex: 1; }

.card-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.95rem; font-weight: 600; }

/* ── Process strip ──────────────────────────────────────────── */

.process-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  counter-reset: step;
}
@media (max-width: 980px) { .process-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .process-strip { grid-template-columns: repeat(2, 1fr); } }

.process-step {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem 1.05rem;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: 0.3rem;
}
.process-step strong { display: block; font-size: 1rem; margin-bottom: 0.15rem; }
.process-step span { font-size: 0.88rem; color: var(--muted); line-height: 1.45; display: block; }

/* Numbered process page list */
.process-list { list-style: none; margin: 0; padding: 0; counter-reset: pstep; display: grid; gap: 1.1rem; }
.process-list > li {
  counter-increment: pstep;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.4rem 4.4rem;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.process-list > li::before {
  content: counter(pstep, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  top: 1.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ember);
}
.process-list h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.process-list p { font-size: 0.98rem; color: var(--ink-soft); }

/* ── Case study pages ───────────────────────────────────────── */

.case-header { max-width: 50rem; }
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--muted);
}
.case-meta strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }

.case-shots { display: grid; grid-template-columns: 2.4fr 1fr; gap: 1.4rem; align-items: start; }
@media (max-width: 760px) { .case-shots { grid-template-columns: 1fr; } }
.case-shots img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: var(--surface);
}

.case-section { max-width: 46rem; }
.case-section + .case-section { margin-top: 2.2rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0.4rem 0 0; padding: 0; }
.tag-list li {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
}

/* ── Checklists ─────────────────────────────────────────────── */

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.6rem; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  background: var(--phoenix-gradient);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 12.3 2.4 8.5l1.4-1.4 2.4 2.4 5.9-5.9 1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ── Forms ──────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0.35rem;
}
.field label .optional { font-weight: 500; color: var(--muted); font-size: 0.85em; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ember) 18%, transparent);
}

.form-note { font-size: 0.92rem; color: var(--muted); }

/* ── CTA band ───────────────────────────────────────────────── */

.cta-band {
  background: var(--ink-deep);
  color: #f4efe7;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.2rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 260px at 90% 115%, rgba(240, 140, 0, 0.22), transparent 65%),
    radial-gradient(420px 240px at 5% -30%, rgba(11, 114, 133, 0.25), transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfd6e4; }
.cta-band .btn-primary { background: var(--ember); }
.cta-band .btn-primary:hover { background: var(--flame); }
.cta-band .btn-secondary { color: #f4efe7; border-color: rgba(244, 239, 231, 0.5); }
.cta-band .btn-secondary:hover { color: #fff; border-color: #fff; }

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--ink-deep);
  color: #b9c2d4;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-block: 3rem 2.2rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #e6ebf4;
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--flame);
  text-decoration: underline;
  text-decoration-color: rgba(240, 140, 0, 0.6);
}
.site-footer a.btn-footer:hover { text-decoration: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: flex-start; gap: 0.8rem; }
.footer-brand img { width: 40px; height: auto; }
.footer-brand p { font-size: 0.92rem; margin-top: 0.5rem; }

.site-footer h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }

.footer-bottom {
  border-top: 1px solid rgba(185, 194, 212, 0.2);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ── Utilities ──────────────────────────────────────────────── */

.center { text-align: center; }
.center .section-head { margin-inline: auto; }
.center p { margin-inline: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

img { max-width: 100%; height: auto; }

/* ── Motion preferences ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .phone-pair img:last-child { transition: none; }
}

/* ═════════════════════════════════════════════════════════════
   2026 additions — Ember Tiles feature + motion polish
   The full editorial-homepage layer these grew out of is frozen
   alongside the archived page at /legacy/home-editorial/.
   ═════════════════════════════════════════════════════════════ */

/* ── Pulse dot (beta status) ───────────────────────────────── */

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--flame);
  flex: none;
  vertical-align: 6%;
}
.motion-ok .pulse-dot::after {
  content: '';
  position: absolute;
  inset: -0.3em;
  border-radius: 50%;
  border: 1.5px solid var(--flame);
  opacity: 0;
  animation: pulse-ring 4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.5; }
  70%, 100% { transform: scale(1.18); opacity: 0; }
}

/* ── Scroll reveals: a wipe, not a fade-up ─────────────────────
   Hidden states only exist under .motion-ok (added by JS when
   reduced motion is off), so everything is visible by default. */

.motion-ok .reveal-fade {
  opacity: 0;
  transition: opacity 0.75s ease-out;
}
.motion-ok .reveal-fade.in { opacity: 1; }
/* A plain opacity fade; nothing moves. */

/* ── Project-card hover: the lift warms up ─────────────────── */

.project-card:hover {
  box-shadow: 0 2px 4px rgba(29, 45, 68, 0.06),
    0 18px 38px -16px rgba(232, 89, 12, 0.38);
}

/* ── Featured-product bands ─────────────────────────────────────
   One shared dark band layout (.feature-band) with a palette
   modifier per product (.feature-ember, .feature-panda), so each
   feature can borrow its own product's colours. Add .feature-flip
   to mirror the layout (media left, copy right on desktop). */

.feature-band {
  position: relative;
  overflow: hidden;
  color: #cfd2da;
  padding-block: clamp(3.6rem, 8vw, 6.5rem);
}

.feature-band .feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 6.4fr) minmax(0, 5.6fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 861px) {
  .feature-flip .feature-grid > div:first-child { order: 2; }
}

.feature-band h2 {
  color: #f4efe7;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: 0.4em;
}

.feature-band .lede { max-width: 48ch; }
.feature-band .lede, .feature-band p { color: #b9bdc9; }

.feature-ember {
  background:
    radial-gradient(900px 420px at 82% 108%, rgba(232, 89, 12, 0.28), transparent 62%),
    radial-gradient(620px 300px at -6% -18%, rgba(240, 140, 0, 0.10), transparent 60%),
    var(--char);
}

.feature-ember .eyebrow { color: #9aa0ad; }
.feature-ember .eyebrow::before { color: var(--flame); }

.feature-panda {
  background:
    radial-gradient(900px 420px at 18% 108%, rgba(47, 158, 68, 0.26), transparent 62%),
    radial-gradient(620px 300px at 106% -18%, rgba(105, 219, 124, 0.10), transparent 60%),
    #141a16;
}

.feature-panda .eyebrow { color: #9aa89d; }
.feature-panda .eyebrow::before { color: #69db7c; }
.feature-panda .lede, .feature-panda p { color: #bac8be; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffd8a8;
  background: rgba(240, 140, 0, 0.12);
  border: 1px solid rgba(240, 140, 0, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  margin-bottom: 1.4rem;
}

.feature-panda .status-pill {
  color: #b2f2bb;
  background: rgba(64, 192, 87, 0.12);
  border-color: rgba(64, 192, 87, 0.35);
}
.feature-panda .status-pill .pulse-dot { background: #69db7c; }
.motion-ok .feature-panda .pulse-dot::after { border-color: #69db7c; }

.feature-band .tag-list li {
  color: #b9bdc9;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}
.feature-panda .tag-list li { color: #bac8be; }

.feature-ember .btn-primary { background: var(--ember); }
.feature-ember .btn-primary:hover { background: var(--flame); }
.feature-panda .btn-primary { background: #256e35; }
.feature-panda .btn-primary:hover { background: #2e8743; }
.feature-band .btn-secondary { color: #e6e8ee; border-color: rgba(230, 232, 238, 0.45); }
.feature-band .btn-secondary:hover { color: #fff; border-color: #fff; }

/* the little living tile row — a nod to the product itself */
.tile-motif { display: flex; gap: 0.5rem; margin: 0 0 1.6rem; }
.tile-motif span {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.28rem;
  background: #2c2d34;
  flex: none;
}
.tile-motif span.lit { background: linear-gradient(135deg, var(--flame), var(--ember)); }
.motion-ok .tile-motif span.lit { animation: tile-glow 8s ease-in-out infinite; }
.motion-ok .tile-motif span.lit:nth-child(3) { animation-delay: 1.4s; }
.motion-ok .tile-motif span.lit:nth-child(6) { animation-delay: 2.6s; }
.motion-ok .tile-motif span.lit:nth-child(7) { animation-delay: 3.8s; }
@keyframes tile-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(240, 140, 0, 0); filter: brightness(0.96); }
  50% { box-shadow: 0 0 10px rgba(240, 140, 0, 0.38); filter: brightness(1.06); }
}

/* Proof Panda variant: round "coins", bamboo-green glow */
.feature-panda .tile-motif span { border-radius: 50%; background: #242c26; }
.feature-panda .tile-motif span.lit { background: linear-gradient(135deg, #69db7c, #2f9e44); }
.motion-ok .feature-panda .tile-motif span.lit { animation-name: tile-glow-green; }
@keyframes tile-glow-green {
  0%, 100% { box-shadow: 0 0 0 rgba(105, 219, 124, 0); filter: brightness(0.96); }
  50% { box-shadow: 0 0 10px rgba(105, 219, 124, 0.34); filter: brightness(1.06); }
}

.phone-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  position: relative;
  max-width: 460px;
  margin-inline: auto;
}
.phone-pair::before {
  content: '';
  position: absolute;
  inset: 12% -6% -4% -6%;
  background: radial-gradient(55% 50% at 50% 58%, rgba(232, 89, 12, 0.30), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.phone-pair img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
}
.phone-pair img:last-child { transform: translateY(clamp(1.4rem, 3.5vw, 2.6rem)) rotate(1.75deg); }

.feature-panda .phone-pair::before {
  background: radial-gradient(55% 50% at 50% 58%, rgba(47, 158, 68, 0.30), transparent 70%);
}
.feature-panda .phone-pair img:last-child { transform: translateY(clamp(1.4rem, 3.5vw, 2.6rem)) rotate(-1.75deg); }

@media (max-width: 860px) {
  .feature-band .feature-grid { grid-template-columns: 1fr; }
  .phone-pair { max-width: 380px; }
}

/* ── Footer sign-off line ───────────────────────────────────── */

.footer-sign {
  font-family: var(--font-display);
  font-style: italic;
  color: #cfd6e4;
}

/* ── Footer: pages in two tight columns, and a proper inquiry button ── */

.footer-pages {
  column-count: 2;
  column-gap: 1.6rem;
}
.footer-pages li { break-inside: avoid; }

.btn-footer {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(240, 140, 0, 0.5);
  background: color-mix(in srgb, var(--ember) 16%, transparent);
  color: #ffe3bf;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease,
    transform 0.16s ease;
}
.site-footer a.btn-footer:hover,
.site-footer a.btn-footer:focus-visible {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}
