/*
Theme Name: Varoo Master
Theme URI: https://varoo.com.au
Description: Varoo's own marketing site. NOT a client template — this is for varoo.com.au itself. Neumorphic design system, Inter 900, off-white paper. Site claims "Built on WordPress" and this theme makes that true.
Version: 1.0
Author: Varoo
Author URI: https://varoo.com.au
Text Domain: varoo-master
*/

/* =========================================================================
   VAROO MASTER THEME — CSS PORT INCOMPLETE

   The full ~1300-line CSS block from deploy-varoo-website/index.html lines
   22-1319 needs to be ported into this file when the theme build proper begins.

   Until then this file holds:
   - WP theme header (above)
   - The locked design tokens (below)
   - A reset

   Strategy when porting:
   1. Copy the <style> block from deploy-varoo-website/index.html verbatim
      into the body of this file (below the design tokens)
   2. Convert any hardcoded asset URLs (/varoo-logo-512.png etc) to
      `<?php echo get_template_directory_uri(); ?>/assets/img/...`
      — but only inside PHP templates. CSS uses relative paths.
   3. Keep neumorphic shadows AS-IS; they are the locked design tokens
   4. Verify mobile breakpoints survive the port (Score 1 had Mobile 100/100)
   ========================================================================= */

/* Locked design tokens — per varoo-design-tokens skill */
:root {
  --paper:           #E0E5EC;
  --ink:             #0F1B2D;
  --ink-soft:        #2A3447;
  --accent:          #2563EB;
  --shadow-lift:     8px 8px 16px #B8BEC9, -8px -8px 16px #FFFFFF;
  --shadow-press:    inset 4px 4px 8px #B8BEC9, inset -4px -4px 8px #FFFFFF;
  --radius:          16px;
  --font-display:    "Inter", system-ui, sans-serif;
  --font-body:       "Inter", system-ui, sans-serif;
  --weight-display:  900;
  --weight-body:     400;
}

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

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

/* =========================================================================
   Ported from deploy-varoo-website/index.html lines 22-1319 (verbatim).
   The original site's :root token block follows below. It uses different
   names (--bg, --navy, --teal etc) than the locked theme tokens above.
   Both coexist — the locked tokens stay, and the site CSS that depends on
   --bg/--navy/etc continues to work unchanged.
   ========================================================================= */

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── Design Tokens ────────────────────────────────────── */
:root {
  /* Neumorphic surface */
  --bg:          #E0E5EC;
  --bg-surface:  #E0E5EC;

  /* Brand colours */
  --navy:        #0A1F44;
  --navy-soft:   #4a5878;
  --navy-muted:  #6B7280;
  --teal:        #0d9488;
  --teal-light:  #2DD4BF;
  --teal-pale:   #ccfbf1;

  /* Report-system colours */
  --orange:      #f97316;
  --orange-soft: #fff7ed;
  --orange-ring: rgba(249,115,22,0.18);
  --green:       #16a34a;
  --green-soft:  #f0fdf4;
  --green-ring:  rgba(22,163,74,0.18);

  /* Neumorphic shadows (exact design-system spec) */
  --ext:      9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255,0.5);
  --ext-lg:   12px 12px 24px rgb(163,177,198,0.65), -12px -12px 24px rgba(255,255,255,0.55);
  --ext-sm:   5px 5px 10px rgb(163,177,198,0.6), -5px -5px 10px rgba(255,255,255,0.5);
  --ext-xs:   3px 3px 6px rgb(163,177,198,0.55), -3px -3px 6px rgba(255,255,255,0.45);
  --inset:    inset 6px 6px 10px rgb(163,177,198,0.6), inset -6px -6px 10px rgba(255,255,255,0.5);
  --inset-deep: inset 10px 10px 20px rgb(163,177,198,0.7), inset -10px -10px 20px rgba(255,255,255,0.6);
  --inset-sm: inset 3px 3px 6px rgb(163,177,198,0.6), inset -3px -3px 6px rgba(255,255,255,0.5);

  /* Teal-tinted shadow for featured elements */
  --ext-teal: 10px 10px 20px rgba(13,148,136,0.22), -10px -10px 20px rgba(255,255,255,0.7);

  /* Radius */
  --r-card:  24px;
  --r-btn:   16px;
  --r-sm:    14px;
  --r-pill:  999px;

  --nav-h: 72px;
}

/* ── Base ─────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Utilities ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ── Section Label ────────────────────────────────────── */
.s-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #fff;
  box-shadow: var(--ext);
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: var(--ext-lg); }
.btn-primary:active { transform: translateY(1px);  box-shadow: var(--inset-sm); }

