/* s129 b11 — Editorial Linen palette (Aesop-inspired, panel-approved
   Direction A per Gemini panel 12/12 unanimous APPROVE-WITH-TWEAKS at
   panel_reviews/20260526_184455_s129_b11_landing_palette_fresh_direction/).
   Replaces the s128 b07 Option C / s129 b10 Burnished Estate which the
   founder critiqued as "Dont see much of a difference in the colors.
   Cant you think a fresh on that."

   Key shift: from earthy multi-color (cream + green + sage + terracotta +
   gold) to EDITORIAL MONOCHROME + ONE BOLD ACCENT. Premium minimalist
   boutique-magazine vibe (think Aesop / Le Labo / 1 Hotels) — clean
   charcoal ink on warm ivory, deep teal-forest as the brand spine, rich
   brick as the single bold accent, refined saffron-gold for the premium
   Pro pill. Drops --terracotta (replaced by --accent rich brick) +
   --sage / --sage-light (replaced by --neutral warm taupe + lighter
   shade).

   Panel verdict CRITs folded:
   - Direction C "Heritage Bold" REJECTED 12/12 (vision drift, India-specific
     contradicts global premium positioning per feedback_no_hindi_bias)
   - Direction A wins on staff wellbeing (04_staff_psychologist + 06_villa_
     staff_voice + 07_guest_xp): calm, autonomy-respecting, low cognitive
     load. Reduces visual fatigue 5-10% per 8h shift per 01_hospitality_
     ops_veteran.
   - Tweak: ensure dark text is ALWAYS very dark on light bg — fold by
     bumping --ink to true charcoal #2b2b28 (vs the brown-tinted #1e1b16
     of Burnished Estate). 06_villa_staff_voice explicit tweak.
   - 11_ground_truth_interrogator minority concern (India aesthetic for
     trust) acknowledged but not adopted — global vision overrides per
     12_vision_keeper.

   Lora serif (Google Fonts) for headlines + system sans body — kept. */

:root {
  --bg: #faf8f3;           /* warm ivory base — distinctive from prior fcf8ef */
  --cream: #faf8f3;        /* legacy alias — same value, kept for any CSS still
                              referencing var(--cream) until full sweep */
  --paper: #ffffff;        /* card surface */
  --ink: #2b2b28;          /* TRUE CHARCOAL — panel tweak: always very dark for
                              AA contrast on warm ivory; replaces brown-tinted ink */
  --ink-soft: #6c6c64;     /* clean neutral grey — refined secondary; replaces
                              brown-leaning ink-soft */
  --green: #4a6b3f;        /* deep teal-forest — primary brand + CTA; replaces
                              earthy #3a5f3a; sophisticated, less rustic */
  --green-dark: #33502c;
  --accent: #b8412c;       /* rich brick — single bold accent; replaces multi-
                              color terracotta+sage system */
  --accent-dark: #8a2e1f;
  --neutral: #9a8f7f;      /* warm taupe — replaces --sage (which was a 2nd
                              accent confusing the hierarchy) */
  --neutral-light: #ece8dd; /* paler taupe — for soft surfaces + hover bgs */
  --gold: #d4a437;         /* refined saffron — kept ONLY for the Pro pill */
  --highlight: #f5e6c4;    /* very soft warm highlight — for subtle emphasis */
  --border: #ece8dd;       /* warm hairline — single border token */
  --footer-text: #6c6c64;

  /* Legacy aliases for any CSS still referencing the old token names.
     These map to the new system so a per-element migration isn't needed
     in this batch — sweep at next palette work. */
  --sage: #4a6b3f;          /* now maps to --green (was its own color) */
  --sage-light: #ece8dd;    /* now maps to --neutral-light */
  --terracotta: #b8412c;    /* now maps to --accent */
  --terracotta-dark: #8a2e1f;
  --gold-soft: #f5e6c4;     /* now maps to --highlight */
}

* { box-sizing: border-box; }
body {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  line-height: 1.6;
}

/* Serif headings — Lora is the visual signature of the redesign. */
h1, h2, h3, .serif {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.topnav {
  padding: 16px 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.topnav .brand {
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
}
.topnav nav a { margin-left: 22px; font-size: 14px; color: var(--ink-soft); }
.topnav nav a:hover { color: var(--green); }

/* Hero — warmer gradient + serif headline + breathing room. */
.hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 32px 56px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
}
.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--ink);
  font-weight: 600;
}
.hero h1 em {
  color: var(--green);
  font-style: italic;
  font-weight: 600;
}
.hero .lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Buttons — primary stays deep green; secondary now terracotta. */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.12s, background 0.12s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

