@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,400..800&family=Inter:wght@400;500;700&display=swap');
:root {
  --c-bg:        #0f172a;   /* slate 900, deep navy for dark sections */
  --c-bg-alt:    #1e293b;   /* slate 800 */
  --c-surface:   #ffffff;
  --c-ink:       #0f172a;   /* same as bg, dark slate text on white */
  --c-ink-soft:  #475569;   /* slate 600, secondary text */
  --c-line:      #e2e8f0;   /* slate 200, hairlines */
  --c-accent:    #0d9488;   /* teal 600, primary brand */
  --c-accent-2:  #2dd4bf;   /* teal 400, bright accent (matches camera icon) */
  --c-success:   #15803d;   /* emerald 700 */
  --c-cream:     #f8fafc;   /* slate 50, light surface tint */

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
  --fs-1:        clamp(2.4rem, 5vw, 4rem);
  --fs-2:        clamp(1.7rem, 3.2vw, 2.4rem);
  --fs-3:        1.3rem;
  --fs-body:     1.0625rem;
  --lh-tight:    1.1;
  --lh-body:     1.7;

  --r:           10px;       /* softer, craft feel */
  --r-lg:        18px;
  --maxw:        1120px;
  --pad-x:       clamp(1rem, 4vw, 2rem);
}
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-ink); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 95;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--c-ink);
}
h1 {
  font-weight: 700;
  font-variation-settings: "wdth" 90;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h2 { font-weight: 650; }
h1 { font-size: var(--fs-1); }
h2 { font-size: var(--fs-2); }
h3 { font-size: var(--fs-3); }
p { margin: 0 0 1em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.masthead {
  background: var(--c-bg);
  color: var(--c-cream);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
}
.masthead__row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem; gap: 1rem;
  min-width: 0;
}
.masthead__row .wordmark { min-width: 0; flex: 0 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.masthead__row .topnav { flex: 0 0 auto; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--c-cream);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.55rem;
  letter-spacing: -0.02em;
}
.wordmark__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-accent-2);
  box-shadow: 0 0 0 3px var(--c-accent);
}
.wordmark__tld { color: var(--c-accent-2); font-weight: 500; }
/* Three-tier responsive nav.
   Desktop  >= 980px: full inline nav, Buy button at the end of nav,
                      hamburger hidden, sibling masthead__buy hidden.
   Tablet   560-979:  hamburger button + sibling masthead__buy inline next
                      to wordmark; nav links collapse into a dropdown
                      anchored to bottom of masthead, opened by hamburger.
   Mobile   < 560px:  hamburger only (sibling masthead__buy hidden); the
                      Buy button moves into the dropdown via topnav__buy-mobile. */

/* === Default = desktop (>= 980px) === */
.topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.4rem;
  font-family: var(--font-sans);
}
.topnav a {
  color: var(--c-cream);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r);
  white-space: nowrap;
}
.topnav a:hover { background: rgba(255,255,255,0.08); color: var(--c-accent-2); }
.topnav .btn { margin-left: 0.35rem; }

/* Hamburger toggle button: hidden on desktop, shown on tablet + mobile. */
.masthead__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  color: var(--c-cream);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.masthead__toggle:hover { border-color: var(--c-accent-2); color: var(--c-accent-2); }

/* Sibling Buy button next to wordmark: hidden on desktop (no nav Buy needed,
   the inline nav links are visible), shown on tablet, hidden again on mobile
   (moves into dropdown). Uses !important to beat .btn { display: inline-block }
   which appears later in the cascade at equal specificity. */
.masthead__buy {
  display: none !important;
}

/* Buy button inside the nav: shown on desktop (inline, last nav item) and
   mobile (inside dropdown). Hidden on tablet where .masthead__buy is inline
   next to the hamburger instead. */
.topnav__buy-mobile {
  display: none !important;
}
@media (min-width: 980px) {
  .topnav__buy-mobile {
    display: inline-flex !important;
    margin-left: 0.35rem;
  }
}

/* === Tablet 560 - 979px: hamburger + inline Buy + dropdown nav === */
@media (max-width: 979px) {
  .masthead__row {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
  .wordmark { flex: 0 1 auto; min-width: 0; }
  .masthead__buy {
    display: inline-flex !important;
    margin-left: auto;
    flex-shrink: 0;
  }
  .masthead__toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
  /* Collapse the inline nav into a dropdown anchored under the masthead. */
  .topnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-bg-alt);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0.5rem 1rem 0.85rem;
    gap: 0;
    z-index: 60;
  }
  .topnav.is-open {
    display: flex;
  }
  .topnav a {
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }
  .topnav a:last-child { border-bottom: 0; }
  .topnav .btn { margin: 0; }
  /* On tablet the inline Buy is already shown, so the in-dropdown Buy stays hidden. */
  .topnav__buy-mobile { display: none; }
}