.btn-secondary {
  background: var(--bg);
  color: var(--navy);
  box-shadow: var(--ext);
}
.btn-secondary:hover  { transform: translateY(-2px); box-shadow: var(--ext-lg); }
.btn-secondary:active { transform: translateY(1px);  box-shadow: var(--inset-sm); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 9px 9px 16px rgba(249,115,22,0.3), -9px -9px 16px rgba(255,255,255,0.5);
}
.btn-orange:hover  { transform: translateY(-2px); box-shadow: 12px 12px 24px rgba(249,115,22,0.35), -12px -12px 24px rgba(255,255,255,0.6); }
.btn-orange:active { transform: translateY(1px);  box-shadow: var(--inset-sm); }

/* ── NAV ──────────────────────────────────────────────── */
/* Site nav only — scoped via body > nav so the breadcrumbs <nav class="breadcrumbs">
   inside <main> doesn't inherit fixed positioning and overlap the site nav. */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  box-shadow: 0 4px 16px rgb(163,177,198,0.45), 0 -2px 8px rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
}
body > nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { height: 30px; width: auto; flex-shrink: 0; }
.wordmark {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  border: 2.5px solid #f97316;
  border-radius: 999px;
  background: transparent;
  padding: 0.06em 0.42em 0.16em;
  box-shadow: var(--ext-sm);
  transform: translateY(0);
  transition: box-shadow .25s ease, transform .25s ease;
}
.wordmark:hover {
  box-shadow: var(--ext);
  transform: translateY(-2px);
}
.wordmark .va, .wordmark .roo {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}
.wordmark .va  { color: var(--navy); }
.wordmark .roo { color: var(--teal); }
.footer-optimised-by {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer-logo-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.wordmark.footer-wordmark {
  font-size: 30px;
  margin-bottom: 0;
  display: inline-flex;
  border-color: #f97316;
  box-shadow: none;
}
.wordmark.footer-wordmark:hover {
  box-shadow: none;
  transform: none;
}
.wordmark.footer-wordmark .va  { color: var(--navy); }
.wordmark.footer-wordmark .roo { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-soft);
  transition: color .15s;
}
.nav-links a:hover { color: var(--teal); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + 72px) 0 96px;
  background: var(--bg);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--bg);
  box-shadow: var(--inset-sm);
  border-radius: var(--r-pill);
  padding: 7px 18px;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.hero-text h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-text h1 .teal   { color: var(--teal); }
.hero-text h1 .orange { color: var(--orange); }

.hero-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy-soft);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stat wells */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-well {
  background: var(--bg);
  box-shadow: var(--inset);
  border-radius: var(--r-card);
  padding: 16px 22px;
  min-width: 0;
  flex: 1;
}
.stat-num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-num.orange { color: var(--orange); }
.stat-num.green  { color: var(--green); }
.stat-num.teal   { color: var(--teal); }
.stat-label {
  font-size: 12px;
  color: var(--navy-muted);
  line-height: 1.4;
}