/* Three / Four services section — warmer paper bg, sage hairline accents. */
.three-services {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 64px 32px;
}
.three-services .container { max-width: 980px; margin: 0 auto; }
.three-services h2 {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--ink);
}
.three-services .svc-intro {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 640px;
  font-style: italic;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.svc {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color 0.15s, transform 0.12s;
}
.svc:hover { border-color: var(--sage); transform: translateY(-1px); }
.svc h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--green);
}
.svc p { margin: 0; font-size: 14px; color: var(--ink); line-height: 1.6; }
.svc-tier {
  /* s131 b09 — Pro pill text switched #fff → var(--ink) per Track A WCAG
     AA contrast fix. White on saffron #d4a437 = 2.29:1 FAIL (body + large).
     Charcoal #2b2b28 on saffron = 7.60:1 PASS. Verdict at
     foundation/brand_identity_panel_verdict_s131_b08.md §2. Saffron bg
     retained per s129 b11 Editorial Linen 12/12 panel lock. */
  display: inline-block;
  padding: 2px 8px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
  font-family: system-ui, sans-serif;
}

/* Who Staymulate is for — sage left-border accent. */
.who { padding: 64px 32px; max-width: 980px; margin: 0 auto; }
.who h2 { font-size: 26px; margin: 0 0 28px; color: var(--ink); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.who-card {
  padding: 22px;
  border-left: 3px solid var(--sage);
  background: var(--paper);
  border-radius: 6px;
  transition: border-left-color 0.15s;
}
.who-card:hover { border-left-color: var(--green); }
.who-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--green); }
.who-card p { margin: 0 0 12px; font-size: 14px; color: var(--ink); line-height: 1.55; }
.who-card a { font-size: 13px; color: var(--terracotta); font-weight: 600; }
.who-card a:hover { color: var(--terracotta-dark); }

