﻿:root {
  --ink: #10241D;
  --ink2: #173329;
  --cream: #E9F6EC;
  --panel: #D8EEDD;
  --paper: #FFFFFF;
  --line: #C7E4CD;
  --accent: #A9E88F;
  --accent-deep: #2F7A47;
  --pastel-blue: #DCEBFB;
  --pastel-blue-ink: #2E5E8C;
  --pastel-mint: #CDEDD5;
  --pastel-mint-ink: #256A3C;
  --pastel-yellow: #FBEED2;
  --pastel-yellow-ink: #8A6A1E;
  --pastel-coral: #FBE1DC;
  --pastel-coral-ink: #A6462F;
  --pastel-lilac: #E8E2FA;
  --pastel-lilac-ink: #5B4C9E;
  --text-light: rgba(233,246,236,.72);
  --white: #ffffff;
  --gray: #536B5D;
}

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

html { overflow-x: hidden; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Textured section background recipe — fine dot-grid + soft diagonal colour
   wash instead of flat cream. Applied inline at each section's own rule
   below (not here) so there's a single declaration site per selector and
   no cascade-order surprises. */

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

h1, h2, h3, h6 { line-height: 1.2; font-weight: 800; letter-spacing: -.01em; }

/* Top bar */
.topbar {
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
}
.topbar-email { color: var(--ink); font-weight: 600; }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { color: var(--ink); display: flex; opacity: .7; transition: opacity .2s ease; }
.topbar-social a:hover { opacity: 1; }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 32px; height: auto; display: flex; }
.logo-text { font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -.01em; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  opacity: .75;
  transition: opacity .2s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a.active { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-login { padding: 10px 22px; font-size: 14px; gap: 8px; }
.nav-login .btn-icon { display: none; }

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--panel);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 7px 13px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  font-family: inherit;
  color: var(--gray);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-toggle button.active { background: var(--ink); color: var(--cream); }
.lang-toggle button:hover:not(.active) { color: var(--ink); }
.lang-toggle-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16,36,29,.22);
  background: var(--ink2);
}
.btn-icon {
  background: var(--accent);
  color: var(--ink);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.btn-pill:hover .btn-icon { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  transition: border-color .2s ease, background .2s ease;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--panel); }

/* Badges & misc — a plain labeled dash reads more editorial/confident than
   a filled rounded pill (which tends to read as generic AI-SaaS-template). */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
}
.pill-badge::before { content: ""; display: inline-block; width: 22px; height: 2px; background: var(--accent-deep); }
.pill-badge.dark { color: var(--accent); }
.pill-badge.dark::before { background: var(--accent); }
.eyebrow {
  display: inline-block;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; }