/* ── Hero Art (nested neumorphic circles) ─────────────── */
.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow visible so cards can bleed outside column */
  overflow: visible;
}
.art-wrap {
  position: relative;
  width: 360px; height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Outer ring, strongly extruded */
.art-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg);
  box-shadow:
    18px 18px 36px rgb(163,177,198,0.7),
    -18px -18px 36px rgba(255,255,255,0.65);
}
/* Second ring, strongly inset (clear groove) */
.art-ring1 {
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow:
    inset 12px 12px 22px rgb(163,177,198,0.72),
    inset -12px -12px 22px rgba(255,255,255,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Third ring, extruded inner plateau */
.art-ring2 {
  width: 208px; height: 208px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow:
    12px 12px 22px rgb(163,177,198,0.65),
    -12px -12px 22px rgba(255,255,255,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Center well, deep inset with teal glow */
.art-center {
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow:
    inset 14px 14px 28px rgb(163,177,198,0.75),
    inset -14px -14px 28px rgba(255,255,255,0.65),
    0 0 28px rgba(13,148,136,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Pin, larger, glowing */
.art-pin {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow:
    0 0 20px rgba(13,148,136,0.45),
    0 4px 14px rgba(13,148,136,0.35);
}
.art-pin::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
}

/* Floating mini-cards, positioned clearly outside the circle */
.art-card {
  position: absolute;
  background: var(--bg);
  box-shadow:
    7px 7px 14px rgb(163,177,198,0.6),
    -7px -7px 14px rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.art-card .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* Card 1 — ChatGPT, top right (1-2 o'clock) */
.art-card.card-1 {
  top: -8px; left: 300px;
  animation: float-card 4.5s ease-in-out infinite 0s;
}
/* Card 2 — Google Maps, right middle (3 o'clock) */
.art-card.card-2 {
  top: 162px; left: 378px;
  animation: float-card 4s ease-in-out infinite .8s;
}
/* Card 3 — Perplexity, bottom right (4-5 o'clock) */
.art-card.card-3 {
  top: 296px; left: 340px;
  animation: float-card 4.8s ease-in-out infinite 2.1s;
}
/* Card 4 — Siri, bottom left (7-8 o'clock) */
.art-card.card-4 {
  top: 296px; left: -148px;
  animation: float-card 5s ease-in-out infinite 1.4s;
}
/* Card 5 — Meta AI, top left (10-11 o'clock) */
.art-card.card-5 {
  top: -8px; left: -120px;
  animation: float-card 4.3s ease-in-out infinite .4s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── PROBLEM ──────────────────────────────────────────── */
.section-problem {
  padding: 104px 0;
}
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-head h2 .teal   { color: var(--teal); }
.section-head h2 .orange { color: var(--orange); }
.section-head .lead {
  font-size: 17px;
  color: var(--navy-soft);
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-card {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: var(--r-card);
  padding: 40px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ext-lg);
}
.p-icon-well {
  width: 56px; height: 56px;
  background: var(--bg);
  box-shadow: var(--inset-deep);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.p-icon-well svg { width: 24px; height: 24px; }
.p-icon-well.teal-icon   svg { color: var(--teal); }
.p-icon-well.orange-icon svg { color: var(--orange); }
.p-icon-well.green-icon  svg { color: var(--green); }

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.015em;
}
.problem-card p {
  font-size: 15px;
  color: var(--navy-soft);
  line-height: 1.65;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
/* ── DATA SECTION (raised neumorphic stat cards) ──────── */
.section-data {
  padding: 96px 0;
  background: var(--bg);
}
.section-data .section-head { text-align: center; margin: 0 auto 64px; max-width: 600px; }
.data-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.big-stat {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: 24px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.big-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--ext-lg);
}
.big-num {
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.big-num.orange { color: var(--orange); }
.big-num.teal   { color: var(--teal); }
.big-num.green  { color: var(--green); }
.big-label {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}
.big-source {
  margin-top: 14px;
  font-size: 10px;
  color: var(--navy-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-how { padding: 104px 0; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
/* Connector track (inset channel) */
.steps-row::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 4px;
  background: var(--bg);
  box-shadow: var(--inset-sm);
  border-radius: 2px;
}
.step-item {
  padding: 0 28px;
  text-align: center;
}
.step-num {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--ext-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--teal);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-num:hover {
  transform: translateY(-3px);
  box-shadow: var(--ext-lg);
}
.step-num.orange-num { color: var(--orange); }
.step-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--green-ring);
}
.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.015em;
}
.step-item p { font-size: 15px; color: var(--navy-soft); line-height: 1.65; }

/* ── FEATURES ─────────────────────────────────────────── */
.section-features { padding: 104px 0; }
.section-features .section-head { text-align: left; margin: 0 0 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-tile {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: var(--r-card);
  padding: 36px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--ext-lg);
}
.f-icon-well {
  width: 50px; height: 50px;
  background: var(--bg);
  box-shadow: var(--inset-deep);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.f-icon-well svg { width: 22px; height: 22px; color: var(--teal); }
.feature-tile:nth-child(2) .f-icon-well svg { color: var(--orange); }
.feature-tile:nth-child(4) .f-icon-well svg { color: var(--green); }
.feature-tile h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.feature-tile p { font-size: 14px; color: var(--navy-soft); line-height: 1.65; }

/* ── PRICING ──────────────────────────────────────────── */
.section-pricing { padding: 104px 0; }

/* $49 audit card */
.audit-card {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: var(--r-card);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.audit-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 8px;
}
.audit-card-price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--navy);
  line-height: 1;
}
.audit-card-price sup { font-size: 24px; vertical-align: super; }
.audit-card-period { font-size: 13px; color: var(--navy-muted); margin-top: 4px; }
.audit-card-items {
  list-style: none;
  flex: 1;
  min-width: 240px;
}
.audit-card-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-soft);
  padding: 6px 0;
}

/* Tooltip system */
.tip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--ext-sm);
  color: var(--navy-muted);
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 6px;
  transition: box-shadow .2s ease, color .2s ease;
  -webkit-user-select: none;
  user-select: none;
}
.tip-icon:hover { box-shadow: var(--inset-sm); color: var(--teal); }
.tip-bubble {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--navy-soft);
  font-weight: 400;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 100;
  border-left: 3px solid var(--teal);
}
.tip-wrap:hover .tip-bubble,
.tip-wrap.open .tip-bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Mobile inline expand */
.tip-inline {
  display: none;
  font-size: 12px;
  color: var(--navy-muted);
  background: var(--bg);
  box-shadow: var(--inset-sm);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  margin-top: 6px;
  margin-left: 28px;
  line-height: 1.5;
  border-left: 3px solid var(--teal);
}
.tip-wrap.open .tip-inline { display: block; }

/* Plan item group labels */
.plan-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 10px 0 4px;
  border-top: 1px solid rgba(163,177,198,0.4);
  margin-top: 4px;
}
.plan-group-label:first-child { border-top: none; padding-top: 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: var(--r-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  box-shadow: var(--ext-teal);
  transform: translateY(-6px);
}
.plan-card.featured:hover { transform: translateY(-10px); }

.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 4px 4px 8px rgba(249,115,22,0.3);
}
.plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 12px;
}
.plan-price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-period { font-size: 13px; color: var(--navy-muted); margin-bottom: 28px; }