/* Resources — warmer cream bg, paper cards. */
.resources {
  background: var(--cream);
  padding: 64px 32px;
  border-top: 1px solid var(--border);
}
.resources .container { max-width: 980px; margin: 0 auto; }
.resources h2 { font-size: 24px; margin: 0 0 22px; color: var(--ink); }
.res-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.res {
  padding: 18px 20px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, transform 0.12s;
}
.res:hover { border-color: var(--sage); transform: translateY(-1px); }
.res .res-title { font-weight: 600; color: var(--green); font-size: 14.5px; }
.res p { margin: 4px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* Customer testimonial block (NEW Option C — placeholder until founder
   supplies a real quote at first paying customer). */
.testimonial {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 32px;
  text-align: center;
}
.testimonial blockquote {
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  max-width: 720px;
  margin: 0 auto 18px;
  border-left: none;
}
.testimonial blockquote:before {
  content: "\201C";
  color: var(--terracotta);
  font-size: 56px;
  vertical-align: -16px;
  margin-right: 6px;
  font-style: normal;
}
.testimonial .attrib {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Footer — warmer brown text on paper. */
.footer {
  padding: 36px 32px;
  text-align: center;
  font-size: 12.5px;
  color: var(--footer-text);
  border-top: 1px solid var(--border);
  background: var(--paper);
  line-height: 1.7;
}
.footer a { color: var(--green); margin: 0 8px; }
.markets { font-size: 12px; color: var(--ink-soft); margin-top: 18px; }
.hero-hint { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.hero-hint a { color: var(--terracotta); font-weight: 600; text-decoration: underline; }
.hero-hint a:hover { color: var(--terracotta-dark); }

/* Inline jargon tooltips — replace bare acronyms (FPMC, DPDP, etc) with
   <abbr title="..."> so hover reveals the full term. */
abbr {
  border-bottom: 1px dotted var(--sage);
  text-decoration: none;
  cursor: help;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .hero { padding: 56px 18px 36px; }
  .topnav { padding: 12px 18px; flex-wrap: wrap; }
  .topnav nav a { margin: 6px 0 0 12px; }
  .three-services, .who, .resources, .testimonial { padding: 48px 18px; }
}

/* Extracted utility classes (previously inline styles, retained). */
._si1 { position:absolute;top:-40px;left:8px;background:#1f2937;color:#fff;padding:8px 14px;border-radius:0 0 8px 8px;font-size:13px;font-weight:600;z-index:9999;text-decoration:none; }
._si2 { margin-left: 24px; color: var(--green); }
._si3 { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; }
._si4 { opacity:0.6; }
._si5 { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); max-width: 720px; margin-left: auto; margin-right: auto; }
._si6 { margin-top: 12px; font-size: 11px; color: var(--ink-soft); }

/* s137 b03 — Landing v4 verbose/UI tightening per dual-verdict
   (Gemini panel 12/12 + 12-persona UX walk). Cross-verdict actionables:
   - VC-1 hero lede cut flight-plan trail (panel 7+ / persona 6)
   - VC-2 ROI wall converted to bulleted breakdown (panel 4+ / persona 7)
   - VC-4 setup-fee SPLIT + "guidance" → "orientation" UPL liability fix
     (panel 4+ legal CRIT / persona 6)
   - VC-5 Cloudbeds split into 2-3 paragraphs (panel 4+ / persona 3)
   - VC-7 per-market retention compact (panel 1 / persona 5)
   - NEW-A ROI table mobile overflow-x (persona 4 mobile reality)
   - NEW-B "v1 India only" above-fold callout (persona 4 international anger-bounce)
   - NEW-E DSR worldwide clarification (persona 5 consistency)
   Panel verdict at panel_reviews/20260603_102236_landing_html_v4_*/_consolidated.md;
   persona walk at foundation/landing_v4_persona_walk_s137_b03.md. */

/* NEW-A — ROI table mobile overflow scroll on 375px (persona 4 mobile signal,
   single highest UI finding). Without this the 5-column Rs table
   horizontal-overflows on iPhone SE / 375px viewport, hard-pinning content
   off-screen for personas 01/04/16. */
.roi-table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
}
.roi-table-wrap .roi-table { min-width: 600px; }

/* VC-2 — ROI breakdown bullets (replaces 9-line wall-of-text per panel 4+
   + persona 7 STRONGEST signal). Preserves substance; scannable on mobile. */
.roi-breakdown { margin: 0 0 18px; }
.roi-breakdown p {
  font-size: 14.5px;
  color: var(--ink);
  margin: 16px 0 8px;
  line-height: 1.55;
}
.roi-breakdown p strong { color: var(--green); }
.roi-breakdown ul {
  margin: 0 0 12px;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.roi-breakdown ul li { margin-bottom: 4px; }
.roi-breakdown p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.roi-breakdown p a:hover { color: var(--accent-dark); }

/* NEW-B — Above-fold "v1 India only" callout (persona 4 international anger-
   bounce: Quebec/Sydney/Bali/Singapore personas read 4-5 sections of Rs/India
   context before learning they're out-of-scope. Promoting saves the
   bounce-as-anger vs bounce-as-informed). */
.india-only-callout {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 14px;
  background: var(--highlight);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.india-only-callout strong { color: var(--accent-dark); }
.india-only-callout a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
}
.india-only-callout a:hover { color: var(--green-dark); }

/* VC-4 — Honest reinforcement of the India-only block in Pricing section
   (separated from setup-fee per panel 4+ + persona 6 "disjointed narrative"
   surface). Visual distinguishing from svc-intro keeps the two ideas apart. */
.svc-intro.india-only-block {
  background: var(--neutral-light);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  font-style: normal;
  border-radius: 4px;
}

/* s137 b06 — v5 IA multi-page redesign per dual-verdict (Gemini 12/12 + 12-persona UX walk).
   New pages: /about /contact /pricing. Landing reorder: hero → segment self-locator
   (promoted from sec 8) → trust bar (NEW) → how-it-works → ROI → services → pricing teaser
   (links to /pricing) → resources → lean footer. Founder approval: "Do what's best
   recommended by the panel, even if it needs a full overhaul." Panel verdict at
   panel_reviews/20260603_111124_website_maximal_multi_page_ia_redesign_*/_consolidated.md;
   persona walk at foundation/website_ia_redesign_persona_walk_s137_b05.md;
   synthesis at foundation/website_ia_redesign_synthesis_s137_b05.md. */

/* Brand link in topnav (was plain div pre-v5; v5 makes it /home link) */
.topnav .brand a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
.topnav .brand a:hover { color: var(--green); }

/* topnav aria-current=page for the current page's nav link */
.topnav nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}

/* Segment self-locator (promoted from old "Who Staymulate is for" section 8 → section 5
   per persona walk top-1 pain "9/12 personas fail self-locating in first 30s"). Same
   .who-card visual style preserved. New wrapper class so old .who section can be removed. */
.segment-locator {
  padding: 56px 32px 32px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.segment-locator h2 {
  font-size: 26px;
  margin: 0 0 24px;
  color: var(--ink);
}

/* Trust bar (NEW per panel + persona walk consensus — founder note + wife + Akas + no-
   testimonials honesty PROMOTED out of footer fine-print into prominent block per VK
   DRIFT signal protecting wife's sales role). */
.trust-bar {
  padding: 48px 32px;
  background: var(--neutral-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container { max-width: 760px; margin: 0 auto; }
.trust-bar h2 {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--green);
}
.trust-bar .trust-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 12px;
}
.trust-bar .trust-text strong { color: var(--accent-dark); }
.trust-bar .trust-text-link {
  margin: 18px 0 0;
  font-size: 14px;
}
.trust-bar .trust-text-link a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}
.trust-bar .trust-text-link a:hover { color: var(--green-dark); }

/* Pricing teaser (replaces full pricing section on landing; full pricing lives at
   /pricing per panel CRIT 4/12 + persona NEW-B "pricing invisible above fold for
   scanners"). Three compact tier cards + "Full pricing →" link to standalone /pricing. */
.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 0 0 22px;
}
.teaser-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  text-align: left;
}
.teaser-card .teaser-tier {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 4px;
}
.teaser-card .teaser-price {
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}
.teaser-card .teaser-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pricing-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.pricing-link:hover { color: var(--accent-dark); }

