/* ============================================================
   JourneyWell — Lite Stylesheet
   Light, Spotify/YouTube-inspired aesthetic for primary site pages.
   White background, black text, single accent green (#CFF42A).
   Pages using this load chrome.js and add <body class="lite">.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

body.lite {
  /* Color tokens (light) */
  --bg:           #ffffff;
  --bg-alt:       #f7f7f8;
  --bg-card:      #ffffff;
  --bg-hover:     rgba(0, 0, 0, 0.04);
  --ink:          #0a0a0a;
  --ink-2:        #1f2024;
  --muted:        #5d6066;
  --muted-2:      #8a8d94;
  --line:         rgba(0, 0, 0, 0.08);
  --line-strong:  rgba(0, 0, 0, 0.16);
  --accent:       #CFF42A;       /* Spotify green */
  --accent-deep:  #CFF42A;
  --accent-tint:  rgba(207, 244, 42, 0.10);
  --accent-glow:  rgba(207, 244, 42, 0.22);
  --danger:       #d61f4a;
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.04), 0 1px 1px rgba(0,0,0,0.03);
  --shadow-md:    0 6px 20px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.05);

  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-pill:  999px;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif:        'Cormorant Garamond', 'Apple Garamond', Garamond, serif;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lite * { box-sizing: border-box; }
body.lite a { color: inherit; text-decoration: none; }
body.lite img { max-width: 100%; display: block; }

/* ---------- LAYOUT PRIMITIVES ---------- */
body.lite .lite-container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
body.lite .lite-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) {
  body.lite .lite-container, body.lite .lite-narrow { padding: 0 18px; }
}

body.lite .lite-section { padding: 96px 0; }
body.lite .lite-section.tight { padding: 56px 0; }
body.lite .lite-section.alt { background: var(--bg-alt); }

/* ---------- NAV (overrides chrome.js dark nav) ---------- */
body.lite .nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
body.lite .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
}
body.lite .logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
body.lite .nav-links { display: flex; gap: 4px; }
body.lite .nav-links a {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 150ms ease, color 150ms ease;
}
body.lite .nav-links a:hover { color: var(--ink); background: var(--bg-hover); }
body.lite .nav-links a.active { color: var(--ink); background: var(--bg-hover); }
body.lite .nav-links a.active::after { display: none; }
body.lite .nav-cta { display: flex; align-items: center; gap: 12px; }
body.lite .nav-cta .signin {
  font-family: var(--font);
  font-size: 14px; font-weight: 500; letter-spacing: 0;
  text-transform: none; color: var(--muted);
}
body.lite .nav-cta .signin:hover { color: var(--ink); }

@media (max-width: 880px) {
  body.lite .nav-links { display: none; }
}

/* ---------- BUTTONS ---------- */
body.lite .btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
  cursor: pointer; white-space: nowrap;
}
body.lite .btn-large { padding: 14px 26px; font-size: 15px; }
body.lite .btn svg.icon { width: 16px; height: 16px; flex-shrink: 0; }

body.lite .btn-gold,
body.lite .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
body.lite .btn-gold:hover,
body.lite .btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

body.lite .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
body.lite .btn-ghost:hover {
  background: var(--bg-hover);
  border-color: var(--ink);
}

body.lite .btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
body.lite .btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------- TYPOGRAPHY ---------- */
body.lite h1, body.lite h2, body.lite h3, body.lite h4 {
  font-family: var(--font);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 700;
}
body.lite h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }
body.lite h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
body.lite h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; }
body.lite p { color: var(--ink-2); }
body.lite .muted { color: var(--muted); }
body.lite em.serif,
body.lite h1 em,
body.lite h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
}

body.lite .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-tint);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
body.lite .eyebrow.neutral {
  background: var(--bg-alt);
  color: var(--muted);
  border: 1px solid var(--line);
}

body.lite .lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- HERO BRAND VIDEO ---------- */
/* Sits above .lite-hero. 16:9 landscape inside the same container.
   See index.html top of <body> for the wiring plan (Creator Tunnel `hero` tag). */
body.lite .hero-video {
  padding: 0;
}
/* Full-bleed: bypass the .lite-container width + side padding so the frame
   spans the entire viewport. Keeps the section markup unchanged. */
