/*
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 ──────────────────────────────────────────────── */
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;
}
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; }
}