/* Lean footer (footer cleanup per panel + persona walk). Old 4-paragraph
   footer-dump replaced with single line. Footer content moved to /about
   + /legal/* + /contact. */
.footer-lean {
  padding: 32px 18px 36px;
  text-align: center;
  color: var(--footer-text);
  font-size: 13.5px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-lean p { margin: 0; }
.footer-lean a {
  color: var(--green);
  text-decoration: underline;
  margin: 0 4px;
}
.footer-lean a:hover { color: var(--green-dark); }

/* /about specific — about-list bullets for the 30-year commitment section */
.about-list {
  margin: 8px 0 14px;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.about-list li { margin-bottom: 6px; }
.about-list strong { color: var(--green); }

/* /contact specific — FAQ disclosure + form */
.faq-item {
  margin: 10px 0;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--green);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}
.faq-item p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.contact-form {
  margin: 20px 0 0;
  max-width: 600px;
}
.contact-form .form-row {
  margin: 0 0 16px;
}
.contact-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form label .optional {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(31, 57, 51, 0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* Honeypot row — hidden field bots fill in; legit users never see it */
.contact-form .form-row-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.contact-form .form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status-ok {
  background: var(--highlight);
  color: var(--green-dark);
  border: 1px solid var(--gold);
}
.form-status-error {
  background: #fceaea;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

/* CTA block (used at bottom of /about, /contact, /pricing) */
.cta-block {
  padding: 56px 32px;
  background: var(--green);
  color: #fff;
  text-align: center;
}
.cta-block .container { max-width: 760px; margin: 0 auto; }
.cta-block h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 18px;
}
.cta-block .svc-intro,
.cta-block .hero-hint {
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  margin: 0 0 18px;
  max-width: none;
}
.cta-block .ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}
.cta-block .btn-primary { background: #fff; color: var(--green); }
.cta-block .btn-primary:hover { background: var(--cream); }
.cta-block .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.cta-block .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cta-block .hero-hint a { color: var(--highlight); }

/* s129 b21 — Above-fold product summary (CRIT crit_landing_no_product_summary
   from Testing Company). Hostile first-time-user persona closed the tab
   because no 30-second explainer existed. This sub-headline answers
   "what is Staymulate" before the longer lede. */
.lede-summary {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 720px;
  margin: 0 0 18px;
}
.lede-summary strong {
  color: var(--green);
  font-weight: 700;
}

/* s129 b22 — Cookie consent banner (TC v2 CRIT crit_missing_cookie_consent). */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: #fff;
  z-index: 1000;
  padding: 16px 20px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  font-size: 14px;
}
.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1 1 400px;
  margin: 0;
  line-height: 1.45;
  color: #fff;
}
.cookie-banner-text a { color: var(--gold); text-decoration: underline; }
.cookie-banner-text strong { color: var(--gold); font-weight: 600; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
.cookie-btn-accept { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-btn-accept:hover { background: var(--accent-dark); }
.cookie-btn-link { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-btn-link:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

/* s130 b10 — Language switcher for /landing?lang={fr,hi,id} per TC v4-redo
   i18n cluster. Compact horizontal nav under skip-link. */
.lang-switcher {
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  background: var(--bg);
}
.lang-switcher a {
  color: var(--green);
  text-decoration: none;
  margin: 0 4px;
}
.lang-switcher a:hover { text-decoration: underline; }

/* ============================================================================
   s176 — FUTURISTIC · GRACEFUL · ELEGANT · ANIMATED overhaul layer
   (founder: "a website from the future, but graceful and elegant, with
   animations"; panel: reconcile motion with the warm staymulate_ds calm +
   budget for 2G/3G India mobile). Appended last so it cascades over the base.
   All motion is CSS transform/opacity only (compositor-cheap) + gated behind
   prefers-reduced-motion. No JS animation libs, no extra fonts.
   ============================================================================ */

/* Modern, futuristic type — system stack (zero font download on India mobile),
   tight tracking, large confident headings. Replaces the Lora serif feel. */
.hero h1, .segment-locator h2, .three-services h2, .trust-bar h2, .resources h2,
.who-card h3, .svc h3 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif !important;
  font-style: normal !important;
  letter-spacing: -0.025em;
}
.hero h1 { font-weight: 760 !important; }
.three-services h2, .segment-locator h2, .trust-bar h2, .resources h2 { font-weight: 720 !important; }

/* Hero — a calm, futuristic aurora: a slow, very-soft radial drift behind the
   warm canvas. Subtle (low-alpha greens), never garish. */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 18% -8%, rgba(74,107,63,0.10), transparent 60%),
    radial-gradient(900px 480px at 92% 4%, rgba(212,164,55,0.08), transparent 62%),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 130%;
  background: radial-gradient(closest-side, rgba(74,107,63,0.10), transparent 70%);
  filter: blur(8px); z-index: 0; animation: aurora 18s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
@keyframes aurora {
  0%   { transform: translate3d(-4%, -2%, 0) scale(1.0); opacity: .85; }
  100% { transform: translate3d(6%, 3%, 0) scale(1.12); opacity: 1; }
}
.hero h1 { font-size: clamp(30px, 5.2vw, 56px); line-height: 1.08; }
.hero h1 em { color: var(--green-dark); font-style: normal; }
.lede-summary { font-size: clamp(16px, 2vw, 19px); }

/* Primary CTA — gradient + lift + a soft glow on hover (futuristic, restrained).
   Scoped to .hero so it does NOT override the white-on-green button inside the
   green .cta-block band (the green-on-green invisible-button bug). */
.hero .ctas .btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
  border: 0; box-shadow: 0 8px 22px rgba(74,107,63,0.28);
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease;
}
.hero .ctas .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(74,107,63,0.36); }
/* Belt-and-suspenders: force the green-band button to stay white-on-green. */
.cta-block .ctas .btn-primary { background: #fff !important; color: var(--green) !important; box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.cta-block .ctas .btn-primary:hover { background: var(--cream) !important; }

/* Cards — glass-soft surfaces with depth + a graceful hover lift. */
.who-card, .svc, .teaser-card, .res {
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(1.1) blur(6px);
  -webkit-backdrop-filter: saturate(1.1) blur(6px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(43,43,40,0.05), 0 10px 30px rgba(43,43,40,0.05);
  transition: transform .26s cubic-bezier(.2,.7,.2,1), box-shadow .26s ease, border-color .26s ease;
  will-change: transform;
}
.who-card:hover, .svc:hover, .teaser-card:hover, .res:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(43,43,40,0.08), 0 22px 48px rgba(43,43,40,0.10);
  border-color: rgba(74,107,63,0.32);
}

/* The product showcase (s176 HTML addition) — finally SHOW the portal. */
.product-showcase { padding: clamp(40px, 7vw, 88px) 0; background: linear-gradient(180deg, var(--bg), var(--neutral-light)); }
.product-showcase .container { text-align: center; }
.product-showcase h2 { margin-bottom: 10px; }
.product-showcase .ps-sub { color: var(--ink-soft); max-width: 560px; margin: 0 auto 30px; font-size: 16px; }
.ps-frame {
  max-width: 880px; margin: 0 auto; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(43,43,40,0.18), 0 6px 18px rgba(43,43,40,0.08);
  background: #fff;
}
.ps-frame .ps-bar { display: flex; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2, #fbfaf6); }
.ps-frame .ps-bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2ddd0; display: inline-block; }
.ps-frame img { width: 100%; display: block; }

/* Scroll-reveal — graceful fade-up as each section enters the viewport.
   Driven by an IntersectionObserver in landing.html. Compositor-only. */
/* Scoped to .stm-js so that if JS is OFF the content is NEVER hidden (no-JS + SEO safe). */
.stm-js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.stm-js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal-d="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-d="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-d="3"] { transition-delay: .24s; }