/* ===== Hero ===== */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(169,232,143,.4), rgba(216,238,221,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(124,192,242,.35), rgba(220,235,251,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 52px;
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* CSS-built product mockup (no stock photography) */
/* Homepage hero visual — a bold gradient panel with a real interaction card
   floating on top, instead of a fake browser-chrome app window. Floating
   badges live in the outer wrap so they aren't clipped by the panel's own
   overflow:hidden (used to keep the blurred bars inside the rounded corners). */
.hero-showcase-wrap { position: relative; }
.hero-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 40px 28px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E3FAE7 0%, #BEE9CE 48%, #AFDCF2 100%);
  box-shadow: 0 30px 60px rgba(16,36,29,.16);
}
.hero-showcase-bars {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  filter: blur(.5px);
  opacity: .5;
}
.hero-showcase-bars span { display: block; height: 15px; border-radius: 8px; background: rgba(16,36,29,.14); }
.hero-showcase-bars span:nth-child(1) { width: 62%; }
.hero-showcase-bars span:nth-child(2) { width: 88%; }
.hero-showcase-bars span:nth-child(3) { width: 50%; margin-bottom: 26px; }
.hero-showcase-bars span:nth-child(4) { width: 76%; }
.hero-showcase-bars span:nth-child(5) { width: 40%; }
.hero-showcase-mascot {
  position: absolute;
  width: 108px;
  height: auto;
  bottom: -8px;
  left: -18px;
  filter: drop-shadow(0 14px 20px rgba(16,36,29,.22));
  z-index: 2;
}
.hero-showcase-card {
  position: relative;
  z-index: 3;
  background: var(--paper);
  border-radius: 20px;
  padding: 22px 22px 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 26px 50px rgba(16,36,29,.24);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hs-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.hs-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  background: var(--pastel-mint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-card-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.hs-card-head h4 { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.hs-card-head p { font-size: 11px; color: var(--gray); }
.hs-form { display: flex; flex-direction: column; gap: 10px; }
/* Stands in for the form during the fake generate. Sized to the form's own
   height so the card does not jump when they swap. */
.hs-loader { --ml-size: 150px; min-height: 182px; }

/* Result preview: real-looking content that gates behind the paywall the
   moment the visitor tries to scroll for more or answer a question. */
.hs-result { display: none; flex-direction: column; gap: 10px; }
.hs-result.show { display: flex; }
.hs-result-badge { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; color: var(--accent-deep); }
.hs-result-caption { font-size: 10.5px; font-weight: 700; color: var(--gray); margin: -4px 0 0; }
.hs-result-stats { display: flex; flex-wrap: wrap; gap: 6px; }
.hs-stat {
  flex: 1 1 90px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 8px;
  background: var(--cream);
  min-width: 0;
}
.hs-stat-icon { color: var(--accent-deep); flex-shrink: 0; }
.hs-stat strong { display: block; font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.hs-stat span { font-size: 9px; color: var(--gray); }
.hs-result-scroll {
  max-height: 168px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hs-result-opt {
  font-size: 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.hs-result-opt:hover { border-color: var(--accent-deep); background: var(--pastel-mint); }
.hs-part-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hs-part-row strong { display: block; font-size: 11.5px; font-weight: 800; color: var(--ink); }
.hs-part-row > div > span { display: block; font-size: 10px; color: var(--gray); margin-top: 1px; }
.hs-part-row em { font-style: normal; font-size: 10.5px; font-weight: 700; color: var(--accent-deep); white-space: nowrap; }
.hs-reset-btn {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.app-mockup {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(16,36,29,.09);
  overflow: hidden;
  position: relative;
}
.app-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.app-mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.app-mockup-dot:nth-child(1) { background: var(--pastel-coral-ink); opacity: .5; }
.app-mockup-dot:nth-child(2) { background: var(--pastel-yellow-ink); opacity: .5; }
.app-mockup-dot:nth-child(3) { background: var(--pastel-mint-ink); opacity: .5; }
.app-mockup-url {
  margin-left: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11px;
  color: var(--gray);
}
.app-mockup-body { display: grid; grid-template-columns: 88px 1fr; min-height: 340px; }
.app-mockup-side { background: var(--panel); border-right: 1px solid var(--line); padding: 18px 12px; display: flex; flex-direction: column; gap: 10px; }
.app-mockup-side span { display: block; height: 8px; border-radius: 4px; background: var(--line); }
.app-mockup-side span.on { background: var(--accent-deep); opacity: .5; }

/* Homepage hero mockup: modeled on the real Smart DSE Generator page */
.app-mockup-side .rm-nav-icon {
  height: auto;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}
.app-mockup-side .rm-nav-icon.on { background: var(--pastel-mint); color: var(--pastel-mint-ink); opacity: 1; }
.rm-main { padding: 18px 20px; display: flex; flex-direction: column; gap: 9px; }
.rm-main h4 { font-size: 18px; font-weight: 800; color: var(--ink); }
.rm-sub { font-size: 11.5px; color: var(--gray); margin-bottom: 2px; }
.rm-step-label { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; color: var(--ink); margin-top: 4px; }
.rm-step-num {
  width: 17px; height: 17px; min-width: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-deep);
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rm-chip-row { display: flex; gap: 8px; }
.rm-chip-row[hidden] { display: none; }
.rm-chip-group { display: flex; flex-direction: column; gap: 8px; }
.rm-chip-group[hidden] { display: none; }
.rm-chip {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 9px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
}
.rm-chip:hover { border-color: var(--accent-deep); transform: translateY(-1px); }
.rm-chip-icon { font-size: 15px; display: inline-flex; color: var(--accent-deep); }
.rm-chip.selected { border-color: var(--accent-deep); background: var(--pastel-mint); color: var(--pastel-mint-ink); }
.rm-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  margin-top: 2px;
}
.rm-input::placeholder { color: var(--gray); }
.rm-input:focus { outline: none; border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(47,122,71,.12); }
.rm-generate-btn { justify-content: center; padding: 11px; font-size: 13.5px; margin-top: 6px; width: 100%; }
.rm-lockline { font-size: 10px; color: var(--gray); text-align: center; margin-top: 2px; }
.app-mockup-main { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.mockup-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
}
.mockup-bubble.q { background: var(--panel); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.mockup-bubble.a { background: var(--ink); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.mockup-card-row { display: flex; gap: 10px; margin-top: auto; }
.mockup-mini-card {
  flex: 1;
  border-radius: 12px;
  padding: 12px;
  font-size: 11px;
  font-weight: 700;
}
.mockup-mini-card small { display: block; font-weight: 500; opacity: .8; font-size: 10px; margin-top: 4px; }
.mockup-mini-card.blue { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.mockup-mini-card.mint { background: var(--pastel-mint); color: var(--pastel-mint-ink); }
.mockup-mini-card.yellow { background: var(--pastel-yellow); color: var(--pastel-yellow-ink); }
.mockup-float {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 32px rgba(16,36,29,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}
.mockup-float .dot-icon { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep); }
.mockup-float.f1 { top: -16px; right: 24px; }
.mockup-float.f2 { bottom: -34px; left: 24px; background: var(--ink); color: var(--cream); border-color: var(--ink); }
.mockup-float.f2 .dot-icon { background: var(--accent); }
.mockup-generate-btn { margin-top: auto; align-self: stretch; justify-content: center; padding: 12px; font-size: 14px; }

/* Fake "pay to try it" gate — the app mockup's Generate button is not wired to
   anything real; clicking it surfaces this paywall prompt instead. */
.fake-paywall-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,36,29,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}
.fake-paywall-overlay.open { opacity: 1; visibility: visible; }
.fake-paywall-modal {
  position: relative;
  background: var(--paper);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(16,36,29,.32);
  transform: translateY(14px);
  transition: transform .2s ease;
}
.fake-paywall-overlay.open .fake-paywall-modal { transform: translateY(0); }
.fake-paywall-mascot { width: 84px; height: auto; margin: 0 auto 14px; filter: drop-shadow(0 10px 16px rgba(16,36,29,.18)); }
.fake-paywall-modal h3 { font-size: 21px; margin-bottom: 8px; color: var(--ink); }
.fake-paywall-sub { color: var(--gray); font-size: 13.5px; line-height: 1.5; margin-bottom: 16px; }
.fake-paywall-list { list-style: none; text-align: left; margin-bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.fake-paywall-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.fp-check {
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  background: var(--pastel-mint);
  color: var(--pastel-mint-ink);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.fake-paywall-modal .btn-pill { width: 100%; justify-content: center; margin-bottom: 14px; }
.fake-paywall-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
}
.fake-paywall-later {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.cta-mascot {
  width: 90px;
  height: auto;
  margin: 0 auto 8px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.3));
}

/* ===== Stats ===== */
.stats {
  padding: 20px 0 40px;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(169,232,143,.4), rgba(216,238,221,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(124,192,242,.35), rgba(220,235,251,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(16,36,29,.08); }
.stat-card h3 { font-size: 42px; color: var(--accent-deep); margin-bottom: 10px; }
.stat-card p { color: var(--gray); font-size: 15px; }

/* ===== Mission/Vision ===== */
.mission-vision {
  padding-bottom: 70px;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(169,232,143,.4), rgba(216,238,221,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(124,192,242,.35), rgba(220,235,251,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-grid > div {
  background: var(--panel);
  border-radius: 18px;
  padding: 32px;
}
.mv-grid h3 { color: var(--ink); font-size: 21px; margin-bottom: 12px; }
.mv-grid p { color: var(--gray); }

/* ===== Feature bento (homepage) ===== */
.features-check { padding: 80px 0; }
.fc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.fc-head { max-width: 640px; }
.fc-head h2 { font-size: 32px; margin-bottom: 14px; }
.fc-head p { color: var(--gray); font-size: 16px; }
.fc-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fc-item {
  border-radius: 18px;
  padding: 26px;
  transition: transform .2s ease;
}
.fc-item:hover { transform: translateY(-5px); }
.fc-item.pastel-blue { background: var(--pastel-blue); }
.fc-item.pastel-mint { background: var(--pastel-mint); }
.fc-item.pastel-yellow { background: var(--pastel-yellow); }
.fc-item.pastel-coral { background: var(--pastel-coral); }
.fc-item-num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.fc-item.pastel-mint .fc-item-num { color: var(--pastel-mint-ink); opacity: .7; }
.fc-item.pastel-blue .fc-item-num { color: var(--pastel-blue-ink); opacity: .7; }
.fc-item.pastel-yellow .fc-item-num { color: var(--pastel-yellow-ink); opacity: .7; }
.fc-item.pastel-coral .fc-item-num { color: var(--pastel-coral-ink); opacity: .7; }
.fc-item h4 { font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.fc-item p { font-size: 14px; color: var(--ink); opacity: .75; }
.fc-cta { margin-top: 8px; }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  background: var(--ink);
  border-radius: 28px;
  margin: 0 24px;
  max-width: 1200px;
  margin-inline: auto;
}
.cta-banner .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
.cta-banner h2 { font-size: 36px; max-width: 700px; }
.cta-banner .btn-pill { background: var(--accent); color: var(--ink); }
.cta-banner .btn-pill .btn-icon { background: var(--ink); color: var(--accent); }
.cta-banner .btn-pill:hover { background: var(--cream); }

/* ===== New Era / bento cards ===== */
.new-era { padding: 90px 0; }
.section-title { text-align: center; font-size: 34px; margin-bottom: 44px; }
.era-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.era-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease;
  background: var(--paper);
}
.era-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(16,36,29,.08); }
.era-card { border-top-width: 3px; }
.era-card:nth-child(6n+1) { border-top-color: var(--pastel-mint-ink); }
.era-card:nth-child(6n+2) { border-top-color: var(--pastel-blue-ink); }
.era-card:nth-child(6n+3) { border-top-color: var(--pastel-yellow-ink); }
.era-card:nth-child(6n+4) { border-top-color: var(--pastel-coral-ink); }
.era-card:nth-child(6n+5) { border-top-color: var(--pastel-lilac-ink); }
.era-card:nth-child(6n+6) { border-top-color: var(--pastel-mint-ink); }
.era-card h3 { font-size: 17px; margin-bottom: 10px; }
.era-card p { color: var(--gray); font-size: 14.5px; }

/* ===== Team / testimonials ===== */
.team { padding: 90px 0; }

.leader-spotlight {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 44px;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.leader-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  border: 4px solid var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.leader-content blockquote {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 16px 0 20px;
}
.leader-content h4 { font-size: 19px; color: var(--cream); }
.leader-content .role { color: var(--text-light); margin-top: 2px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(16,36,29,.08); }
.stars { color: var(--accent-deep); letter-spacing: 3px; margin-bottom: 16px; font-size: 14px; opacity: .8; }
.quote { flex: 1; color: var(--ink); margin-bottom: 22px; font-size: 15.5px; }
.team-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}
.team-meta { display: flex; align-items: center; gap: 12px; }
.team-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0;
  flex-shrink: 0;
}
.team-card h6 { font-size: 15px; margin: 0; }
.role { color: var(--gray); font-size: 13px; font-weight: 500; margin-top: 2px; }

/* ===== Pricing page ===== */
.pricing-hero {
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(246,200,99,.4), rgba(251,238,210,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(169,232,143,.32), rgba(216,238,221,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.pricing-hero .container { position: relative; z-index: 1; }
.pricing-hero .breadcrumb { justify-content: center; }
.pricing-hero h1 { font-size: 40px; margin-bottom: 16px; }
.pricing-hero .hero-sub { max-width: 560px; margin: 0 auto; }

.pricing-section { padding: 70px 0 90px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card .btn-pill { margin-top: auto; align-self: flex-start; }
.price-card.tone-blue { border-top-color: var(--pastel-blue-ink); }
.price-card.tone-blue .price-tag { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.price-card.tone-yellow { border-top-color: var(--pastel-yellow-ink); }
.price-card.tone-yellow .price-tag { background: var(--pastel-yellow); color: var(--pastel-yellow-ink); }
.price-card.tone-coral { border-top-color: var(--pastel-coral-ink); }
.price-card.tone-coral .price-tag { background: var(--pastel-coral); color: var(--pastel-coral-ink); }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(16,36,29,.1); }
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  margin-top: -14px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 24px 48px rgba(16,36,29,.2);
}
.price-tag {
  display: inline-block;
  background: var(--panel);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.price-tag.dark { background: var(--accent); color: var(--ink); }
.price-card h3 { font-size: 21px; margin-bottom: 10px; }
.price-card.featured h3 { color: var(--cream); }
.price-value { margin-bottom: 10px; }
.price-amount { font-size: 32px; font-weight: 800; }
.price-period { font-size: 13px; color: var(--gray); }
.price-card.featured .price-period { color: var(--text-light); }
.price-desc { color: var(--gray); margin-bottom: 22px; font-size: 13.5px; line-height: 1.5; }
.price-card.featured .price-desc { color: var(--text-light); }
.price-card h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--gray); margin-bottom: 14px; }
.price-card.featured h5 { color: var(--text-light); }
.price-card ul { list-style: none; margin-bottom: 26px; }
.price-card li {
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4;
}
.price-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
  font-weight: 700;
}
.price-card.featured li::before { color: var(--accent); }
.pricing-footnote-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.pricing-mascot { width: 56px; height: auto; flex-shrink: 0; }
.pricing-footnote {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  margin-top: 0;
}
.pricing-footnote a { color: var(--ink); font-weight: 700; text-decoration: underline; }

/* ===== Contact page ===== */
.contact-hero {
  padding: 80px 0 50px;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(183,162,240,.38), rgba(232,226,250,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(124,192,242,.32), rgba(220,235,251,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.contact-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.contact-mascot { width: 130px; height: auto; flex-shrink: 0; filter: drop-shadow(0 12px 20px rgba(16,36,29,.14)); }
.about-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.page-hero-mascot { width: 100px; height: auto; flex-shrink: 0; filter: drop-shadow(0 12px 20px rgba(16,36,29,.14)); }
.contact-hero .pill-badge { display: inline-flex; margin-bottom: 18px; }
.contact-hero h1 { font-size: 40px; margin-bottom: 18px; max-width: 700px; }
.contact-hero .hero-sub { max-width: 640px; }

.contact-trust { background: var(--panel); padding: 36px 0; }
.contact-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { text-align: center; }
.trust-card h3 { font-size: 30px; color: var(--ink); margin-bottom: 6px; }
.trust-card p { font-size: 13px; color: var(--gray); }

.contact-main { padding: 80px 0; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.contact-panel h2 { font-size: 27px; margin-bottom: 14px; }
.form-intro { color: var(--gray); margin-bottom: 26px; font-size: 15px; }

.reach-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 28px; }
.reach-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.reach-item:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(16,36,29,.06); }
.reach-icon { color: var(--accent-deep); display: flex; align-items: center; margin-top: 2px; }
.reach-item h4 { font-size: 14.5px; margin-bottom: 4px; }
.reach-item p { font-size: 13.5px; color: var(--gray); }

.quick-actions {
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 28px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.quick-actions-label {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.quick-actions-row { display: flex; gap: 10px; flex-wrap: wrap; }
.quick-action {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 16px 10px;
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.quick-action:hover { transform: translateY(-4px); background: rgba(169,232,143,.14); border-color: var(--accent); }
.quick-action-icon { display: flex; }

.faq-box { background: var(--panel); border-radius: 16px; padding: 22px; }
.faq-box h4 { font-size: 15.5px; margin-bottom: 12px; }
.faq-box details { border-top: 1px solid var(--line); padding: 12px 0; }
.faq-box details:first-of-type { border-top: none; }
.faq-box summary { cursor: pointer; font-weight: 600; font-size: 14px; color: var(--ink); }
.faq-box details p { font-size: 13px; color: var(--gray); margin-top: 10px; }

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px;
  color: var(--ink);
}
.form-panel h2 { color: var(--ink); }
.modern-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray); margin-bottom: 8px; }
.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
}
.modern-form select { appearance: none; }
.modern-form textarea { min-height: 120px; resize: vertical; }
.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus { outline: none; border-color: var(--accent-deep); }

/* Homepage blog teaser */
.home-blog { padding: 90px 0 20px; }
.home-blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.home-blog-head p { color: var(--gray); max-width: 460px; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline .btn-icon { background: var(--accent); color: var(--ink); }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-blog-card { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.home-blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(16,36,29,.1); }
.home-blog-card-thumb { width: calc(100% + 56px); aspect-ratio: 16/9; object-fit: cover; margin: -28px -28px 20px; display: block; }
.home-blog-card h3 { font-size: 17px; margin-bottom: 16px; line-height: 1.35; }
.home-blog-card .read-more { font-size: 14px; }

/* Homepage contact strip */
.contact-section { background: var(--panel); padding: 70px 0; color: var(--ink); border-radius: 28px; margin: 0 24px; max-width: 1200px; margin-inline: auto; }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-strip h2 { font-size: 26px; margin-bottom: 10px; max-width: 480px; }
.contact-strip p { color: var(--gray); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--text-light); padding: 70px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col { min-width: 0; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.footer-logo .logo-mark { color: var(--accent); }
.footer-logo .logo-text { color: var(--cream); font-size: 22px; }
.footer-phone, .footer-email { display: block; color: var(--cream); margin-bottom: 8px; }
.footer-supported { font-size: 13px; margin-top: 12px; }
.footer-col h3 { color: var(--cream); font-size: 17px; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 12px; opacity: .85; }
.footer-col a:hover { color: var(--accent); opacity: 1; }
.newsletter-form { display: flex; margin-top: 16px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--cream);
  border-radius: 50px 0 0 50px;
}
.newsletter-form button {
  background: var(--accent);
  border: none;
  padding: 0 20px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}
.footer-blurb { font-size: 13.5px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.footer-social a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal { display: flex; gap: 10px; }
.footer-legal a:hover { color: var(--accent); }

/* ===== Status pages (coming soon / maintenance) ===== */
.status-hero { padding: 90px 0 100px; text-align: center; }
.status-content { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.status-mascot { width: 140px; height: auto; margin-bottom: 24px; filter: drop-shadow(0 16px 28px rgba(16,36,29,.16)); }
.status-content h1 { font-size: 34px; margin-bottom: 14px; }
.status-content .hero-sub { margin-bottom: 32px; }
.status-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.status-page-standalone {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(169,232,143,.4), rgba(216,238,221,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(124,192,242,.35), rgba(220,235,251,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.status-page-standalone .logo { margin-bottom: 36px; }
.status-page-standalone .status-mascot { margin-bottom: 22px; }
.status-page-standalone h1 { font-size: 32px; margin-bottom: 14px; max-width: 480px; }
.status-page-standalone .hero-sub { max-width: 480px; margin-bottom: 18px; }
.status-contact { font-size: 14px; color: var(--gray); }
.status-contact a { color: var(--ink); font-weight: 700; text-decoration: underline; }

/* Generic page hero (About / Features / Blog) */
.page-hero {
  color: var(--ink);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(169,232,143,.4), rgba(216,238,221,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(124,192,242,.35), rgba(220,235,251,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.breadcrumb { color: var(--gray); font-size: 14px; margin-bottom: 12px; }
.breadcrumb a { color: var(--accent-deep); }
.breadcrumb.light { color: var(--gray); }
.page-hero h1 { font-size: 38px; }

/* ===== About page ===== */
.about-intro { padding: 70px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-intro h2 { font-size: 32px; margin-bottom: 18px; }
.about-intro > .about-intro-grid > div:first-child p { color: var(--gray); font-size: 16.5px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar-card { border-radius: 14px; padding: 22px; }
.pillar-card:nth-child(1) { background: var(--pastel-mint); }
.pillar-card:nth-child(2) { background: var(--pastel-blue); }
.pillar-card:nth-child(3) { background: var(--pastel-yellow); }
.pillar-card:nth-child(4) { background: var(--pastel-coral); }
.pillar-card h4 { font-size: 15.5px; margin-bottom: 8px; color: var(--ink); }
.pillar-card p { font-size: 13.5px; color: var(--ink); opacity: .75; }

.about-quote { background: var(--panel); padding: 70px 0; text-align: center; }
.about-quote blockquote { font-size: 24px; font-weight: 700; max-width: 900px; margin: 0 auto 44px; line-height: 1.5; color: var(--ink); }
.quote-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.quote-stats h4 { font-size: 36px; color: var(--accent-deep); margin-bottom: 8px; }
.quote-stats p { color: var(--gray); font-size: 14px; }

.about-versions { padding: 70px 0; }
.versions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.version-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 30px; }
.version-tag { display: inline-block; background: var(--accent); color: var(--ink); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }
.version-card p { color: var(--gray); }

/* How it works */
.how-it-works { padding: 70px 0; background: var(--panel); }
.how-it-works .section-title { margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 26px; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(16,36,29,.08); }
.step-num { display: inline-block; font-size: 13px; font-weight: 800; color: var(--ink); background: var(--accent); padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; }
.step-card h4 { font-size: 16.5px; margin-bottom: 10px; }
.step-card p { font-size: 13.5px; color: var(--gray); }

/* Values */
.values-section { padding: 70px 0; }
.values-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.values-section h2 { font-size: 29px; margin: 14px 0 16px; }
.values-section > .container > .values-grid > div:first-child p { color: var(--gray); }
.values-list { display: flex; flex-direction: column; gap: 22px; }
.value-item { display: flex; gap: 18px; align-items: flex-start; }
.value-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.value-item:nth-child(1) .value-icon { background: var(--pastel-mint); color: var(--pastel-mint-ink); }
.value-item:nth-child(2) .value-icon { background: var(--pastel-blue); color: var(--pastel-blue-ink); }
.value-item:nth-child(3) .value-icon { background: var(--pastel-yellow); color: var(--pastel-yellow-ink); }
.value-item:nth-child(4) .value-icon { background: var(--pastel-coral); color: var(--pastel-coral-ink); }
.value-item h4 { font-size: 15.5px; margin-bottom: 6px; }
.value-item p { font-size: 13.5px; color: var(--gray); }

.founder-quote { padding: 70px 0; }
.founder-grid { display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: center; }
.founder-photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; }
.founder-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  color: var(--ink);
  font-size: 48px;
  font-weight: 800;
}
.founder-quote blockquote { font-size: 21px; font-style: italic; margin-bottom: 18px; color: var(--ink); }
.founder-quote h5 { font-size: 17px; margin-top: 6px; }
.founder-quote .role { color: var(--accent-deep); font-weight: 600; font-size: 13.5px; }

.about-cta { background: var(--ink); color: var(--cream); text-align: center; padding: 70px 0; border-radius: 28px; margin: 0 24px; max-width: 1200px; margin-inline: auto; }
.about-cta h2 { font-size: 29px; margin-bottom: 26px; }
.about-cta .btn-pill { background: var(--accent); color: var(--ink); }
.about-cta .btn-pill .btn-icon { background: var(--ink); color: var(--accent); }

/* ===== Features hero (services.html) ===== */
.features-hero {
  padding: 70px 0;
  overflow: hidden;
  background:
    radial-gradient(rgba(16,36,29,.09) 1.6px, transparent 1.6px) -4px -4px/22px 22px,
    linear-gradient(125deg, rgba(169,232,143,.4), rgba(216,238,221,.15) 38%, rgba(255,255,255,0) 60%) top left/100% 100% no-repeat,
    linear-gradient(-55deg, rgba(245,151,122,.32), rgba(251,225,220,.12) 42%, rgba(255,255,255,0) 65%) bottom right/100% 100% no-repeat,
    var(--cream);
}
.features-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.features-hero h1 { font-size: 40px; margin: 16px 0 20px; }
.features-hero .hero-sub { margin-bottom: 30px; }
.features-hero-media { position: relative; }
.features-hero-media img { display: none; }
.floating-stat {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 16px 32px rgba(16,36,29,.1);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.floating-stat strong { font-size: 21px; color: var(--ink); }
.floating-stat span { font-size: 12px; color: var(--gray); }
.floating-stat.stat-a { bottom: -16px; left: -16px; }
.floating-stat.stat-b { top: -16px; right: -16px; background: var(--ink); border-color: var(--ink); }
.floating-stat.stat-b strong { color: var(--accent); }
.floating-stat.stat-b span { color: var(--text-light); }

/* Features-hero visual: a clean, straight 3x3 grid of tool icons — reads as
   "everything this platform does" without spotlighting one feature, and
   without the illegible-when-tiny problem of cropped, rotated screenshots.
   Reuses the site's own pastel icon-chip language from the homepage bento. */
.tool-grid-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(16,36,29,.1);
}
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tool-chip {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  border-radius: 14px;
  padding: 14px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.tool-chip.pastel-mint { background: var(--pastel-mint); }
.tool-chip.pastel-blue { background: var(--pastel-blue); }
.tool-chip.pastel-yellow { background: var(--pastel-yellow); }
.tool-chip.pastel-coral { background: var(--pastel-coral); }
.tool-chip.pastel-lilac { background: var(--pastel-lilac); }
.tool-chip-new { outline: 2px solid var(--ink); outline-offset: -2px; }
.tool-chip-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ink);
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 50px;
}

/* ===== Services page ===== */
.services-list { padding: 70px 0; position: relative; }
.services-list .section-title { margin-bottom: 56px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* Feature card: thumbnail + short bullets, click through to detail page */
.feature-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(16,36,29,.1); border-color: var(--accent-deep); }
.feature-card-body { padding: 26px 28px 28px; position: relative; }
.feature-num { position: absolute; top: 26px; right: 26px; font-size: 13px; font-weight: 800; color: var(--line); }
.feature-card h3 { font-size: 18px; margin-bottom: 6px; padding-right: 30px; }
.feature-tagline { color: var(--gray); font-size: 13.5px; margin-bottom: 16px; }
.feature-card ul { list-style: none; margin-bottom: 18px; }
.feature-card li { color: var(--gray); font-size: 13.5px; padding-left: 24px; position: relative; margin-bottom: 9px; }
.feature-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.discover-link { font-weight: 700; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.feature-card:hover .discover-link { color: var(--accent-deep); }

/* Thumbnail: lightweight CSS illustration per feature, no photography */
.feature-thumb {
  height: 168px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  gap: 10px;
}
.feature-thumb .thumb-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2;
}
.feature-thumb .thumb-bar { border-radius: 8px; background: rgba(255,255,255,.55); }
.feature-thumb .thumb-chip {
  border-radius: 8px;
  background: var(--paper);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(16,36,29,.08);
}
.thumb-dse { background: var(--pastel-mint); }
.thumb-reading { background: var(--pastel-blue); }
.thumb-plan { background: var(--pastel-yellow); }
.thumb-talk { background: var(--pastel-coral); }
.thumb-errorbank { background: var(--pastel-lilac); }
.thumb-ed { background: var(--pastel-mint); }
.thumb-analysis { background: var(--pastel-blue); }
.thumb-databank { background: var(--pastel-yellow); }
.thumb-assess { background: var(--pastel-coral); }
.thumb-photo {
  padding: 0;
  background: var(--paper);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.thumb-photo-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  flex-shrink: 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.thumb-photo-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(22,60,44,.22); }
.thumb-photo img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top;
}
.thumb-grader img { object-position: left top; }

/* Smart Grader detail page: auto-cycling 3-step demo (capture -> read-back -> result) */
.grader-cycle { position: relative; width: 100%; height: 380px; flex: 1; }
.grader-cycle .frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  animation: grader-cycle-frame 9s infinite;
}
.grader-cycle .frame-1 { animation-delay: 0s; }
.grader-cycle .frame-2 { animation-delay: 3s; }
.grader-cycle .frame-3 { animation-delay: 6s; }
@keyframes grader-cycle-frame {
  0% { opacity: 0; }
  4% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}
/* Beats the .feature-thumb-lg.thumb-photo img rule's contain/auto-height on specificity */
.feature-thumb-lg.thumb-photo .grader-cycle img.frame {
  flex: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Per-thumbnail mini layouts */
.thumb-dse .thumb-stack { display: flex; flex-direction: column; gap: 6px; width: 70%; }
.thumb-dse .thumb-bar:nth-child(1) { height: 10px; width: 60%; }
.thumb-dse .thumb-bar:nth-child(2) { height: 22px; }
.thumb-dse .thumb-bar:nth-child(3) { height: 22px; }

.thumb-reading .thumb-page { background: var(--paper); border-radius: 10px; padding: 12px; width: 78%; box-shadow: 0 8px 20px rgba(16,36,29,.08); }
.thumb-reading .thumb-bar { height: 6px; margin-bottom: 6px; background: var(--pastel-blue-ink); opacity: .18; }
.thumb-reading .thumb-bar:nth-child(3) { width: 60%; }

.thumb-plan .thumb-sliders { width: 75%; display: flex; flex-direction: column; gap: 14px; }
.thumb-plan .thumb-slider-track { height: 5px; border-radius: 4px; background: rgba(255,255,255,.6); position: relative; }
.thumb-plan .thumb-slider-track::after { content: ""; position: absolute; top: 50%; left: 55%; width: 14px; height: 14px; border-radius: 50%; background: var(--paper); transform: translate(-50%,-50%); box-shadow: 0 4px 8px rgba(16,36,29,.2); }

.thumb-talk .thumb-avatars { display: flex; gap: -8px; }
.thumb-talk .thumb-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--pastel-coral-ink); margin-left: -10px; box-shadow: 0 4px 10px rgba(16,36,29,.12); }
.thumb-talk .thumb-avatar:first-child { margin-left: 0; }

.thumb-errorbank .thumb-ring { width: 56px; height: 56px; border-radius: 50%; background: conic-gradient(var(--pastel-lilac-ink) 40%, rgba(255,255,255,.5) 0); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--pastel-lilac-ink); }
.thumb-errorbank .thumb-ring span { background: var(--paper); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.thumb-ed .thumb-bubbles { display: flex; flex-direction: column; gap: 8px; width: 78%; }
.thumb-ed .thumb-bubble { border-radius: 10px 10px 10px 3px; padding: 8px 12px; font-size: 10px; font-weight: 700; background: var(--paper); align-self: flex-start; box-shadow: 0 6px 14px rgba(16,36,29,.08); }
.thumb-ed .thumb-bubble.alt { align-self: flex-end; border-radius: 10px 10px 3px 10px; background: var(--ink); color: var(--cream); }

.thumb-analysis .thumb-radar { width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle, transparent 40%, var(--pastel-blue-ink) 41%, var(--pastel-blue-ink) 44%, transparent 45%), radial-gradient(circle, transparent 65%, var(--pastel-blue-ink) 66%, var(--pastel-blue-ink) 68%, transparent 69%); opacity: .5; }

.thumb-databank .thumb-stack-icon { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.thumb-databank .thumb-disc { width: 60px; height: 14px; border-radius: 50%; background: var(--paper); box-shadow: 0 6px 12px rgba(16,36,29,.1); }

.thumb-assess .thumb-gauge {
  width: 64px;
  height: 32px;
  border-radius: 64px 64px 0 0;
  background: conic-gradient(from 180deg, var(--pastel-coral-ink) 0deg, var(--pastel-coral-ink) 126deg, rgba(255,255,255,.5) 126deg, rgba(255,255,255,.5) 180deg);
  position: relative;
}
.thumb-assess .thumb-gauge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 6px;
  height: 26px;
  background: var(--paper);
  border-radius: 4px;
  transform: translateX(-50%) rotate(-25deg);
  transform-origin: bottom center;
}

.feature-card.cta-card { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; background: var(--ink); color: var(--cream); padding: 30px; }
.feature-card.cta-card h3 { color: var(--cream); padding-right: 0; }
.feature-card.cta-card .btn-pill { background: var(--accent); color: var(--ink); }
.feature-card.cta-card .btn-icon { background: var(--ink); color: var(--accent); }

.energetic-cta p { color: var(--text-light); margin-bottom: 26px; }

/* ===== Feature detail page ===== */
.feature-detail-hero { padding: 60px 0 20px; }
.feature-detail-hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: center; }
.feature-detail-hero h1 { font-size: 34px; margin-bottom: 14px; }
.feature-detail-tagline { color: var(--gray); font-size: 17px; }
.feature-thumb-lg { height: 380px; border-radius: 20px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.feature-thumb-lg.thumb-photo { height: auto; }
.feature-thumb-lg.thumb-photo img { flex: none; height: auto; object-fit: contain; }
.feature-detail-body { padding: 50px 0 90px; }
.feature-detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.feature-detail-passage p { color: var(--gray); font-size: 16px; margin-bottom: 20px; line-height: 1.75; }
.feature-benefits-box { background: var(--panel); border-radius: 18px; padding: 30px; position: sticky; top: 24px; }
.feature-benefits-box h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px; }
.feature-benefits-box ul { list-style: none; margin-bottom: 24px; }
.feature-benefits-box li { padding-left: 26px; position: relative; margin-bottom: 14px; font-size: 14.5px; color: var(--ink); }
.feature-benefits-box li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 800; }

/* ===== Blog page ===== */
.blog-section { padding: 70px 0; }
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 22px; }
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 30px; overflow: hidden; }
.post-card.featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.post-card-thumb { width: calc(100% + 60px); aspect-ratio: 16/9; object-fit: cover; margin: -30px -30px 24px; display: block; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.post-card.featured .post-meta { color: var(--text-light); }
.post-meta .dot { opacity: .6; }
.post-card h2 { font-size: 19px; margin-bottom: 16px; }
.post-card h2 a { color: inherit; }
.post-card h2 a:hover { color: var(--accent-deep); }
.post-card.featured h2 a:hover { color: var(--accent); }
.read-more { font-weight: 700; color: var(--ink); display: inline-flex; gap: 6px; }
.post-card.featured .read-more { color: var(--accent); }
.read-more:hover { text-decoration: underline; }

.blog-sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-box { background: var(--panel); border-radius: 16px; padding: 22px; }
.sidebar-box h3 { font-size: 16.5px; margin-bottom: 16px; }
.blog-search { display: flex; }
.blog-search input { flex: 1; border: 1px solid var(--line); border-radius: 50px 0 0 50px; padding: 12px 16px; font-size: 14px; background: var(--paper); }
.blog-search button { background: var(--accent); border: none; border-radius: 0 50px 50px 0; padding: 0 18px; font-weight: 700; cursor: pointer; color: var(--ink); }
.category-link { display: inline-block; background: var(--paper); border: 1px solid var(--line); border-radius: 50px; padding: 8px 16px; font-size: 14px; }
.latest-post { display: block; font-size: 14px; font-weight: 600; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
.latest-post:last-child { border-bottom: none; }
.latest-post:hover { color: var(--accent-deep); }
.latest-date { display: block; font-size: 12px; color: var(--gray); font-weight: 400; margin-bottom: 4px; }

/* ===== Article / blog post page ===== */
.article-hero { padding: 60px 0 40px; }
.article-hero .breadcrumb { margin-bottom: 14px; }
.article-meta { display: flex; gap: 10px; align-items: center; color: var(--gray); font-size: 13px; margin-bottom: 16px; }
.article-meta .dot { opacity: .5; }
.article-hero h1 { font-size: 38px; max-width: 800px; margin-bottom: 16px; }
.article-hero .hero-sub { max-width: 700px; }
.article-hero-image { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 20px; margin-top: 32px; }

.article-body { padding: 20px 0 70px; }
.article-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.article-content h2 { font-size: 25px; margin: 40px 0 16px; }
.article-content h2:first-child { margin-top: 0; }
.article-content p { color: var(--gray); font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.article-content ul { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.article-content li { color: var(--gray); font-size: 15px; padding-left: 26px; position: relative; line-height: 1.6; }
.article-content li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.article-content strong { color: var(--ink); }

.article-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
  background: var(--panel);
  border-radius: 16px;
  padding: 24px;
}
.article-stat { text-align: center; }
.article-stat strong { display: block; font-size: 24px; color: var(--accent-deep); margin-bottom: 4px; }
.article-stat span { font-size: 12.5px; color: var(--gray); line-height: 1.4; }

.article-pullquote {
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  padding: 36px 40px;
  margin: 32px 0;
  position: relative;
}
.article-pullquote p { color: var(--cream); font-size: 19px; font-weight: 600; line-height: 1.6; margin-bottom: 12px; }
.article-pullquote span { color: var(--accent); font-size: 13px; font-weight: 600; }

.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.article-table th { text-align: left; padding: 14px 18px; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--accent-deep); background: var(--panel); }
.article-table td { padding: 14px 18px; font-size: 14px; color: var(--gray); border-top: 1px solid var(--line); vertical-align: top; }

.article-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }
.article-share { display: flex; gap: 10px; }
.article-share a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.article-share a:hover { background: var(--accent); border-color: var(--accent); }

/* ===== Mascot loading animation =====
   A loading state built out of the mascot sheet art instead of a spinner. The
   three variants match the three clips speced in "Chameleon Mascot Loading
   Animations.md" — dancing (default), drinking coffee, skateboarding — but
   they are CSS transforms over a still PNG rather than video: one image to
   download, no codec or autoplay caveats, and the loop is seamless by
   construction because every cycle starts and ends on the neutral pose.

   Markup:
     <div class="mascot-loader" role="status" aria-live="polite">
       <div class="mascot-loader-stage">
         <span class="mascot-loader-shadow"></span>
         <img class="mascot-loader-art" src="mascot-loader-dance.png" alt="">
       </div>
       <p class="mascot-loader-label">Generating your paper<span
          class="mascot-loader-dots" aria-hidden="true"><span></span><span></span><span></span></span></p>
     </div>

   Swap the class and the src together for the other two poses:
     .mascot-loader--coffee  mascot-loader-coffee.png
     .mascot-loader--skate   mascot-loader-skate.png, plus a
                             <img class="mascot-loader-board" src="mascot-loader-board.png" alt="">
                             inside the stage, before the art
   Size with .mascot-loader--sm / --lg, or set --ml-size on the wrapper. */
.mascot-loader {
  --ml-size: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
/* display:flex above out-specifies the UA [hidden] rule, so call sites that
   toggle the `hidden` attribute need this back. */
.mascot-loader[hidden] { display: none; }
.mascot-loader--sm { --ml-size: 104px; }
.mascot-loader--lg { --ml-size: 220px; }

.mascot-loader-stage {
  position: relative;
  width: var(--ml-size);
  height: var(--ml-size);
}
.mascot-loader-art {
  position: absolute;
  inset: 0;
  width: 100%;
  /* Stops short of the floor so the contact shadow below is not painted over
     by the body it belongs to. */
  height: 95%;
  object-fit: contain;
  /* Pin the art to the floor of its box so the pivot below lands on the
     mascot's seat, not the middle of a letterboxed image. */
  object-position: 50% 100%;
  transform-origin: 50% 100%;
  animation: ml-dance 3.4s cubic-bezier(.45, 0, .55, 1) infinite;
}

/* Contact shadow — sells the bob, and keeps the mascot from floating on the
   white card it usually sits on. */
.mascot-loader-shadow {
  position: absolute;
  left: 50%;
  bottom: 1%;
  width: 56%;
  height: 7%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(16,36,29,.26) 0%, rgba(16,36,29,0) 72%);
  animation: ml-shadow-dance 3.4s cubic-bezier(.45, 0, .55, 1) infinite;
}

.mascot-loader-label {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--accent-deep);
  text-align: center;
}
.mascot-loader-dots { display: inline-flex; gap: 3px; margin-left: 4px; vertical-align: 2px; }
.mascot-loader-dots span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .25;
  animation: ml-dot 1.4s ease-in-out infinite;
}
.mascot-loader-dots span:nth-child(2) { animation-delay: .18s; }
.mascot-loader-dots span:nth-child(3) { animation-delay: .36s; }

/* Dancing (default): sway left and right twice per cycle, squashing on each
   pass through neutral. The skew is what reads as a head bob — the head leads
   the sway, which a plain rotate on a flat image cannot give you. */
@keyframes ml-dance {
  0%   { transform: rotate(0deg)    skewX(0deg)    translateY(0)    scale(1, 1); }
  12%  { transform: rotate(-3.4deg) skewX(1.4deg)  translateY(-5px) scale(.985, 1.015); }
  25%  { transform: rotate(0deg)    skewX(0deg)    translateY(0)    scale(1.02, .98); }
  37%  { transform: rotate(3.4deg)  skewX(-1.4deg) translateY(-5px) scale(.985, 1.015); }
  50%  { transform: rotate(0deg)    skewX(0deg)    translateY(0)    scale(1.02, .98); }
  62%  { transform: rotate(-3.4deg) skewX(1.4deg)  translateY(-5px) scale(.985, 1.015); }
  75%  { transform: rotate(0deg)    skewX(0deg)    translateY(0)    scale(1.02, .98); }
  87%  { transform: rotate(3.4deg)  skewX(-1.4deg) translateY(-5px) scale(.985, 1.015); }
  100% { transform: rotate(0deg)    skewX(0deg)    translateY(0)    scale(1, 1); }
}
@keyframes ml-shadow-dance {
  0%, 25%, 50%, 75%, 100% { transform: translateX(-50%) scaleX(1);   opacity: 1; }
  12%, 37%, 62%, 87%      { transform: translateX(-50%) scaleX(.88); opacity: .72; }
}

/* Drinking coffee: the mascot faces left, so a small clockwise lean about the
   seat both raises the mug and tips the head back — one slow sip, then settle.
   The steam is painted into the art, so it travels with the mug for free. */
.mascot-loader--coffee .mascot-loader-art {
  animation: ml-sip 4.6s cubic-bezier(.4, 0, .3, 1) infinite;
}
.mascot-loader--coffee .mascot-loader-shadow {
  animation: ml-shadow-sip 4.6s cubic-bezier(.4, 0, .3, 1) infinite;
}
@keyframes ml-sip {
  0%, 18%   { transform: rotate(0deg)   translateY(0)    scale(1, 1); }
  30%       { transform: rotate(2.4deg) translateY(-2px) scale(1, 1.008); }
  44%, 58%  { transform: rotate(5.2deg) translateY(-4px) scale(1, 1.012); }
  72%       { transform: rotate(2.4deg) translateY(-2px) scale(1, 1.008); }
  86%, 100% { transform: rotate(0deg)   translateY(0)    scale(1, 1); }
}
@keyframes ml-shadow-sip {
  0%, 18%, 86%, 100% { transform: translateX(-50%) scaleX(1);   opacity: 1; }
  44%, 58%           { transform: translateX(-50%) scaleX(.92); opacity: .8; }
}

/* Skateboarding: roll side to side, crouch, one small hop, land and settle.
   The board is its own image so it can carry the roll without inheriting the
   mascot's knee-bend squash. */
.mascot-loader--skate .mascot-loader-art {
  /* Leave the bottom fifth of the stage to the board and its wheels. */
  height: 82%;
  animation: ml-skate 3.8s cubic-bezier(.4, 0, .4, 1) infinite;
}
.mascot-loader-board {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: auto;
  transform: translateX(-50%);
  transform-origin: 50% 70%;
  animation: ml-board 3.8s cubic-bezier(.4, 0, .4, 1) infinite;
}
.mascot-loader--skate .mascot-loader-shadow {
  animation: ml-shadow-skate 3.8s cubic-bezier(.4, 0, .4, 1) infinite;
}
@keyframes ml-skate {
  0%   { transform: translate(0, 0)     rotate(0deg)    scaleY(1); }
  20%  { transform: translate(-7px, 0)  rotate(-2deg)   scaleY(.985); }
  42%  { transform: translate(7px, 0)   rotate(2deg)    scaleY(.985); }
  56%  { transform: translate(3px, 0)   rotate(1deg)    scaleY(.94); }
  70%  { transform: translate(0, -18px) rotate(-3.5deg) scaleY(1.045); }
  84%  { transform: translate(-2px, 0)  rotate(0deg)    scaleY(.955); }
  92%  { transform: translate(0, 0)     rotate(0deg)    scaleY(1.015); }
  100% { transform: translate(0, 0)     rotate(0deg)    scaleY(1); }
}
@keyframes ml-board {
  0%   { transform: translate(-50%, 0)             rotate(0deg); }
  20%  { transform: translate(calc(-50% - 7px), 0) rotate(-2deg); }
  42%  { transform: translate(calc(-50% + 7px), 0) rotate(2deg); }
  56%  { transform: translate(calc(-50% + 3px), 0) rotate(1deg); }
  70%  { transform: translate(-50%, -16px)         rotate(-4deg); }
  84%  { transform: translate(calc(-50% - 2px), 0) rotate(0deg); }
  100% { transform: translate(-50%, 0)             rotate(0deg); }
}
@keyframes ml-shadow-skate {
  0%, 20%, 42%, 56%, 84%, 100% { transform: translateX(-50%) scaleX(1);  opacity: .9; }
  70%                          { transform: translateX(-50%) scaleX(.7); opacity: .45; }
}

@keyframes ml-dot {
  0%, 70%, 100% { opacity: .25; }
  35%           { opacity: 1; }
}

/* The still pose is already the whole asset, so "reduce" just means stop —
   there is no separate static image to swap in, unlike the video version. */
@media (prefers-reduced-motion: reduce) {
  .mascot-loader-art,
  .mascot-loader-board,
  .mascot-loader-shadow,
  .mascot-loader-dots span { animation: none; }
  .mascot-loader-dots span { opacity: .6; }
}

/* Comparison vs. general-purpose AI (DeepSeek / Gemini) */
.compare-section { padding: 88px 0; background: var(--paper); }
.compare-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.compare-head h2 { font-size: 34px; margin-bottom: 12px; }
.compare-head p { color: var(--gray); font-size: 16px; }
.compare-table-wrap { max-width: 760px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare-table th { background: var(--panel); font-weight: 700; color: var(--ink); }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; white-space: nowrap; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .cmp-yes { color: var(--accent-deep); font-weight: 700; }
.compare-table .cmp-no { color: var(--gray); }
.compare-caption { text-align: center; font-size: 13px; color: var(--gray); margin-top: 20px; }

/* Responsive */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    z-index: 40;
    box-shadow: 0 16px 24px rgba(16,36,29,.1);
  }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .lang-toggle-desktop { display: none; }
  .lang-toggle-mobile { display: flex; align-self: center; margin-bottom: 14px; }
  .hero h1 { font-size: 34px; }
  .hero-grid { grid-template-columns: 1fr; }
  .stats-grid, .mv-grid, .contact-grid { grid-template-columns: 1fr; }
  .era-grid, .team-grid, .fc-bento, .leader-spotlight { grid-template-columns: 1fr; }
  .leader-spotlight { text-align: center; padding: 36px 24px; }
  .leader-photo { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-grid, .about-pillars, .quote-stats, .versions-grid,
  .founder-grid, .service-grid, .blog-layout, .features-hero-grid,
  .steps-grid, .values-grid, .contact-main-grid, .contact-trust-grid,
  .form-row, .pricing-grid, .feature-detail-hero-grid, .feature-detail-grid,
  .article-layout, .article-stats { grid-template-columns: 1fr; }
  .price-card.featured { margin-top: 0; padding-top: 30px; padding-bottom: 30px; }
  .article-sidebar { position: static; }
  .feature-benefits-box { position: static; }
  .form-panel { padding: 26px; }
  .founder-photo { width: 130px; height: 130px; margin: 0 auto; }
  .founder-quote blockquote { text-align: center; }
  .about-quote blockquote { font-size: 19px; }
  .page-hero h1, .features-hero h1 { font-size: 28px; }
  .contact-hero-inner { flex-direction: column; align-items: flex-start; }
  .contact-mascot { width: 90px; }
  .features-hero-media { margin-top: 32px; }
  .floating-stat { position: static; display: inline-flex; flex-direction: row; gap: 8px; margin: 10px 10px 0 0; }
  .cta-banner, .about-cta, .contact-section { margin: 0 12px; border-radius: 20px; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .home-blog-head { align-items: flex-start; }
  .compare-section { padding: 56px 0; }
}
