/* ============================================
   LumoBridge - Shared Styles
   ============================================ */

:root {
  --navy:       #0E1B2D;
  --navy-dark:  #071323;
  --gold:       #F4C76B;
  --gold-soft:  #E9B84F;
  --white:      #F3F6FB;
  --teal:       #5FAFAB;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --font:       'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }

/* ── Typography ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); opacity: 0.88; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}
/* Legal / simple pages: center the narrow content column so it does not hug the left
   of the wide 1160px container. (contact.html sets its own width inline.) */
.simple-page .container { max-width: 760px; }

/* Contact form (Web3Forms), shared by the English and all localized contact pages. */
.lb-form { max-width: 680px; margin-top: 1.75rem; }
.lb-field { margin-bottom: 1.15rem; }
.lb-form label { display:block; font-size:0.9rem; font-weight:600; color:var(--white); margin-bottom:0.45rem; }
.lb-form .req { color: var(--gold); }
.lb-form input[type="text"],
.lb-form input[type="email"],
.lb-form select,
.lb-form textarea {
  width:100%; font-family:var(--font); font-size:0.97rem; color:var(--white);
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(244,199,107,0.18);
  border-radius: var(--radius-sm);
  padding:12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance:none; appearance:none;
}
.lb-form textarea { resize: vertical; min-height: 140px; line-height:1.6; }
.lb-form input::placeholder, .lb-form textarea::placeholder { color: rgba(243,246,251,0.38); }
.lb-form select {
  cursor:pointer; padding-right:40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F4C76B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position: right 14px center; background-size:14px;
}
.lb-form select:invalid { color: rgba(243,246,251,0.42); }
.lb-form input:focus, .lb-form select:focus, .lb-form textarea:focus {
  outline:none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,199,107,0.14);
}
.lb-consent {
  display:flex; gap:10px; align-items:flex-start;
  font-size:0.9rem; font-weight:400; color: rgba(243,246,251,0.82);
  line-height:1.6; margin: 0.4rem 0 1.6rem; cursor:pointer;
}
.lb-consent input { margin-top:3px; width:16px; height:16px; accent-color: var(--gold); flex-shrink:0; }
.lb-submit { margin-top:0.25rem; }
.lb-submit:hover { background: var(--gold-soft); }
.lb-submit:disabled { opacity:0.6; cursor:default; }
.lb-form-status { margin-top:1.15rem; padding:0.9rem 1.1rem; border-radius: var(--radius-sm); font-size:0.92rem; line-height:1.6; }
.lb-form-status.pending { background: rgba(255,255,255,0.05); color: rgba(243,246,251,0.82); border:1px solid rgba(244,199,107,0.16); }
.lb-form-status.success { background: rgba(95,175,171,0.12); color:#c3e4e1; border:1px solid rgba(95,175,171,0.42); }
.lb-form-status.error { background: rgba(224,122,95,0.12); color:#f0b6a6; border:1px solid rgba(224,122,95,0.42); }
.contact-policy-note { margin-top: 2.25rem; font-size: 0.92rem; opacity: 0.72; }
section { padding: clamp(60px, 9vw, 120px) 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  background: rgba(7, 19, 35, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 199, 107, 0.08);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.nav-scrolled {
  background: rgba(7, 19, 35, 0.96);
  border-bottom-color: rgba(244, 199, 107, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.nav-scrolled .nav-inner { height: 58px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}
.nav-logo img {
  height: 34px;
  width: auto;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
.nav-logo:hover img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 0 10px rgba(244, 199, 107, 0.5));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(243,246,251,0.75);
  transition: color 0.3s ease;
}
.nav-links > li > a {
  position: relative;
  padding: 6px 0;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(244, 199, 107, 0.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  white-space: nowrap;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.87rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 26px rgba(244, 199, 107, 0.35);
}

/* ── Products dropdown ── */
.nav-drop { position: relative; }
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-drop-toggle svg {
  width: 11px;
  height: 11px;
  opacity: 0.55;
  transition: transform var(--transition);
}
.nav-drop:hover .nav-drop-toggle svg,
.nav-drop:focus-within .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 8px;
  margin-top: 14px;
  background: rgba(7, 19, 35, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(244, 199, 107, 0.12);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
  z-index: 101;
}
/* invisible bridge so the menu does not close while moving the mouse down */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
.drop-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(243, 246, 251, 0.82);
  transition: background var(--transition), color var(--transition);
}
.drop-item:hover {
  background: rgba(244, 199, 107, 0.08);
  color: var(--white);
}
.drop-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  color: #6EDFA8;
  border: 1px solid rgba(110, 223, 168, 0.35);
  background: rgba(110, 223, 168, 0.08);
  white-space: nowrap;
}
.drop-badge.muted {
  color: rgba(243, 246, 251, 0.45);
  border-color: rgba(243, 246, 251, 0.14);
  background: rgba(243, 246, 251, 0.03);
}
.drop-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.drop-name img { width: 16px; height: 16px; }

.nav-lang .nav-drop-menu { min-width: 170px; }
.nav-drop-toggle .lang-globe {
  width: 15px;
  height: 15px;
  opacity: 0.75;
  margin-right: 2px;
}
.nav-drop:hover .nav-drop-toggle .lang-globe,
.nav-drop:focus-within .nav-drop-toggle .lang-globe { transform: none; }
.drop-item.active-lang { color: var(--gold); }
.mobile-langs { display: flex; gap: 1.1rem; font-size: 0.95rem; opacity: 0.75; }
/* English-only launch: hide the language switcher until translations are complete.
   Remove this rule to re-enable es/fr/zh/th once the localized pages are finished. */
.nav-lang, .mobile-langs { display: none !important; }
/* Pre-store launch: ThriveMap is not in the App Store / Google Play yet, so hide the download
   badges (they point at a placeholder ID). Remove this rule and set the real App Store ID once
   the app is approved and live. The "Coming soon" status still shows in the hero and nav. */
.store-badges { display: none !important; }
/* Focus the product family on what's real: hide the earliest "Research stage" cards
   (MoneyRunway, CareVault, LabelWise) until they progress. Their pages + nav links stay.
   Remove this rule to show them again in the grid. */
.family-card:has(.badge-research) { display: none !important; }

.drop-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 6px 4px;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); opacity: 1; }
.mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.mobile-group a {
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 199, 107, 0.25);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(243,246,251,0.3);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 4px 0;
  cursor: pointer;
  transition: gap var(--transition), opacity var(--transition);
}
.btn-ghost:hover { gap: 10px; opacity: 0.85; }