.plan-divider {
  height: 3px;
  background: var(--bg);
  box-shadow: var(--inset-sm);
  border-radius: 2px;
  margin-bottom: 24px;
}

.plan-items { list-style: none; margin-bottom: 32px; flex: 1; display:flex; flex-direction:column; }
.plan-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-soft);
  padding: 7px 0;
}
.chk {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.chk svg { width: 10px; height: 10px; color: var(--green); }

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--navy-muted);
  margin-top: 28px;
  background: var(--bg);
  box-shadow: var(--inset-sm);
  border-radius: 14px;
  padding: 14px 24px;
}

/* ── CTA BAND ─────────────────────────────────────────── */
.section-cta { padding: 40px 0 104px; }
.cta-tray {
  background: var(--bg);
  box-shadow: var(--inset-deep);
  border-radius: var(--r-card);
  padding: 80px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-tray h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-tray h2 .orange { color: var(--orange); }
.cta-tray p {
  font-size: 17px;
  color: var(--navy-soft);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FAQ ──────────────────────────────────────────────── */
.section-faq { padding: 104px 0; }
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
details {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
details[open] { box-shadow: var(--ext-lg); }
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
.sum-btn {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--inset-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .25s, background .25s;
}
.sum-btn svg {
  width: 12px; height: 12px;
  color: var(--navy-soft);
  transition: transform .3s ease, color .2s;
}
details[open] .sum-btn {
  background: var(--bg);
  box-shadow: 3px 3px 6px rgba(249,115,22,0.25), -3px -3px 6px rgba(255,255,255,0.6);
}
details[open] .sum-btn svg {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-body {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--navy-soft);
  line-height: 1.75;
}
.faq-body p + p { margin-top: 12px; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--bg);
  box-shadow: inset 0 6px 16px rgb(163,177,198,0.3);
  padding: 64px 0 40px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 240px; }
.footer-logo  { height: 28px; margin-bottom: 12px; }
.footer-tagline {
  font-size: 13px;
  color: var(--navy-muted);
  line-height: 1.6;
}
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--navy-soft);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--teal); }
.footer-email-btn { background:none;border:none;padding:0;cursor:pointer;display:block;font-size:14px;color:var(--navy-soft);transition:color .15s;font-family:inherit;margin-bottom:10px; }
.footer-email-btn:hover { color: var(--teal); }
.modal-field textarea { width:100%;padding:14px 18px;background:var(--bg);border:none;border-radius:var(--r-sm);box-shadow:var(--inset);font-size:15px;font-family:inherit;color:var(--navy);outline:none;box-sizing:border-box;transition:box-shadow .2s;resize:none; }
.modal-field textarea::placeholder { color:var(--navy-muted);opacity:.6; }
.modal-field textarea:focus { box-shadow:var(--inset-deep),0 0 0 2px rgba(13,148,136,0.25); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: none;
  flex-wrap: wrap;
}
.footer-bottom .line {
  height: 3px;
  background: var(--bg);
  box-shadow: var(--inset-sm);
  border-radius: 2px;
  margin-bottom: 32px;
}
.footer-copy { font-size: 13px; color: var(--navy-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--navy-muted); transition: color .15s; }
.footer-legal a:hover { color: var(--teal); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-text p { max-width: 100%; }
  .hero-art { display: none; }
  .hero-stats { justify-content: stretch; }
  .stat-well { flex: 1; min-width: 120px; }

  .problem-grid,
  .features-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .steps-row { grid-template-columns: 1fr; gap: 36px; }
  .steps-row::before { display: none; }
  .step-item { padding: 0; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-num { margin: 0; flex-shrink: 0; }

  .cta-tray { border-radius: 32px; padding: 56px 32px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
}
/* On touch/mobile — bubble is desktop hover only, inline expand handles tap */
@media (max-width: 960px) {
  .tip-bubble { display: none !important; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    padding: 12px 20px 24px;
    border-top: 1px solid rgba(163,177,198,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
    gap: 0;
  }
  nav.nav-open .nav-links li { padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
  nav.nav-open .nav-links li:last-child { border-bottom: none; }
  nav.nav-open .nav-links a { font-size: 16px; }
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-hamburger span { transition: transform .2s, opacity .2s; }
  .section-features .section-head { text-align: center; }
  .hero-stats { flex-direction: column; }
  .stat-well { min-width: 0; }
  .cta-tray::before, .cta-tray::after { display: none; }
  .builds-note { flex-direction: column; align-items: flex-start; }
  .data-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Lead Modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,68,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--bg);
  box-shadow: var(--ext-lg), 0 0 0 3px var(--orange), 0 0 32px rgba(249,115,22,0.28);
  border-radius: var(--r-card);
  padding: 48px 44px 44px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(16px);
  transition: transform .25s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--ext-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-muted);
  font-size: 18px;
  line-height: 1;
  transition: box-shadow .2s, color .2s;
}
.modal-close:hover { box-shadow: var(--inset-sm); color: var(--navy); }
.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.modal-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 14px;
  color: var(--navy-soft);
  margin-bottom: 32px;
  line-height: 1.5;
}
.modal-field {
  margin-bottom: 16px;
}
.modal-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 7px;
}
.modal-field input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: none;
  border-radius: var(--r-sm);
  box-shadow: var(--inset);
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  outline: none;
  transition: box-shadow .2s;
}
.modal-field input::placeholder { color: var(--navy-muted); opacity: .6; }
.modal-field input:focus { box-shadow: var(--inset-deep), 0 0 0 2px rgba(13,148,136,0.25); }
.modal-submit {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: var(--r-btn);
  cursor: pointer;
  box-shadow: 6px 6px 14px rgba(249,115,22,0.35), -4px -4px 10px rgba(255,255,255,0.5);
  transition: box-shadow .2s, transform .15s;
  letter-spacing: .01em;
}
.modal-submit:hover {
  box-shadow: 8px 8px 18px rgba(249,115,22,0.45), -4px -4px 10px rgba(255,255,255,0.5);
  transform: translateY(-1px);
}
.modal-submit:active { transform: translateY(0); }
.modal-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}
.modal-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--ext);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--teal);
  font-size: 28px;
}
.modal-success h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-success p {
  font-size: 14px;
  color: var(--navy-soft);
  line-height: 1.6;
}
@media (max-width: 520px) {
  .modal-box { padding: 40px 24px 32px; border-radius: 24px; }
  .modal-title { font-size: 22px; }
}