/* === Mobile < 560px: hamburger only, Buy moves into dropdown === */
@media (max-width: 559px) {
  .masthead__buy { display: none !important; }
  .topnav__buy-mobile {
    display: inline-flex !important;
    margin-top: 0.6rem;
    text-align: center;
    border-bottom: 0 !important;
    border-radius: 8px !important;
    padding: 0.85rem 1rem !important;
    background: var(--c-accent);
    color: var(--c-bg);
    font-weight: 700;
  }
  .topnav__buy-mobile:hover { background: var(--c-accent-2); }
  .masthead__row { gap: 0.5rem; padding-block: 0.85rem; }
  .wordmark { font-size: 1rem; gap: 0.4rem; }
  .wordmark__dot { width: 8px; height: 8px; box-shadow: 0 0 0 2.5px var(--c-accent); }
}
.intro {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(232,169,82,0.12), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(29,106,106,0.18), transparent 50%),
    var(--c-cream);
  color: var(--c-ink);
  padding-block: clamp(3rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem 3rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
/* Tablets and narrow laptops: collapse the 2-col hero to a single column
   well before 780px so the big stat numbers never collide with the lede. */
@media (max-width: 980px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .intro__stats,
  .intro__lede,
  .intro__actions,
  .intro__shot,
  .intro__features {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    max-width: 100%;
  }
  .intro__stats dd { font-size: clamp(2.4rem, 7vw, 3.4rem); }
  .intro__shot { margin-top: 0.5rem; }
}
.crumbs {
  padding-block: 1rem 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--c-ink-soft);
}
.crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem;
}
.crumbs li { list-style: none; display: inline-flex; align-items: center; }
.crumbs li + li::before {
  content: "›";
  color: var(--c-accent);
  margin-right: 0.55rem;
  font-weight: 700;
}
.crumbs a {
  color: var(--c-ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.crumbs a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.crumbs li[aria-current="page"] { color: var(--c-ink); font-weight: 500; }
.intro__byline {
  grid-column: 1 / -1;
  margin: -0.6em 0 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intro__headline {
  grid-column: 1 / -1;
  font-size: clamp(2rem, 6.5vw, 5.2rem);
  max-width: 18ch;
  margin: 0 0 0.6em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.intro__headline::after {
  content: "";
  display: inline-block; width: 0.6ch; height: 0.9em;
  background: var(--c-accent);
  margin-left: 0.15ch; vertical-align: -0.08em;
  animation: introBlink 1.4s steps(2, end) infinite;
}
@keyframes introBlink { 50% { opacity: 0; } }
.intro__stats {
  grid-column: 1 / 2;
  grid-row: 3;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-self: start;
  border-top: 1px solid var(--c-ink);
}
.intro__stats > div {
  margin: 0;
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.intro__stats dt {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-ink-soft);
  line-height: 1.3;
  max-width: 22ch;
}
.intro__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  font-variation-settings: "wdth" 88;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  text-align: right;
}
.intro__stats dd::first-letter { color: var(--c-accent); }
.intro__lede {
  grid-column: 2 / -1;
  grid-row: 3;
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 48ch;
  align-self: start;
}
.intro__lede p { margin: 0 0 0.9em; }
.intro__lede strong { color: var(--c-ink); font-weight: 600; }
.intro__actions {
  grid-column: 2 / -1;
  grid-row: 4;
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 0.5rem;
  align-self: start;
}
.intro__lineup {
  grid-column: 1 / -1;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  counter-reset: rig;
}
.intro__lineup li { list-style: none; margin: 0; padding: 0; }
@media (max-width: 900px) {
.intro__lineup { grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
}
@media (max-width: 640px) {
.intro__lineup { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 1.5rem; }
}
@media (max-width: 780px) {
.intro { padding-block: clamp(2rem, 7vw, 3rem) 0; }
.intro__grid { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 2rem; }
.crumbs { padding-block: 0.85rem 0.1rem; font-size: 0.72rem; }
.crumbs ol { gap: 0.35rem; }
.intro__byline { font-size: 0.72rem; margin-bottom: 1.4rem; }
.intro__headline { max-width: 100%; margin-bottom: 0.4em; }
.intro__stats { grid-column: 1 / -1; border-top-color: var(--c-ink); }
.intro__stats > div { padding: 0.85rem 0; }
.intro__stats dt { font-size: 0.72rem; max-width: none; }
.intro__stats dd { font-size: clamp(2.2rem, 11vw, 3rem); }
.intro__lede { grid-column: 1 / -1; max-width: 100%; font-size: 0.98rem; }
.intro__actions { grid-column: 1 / -1; align-self: auto; margin-top: 0.3rem; }
.intro__actions .btn { flex: 1 1 auto; text-align: center; padding: 0.85rem 1rem; }
}
@media (max-width: 420px) {
.intro__headline { font-size: clamp(1.75rem, 9vw, 2.2rem); }
}
.swatches__head {
  padding-block: clamp(3rem, 6vw, 4rem) 1.5rem;
}
.swatches__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.swatches__title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 22ch;
  margin: 0 0 0.7rem;
}
.swatches__lede {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin: 0;
}
.swatch-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.swatch-strip li { list-style: none; margin: 0; padding: 0; display: block; }
.swatch {
  background: var(--s);
  color: #faf6ef;
  text-decoration: none;
  padding: 2rem 1.1rem 1.4rem;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: transform .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}
.swatch-strip li:last-child .swatch { border-right: 0; }
.swatch::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(0,0,0,0.09) 0 2px,
      transparent 2px 10px
    ),
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.swatch:hover { filter: brightness(1.12); transform: translateY(-3px); }
.swatch:hover .swatch__cta { opacity: 1; transform: translateY(0); }
.swatch__brand {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  opacity: 0.82;
  position: relative;
  margin-bottom: 0.25rem;
}
.swatch__name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  font-variation-settings: "wdth" 92;
  line-height: 1.12;
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 0.35rem;
}
.swatch__type {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  opacity: 0.72;
  position: relative;
}
.swatch__cta {
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.22);
  position: relative;
  opacity: 0.6;
  transform: translateY(2px);
  transition: opacity .2s ease, transform .2s ease;
}
@media (max-width: 900px) {
.swatch-strip { grid-template-columns: repeat(3, 1fr); }
.swatch { min-height: 120px; padding: 1.8rem 0.85rem 1.4rem; }
.swatch:nth-child(3) { border-right: 0; }
.swatch:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.08); }
.swatch__name { font-size: 0.88rem; }
}
@media (max-width: 520px) {
.swatch-strip { grid-template-columns: repeat(2, 1fr); }
.swatch {
    min-height: 100px; padding: 1.4rem 0.75rem 1.1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
.swatch:nth-child(-n+2) { border-top: 0; }
.swatch:nth-child(even) { border-right: 0; }
.swatch:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
.swatch__name { font-size: 0.82rem; }
}
.fences {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.fences__head {
  max-width: 780px;
  margin: 0 0 2.5rem;
}
.fences__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
}
.fences__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin-bottom: 0.8rem;
}
.fences__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 62ch;
  margin: 0;
}
.fences__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fences__grid li { list-style: none; margin: 0; padding: 0; }
.fence-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.fence-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 14px 36px rgba(42,26,18,0.14);
}
.fence-card__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fence-card__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--c-bg-alt);
}
.fence-card__cap {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fence-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  font-variation-settings: "wdth" 94;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.2;
}
.fence-card__sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin: 0;
}
.fence-card__body {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin: 0.3rem 0 0;
}
@media (max-width: 900px) {
.fences__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 560px) {
.fences__grid { grid-template-columns: 1fr; gap: 1rem; }
.fences__head { margin-bottom: 2rem; }
.fence-card__cap { padding: 1rem 1.1rem 1.15rem; }
}
.btn {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: transform .08s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--c-accent);
  color: #ffffff;
  border-color: var(--c-accent);
}
.btn--primary:hover {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
}
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); }
section { padding-block: clamp(3rem, 7vw, 5rem); }
.matchmaker {
  background: var(--c-bg-alt);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.matchmaker__head { max-width: 760px; margin: 0 0 2rem; }
.matchmaker__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.matchmaker__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  color: var(--c-cream);
  max-width: 22ch;
  margin: 0 0 0.8rem;
}
.matchmaker__lede {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.82);
  max-width: 62ch;
  margin: 0;
}
.matchmaker__lede p {
  margin: 0 0 0.9rem;
  line-height: 1.65;
}
.matchmaker__lede p:last-child { margin-bottom: 0; }
.matchmaker__lede strong { color: var(--c-cream); font-weight: 700; }
.matchmaker__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.mm-field {
  background: rgba(255, 246, 235, 0.04);
  border: 1px solid rgba(255, 246, 235, 0.12);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.35rem 1.1rem;
  margin: 0;
  min-width: 0;
}
.mm-field legend {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--c-cream);
  padding: 0;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.mm-field__num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  background: rgba(232, 169, 82, 0.14);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
}
.mm-field__hint {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.58);
  margin: 0 0 0.9rem;
  line-height: 1.5;
}
.mm-field__options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mm-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: transparent;
  border: 1px solid rgba(255, 246, 235, 0.1);
  border-radius: var(--r);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.mm-opt:hover { background: rgba(255, 246, 235, 0.06); border-color: rgba(255, 246, 235, 0.2); }