body.lite .hero-video > .lite-container {
  max-width: none;
  padding: 0;
}
body.lite .hero-video-frame {
  position: relative;
  width: 100%;
  /* Fill the visible area below the sticky nav. `svh` keeps the value
     stable on mobile while the URL bar collapses; `vh` is the fallback
     for browsers without `svh` support. */
  height: calc(100vh - var(--nav-h, 65px));
  height: calc(100svh - var(--nav-h, 65px));
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 50%, #0a0a0a 100%);
}
body.lite .hero-video-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* Start invisible; fade in once chrome.js flips data-ready on the video
     element (fires on `canplay`, so the frame stays empty during fetch +
     buffer instead of popping a blank placeholder, then the video glides
     in once it's actually ready to play). */
  opacity: 0;
  transition: opacity 600ms ease;
}
body.lite .hero-video-frame video[data-ready="1"] { opacity: 1; }

/* ---------- HERO VIDEO OVERLAY ----------
   Centered text + CTA layered on top of the brand video. Sits ABOVE the
   video element via z-index because chrome.js inserts <video> as the
   frame's firstChild. A subtle dark gradient at top/bottom keeps the
   text legible across the variable brightness of the underlying clip
   without dimming the whole frame. */
body.lite .hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 5vw, 64px);
  color: #fff;
  pointer-events: none; /* don't block scroll/click on the video */
}
/* Dark scrim — only over the top + bottom edges so the middle of the
   video stays vibrant. Adjust the stop-opacities if a particular clip
   pushes text into a bright region. */
body.lite .hero-video-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 25%,
    rgba(0, 0, 0, 0.10) 50%,
    rgba(0, 0, 0, 0.35) 80%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
  z-index: -1;
}
body.lite .hero-video-eyebrow {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: clamp(16px, 1.6vw, 22px);
}
body.lite .hero-video-title {
  font-size: clamp(36px, 6.2vw, 88px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 clamp(16px, 1.6vw, 24px);
  max-width: 18ch;
  color: #fff;
}
body.lite .hero-video-title em {
  font-family: var(--serif, 'Cormorant Garamond', Garamond, serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent, #CFF42A);
}
body.lite .hero-video-lead {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0 0 clamp(20px, 2vw, 32px);
}
body.lite .hero-video-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto; /* re-enable for the buttons themselves */
}
@media (max-width: 720px) {
  body.lite .hero-video-overlay {
    padding: 24px 20px;
    justify-content: center;
  }
  body.lite .hero-video-title { max-width: 14ch; }
  body.lite .hero-video-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  body.lite .hero-video-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  body.lite .hero-video { padding: 0; }
  body.lite .hero-video-frame {
    border-radius: 0;
    /* Frame fills the viewport beneath the sticky nav so the text overlay
       (eyebrow + headline + lead + CTAs) has room to read on a phone.
       The landscape video gets cropped sides via object-fit: cover —
       acceptable tradeoff: the overlay copy is what the hero is selling
       here, not the full unencrypted shot of the brand video. */
    height: calc(100vh - var(--nav-h, 65px));
    height: calc(100svh - var(--nav-h, 65px));
    min-height: 480px;
    aspect-ratio: auto;
  }
  body.lite .hero-video-placeholder { font-size: 11px; letter-spacing: 0.14em; }
}

/* ---------- HERO ---------- */
body.lite .lite-hero {
  padding: 88px 0 48px;
  position: relative;
  overflow: hidden;
}
body.lite .lite-hero h1 { max-width: 18ch; margin-bottom: 22px; }
body.lite .lite-hero .lead { margin-bottom: 32px; }
body.lite .lite-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Optional decorative wash */
body.lite .lite-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle at center, var(--accent-tint) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body.lite .lite-hero > * { position: relative; z-index: 1; }

/* ---------- LOGO STRIP ---------- */
body.lite .lite-logo-strip {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 56px;
}
body.lite .lite-logo-strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}
body.lite .lite-brand-mark {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg-alt);
}

/* ---------- CARD GRID ---------- */
body.lite .lite-grid {
  display: grid;
  gap: 22px;
}
body.lite .lite-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
body.lite .lite-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
body.lite .lite-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  body.lite .lite-grid.cols-3, body.lite .lite-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body.lite .lite-grid.cols-2, body.lite .lite-grid.cols-3, body.lite .lite-grid.cols-4 { grid-template-columns: 1fr; }
}

body.lite .lite-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
body.lite .lite-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent-tint), var(--shadow-md);
}
body.lite .lite-card .lite-card-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-tint);
  color: var(--accent-deep);
  border-radius: 12px;
  margin-bottom: 18px;
}
body.lite .lite-card .lite-card-icon svg { width: 22px; height: 22px; }
body.lite .lite-card h3 { margin-bottom: 8px; font-size: 19px; font-weight: 600; }
body.lite .lite-card p { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
body.lite .lite-card .lite-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--accent-deep);
}
body.lite .lite-card .lite-card-link:hover { color: var(--accent); }

/* Photo variant — vertical photo fills the entire card; text overlays the
   bottom on a transparent-to-dark gradient so the photo stays visible
   behind the copy ("movie poster" treatment, not a split card). */