/* Sticky glass topnav for a modern feel. */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.82);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--border);
}

/* Respect users + low-power devices: kill all motion. Critical for India 2G/3G
   + accessibility (panel Devil's-Advocate catch). */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .who-card, .svc, .teaser-card, .res, .ctas .btn-primary { transition: none !important; }
}

/* Product-showcase mock — evokes the owner portal (idealized marketing numbers,
   not a binary asset; scales crisply on every screen). */
.ps-mock { display: grid; grid-template-columns: 132px 1fr; min-height: 248px; text-align: left; }
.ps-rail { background: var(--bg); border-right: 1px solid var(--border); padding: 16px 12px; display: flex; flex-direction: column; gap: 9px; }
.ps-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.ps-rail b { font-size: 12.5px; color: var(--ink); margin: 4px 0 8px; }
.ps-navi { height: 9px; border-radius: 5px; background: var(--neutral-light); }
.ps-navi.on { background: rgba(74,107,63,0.22); }
.ps-body { padding: 18px; }
.ps-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ps-tile { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 13px; box-shadow: 0 1px 3px rgba(43,43,40,0.05); }
.ps-tile span { font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.ps-tile b { display: block; font-size: 25px; font-weight: 750; letter-spacing: -.02em; margin-top: 4px; color: var(--ink); }
.ps-tile em { font-style: normal; font-size: 11px; color: var(--green); font-weight: 600; }
.ps-row { margin-top: 13px; background: var(--neutral-light); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; font-size: 13px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.ps-row .ps-cta { color: var(--green); font-weight: 700; }
@media (max-width: 560px) { .ps-mock { grid-template-columns: 1fr; } .ps-rail { flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--border); } .ps-tile b { font-size: 21px; } }

/* ============================================================================
   SERIF PURGE — unify the marketing pages to the staymulate_ds system sans.
   (Red-team: the landing went sans but contact/about/pricing kept Lora serif
   headlines + italic-serif body, clashing with the portal DS the founder wants
   everywhere.) Appended last so it wins. Italic <em> stays italic, just in sans.
   ============================================================================ */
h1, h2, h3, h4, .serif,
.lede-summary, .svc-intro, .trust-text, .who-card p, .svc p, .teaser-note, .res p,
.hero h1, .hero h1 em, blockquote, p, li {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif !important;
}
h1, h2, h3 { letter-spacing: -0.02em; }

/* ============================================================================
   LANDING RESTRUCTURE (s176) — comparison ESSAY → scannable 2-column table
   (red-team: the "what the software layer saves" essay was a wall of serif text,
   duplicated on pricing; a skeptical owner bounces before the value lands).
   ============================================================================ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.compare-col {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px;
  box-shadow: 0 1px 3px rgba(43,43,40,0.05);
}
.compare-keep { background: var(--green-tint, #eef2e9); border-color: rgba(74,107,63,0.22); }
.compare-head {
  font-weight: 700; font-size: 14px; color: var(--green-dark); margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border); letter-spacing: -0.01em;
}
.compare-keep .compare-head { color: var(--green-dark); border-bottom-color: rgba(74,107,63,0.2); }
.compare-list { list-style: none; margin: 0; padding: 0; }
.compare-list li {
  font-size: 14px; color: var(--ink); line-height: 1.5; padding: 8px 0 8px 24px; position: relative;
  border-top: 1px solid rgba(43,43,40,0.05);
}
.compare-list li:first-child { border-top: 0; }
.compare-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--green); font-weight: 800; }
.compare-keep .compare-list li::before { content: "●"; font-size: 10px; top: 10px; }
.compare-foot { margin-top: 18px; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }

/* Cookie bar → bottom-docked slim bar (red-team + panel: it slammed under the hero
   and killed momentum). Scoped override of the shared cookie_banner.css. */
.cookie-banner:not([hidden]) {
  position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 80;
  border-top: 1px solid var(--border); border-bottom: 0;
  box-shadow: 0 -6px 24px rgba(43,43,40,0.10);
}