/* =========================================================================
   INTERIOR PAGE TEMPLATES — page.php, single.php, index.php, 404.php
   Added 2026-05-20 to fix unstyled interior pages on production.
   ========================================================================= */

/* Shared wrappers */
.page-wrap,
.post-wrap {
  padding: 96px 0 120px;
  background: var(--bg);
}
@media (max-width: 720px) {
  .page-wrap,
  .post-wrap { padding: 64px 0 80px; }
}


/* index.php (blog archive) */
.archive {
  padding: 96px 0 120px;
  background: var(--bg);
}
.archive-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.archive-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.archive-tag {
  font-size: 16px;
  color: var(--navy-soft);
  margin: 0;
}
.post-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-card {
  background: var(--bg);
  border-radius: var(--r-card);
  box-shadow: var(--ext-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.post-card:hover {
  box-shadow: var(--ext);
  transform: translateY(-2px);
}
.post-card-link {
  display: block;
  padding: 32px 36px;
  color: inherit;
  text-decoration: none;
}
.post-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.post-card:hover .post-card-title { color: var(--teal); }
.post-card-date {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}
.post-card-excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy-soft);
  margin: 0;
}
.archive-empty {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--navy-soft);
  font-size: 17px;
}
.pagination {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.pagination .page-numbers {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: var(--bg);
  box-shadow: var(--ext-xs);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: box-shadow .15s ease;
}
.pagination .page-numbers:hover { box-shadow: var(--ext-sm); }
.pagination .page-numbers.current {
  box-shadow: var(--inset-sm);
  color: var(--teal);
}
@media (max-width: 720px) {
  .archive { padding: 64px 0 80px; }
  .archive-title { font-size: 36px; }
  .post-card-link { padding: 24px 24px; }
  .post-card-title { font-size: 22px; }
}


/* 404.php */
.error-404-wrap { min-height: 60vh; display: flex; align-items: center; }
.error-404 {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
  border-radius: var(--r-card);
  box-shadow: var(--ext);
  padding: 56px 48px;
}
.error-eyebrow {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.error-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.error-sub {
  font-size: 16px;
  color: var(--navy-soft);
  margin: 0 0 32px;
}
.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.error-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(10,31,68,0.08);
}
.error-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color .15s ease;
}
.error-links a:hover { color: var(--orange); }
@media (max-width: 520px) {
  .error-404 { padding: 40px 28px; }
  .error-eyebrow { font-size: 48px; }
  .error-title { font-size: 24px; }
}

/* =========================================================================
   BLOG / FOUNDERS NOTES — featured + two-col layout
   Ported verbatim from deploy-varoo-website/blog/index.html (the original
   static blog) to restore the design we built before WP migration.
   Used by home.php (the dedicated /blog/ posts page).
   ========================================================================= */