body.lite .lite-card.lite-card--photo {
  padding: 0;
  position: relative;
  display: block;
  /* 9:16 tile — matches the 1080x1920 portrait photos Drake is dropping in
     (and Reels/Shorts source dimensions), so real assets fit edge-to-edge
     without cropping faces. */
  aspect-ratio: 9 / 16;
  overflow: hidden;
  /* The card carries the image, so the underlying card bg only shows
     during image load. Slight tint so the placeholder doesn't flash white. */
  background: #0a0a0a;
  /* Override the .lite-card default border-color hover so the photo edge
     stays clean — the gradient does the visual lift instead. */
  transition: transform 200ms ease, box-shadow 200ms ease;
}
body.lite .lite-card--photo .lite-card-photo {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}
body.lite .lite-card--photo .lite-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* Bottom-fading scrim — transparent across the top 45%, ramping into dark
   near the bottom so the headline + paragraph + link sit on enough contrast
   to read regardless of which frame of which photo is showing. */
body.lite .lite-card--photo .lite-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}
body.lite .lite-card--photo .lite-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 26px 24px;
  color: #fff;
  z-index: 1;
}
/* Force text colors to white-on-photo regardless of theme — these cards
   never want the light-mode dark text since the bottom of the photo is
   always darkened by the scrim above. */
body.lite .lite-card--photo .lite-card-body h3 { color: #fff; margin-bottom: 6px; }
body.lite .lite-card--photo .lite-card-body p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}
body.lite .lite-card--photo .lite-card-body .lite-card-link {
  color: #fff;
}
body.lite .lite-card--photo .lite-card-body .lite-card-link:hover {
  color: var(--accent, #CFF42A);
}
/* Card icon kept above the title as a small pill — translucent white so it
   reads as a UI accent rather than a heavy badge against the photo. */
body.lite .lite-card--photo .lite-card-body .lite-card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Hover: lightly zoom the photo (Ken-Burns-y) and lift the card. */
body.lite .lite-card--photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  border-color: var(--line);
}
body.lite .lite-card--photo:hover .lite-card-photo img {
  transform: scale(1.04);
}