/* ── Cards ── */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(244,199,107,0.18);
  transform: translateY(-3px);
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid;
}
.badge-available {
  color: #6EDFA8;
  border-color: rgba(110,223,168,0.35);
  background: rgba(110,223,168,0.08);
}
.badge-coming {
  color: rgba(243,246,251,0.5);
  border-color: rgba(243,246,251,0.15);
  background: rgba(243,246,251,0.04);
}
.badge-indev {
  color: #7CB7FF;
  border-color: rgba(124,183,255,0.35);
  background: rgba(124,183,255,0.08);
}
.badge-planned {
  color: #B79CFF;
  border-color: rgba(183,156,255,0.35);
  background: rgba(183,156,255,0.08);
}
.badge-research {
  color: var(--gold);
  border-color: rgba(244,199,107,0.35);
  background: rgba(244,199,107,0.08);
}

/* ── Social icons (footer) ── */
.social-row {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.5rem;
}
.social-row a {
  color: rgba(243,246,251,0.5);
  transition: color var(--transition), transform var(--transition);
}
.social-row a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.social-row svg { width: 18px; height: 18px; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-brand img { height: 32px; width: auto; }
.footer-brand p { font-size: 0.88rem; opacity: 0.55; margin: 0; }
.footer-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(243,246,251,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-cols {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  opacity: 0.85;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(243,246,251,0.6);
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.38; margin: 0; }

/* ── Gold gradient text ── */
.text-gold { color: var(--gold); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

/* ── Responsive ── */
/* The full nav needs ~920px; below that the links and CTA collide, so the
   mobile menu takes over earlier than the other 768px adjustments. */
@media (max-width: 920px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .footer-top { flex-direction: column; }
}

/* ── Page hero (product pages) ── */
.page-hero {
  padding-top: 140px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(244,199,107,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Checklist ── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  opacity: 0.9;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(244,199,107,0.12);
  border: 1.5px solid var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23F4C76B' d='M7 10.5l2 2 4-4' stroke='%23F4C76B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ── App store badges ── */
.store-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.store-badges.centered { justify-content: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 8px 16px;
  min-height: 52px;
  min-width: 158px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(244,199,107,0.6);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge .sb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.store-badge .sb-small {
  font-size: 0.6rem;
  opacity: 0.7;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.store-badge .sb-big {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* ── Legal / support pages ── */
.legal-meta { font-size: 0.85rem; opacity: 0.5; margin-bottom: 2rem; }
.version-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  margin-right: 8px;
  border-radius: 50px;
  color: var(--gold);
  border: 1px solid rgba(244,199,107,0.3);
  background: rgba(244,199,107,0.07);
}
.toc {
  /* The TOC is a <nav>, so it must opt out of the global fixed site-header nav rule,
     otherwise it pins to the top-left and floats over the page content as you scroll. */
  position: static;
  z-index: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
  max-width: 680px;
}
.toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.toc ol {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  counter-reset: toc;
  margin: 0; padding: 0;
}
.toc ol li { counter-increment: toc; padding: 3px 0; break-inside: avoid; }
.toc ol li a {
  font-size: 0.88rem;
  color: rgba(243,246,251,0.72);
  text-decoration: none;
  transition: color var(--transition);
}
.toc ol li a::before {
  content: counter(toc) ". ";
  color: var(--gold);
  opacity: 0.7;
  font-weight: 600;
}
.toc ol li a:hover { color: var(--gold); }
.prose-block h2 { scroll-margin-top: 92px; }
@media (max-width: 560px) { .toc ol { columns: 1; } }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2.5rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(110,223,168,0.08); border: 1px solid rgba(110,223,168,0.28);
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.8rem; font-weight: 600; color: #6EDFA8;
}
.trust-chip::before { content: '\2713'; font-size: 0.75rem; }
.prose-block ul { list-style: none; margin: 0.8rem 0 1.2rem; padding: 0; }
.prose-block ul li { position: relative; padding: 5px 0 5px 22px; font-size: 0.95rem; opacity: 0.78; line-height: 1.65; }
.prose-block ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); opacity: 0.7;
}
.legal-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 1.4rem 1.6rem; margin: 1.2rem 0;
}
.legal-card p { margin-bottom: 0.6rem; }
.legal-card p:last-child { margin-bottom: 0; }
.notice-card {
  background: rgba(244,199,107,0.06); border: 1px solid rgba(244,199,107,0.22);
  border-radius: var(--radius-md); padding: 1.4rem 1.6rem; margin: 1.2rem 0;
}
.notice-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.contact-card {
  background: rgba(244,199,107,0.05); border: 1px solid rgba(244,199,107,0.16);
  border-radius: var(--radius-md); padding: 1.4rem 1.6rem; margin: 1rem 0;
}
.contact-card .label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.contact-card p { margin-bottom: 0.4rem; }
.contact-card p:last-child { margin-bottom: 0; }

/* ── Warm light sweep: a slow gold glow drifts across each section ── */
.light-sweep { position: relative; overflow: hidden; }
.light-sweep::after {
  content: '';
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -55%;
  right: -55%;
  background: radial-gradient(ellipse 32% 48% at 50% 42%, rgba(244,199,107,0.06), transparent 70%);
  animation: sweepAcross 26s ease-in-out infinite alternate;
  animation-delay: var(--sweep-delay, 0s);
  pointer-events: none;
}
@keyframes sweepAcross {
  from { transform: translateX(-28%); }
  to { transform: translateX(28%); }
}
@media (prefers-reduced-motion: reduce) {
  .light-sweep::after { animation: none; }
}

/* ── Scroll reveals (added by main.js) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(5px);
  transition: opacity 0.85s cubic-bezier(0.22, 0.65, 0.3, 1), transform 0.85s cubic-bezier(0.22, 0.65, 0.3, 1), filter 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Glow spot ── */
.glow-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244,199,107,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Reusable value cards + responsible-AI section (home + approach) ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem 2.4rem; margin-top: 3rem; }
.value-card { background: transparent; border: none; border-top: 1px solid rgba(255,255,255,0.09); border-radius: 0; padding: 1.5rem 0 0; position: relative; }
.value-card::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(244,199,107,0)); transition: width 0.55s cubic-bezier(0.25,0.8,0.3,1); }
.value-card:hover::before { width: 100%; }
.value-icon { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(244,199,107,0.16), rgba(95,175,171,0.10)); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform 0.45s cubic-bezier(0.25,0.8,0.3,1), box-shadow 0.45s ease; }
.value-card:hover .value-icon { transform: translateY(-4px) scale(1.06); box-shadow: 0 10px 28px rgba(244,199,107,0.18); }
.value-icon svg { width: 22px; height: 22px; color: var(--gold); }
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; opacity: 0.72; margin: 0; }
.ai-section { background: var(--navy); position: relative; overflow: hidden; }
.ai-glow { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(ellipse, rgba(244,199,107,0.07) 0%, transparent 70%); pointer-events: none; }
.ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; }
.ai-text h2 { margin-bottom: 1rem; }
.ai-text p { font-size: 1.02rem; line-height: 1.75; opacity: 0.82; margin-bottom: 2rem; }
.ai-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.ai-check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; opacity: 0.85; }
.ai-check-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--gold); background: rgba(244,199,107,0.1); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ai-check-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } .ai-inner { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } .ai-checklist { grid-template-columns: 1fr; } }