/* HERO */
.blog-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.blog-hero .s-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.blog-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05; font-weight: 800; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 18px;
}
.blog-hero h1 em {
  font-style: normal; color: var(--orange);
  position: relative;
}
.blog-hero p.lead {
  font-size: 18px; line-height: 1.55;
  color: var(--navy-soft); max-width: 620px; margin: 0 auto;
}

/* ARTICLES SECTION */
.articles-section { padding: 30px 0 60px; }
.articles-section .section-label {
  font-size: 12px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--navy-muted); margin-bottom: 14px;
  display: block;
}
.articles-section .col h4.section-label { margin-bottom: 14px; }
.articles-section .col-pipeline h4.section-label { color: var(--orange); }
.articles-section .col-past h4.section-label     { color: var(--teal); }
.section-label-latest          { color: var(--orange); }

/* Featured row */
.featured-row { margin-bottom: 36px; }

/* Two-column wrapper */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}

/* Square card grid */
.square-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 12px;
}
.square-grid.wide { grid-template-columns: 1fr; }

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .square-grid { grid-template-columns: 1fr; }
}

/* Article card base */
.article-card {
  display: block; padding: 20px 24px;
  border-radius: var(--r-card);
  background: var(--bg); box-shadow: var(--ext-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit; text-decoration: none;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--ext); }

/* Meta row inside cards */
.card-meta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 10px;
}
.author-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: var(--ext-sm);
  flex-shrink: 0;
}
.author-pill.type-founders_notes { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); }
.author-pill.type-field_guide   { background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%); }
.card-author-info { display: flex; flex-direction: column; }
.card-author-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.card-author-role { font-size: 11px; color: var(--navy-muted); }
.card-meta-divider { width: 1px; height: 22px; background: rgba(163,177,198,0.4); }
.card-meta-item { font-size: 11px; color: var(--navy-muted); }
.card-meta-item strong { color: var(--navy); font-weight: 600; }

/* Tag pill */
.card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--bg);
  box-shadow: var(--inset-sm);
  margin-left: auto;
}
.card-tag::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--teal);
}
.card-tag.type-founders_notes { color: var(--teal); }
.card-tag.type-founders_notes::before { background: var(--teal); }
.card-tag.type-field_guide   { color: var(--orange); }
.card-tag.type-field_guide::before   { background: var(--orange); }

/* Headline + summary inside article cards */
.article-card .card-headline {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2; font-weight: 800; letter-spacing: -0.015em;
  color: var(--navy); margin-bottom: 6px;
}
.article-card .card-summary {
  font-size: 13px; line-height: 1.5;
  color: var(--navy-soft); margin: 0;
}

/* Featured variant — bigger shadow + larger headline */
.article-card.featured {
  padding: 26px 30px;
  box-shadow: var(--ext);
}
.article-card.featured:hover { box-shadow: var(--ext-lg); }
.article-card.featured .card-headline {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
}
.article-card.featured .card-summary {
  font-size: 14px;
}

/* Coming-soon variant — inset, no hover, muted */
.article-card.coming-soon {
  background: transparent; box-shadow: var(--inset-sm);
  opacity: .82;
  cursor: default;
}
.article-card.coming-soon:hover { transform: none; box-shadow: var(--inset-sm); }
.article-card.coming-soon .card-headline { color: var(--navy-soft); }
.article-card.coming-soon .card-tag::before { background: var(--navy-muted); }
.article-card.coming-soon .card-tag { color: var(--navy-muted); }

/* Square card variant — denser, no author row */
.article-card.square {
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 168px;
}
.article-card.square .card-tag {
  margin-left: 0; align-self: flex-start;
}
.article-card.square .card-headline {
  font-size: 16px; line-height: 1.25; letter-spacing: -0.01em;
  margin: 0;
}
.article-card.square .card-summary {
  font-size: 12px; line-height: 1.5; margin: 0;
  color: var(--navy-muted);
  margin-top: auto;
}
.article-card.square .card-meta-foot {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy-muted);
}

/* Empty-state */
.empty-state {
  padding: 28px 24px;
  border-radius: var(--r-card);
  background: var(--bg);
  box-shadow: var(--inset-sm);
  font-size: 13px; line-height: 1.55;
  color: var(--navy-muted);
  font-style: italic;
  text-align: center;
}

/* Blog CTA card */
.blog-cta {
  margin: 60px 0 0; padding: 44px 36px; border-radius: var(--r-card);
  background: var(--bg); box-shadow: var(--ext);
  text-align: center;
}
.blog-cta h3 {
  font-size: 28px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px;
}
.blog-cta p {
  font-size: 15px; color: var(--navy-soft); margin-bottom: 22px;
}

/* =========================================================================
   ARTICLE PAPER — single blog post (single.php)
   Ported verbatim from deploy-varoo-website/blog/<slug>/index.html source.
   Off-white reading surface, Apple-research typography, tri-colour title,
   neumorphic breadcrumbs pill, tag pill, author meta row, dinkus, pull
   quote with teal hairline frame, signoff with teal hairline above.
   ========================================================================= */