/* "Numbered" cards (process step grid) */
body.lite .lite-step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
body.lite .lite-step-card .lite-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
body.lite .lite-step-card h3 { font-size: 19px; margin-bottom: 6px; }
body.lite .lite-step-card p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ---------- STATS ---------- */
body.lite .lite-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { body.lite .lite-stats { grid-template-columns: repeat(2, 1fr); } }
body.lite .lite-stat-num {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
body.lite .lite-stat-num em {
  color: var(--accent);
  font-style: normal;
  font-family: inherit;
}
body.lite .lite-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- SECTION HEADERS ---------- */
body.lite .lite-section-head { margin-bottom: 40px; max-width: 720px; }
body.lite .lite-section-head h2 { margin-bottom: 14px; }
body.lite .lite-section-head .lead { font-size: 17px; }
body.lite .lite-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- WORK / PORTFOLIO TILES ---------- */
body.lite .lite-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { body.lite .lite-tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { body.lite .lite-tile-grid { grid-template-columns: 1fr; } }

body.lite .lite-tile {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  /* Reset button defaults so the tile looks identical whether it's <a> or <button>. */
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  width: 100%;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
body.lite .lite-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
body.lite .lite-tile-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #ddd 0%, #f1f1f1 100%);
  position: relative;
  overflow: hidden;
}
body.lite .lite-tile-thumb img,
body.lite .lite-tile-thumb video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
body.lite .lite-tile-thumb .tile-play {
  position: absolute; right: 12px; bottom: 12px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
body.lite .lite-tile-thumb .tile-play svg { width: 18px; height: 18px; }
body.lite .lite-tile-body {
  padding: 16px 20px 20px;
}
body.lite .lite-tile-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
body.lite .lite-tile-title {
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
body.lite .lite-tile-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- TESTIMONIAL ---------- */
body.lite .lite-quote {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 780px;
  margin-bottom: 28px;
}
body.lite .lite-quote-mark {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
body.lite .lite-quote-attr {
  display: flex; align-items: center; gap: 14px;
}
body.lite .lite-quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
}
body.lite .lite-quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
body.lite .lite-quote-name { font-weight: 600; font-size: 15px; color: var(--ink); }
body.lite .lite-quote-role { font-size: 13px; color: var(--muted); }

/* ---------- FOUNDERS BLOCK ---------- */
body.lite .lite-founders {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { body.lite .lite-founders { grid-template-columns: 1fr; gap: 32px; } }

body.lite .lite-founders-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
body.lite .lite-founders-photo img { width: 100%; height: 100%; object-fit: cover; }

body.lite .lite-founders h2 { margin-bottom: 18px; }
body.lite .lite-founders p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-bottom: 16px; }
body.lite .lite-founders .signature {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-deep);
}

/* ---------- BIG CTA BAND ---------- */
body.lite .lite-cta {
  padding: 88px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
body.lite .lite-cta h2 { color: #fff; margin-bottom: 14px; }
body.lite .lite-cta p { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 28px; max-width: 56ch; margin-left: auto; margin-right: auto; }
body.lite .lite-cta .lite-cta-buttons {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
body.lite .lite-cta .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
body.lite .lite-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

/* ---------- FOOTER ---------- */
body.lite .footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--muted);
}
body.lite .footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  flex-wrap: wrap;
}
body.lite .footer .logo { color: var(--ink); }
body.lite .footer-meta {
  display: flex; gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}
body.lite .footer-meta a { color: var(--muted); }
body.lite .footer-meta a:hover { color: var(--ink); }

/* ---------- FLOATING BUTTON (hide on lite — we keep nav CTA only) ---------- */
body.lite .float-btn { display: none !important; }

/* ---------- ICONS ---------- */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-inline { width: 1em; height: 1em; }

/* ---------- BLOG CARD GRID (light) ---------- */
body.lite .lite-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { body.lite .lite-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { body.lite .lite-blog-grid { grid-template-columns: 1fr; } }

body.lite .lite-blog-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
body.lite .lite-blog-card-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}
body.lite .lite-blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
body.lite .lite-blog-card:hover .lite-blog-card-thumb img { transform: scale(1.03); }
body.lite .lite-blog-card-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
body.lite .lite-blog-card-title {
  font-size: 18px; font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
body.lite .lite-blog-card-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- BLOG POST READING SHELL ---------- */
body.lite .lite-post {
  padding: 56px 0 96px;
}
body.lite .lite-post-cover {
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 0 36px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
body.lite .lite-post-cover img { width: 100%; height: 100%; object-fit: cover; }
body.lite .lite-post-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 13px; color: var(--muted);
  margin-bottom: 10px;
}
body.lite .lite-post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
body.lite .lite-post h1 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 16px; line-height: 1.1; }
body.lite .lite-post .lead { margin-bottom: 28px; font-size: 19px; }
body.lite .lite-post-body p,
body.lite .lite-post-body ul,
body.lite .lite-post-body ol {
  font-size: 18px; line-height: 1.7; color: var(--ink-2);
  margin-bottom: 22px;
}
body.lite .lite-post-body h2 { font-size: 28px; margin: 48px 0 16px; }
body.lite .lite-post-body h3 { font-size: 21px; margin: 32px 0 12px; }
body.lite .lite-post-body ul, body.lite .lite-post-body ol { padding-left: 24px; }
body.lite .lite-post-body li { margin-bottom: 8px; }
body.lite .lite-post-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
}
body.lite .lite-post-body a { color: var(--accent-deep); border-bottom: 1px solid var(--accent-tint); }
body.lite .lite-post-body a:hover { border-bottom-color: var(--accent); }

/* ---------- COMPARE TABLE (lite) ---------- */
body.lite .lite-compare {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
body.lite .lite-compare > div {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex; align-items: center;
}
body.lite .lite-compare .lite-compare-head {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
}
body.lite .lite-compare .lite-compare-head.jw { background: var(--accent-tint); color: var(--accent-deep); }
body.lite .lite-compare .lite-compare-cell.jw { color: var(--accent-deep); font-weight: 600; }
body.lite .lite-compare .lite-compare-cell.center { justify-content: center; }
body.lite .lite-compare .lite-compare-cell .check { color: #000; }
body.lite .lite-compare .lite-compare-cell .x { color: var(--muted-2); }
body.lite .lite-compare .lite-compare-cell .check svg,
body.lite .lite-compare .lite-compare-cell .x svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  body.lite .lite-compare { grid-template-columns: 1fr; }
  body.lite .lite-compare > div { padding: 10px 14px; }
}

/* ---------- FAQ / ACCORDION-STYLE STATIC LIST ---------- */
body.lite .lite-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
body.lite .lite-faq-item h3 {
  font-size: 17px; font-weight: 600; margin-bottom: 8px;
}
body.lite .lite-faq-item p {
  color: var(--muted); font-size: 15px; line-height: 1.6;
}

/* ---------- DRAWER OVERRIDES (lite) ---------- */
/* Drawer remains dark for now — it's a deliberate immersive overlay.
   We only soften the trigger button and overlay edge. */
body.lite .drawer-overlay { background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); }