.mm-opt input {
  margin: 0.22em 0 0;
  accent-color: var(--c-accent-2);
  width: 1rem; height: 1rem;
  flex: 0 0 auto;
}
.mm-opt span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.3;
}
.mm-opt span small {
  display: block;
  font-weight: 400;
  font-size: 0.76rem;
  color: rgba(250, 246, 239, 0.55);
  margin-top: 0.15rem;
}
.mm-opt:has(input:checked) {
  background: rgba(232, 169, 82, 0.14);
  border-color: var(--c-accent-2);
}
.matchmaker__submit {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 246, 235, 0.1);
}
.matchmaker .btn--primary {
  background: var(--c-accent-2);
  color: var(--c-ink);
  border-color: var(--c-accent-2);
}
.matchmaker .btn--primary:hover {
  background: var(--c-cream);
  border-color: var(--c-cream);
  color: var(--c-bg);
}
.matchmaker .btn--ghost {
  color: var(--c-cream);
  border: 2px solid rgba(255, 246, 235, 0.3);
  background: transparent;
}
.matchmaker .btn--ghost:hover {
  background: rgba(255, 246, 235, 0.08);
  border-color: var(--c-cream);
}
.matchmaker__result { display: block; margin-top: 2rem; }
.mm-result {
  background: var(--c-surface);
  color: var(--c-ink);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  border: 1px solid var(--c-line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
.mm-result__flag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin: 0 0 0.6rem;
}
.mm-result__card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.mm-result__card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.mm-result__type {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin: 0 0 0.2rem;
}
.mm-result__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--c-ink);
}
.mm-result__blurb {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  margin: 0 0 0.9rem;
}
.mm-result__bar {
  height: 8px;
  background: var(--c-cream);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.mm-result__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  transition: width .5s ease;
}
.mm-result__score {
  font-size: 0.84rem;
  color: var(--c-ink-soft);
  margin: 0 0 1rem;
}
.mm-result__runner {
  padding-left: 1.5rem;
  border-left: 1px solid var(--c-line);
}
.mm-mini {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  padding: 0.7rem;
  border-radius: var(--r);
  transition: background .15s ease;
}
.mm-mini:hover { background: var(--c-cream); }
.mm-mini img {
  width: 70px; height: 70px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  flex: 0 0 auto;
}
.mm-mini span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.mm-mini strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--c-ink);
}
.mm-mini em {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--c-ink-soft);
}
.mm-result__rest {
  grid-column: 1 / -1;
  border-top: 1px solid var(--c-line);
  padding-top: 1rem;
}
.mm-result__rest summary {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  cursor: pointer;
  list-style: none;
  padding: 0.4rem 0;
}
.mm-result__rest summary::-webkit-details-marker { display: none; }
.mm-result__rest summary::before { content: "▸ "; color: var(--c-accent); margin-right: 0.2rem; }
.mm-result__rest[open] summary::before { content: "▾ "; }
.mm-result__rest ol {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.mm-result__rest li { margin: 0; }
.mm-result__rest a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0.75rem;
  background: var(--c-cream);
  border-radius: 4px;
  text-decoration: none;
  color: var(--c-ink);
  transition: background .15s ease;
}
.mm-result__rest a:hover { background: rgba(232, 169, 82, 0.14); }
.mm-rest__name { font-weight: 600; font-size: 0.92rem; }
.mm-rest__score {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--c-ink-soft);
  font-weight: 600;
}
.matchmaker__fallback {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 246, 235, 0.08);
  border-radius: var(--r);
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
.matchmaker__form { grid-template-columns: 1fr; }
.mm-result { grid-template-columns: 1fr; }
.mm-result__runner { padding-left: 0; padding-top: 1.2rem; border-left: 0; border-top: 1px solid var(--c-line); }
}
@media (max-width: 560px) {
.mm-result { padding: 1.2rem; }
.mm-result__card { grid-template-columns: 1fr; }
.mm-result__card img { max-width: 220px; }
.mm-result__name { font-size: 1.3rem; }
}
.proof {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.proof__head { max-width: none; margin: 0 0 2.5rem; }
.proof__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.proof__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.proof__lede {
  max-width: 72ch;
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 64ch;
  margin: 0;
}
.proof__gallery {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof__gallery li { list-style: none; margin: 0; padding: 0; }
.proof__gallery figure {
  margin: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.proof__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--c-bg-alt);
}
.proof__gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--c-ink-soft);
}
.proof__gallery figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 650;
  font-variation-settings: "wdth" 94;
  color: var(--c-ink);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 900px) {
.proof__gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
.proof__gallery { grid-template-columns: 1fr; gap: 0.8rem; }
}
.proof__pillars {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.proof__pillars li {
  list-style: none;
  margin: 0;
  padding: 1.2rem 1.3rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
}
.proof__pillars h3 {
  font-size: 1rem;
  margin: 0 0 0.45rem;
  color: var(--c-ink);
}
.proof__pillars p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
.proof__pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
.proof__pillars { grid-template-columns: 1fr; gap: 0.8rem; }
}
.reviews {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.reviews__head {
  max-width: none;
  margin: 0 0 3rem;
}
.reviews__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.reviews__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.reviews__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 72ch;
  margin: 0;
}
.reviews__lede p { margin: 0 0 0.85em; }
.reviews__lede p:last-child { margin-bottom: 0; }
/* Legacy .review grid from fence-template removed — conflicted with
   /reviews/ pages. See .review and .review__* rules further down. */