/* Tiny shadow token used by breadcrumb pill (matches source). */
:root {
  --ext-xs: 3px 3px 6px rgb(163,177,198,0.55), -3px -3px 6px rgba(255,255,255,0.45);
}

.article-wrap {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
}

/* Breadcrumbs — neumorphic outset pill. Matches wordmark design language. */
.breadcrumbs {
  display: inline-flex; align-items: center;
  max-width: 100%;
  font-size: 13px; font-weight: 500;
  color: var(--navy-muted);
  background: var(--bg);
  box-shadow: var(--ext-xs);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  margin-bottom: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs a { color: var(--navy-muted); text-decoration: none; transition: color .15s; }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs .sep { margin: 0 10px; opacity: .45; }
.breadcrumbs > span:last-child {
  color: var(--navy);
  overflow: hidden; text-overflow: ellipsis;
  max-width: 60ch;
}
@media (max-width: 720px) {
  .breadcrumbs { font-size: 12px; padding: 7px 14px; max-width: calc(100% - 8px); }
  .breadcrumbs .sep { margin: 0 7px; }
  .breadcrumbs > span:last-child { max-width: 28ch; }
}

/* THE PAPER SURFACE — large sculpted reading area.
   Apple-style: slightly off-white instead of pure #fff, easier on eyes. */
.article-paper {
  background: #fcfcfd;
  border-radius: 32px;
  box-shadow: var(--ext-lg);
  padding: 64px 72px 72px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .article-paper { padding: 36px 28px 44px; border-radius: 24px; }
}

/* Article tag pill — type-coloured */
.article-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
  margin-bottom: 22px;
  background: rgba(13,148,136,0.08);
  color: var(--teal);
}
.article-tag::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--teal);
}
.article-tag.type-founders_notes { color: var(--teal); background: rgba(13,148,136,0.08); }
.article-tag.type-founders_notes::before { background: var(--teal); }
.article-tag.type-field_guide { color: var(--orange); background: rgba(249,115,22,0.08); }
.article-tag.type-field_guide::before { background: var(--orange); }

/* Tri-colour article title — each line gets its own colour span */
h1.article-title {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05; font-weight: 900; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
h1.article-title .ht-line   { display: block; }
h1.article-title .ht-navy   { color: var(--navy); }
h1.article-title .ht-teal   { color: var(--teal); }
h1.article-title .ht-orange { color: var(--orange); }

p.article-subhead {
  font-size: 19px; line-height: 1.5;
  color: var(--navy-soft); font-weight: 400;
  margin-bottom: 28px;
}

/* Article meta row — author pill + name/role + date + reading time */
.article-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 0 24px;
  border-bottom: 1px solid rgba(163,177,198,0.4);
  margin-bottom: 36px;
}
.article-paper .author-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: #fff; font-weight: 800; font-size: 16px;
  box-shadow: var(--ext-sm);
  flex-shrink: 0;
}
.article-paper .author-pill.type-founders_notes {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
}
.article-paper .author-pill.type-field_guide {
  background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%);
}
.article-paper .author-info { display: flex; flex-direction: column; }
.article-paper .author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.article-paper .author-role { font-size: 12px; color: var(--navy-muted); }
.article-paper .meta-divider { width: 1px; height: 30px; background: rgba(0,0,0,0.08); }
.article-paper .meta-item { font-size: 13px; color: var(--navy-muted); }
.article-paper .meta-item strong { color: var(--navy); font-weight: 600; }

/* Reading typography per Apple research:
   - off-navy text (#1d2942) instead of full navy — softer
   - 17px body, line-height 1.65 — Apple News+ proportions
   - 640px max width — ~65 chars per line (optimal)
   - subtle negative letter-spacing for crispness at this size
   - OpenType features: kerning + ligatures + contextual alts */
.article-body {
  font-size: 17px; line-height: 1.65;
  color: #1d2942;
  max-width: 640px; margin: 0 auto;
  letter-spacing: -0.005em;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.article-body p { margin-bottom: 22px; }
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body em { font-style: italic; }
.article-body ul,
.article-body ol { padding-left: 28px; margin: 0 0 24px; }
.article-body li { margin-bottom: 10px; }
.article-body a {
  color: var(--teal);
  border-bottom: 1px solid rgba(13,148,136,0.3);
  transition: border .15s;
}
.article-body a:hover { border-bottom-color: var(--teal); }
.article-body code {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 15px; background: rgba(0,0,0,0.06);
  padding: 2px 6px; border-radius: 6px;
}
.article-body hr {
  border: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
  margin: 48px 0;
}

/* Dinkus separator — centred * * * for editorial section breaks */
.article-body p.dinkus {
  text-align: center;
  margin: 48px auto;
  font-size: 18px;
  letter-spacing: 0.6em;
  color: var(--navy-muted);
  font-weight: 400;
}

/* Pull quote — quiet hairline frame. Italic centred, body colour, thin teal
   rule top + bottom as a brand-tied bracket. */
.article-body blockquote.pull {
  margin: 44px auto;
  padding: 22px 8px;
  background: transparent; box-shadow: none; border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
  font-style: italic;
  color: #1d2942;
  text-align: center;
  letter-spacing: -0.005em;
  max-width: 540px;
  border-top: 1px solid rgba(13,148,136,0.45);
  border-bottom: 1px solid rgba(13,148,136,0.45);
}
/* WP auto-wraps blockquote text in <p>. Strip the inherited body margin so
   pull-quote padding stays clean inside the teal hairlines. */
.article-body blockquote p { margin: 0; }
.article-body blockquote p + p { margin-top: 12px; }

/* Standard blockquote (when not .pull) — neumorphic inset with teal accent. */
.article-body blockquote:not(.pull) {
  margin: 28px 0; padding: 22px 28px 22px 32px;
  background: var(--bg);
  box-shadow: var(--inset-sm), inset 6px 0 0 var(--teal);
  border-radius: var(--r-card);
  font-style: italic; color: var(--navy);
}

/* Semantic-fallback H2/H3 inside article body — light, italic, soft colour.
   They don't shout. */
.article-body h2 {
  font-size: 18px; font-weight: 700; font-style: italic;
  color: var(--navy-soft); letter-spacing: -0.005em;
  line-height: 1.4; margin: 36px 0 12px;
}
.article-body h3 {
  font-size: 16px; font-weight: 700; font-style: italic;
  color: var(--navy-soft); margin: 28px 0 10px;
}

/* Sign-off — same body type as the rest of the article. Only differentiation:
   a thin centred teal hairline rule above marking the transition from body
   to author close. Used on founders_notes posts. */
.article-signoff {
  max-width: 640px;
  margin: 56px auto 0;
  padding-top: 32px;
  position: relative;
  font-size: 17px; line-height: 1.65;
  color: #1d2942;
  letter-spacing: -0.005em;
}
.article-signoff::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 1px;
  background: rgba(13,148,136,0.4);
}
.article-signoff p { margin-bottom: 8px; }
.article-signoff p:last-child { margin-bottom: 0; }

/* Mobile tweaks */
@media (max-width: 720px) {
  h1.article-title { font-size: 32px; }
  p.article-subhead { font-size: 17px; }
}

/* =========================================================================
   FAQ ACCORDION — legacy <details><summary> with + -> X rotation
   Ported verbatim from deploy-varoo-website/index.html lines 977-1037.
   No JS — HTML5 details handles open/close natively.
   ========================================================================= */

.section-faq { padding: 104px 0; }
.section-faq .faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-faq details {
  background: var(--bg);
  box-shadow: var(--ext);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.section-faq details[open] { box-shadow: var(--ext-lg); }
.section-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  user-select: none;
}
.section-faq summary::-webkit-details-marker { display: none; }
.section-faq .sum-btn {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--inset-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .25s, background .25s;
}
.section-faq .sum-btn svg {
  width: 12px; height: 12px;
  color: var(--navy-soft);
  transition: transform .3s ease, color .2s;
}
.section-faq details[open] .sum-btn {
  background: var(--bg);
  box-shadow: 3px 3px 6px rgba(249,115,22,0.25), -3px -3px 6px rgba(255,255,255,0.6);
}
.section-faq details[open] .sum-btn svg {
  transform: rotate(45deg);
  color: var(--orange);
}
.section-faq .faq-body {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--navy-soft);
  line-height: 1.75;
}
.section-faq .faq-body p + p { margin-top: 12px; }

/* =========================================================================
   PAGE BODY HIERARCHY — overrides for About / Contact / Privacy / Terms /
   Support. The .article-body class is shared with blog articles, but pages
   need proper section H2/H3 hierarchy (not the muted-italic article style).
   Scoped via .page-paper so blog single-post styles stay untouched.
   ========================================================================= */

/* H2 section heading on pages — bold display-weight navy with a small teal
   eyebrow rule above to mark each section break. */
.page-paper .article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
  font-style: normal;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 56px 0 18px;
  padding-top: 0;
}
.page-paper .article-body h2:first-child {
  margin-top: 0;
}
.page-paper .article-body h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 14px;
}

/* H3 subsection on pages — proper bold navy, no italic, smaller than H2. */
.page-paper .article-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  font-style: normal;
  color: var(--navy);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

/* Inline bold stays as paragraph emphasis — naturally subordinate to the
   bigger H2 above it now that hierarchy is correct. */
.page-paper .article-body strong {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-paper .article-body h2 { font-size: 22px; margin-top: 44px; }
  .page-paper .article-body h3 { font-size: 18px; }
}