.guide {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.guide__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.ba {
  background: var(--c-bg-alt);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ba__head { max-width: 780px; margin: 0 0 2.5rem; }
.ba__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.ba__head h2 {
  color: var(--c-cream);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.ba__lede {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.78);
  max-width: 62ch;
  margin: 0;
}
.ba__grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ba__grid li { list-style: none; margin: 0; padding: 0; }
.ba__card {
  margin: 0;
  background: var(--c-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}
.ba__card:hover { transform: translateY(-3px); border-color: var(--c-accent-2); }
.ba__card img {
  display: block;
  width: 100%;
  aspect-ratio: 2000 / 1200;
  object-fit: cover;
}
.ba__card figcaption {
  padding: 1.1rem 1.3rem 1.25rem;
  color: var(--c-cream);
}
.ba__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--c-cream);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.ba__stain {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  margin: 0 0 0.6rem;
}
.ba__note {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.68);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 760px) {
.ba__grid { grid-template-columns: 1fr; }
}
.routine__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.estimator__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.workshop .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent-2);
  margin-bottom: 0.75rem;
}
.picks { background: var(--c-cream); }
.pick {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 640px) {
.pick { grid-template-columns: 1fr; }
}
.tests {
  grid-column: 1 / -1; /* span both image + body columns full width */
  margin: 1.5rem -1.75rem -1.75rem; /* break out of pick padding to true edge */
  padding: 0 1.75rem;
  border-top: 1px solid var(--c-line);
  background: var(--c-surface);
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
}
.tests[open] {
  padding-bottom: 1.75rem;
}
.tests[open] .tests__toggle::after { content: '-'; transform: rotate(0deg); }
@keyframes testsReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }
.paint__strip img[src*=".jpg"]:not([src^="http"]) {
  background: repeating-linear-gradient(45deg, #1a2a20 0 12px, #16271d 12px 24px);
}
.guide { background: var(--c-surface); }
.guide h3 { margin-top: 2rem; color: var(--c-bg); }
.filter {
  margin-block: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
}
.filter__chip.is-active {
  background: var(--c-bg);
  color: var(--c-cream);
  border-color: var(--c-bg);
}
@media (max-width: 820px) {
.filter { padding: 0.85rem 0.9rem; gap: 0.95rem; }
}
.picks h2, .compare h2 {
  max-width: none;
  margin-bottom: 1rem;
}
.picks .section-lede, .compare .section-lede {
  max-width: none;
  margin-bottom: 1.5rem;
}
.paint-card .btn { margin-top: auto; align-self: stretch; text-align: center; }
.compare { background: var(--c-cream); }
.compare table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 0.97rem;
}
.compare th, .compare td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-line);
}
.compare th {
  background: var(--c-bg);
  color: var(--c-cream);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:nth-child(even) { background: #faf7ee; }
@keyframes morePulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.catalogued .btn { align-self: flex-start; }
.skip { background: var(--c-bg-alt); color: var(--c-cream); }
.faq { background: var(--c-surface); }
.faq details {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.85rem;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq details:hover { border-color: #cbd5e1; }
.faq details[open] {
  border-color: var(--c-accent);
  box-shadow: 0 4px 16px -8px rgba(13, 148, 136, 0.18);
}
.faq summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.25rem;
  color: var(--c-ink);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--c-accent);
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details > p {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-soft);
  line-height: 1.65;
}
.site-footer .disclosure { color: #8a9690; font-size: 0.82rem; }
.affiliate-notice {
  background: #f0fdfa;
  border-top: 1px solid #99f6e4;
  border-bottom: 1px solid #99f6e4;
  padding: 1.1rem 0;
}
.affiliate-notice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.affiliate-notice__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.affiliate-notice__col + .affiliate-notice__col {
  border-left: 1px solid rgba(13, 148, 136, 0.22);
  padding-left: 1.5rem;
}
.affiliate-notice__badge {
  display: inline-block;
  background: #0d9488;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-start;
}
.affiliate-notice__badge--alt {
  background: #475569;
}
.affiliate-notice__body {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #0f172a;
}
.affiliate-notice__body strong { color: #0d9488; font-weight: 700; }
.affiliate-notice em {
  font-style: italic;
  color: #0d9488;
  font-weight: 600;
  background: rgba(13, 148, 136, 0.08);
  padding: 0 0.25rem;
  border-radius: 2px;
}
@media (max-width: 820px) {
.affiliate-notice__grid { gap: 1.25rem; }
.affiliate-notice__col + .affiliate-notice__col { padding-left: 1.25rem; }
}
@media (max-width: 720px) {
.affiliate-notice__grid { grid-template-columns: 1fr; }
.affiliate-notice__col + .affiliate-notice__col {
    border-left: 0;
    border-top: 1px solid rgba(217, 119, 66, 0.25);
    padding-left: 0;
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
.affiliate-notice { padding: 0.95rem 0; }
.affiliate-notice__body { font-size: 0.82rem; }
.affiliate-notice__badge { font-size: 0.62rem; padding: 0.25rem 0.55rem; }
}
.skip { padding-block: 2.5rem; }
.faq { padding-block: 3.5rem; margin-top: 1rem; }
.faq h2 { margin-bottom: 1.25rem; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #d97742;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #f3c98a;
}
.howto .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #b04a14;
  margin-bottom: 0.75rem;
}
.calc .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #b04a14;
  margin-bottom: 0.75rem;
}
@media (max-width: 640px) {
.calc__cta .btn { width: 100%; text-align: center; }
}
@keyframes fabShake {
  0%, 92%, 100% { transform: translate(0, 0) rotate(0); }
  93% { transform: translate(-2px, -1px) rotate(-2deg); }
  94% { transform: translate(2px, -1px) rotate(2deg); }
  95% { transform: translate(-2px, 1px) rotate(-2deg); }
  96% { transform: translate(2px, 0) rotate(1deg); }
  97% { transform: translate(-1px, -1px) rotate(-1deg); }
  98% { transform: translate(1px, 1px) rotate(1deg); }
  99% { transform: translate(0, 0) rotate(0); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.matrix {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.matrix__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.stains__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.stain-card__starline .star { color: var(--c-line); }
.stain-card__starline .star.is-full, .stain-card__starline .star.is-half { color: var(--c-accent-2); }
.stain-card__starline .star.is-half { opacity: 0.55; }
@media (max-width: 760px) {
.fence-card__body, .ba__note, .mm-result__blurb {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
  }
.review, .fence-card, .ba__card {
    max-width: 100%;
    min-width: 0;
  }
.intro__stats {
    min-width: 0;
  }
.fence-card__figure img, .ba__card img { max-width: 100%; }
}
.swatch-strip, .intro__lineup {
  max-width: 100%;
}
.cam-finder {
  margin-top: 1.5rem;
  padding: 1.75rem;
  background: #f8f5ee;
  border: 1px solid #ebe3d2;
  border-radius: 14px;
}
.cam-finder__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b5544;
  margin-bottom: 0.5rem;
}
.cam-finder__inputwrap {
  position: relative;
  max-width: 520px;
}
.cam-finder__input {
  width: 100%;
  font: inherit;
  font-size: 1.05rem;
  padding: 0.95rem 1rem 0.95rem 2.85rem;
  border: 2px solid #d8cdb6;
  border-radius: 10px;
  background: #ffffff;
  color: #231509;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.cam-finder__input::placeholder { color: #a89c87; }
.cam-finder__input:focus {
  outline: none;
  border-color: #1d6a6a;
  box-shadow: 0 0 0 4px rgba(29, 106, 106, 0.18);
}
.cam-finder__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}
.cam-finder__status {
  margin: 0.85rem 0 1.5rem;
  font-size: 0.92rem;
  color: #6b5544;
}
.cam-finder__status strong { color: #231509; font-weight: 700; }
.cam-finder__noresult {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border-left: 4px solid #1d6a6a;
  border-radius: 6px;
  color: #6b5544;
}
.cam-family { margin-bottom: 1.5rem; }
.cam-family:last-of-type { margin-bottom: 0; }
.cam-family[hidden] { display: none; }
.cam-family__title {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #231509;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}
.cam-family__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a7a64;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cam-family__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}
.cam-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  background: #ffffff;
  border: 1px solid #e6dcce;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #231509;
  transition: border-color 0.12s, transform 0.12s, background 0.12s, box-shadow 0.12s;
  cursor: default;
}
.cam-pill[hidden] { display: none; }
.cam-pill:hover {
  border-color: #1d6a6a;
  background: #f0faf9;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(29, 106, 106, 0.08);
}
.cam-pill__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1d6a6a;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.cam-pill__name {
  font-weight: 600;
  color: #231509;
  font-feature-settings: 'tnum' 1;
}
.cam-finder__icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #8a7a64;
}
.cam-finder__icon-svg { display: block; }
.cam-matches {
  margin: 0.25rem 0 1.25rem;
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #d8e8e6;
  border-left: 4px solid #1d6a6a;
  border-radius: 10px;
}
.cam-matches[hidden] { display: none; }
.cam-matches__title {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  color: #6b5544;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.cam-matches__title strong { color: #1d6a6a; font-size: 1rem; }
#cam-matches-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}
.cam-browse {
  margin-top: 0.5rem;
  border-top: 1px solid #ebe3d2;
  padding-top: 1rem;
}
.cam-browse__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #d8cdb6;
  border-radius: 10px;
  font-weight: 600;
  color: #231509;
  transition: border-color 0.15s, background 0.15s;
}
.cam-browse__summary::-webkit-details-marker { display: none; }
.cam-browse__summary:hover { border-color: #1d6a6a; background: #f0faf9; }
.cam-browse__open { display: inline; }
.cam-browse__close { display: none; }
.cam-browse[open] .cam-browse__open { display: none; }
.cam-browse[open] .cam-browse__close { display: inline; }
.cam-browse__chev {
  width: 18px;
  height: 18px;
  color: #1d6a6a;
  transition: transform 0.2s;
}
.cam-browse[open] .cam-browse__chev { transform: rotate(180deg); }
.cam-browse__body { padding-top: 1.25rem; }
.cam-pill__check { background: #1d6a6a; color: #ffffff; }
.cam-pill__check-svg { display: block; width: 12px; height: 12px; }
.not-supported {
  background: #f8f5ee;
  padding-block: 3.5rem;
}
.ns-card {
  background: #ffffff;
  border: 1px solid #ebe3d2;
  border-radius: 14px;
  padding: 1.6rem 1.85rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(35, 21, 9, 0.04);
}
.ns-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: #231509;
}
.ns-card__plain {
  margin: 0 0 1.25rem;
  color: #4a3a2c;
  line-height: 1.65;
}
.ns-card__label {
  margin: 1.15rem 0 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1d6a6a;
}
.ns-card__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  border: 1px solid #ebe3d2;
  border-radius: 8px;
  overflow: hidden;
}
.ns-card__table thead th {
  background: #f3ede0;
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b5544;
  padding: 0.6rem 0.85rem;
  font-weight: 700;
}
.ns-card__table tbody th, .ns-card__table tbody td {
  padding: 0.65rem 0.85rem;
  border-top: 1px solid #ebe3d2;
  color: #231509;
  vertical-align: top;
}
.ns-card__table tbody th {
  font-weight: 600;
  background: #fbf8f1;
  white-space: nowrap;
}
.ns-card__valuetext { display: inline-block; vertical-align: middle; margin-left: 0.15rem; }
.ns-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ns-icon--ok { color: #15803d; }
.ns-icon--no { color: #b91c1c; }
.ns-card__spo {
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
  color: #4a3a2c;
  line-height: 1.85;
}
.ns-card__spo li { margin-bottom: 0.35rem; }
.ns-card__spo li strong { color: #231509; }
.ns-card__spo li em {
  color: #1d6a6a;
  font-style: italic;
  font-weight: 500;
  padding: 0 0.35rem;
}
.ns-upsell {
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  background: #ffffff;
  border-left: 4px solid #1d6a6a;
  border-radius: 8px;
  border: 1px solid #d8e8e6;
}
.ns-upsell p { margin: 0; color: #4a3a2c; line-height: 1.6; }
.buy {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding-block: 4rem;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.buy__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 760px) {
.buy__grid { grid-template-columns: 1fr; gap: 2rem; }
}
.buy__shot {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 25px 60px -20px rgba(15, 23, 42, 0.35),
              0 8px 20px -8px rgba(15, 23, 42, 0.2);
  aspect-ratio: 16 / 10;
}
.buy__shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.buy__shot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 70%, rgba(15, 23, 42, 0.95) 100%);
  pointer-events: none;
}
.buy__shot-overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  z-index: 2;
  color: #f8fafc;
  font-family: var(--font-sans);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin: 0;
}
.buy__shot-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2dd4bf;
  padding: 0.3rem 0.7rem;
  border: 1px solid #2dd4bf;
  border-radius: 999px;
  margin: 0 0 0.6rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.buy__shot-title {
  display: block;
  font-family: var(--font-display, 'Bricolage Grotesque', serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.55rem;
  max-width: 28ch;
}
.buy__shot-attrs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #e2e8f0;
}
.buy__shot-attrs li::before {
  content: "\2713";
  color: #2dd4bf;
  font-weight: 700;
  margin-right: 0.45rem;
}
@media (max-width: 760px) {
  .buy__shot-overlay { left: 0.9rem; right: 0.9rem; bottom: 0.8rem; }
  .buy__shot-attrs { font-size: 0.72rem; }
  .buy__shot-attrs li:nth-child(n+3) { display: none; }
}
.buy__copy { max-width: 460px; }
.buy__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.buy__byline {
  font-size: 1rem;
  color: #475569;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.buy__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.buy__actions .btn { justify-content: center; }
.buy__fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
  text-transform: none;
  letter-spacing: 0;
}
.workarounds {
  background: #f8fafc;
  padding-block: 4rem;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.wa-grid {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: auto;
  align-items: start;
  gap: 1rem;
}
.wa-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.wa-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -16px rgba(15, 23, 42, 0.18);
}
.wa-card--win {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  border-color: #0d9488;
  border-width: 2px;
  box-shadow: 0 12px 40px -16px rgba(13, 148, 136, 0.35);
  position: relative;
}
.wa-card--win::before {
  content: 'Our pick';
  position: absolute;
  top: -10px;
  right: 1.25rem;
  background: #0d9488;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.wa-card__head { padding-bottom: 0.2rem; }
.wa-card__name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}
.wa-card--win .wa-card__name { color: #0d9488; }
.wa-card__audience {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}
.wa-card__meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.wa-card__meta div { min-width: 0; }
.wa-card__meta dt {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}
.wa-card__meta dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}
.wa-card__caps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
}
.wa-cap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #64748b;
}
.wa-cap__icon { width: 16px; height: 16px; flex-shrink: 0; }
.wa-cap.is-ok { color: #0f172a; }
.wa-cap.is-ok .wa-cap__icon { color: #15803d; }
.wa-cap.is-no { color: #94a3b8; }
.wa-cap.is-no .wa-cap__icon { color: #b91c1c; }
.wa-cap.is-no .wa-cap__label { text-decoration: line-through; }
.wa-cap.is-partial { color: #0f172a; }
.wa-cap.is-partial .wa-cap__icon { color: #b45309; }
.wa-cap__label { line-height: 1.2; }
.wa-cap__tag {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #b45309;
  background: #fef3c7;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: auto;
}
.wa-card__verdict {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #475569;
}
.wa-card--win .wa-card__verdict {
  color: #0f172a;
  font-weight: 500;
}
.wa-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #64748b;
  background: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}
.wa-updated strong { color: #0f172a; font-weight: 700; }
.wa-card--expandable {
  padding: 0;
  display: block;
  align-self: start;
}
.wa-details {
  display: block;
  width: 100%;
}
.wa-details__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  position: relative;
}
.wa-details__summary::-webkit-details-marker { display: none; }
.wa-details__hint {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0d9488;
  transition: gap 0.15s;
}
.wa-details__summary:hover .wa-details__hint { gap: 0.6rem; }
.wa-details__open { display: inline; }
.wa-details__close { display: none; }
.wa-details[open] .wa-details__open { display: none; }
.wa-details[open] .wa-details__close { display: inline; }
.wa-details__chev {
  width: 14px;
  height: 14px;
  color: #0d9488;
  transition: transform 0.2s;
}
.wa-details[open] .wa-details__chev { transform: rotate(180deg); }
.wa-card--expandable:has(.wa-details[open]) {
  grid-column: 1 / -1;
  border-color: #0d9488;
  box-shadow: 0 24px 60px -28px rgba(15, 23, 42, 0.25);
}
.wa-details__body {
  padding: 0 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.75rem;
  border-top: 1px solid #f1f5f9;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
}
@media (max-width: 720px) {
.wa-details__body { grid-template-columns: 1fr; gap: 1rem; }
}
.wa-explain {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}
.wa-explain--us {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  border: 2px solid #0d9488;
}
.wa-explain__title {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
}
.wa-explain--us .wa-explain__title { color: #0d9488; }
.wa-explain { min-width: 0; }
.wa-explain p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #0f172a;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.wa-buy {
  margin: 0 1.5rem 1.75rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  border: 2px solid #0d9488;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wa-buy .btn { flex: 0 1 auto; min-width: 200px; }
.wa-buy__note {
  flex: 1 1 100%;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.wa-card--win.wa-card--expandable .wa-details__hint { color: #0d9488; }
.wa-card--win .wa-details__chev { color: #0d9488; }
.wa-paa {
  margin: 0 1.5rem 1.5rem;
  padding: 1.4rem 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.wa-paa__title {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
}
.wa-paa__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.wa-paa__item details {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.15s;
}
.wa-paa__item details:hover { border-color: #cbd5e1; }
.wa-paa__item details[open] {
  border-color: #0d9488;
  box-shadow: 0 4px 12px -6px rgba(13, 148, 136, 0.18);
}
.wa-paa__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: #0f172a;
  position: relative;
  padding-right: 1.75rem;
  line-height: 1.4;
}
.wa-paa__item summary::-webkit-details-marker { display: none; }
.wa-paa__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: #0d9488;
  line-height: 1;
}
.wa-paa__item details[open] summary::after { content: '−'; }
.wa-paa__item details > p {
  margin: 0.7rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569;
  overflow-wrap: anywhere;
}
.btn--soon {
  position: relative;
  opacity: 0.85;
  cursor: not-allowed;
  border-color: #cbd5e1;
  color: #475569;
}
.btn--soon:hover { opacity: 1; border-color: #94a3b8; color: #0f172a; }
.buy__safety {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-left: 4px solid #0d9488;
  border-radius: 10px;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #0f172a;
}
.buy__safety-icon { flex-shrink: 0; color: #0d9488; margin-top: 2px; }
.buy__safety strong { color: #0d9488; display: block; margin-bottom: 0.3rem; }
.buy__safety code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.78rem;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
  padding: 0.08rem 0.35rem;
  border-radius: 3px;
}
.intro__lineup.intro__lineup {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
  counter-reset: none;
}
.cam-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cam-card:hover {
  border-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.25);
}
.cam-card__figure {
  margin: 0;
  padding: 18px 18px 6px;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cam-card__figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.cam-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.cam-card__tag {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #0d9488);
}
.cam-card__name {
  margin: 2px 0 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.cam-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cam-card__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d9488;
  font-feature-settings: 'tnum' 1;
}
.cam-card__rrp {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-feature-settings: 'tnum' 1;
}
.cam-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  margin-left: auto;
}
.cam-card__rating svg { vertical-align: -1px; }
.cam-card__rating small {
  font-weight: 500;
  color: #64748b;
  font-size: 0.72rem;
  margin-left: 2px;
}
.cam-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cam-card__btn {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.cam-card__btn--buy {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
}
.cam-card__btn--buy:hover { background: #0f766e; border-color: #0f766e; color: #ffffff; }
.cam-card__btn--review {
  background: #ffffff;
  color: #0f172a;
  border-color: #e2e8f0;
}
.cam-card__btn--review:hover { border-color: #0d9488; color: #0d9488; }
.picks {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-block: 3.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.picks__head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.picks__head .eyebrow {
  color: #0d9488;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}
.picks__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
}
.picks__lede {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.picks__grid { margin-top: 0 !important; }
.wa-summary {
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0d9488;
  border-radius: 12px;
  max-width: 760px;
}
.wa-summary__title {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0d9488;
}
.wa-summary__para {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #0f172a;
}
.wa-summary__para:last-child { margin-bottom: 0; }
.wa-summary__para strong { color: #0d9488; font-weight: 700; }
.wa-summary__tradeoffs {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.wa-summary__tradeoffs li {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #475569;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #e2e8f0;
}
.wa-summary__tradeoffs li:last-child { border-bottom: none; }
.wa-summary__tradeoffs li strong { color: #0f172a; font-weight: 700; }
/* APP SCREENSHOT, real product shot under hero */
.app-shot { padding: 2.5rem 0 0.5rem; }
.app-shot__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(15, 23, 42, 0.45), 0 10px 30px -10px rgba(15, 23, 42, 0.25);
  border: 1px solid #e2e8f0;
  background: #0f172a;
}
.app-shot__figure img {
  display: block;
  width: 100%;
  height: auto;
}
/* Caption card lives inside the slate figure — layered on top of the dark
   background with proper contrast, a teal eyebrow, a bold headline, a
   subtext row and a set of "no X" pills. */
.app-shot__cap {
  padding: 1.75rem 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.85) 40%, #0b1220 100%);
  text-align: center;
  color: #f8fafc;
  font-family: var(--font-sans, 'Inter', sans-serif);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-top: -6rem;
  position: relative;
  z-index: 2;
}
.app-shot__cap-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2dd4bf;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(45, 212, 191, 0.5);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.app-shot__cap-title {
  display: block;
  font-family: var(--font-display, 'Bricolage Grotesque', serif);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #f8fafc;
  max-width: 32ch;
  margin: 0;
}
.app-shot__cap-sub {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cbd5e1;
  max-width: 56ch;
  margin: 0;
}
.app-shot__cap-pills {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.app-shot__cap-pills li {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  padding: 0.35rem 0.85rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
}
.app-shot__cap-pills li::before {
  content: "\2713";
  color: #2dd4bf;
  font-weight: 700;
  margin-right: 0.35rem;
}
@media (max-width: 720px) {
  .app-shot__cap {
    padding: 1.25rem 1rem 1.5rem;
    margin-top: -3.5rem;
  }
  .app-shot__cap-pills { gap: 0.4rem; }
  .app-shot__cap-pills li { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
}
@media (min-width: 768px) {
  .app-shot { padding: 3.5rem 0 1rem; }
}

/* HERO welcome screenshot inside intro__grid (left column under stats).
   The source JPG has large top+bottom whitespace around the Welcome card,
   so we crop it with aspect-ratio + object-fit so only the meaningful
   centre region shows. */
.intro__shot {
  grid-column: 1 / 2;
  grid-row: 4;
  margin: 1.25rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px -25px rgba(15, 23, 42, 0.35);
  background: #f8fafc;
  align-self: start;
  aspect-ratio: 16 / 11;
}
.intro__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
@media (max-width: 720px) {
  .intro__shot { grid-column: 1 / -1; }
}

/* Hero features collapsible: spans the full hero row so the expanded grid
   doesn't create a massive empty column on the left. */
.intro__features {
  grid-column: 1 / -1;
  grid-row: 5;
  margin-top: 0;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.75rem;
}
.intro__features summary {
  cursor: pointer;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0.5rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.intro__features summary::-webkit-details-marker { display: none; }
.intro__features-chev {
  color: #0d9488;
  font-size: 0.9rem;
  transition: transform 0.15s;
}
.intro__features[open] .intro__features-chev { transform: rotate(180deg); }
.intro__features-grid {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.6rem;
}
.intro__features-grid li {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  padding-left: 1.1rem;
  position: relative;
}
.intro__features-grid li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d9488;
  font-weight: 700;
}
.intro__features-grid li strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.15em;
}
.intro__features-not {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  background: #f1f5f9;
  border-left: 3px solid #64748b;
  border-radius: 4px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #475569;
}
.intro__features-not strong {
  color: #0f172a;
  display: block;
  margin-bottom: 0.25em;
}
@media (max-width: 720px) {
  .intro__features { grid-column: 1 / -1; }
  .intro__features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Try-the-demo modal overlay, iframes /app/?demo=1
   ============================================================ */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-modal[hidden] { display: none !important; }
.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
}
.demo-modal__window {
  position: relative;
  width: min(1200px, 94vw);
  height: min(820px, 90vh);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}
.demo-modal__head {
  padding: 1rem 3.5rem 1rem 1.4rem;
  background: #0f172a;
  color: #f8fafc;
  position: relative;
  border-bottom: 1px solid #1e293b;
}
.demo-modal__head h2 {
  margin: 0 0 0.2em;
  font-size: 1.1rem;
  font-weight: 700;
}
.demo-modal__head p {
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.demo-modal__head strong { color: #2dd4bf; }
.demo-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e293b;
  color: #f8fafc;
  border: 1px solid #334155;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-modal__close:hover { background: #e11d48; border-color: #e11d48; }
.demo-modal iframe {
  flex: 1 1 auto;
  width: 100%;
  border: 0;
  background: #f1f5f9;
  overscroll-behavior: contain;
}
.demo-modal__window { overscroll-behavior: contain; }

/* =========================================================
   /reviews/ pages: scoped overrides so the review template
   doesn't inherit the homepage .intro hero background and
   the TL;DR card doesn't collide with the hero grid.
   ========================================================= */
.review-page {
  background: #ffffff;
  color: #0f172a;
  min-height: 60vh;
}
.review-page .crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.78rem;
  color: #64748b;
}
.review-page .crumbs li { display: inline-flex; align-items: center; }
.review-page .crumbs li + li::before {
  content: "›";
  color: #0d9488;
  margin-right: 0.55rem;
  font-weight: 700;
}
.review-page .crumbs a {
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.review-page .crumbs a:hover { color: #0d9488; border-bottom-color: #0d9488; }
.review-page .crumbs li[aria-current="page"] { color: #0f172a; font-weight: 500; }

/* Review article wrapper — beat the generic .wrap max-width + dark bg */
.review-page .review.wrap {
  background: #ffffff;
  max-width: 880px !important;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}
.review-page .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.review-page .review__h1 {
  font-weight: 800;
  color: #0f172a;
  max-width: 24ch;
}
.review-page .review__byline {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.88rem;
}
.review-page .review__hero {
  position: relative;
}
@media (max-width: 620px) {
  .review-page .review__hero {
    grid-template-columns: 1fr !important;
  }
}
.review-page .review__intro p {
  margin: 1rem 0;
}
.review-page .review__section h2 {
  margin-top: 0;
  font-weight: 700;
}
.review-page .review__section p a {
  color: #0d9488;
  font-weight: 600;
}
.review-page .tldr {
  font-family: var(--font-sans, 'Inter', sans-serif);
}
.review-page .tldr h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 700;
}
.review-page .tldr ul li {
  line-height: 1.55;
}
.review-page .review__cta .btn--ghost:hover {
  background: rgba(248, 250, 252, 0.1);
}
.review-page .btn {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.12s, color 0.12s;
}
.review-page .btn--primary {
  background: #0d9488;
  color: #f0fdfa;
  border-color: #0d9488;
}
.review-page .btn--primary:hover { background: #0f766e; border-color: #0f766e; }
.review-page .btn--ghost {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.review-page .btn--ghost:hover { border-color: #0d9488; color: #0d9488; }

/* Legacy <details>-based topnav rule removed — masthead now uses a plain
   <nav class="topnav"> rendered via the rules earlier in this file. */

/* =========================================================
   Site footer (used by homepage and /reviews/ pages)
   ========================================================= */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2rem 0;
  margin-top: 4rem;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.88rem;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer p { margin: 0; max-width: 62ch; line-height: 1.55; }
.footer em { color: #94a3b8; font-style: italic; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer nav a {
  color: #2dd4bf;
  text-decoration: none;
  font-weight: 600;
}
.footer nav a:hover { color: #5eead4; text-decoration: underline; }
@media (max-width: 720px) {
  .footer__row { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   /reviews/ pages: clean class-based layout. Single column,
   no grid guesswork, guaranteed to render correctly.
   ========================================================= */
.review-page {
  background: #ffffff;
  color: #0f172a;
  min-height: 60vh;
  padding-bottom: 3rem;
}
.review {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  font-family: var(--font-sans, 'Inter', sans-serif);
}
.review__head {
  margin-bottom: 1.5rem;
}
.review__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.review__title {
  font-family: 'Bricolage Grotesque', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 0.6rem;
  max-width: 22ch;
  font-weight: 800;
}
.review__byline {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0 0 1.5rem;
}

/* Hero: image on top, details below. No grid, single column.
   On wider screens, flip to side-by-side via flex. */
.review__hero {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 1.75rem;
}
.review__image {
  flex: 0 0 220px;
  margin: 0;
}
.review__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.review__meta {
  flex: 1 1 260px;
  min-width: 240px;
}
.review__price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0 0 0.5rem;
}
.review__price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}
.review__price-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
}
.review__price-note {
  font-size: 0.78rem;
  color: #94a3b8;
}
.review__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}
.review__rating-value {
  margin-left: 0.25rem;
  font-weight: 700;
  color: #0f172a;
}
.review__rating-count {
  color: #64748b;
  font-size: 0.88rem;
}
.review__cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* TL;DR card: full-width below the hero, never side-by-side */
.review__tldr {
  margin: 0 0 2rem;
  padding: 1.25rem 1.5rem;
  background: #ecfeff;
  border-left: 4px solid #0d9488;
  border-radius: 10px;
}
.review__tldr h2 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Bricolage Grotesque', serif;
}
.review__tldr ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #0f172a;
}
.review__tldr ul li {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}
.review__tldr ul li:last-child { margin-bottom: 0; }

/* Intro + body sections */
.review__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.review__intro p { margin: 0 0 1rem; }
.review__section {
  margin: 2rem 0;
}
.review__section h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.45rem;
  color: #0f172a;
  margin: 0 0 0.6rem;
  font-weight: 700;
  line-height: 1.25;
}
.review__section p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1e293b;
  margin: 0;
}
.review__section p a {
  color: #0d9488;
  font-weight: 600;
}
.review__section p a:hover { text-decoration: underline; }

/* Final buy CTA block (dark) */
.review__buy {
  margin: 2.5rem 0;
  padding: 1.75rem 1.5rem;
  background: #0f172a;
  color: #f8fafc;
  border-radius: 14px;
  text-align: center;
}
.review__buy h2 {
  font-family: 'Bricolage Grotesque', serif;
  color: #f8fafc;
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.review__buy p {
  color: #cbd5e1;
  margin: 0 0 1.1rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.review__buy .review__cta-row { justify-content: center; }

/* FAQ accordion */
.review__faq {
  margin-top: 2.5rem;
}
.review__faq h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.45rem;
  color: #0f172a;
  margin: 0 0 1rem;
  font-weight: 700;
}
.review__faq-list details {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.6rem;
  background: #ffffff;
}
.review__faq-list summary {
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}
.review__faq-list summary::-webkit-details-marker { display: none; }
.review__faq-list summary::before {
  content: "+";
  display: inline-block;
  width: 16px;
  color: #0d9488;
  font-weight: 700;
  margin-right: 0.4rem;
}
.review__faq-list details[open] summary::before { content: "−"; }
.review__faq-list p {
  margin: 0.6rem 0 0;
  color: #334155;
  line-height: 1.65;
}

.review__disclaimer {
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}

/* Review page buttons (matches homepage brand) */
.review-page .btn {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, background 0.12s, color 0.12s;
}
.review-page .btn--primary {
  background: #0d9488;
  color: #f0fdfa;
  border-color: #0d9488;
}
.review-page .btn--primary:hover {
  background: #0f766e;
  border-color: #0f766e;
}
.review-page .btn--ghost {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.review-page .btn--ghost:hover {
  border-color: #0d9488;
  color: #0d9488;
}
.review-page .review__buy .btn--ghost-light {
  color: #f8fafc;
  border-color: #f8fafc;
}
.review-page .review__buy .btn--ghost-light:hover {
  background: rgba(248, 250, 252, 0.1);
  color: #2dd4bf;
  border-color: #2dd4bf;
}

/* =========================================================
   Review body sections polish — turn plain prose into cards
   with a teal accent bar, bigger headings, and proper spacing.
   Also force FAQ + all children to be full-width block.
   ========================================================= */
.review-page .review__section {
  display: block !important;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0d9488;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin: 1.4rem 0;
}
.review-page .review__section h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.3rem;
  color: #0f172a;
  margin: 0 0 0.7rem;
  font-weight: 700;
  line-height: 1.25;
}
.review-page .review__section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}
.review-page .review__section + .review__section {
  margin-top: 0.8rem;
}
/* FAQ: force full width with no parent grid interference */
.review-page .review__faq {
  display: block !important;
  width: 100%;
  margin-top: 2.5rem;
}
.review-page .review__faq-list {
  display: block;
  width: 100%;
}
.review-page .review__faq-list details {
  display: block;
  width: 100%;
}

/* Camera finder section wrapper used on review pages (homepage uses its
   own inline section wrapper). */
.review-page .cam-finder-section {
  margin: 2.5rem 0;
  padding: 1.6rem 1.7rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.review-page .cam-finder-section__head { margin-bottom: 1.25rem; }
.review-page .cam-finder-section__head h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.4rem;
  color: #0f172a;
  margin: 0.5rem 0 0.5rem;
  font-weight: 700;
  line-height: 1.25;
}
.review-page .cam-finder-section__lede {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.review-page .cam-finder-section .eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border: 1px solid #0d9488;
  color: #0d9488;
  border-radius: 999px;
  margin: 0;
}

/* =========================================================
   Review page: "More Tapo cameras to consider" filterable grid
   ========================================================= */
.review-page .cam-alts {
  margin: 2rem 0;
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}
.review-page .cam-alts__head { margin-bottom: 1.25rem; }
.review-page .cam-alts__head .eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border: 1px solid #0d9488;
  color: #0d9488;
  border-radius: 999px;
  margin: 0 0 0.6rem;
}
.review-page .cam-alts__head h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.35rem;
  color: #0f172a;
  margin: 0 0 0.5rem;
  font-weight: 700;
  line-height: 1.25;
}
.review-page .cam-alts__lede {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.review-page .cam-alts__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.review-page .cam-alts__pill {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.review-page .cam-alts__pill:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.review-page .cam-alts__pill.is-active {
  background: #0d9488;
  color: #f0fdfa;
  border-color: #0d9488;
}
.review-page .cam-alts__pill.is-active:hover { background: #0f766e; }
.review-page .cam-alts__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.review-page .cam-alts__card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.review-page .cam-alts__card[hidden] { display: none; }
.review-page .cam-alts__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -15px rgba(13, 148, 136, 0.25);
  border-color: #0d9488;
}
.review-page .cam-alts__figure {
  margin: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.review-page .cam-alts__figure img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.review-page .cam-alts__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.review-page .cam-alts__type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #0d9488);
  margin: 0;
}
.review-page .cam-alts__name {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.review-page .cam-alts__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.8rem;
}
.review-page .cam-alts__price {
  font-weight: 800;
  color: #0d9488;
  font-size: 0.95rem;
}
.review-page .cam-alts__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.review-page .cam-alts__stars-track {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 10px;
  background: linear-gradient(to right, #e5e7eb 0 100%);
  border-radius: 2px;
  overflow: hidden;
}
.review-page .cam-alts__stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #f59e0b;
}
.review-page .cam-alts__rating-text {
  color: #64748b;
  font-size: 0.75rem;
}
.review-page .cam-alts__pitch {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.review-page .cam-alts__actions {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.review-page .cam-alts__btn {
  flex: 1;
  padding: 0.55rem 0.7rem;
  border-radius: 7px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.12s;
  white-space: nowrap;
}
.review-page .cam-alts__btn--primary {
  background: #0d9488;
  color: #f0fdfa;
  border-color: #0d9488;
}
.review-page .cam-alts__btn--primary:hover { background: #0f766e; }
.review-page .cam-alts__btn--ghost {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.review-page .cam-alts__btn--ghost:hover { border-color: #0d9488; color: #0d9488; }
.review-page .cam-alts__foot {
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}
.review-page .cam-alts__foot a {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
}
.review-page .cam-alts__foot a:hover { text-decoration: underline; }

/* =========================================================
   /buy/ centroid block: PayPal button + pitch right under
   the H1. Left-aligned, no center-align inheritance from
   .review__buy, no narrow max-width on paragraphs.
   ========================================================= */
.buy-centroid {
  margin: 1.25rem 0 2rem;
  padding: 1.5rem 1.75rem 1.25rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 14px;
  text-align: left;
}
.buy-centroid__h {
  margin: 0 0 0.5rem;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
  max-width: none;
}
.buy-centroid__lede {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #334155;
  max-width: none;
}
.buy-centroid__paypal {
  max-width: 100%;
  margin: 0 0 0.85rem;
}
.buy-centroid__foot {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #475569;
  max-width: none;
  text-align: left;
}
.buy-centroid__foot a { color: #0d9488; font-weight: 600; text-decoration: none; }
.buy-centroid__foot a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .buy-centroid { padding: 1.25rem 1.15rem; }
  .buy-centroid__h { font-size: 1.2rem; }
}

/* =========================================================
   /buy/ lead capture form (Step 1 of the two-step checkout)
   ========================================================= */
.buy-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.buy-form__h {
  margin: 0;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
}
.buy-form__lede {
  margin: -0.35rem 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}
.buy-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.buy-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
}
.buy-form input[type="text"],
.buy-form input[type="email"] {
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 2px solid #99f6e4;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  transition: border-color 0.15s;
}
.buy-form input[type="text"]:focus,
.buy-form input[type="email"]:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.buy-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #334155;
  cursor: pointer;
}
.buy-form__check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0d9488;
  cursor: pointer;
}
.buy-form__check a {
  color: #0d9488;
  font-weight: 600;
}
.buy-form__check a:hover { text-decoration: underline; }
.buy-form__btn {
  margin-top: 0.25rem;
  padding: 0.95rem 1.25rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #0d9488;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.buy-form__btn:hover:not(:disabled) { background: #0f766e; }
.buy-form__btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
}
.buy-form__error {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 8px;
}

.buy-paypal-gate {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.buy-paypal-gate__greet {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

/* Honor the HTML `hidden` attribute on flex/grid-display elements. Without
   this override, `display: flex` above wins over the user-agent rule
   `[hidden] { display: none }` and the PayPal block leaks onto the page
   before the capture form is submitted. */
.buy-form[hidden],
.buy-paypal-gate[hidden] {
  display: none !important;
}

/* Spam-folder reminder callout used on /buy/success.php */
.spam-notice {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #78350f;
}
.spam-notice a {
  color: #92400e;
  font-weight: 700;
  text-decoration: underline;
}
.spam-notice code {
  background: #fde68a;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}
