/* Linga Academy — shared design system
   Brand: royal blue + logo gold + porcelain
   Type: Playfair Display (display) + Inter (body) + DM Mono (eyebrow/numerics)
*/

:root {
  /* core palette. Legacy --maroon names are kept so page styles inherit the new blue system. */
  --maroon-900: #04142f;
  --maroon-800: #082456;
  --maroon-700: #0d3b83;   /* royal primary */
  --maroon-600: #1657b7;
  --maroon-500: #2d73d6;
  --maroon-50:  #eaf2ff;

  --gold-900: #7d5b14;
  --gold-700: #b48924;
  --gold-600: #d4af37;   /* logo gold */
  --gold-500: #e0bf55;
  --gold-300: #f0d98a;
  --gold-100: #fbf1cf;

  --cream-50:  #f8fbff;   /* page bg */
  --cream-100: #eef4fb;
  --cream-200: #dce7f5;

  --ink-900: #101827;     /* primary text */
  --ink-700: #2c3648;
  --ink-500: #657083;
  --ink-300: #a5afbd;
  --ink-100: #dde5ef;

  --paper:   #ffffff;
  --line:    #e9dfca;

  /* type */
  --f-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "DM Mono", "JetBrains Mono", ui-monospace, monospace;

  /* spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(4,20,47,0.06), 0 1px 1px rgba(4,20,47,0.04);
  --shadow-md: 0 8px 24px rgba(4,20,47,0.10), 0 2px 6px rgba(4,20,47,0.05);
  --shadow-lg: 0 24px 60px rgba(4,20,47,0.16), 0 4px 12px rgba(4,20,47,0.08);
  --shadow-gold: 0 12px 32px rgba(212,175,55,0.26);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background:
    linear-gradient(180deg, #fbfdff 0%, var(--cream-50) 44%, #f2f6fb 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- type ---------- */
.display { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.015em; line-height: 1.05; color: var(--ink-900); }
.display-italic { font-family: var(--f-display); font-style: italic; font-weight: 500; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon-700);
  font-weight: 500;
}
.eyebrow .dot { display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--gold-600); margin-right:10px; vertical-align: 2px;}

h1 { font-family: var(--f-display); font-weight: 700; font-size: clamp(40px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(32px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -0.015em; margin: 0; }
h3 { font-family: var(--f-display); font-weight: 700; font-size: clamp(22px, 2vw, 28px); line-height: 1.2; letter-spacing: -0.01em; margin: 0; }
h4 { font-family: var(--f-body); font-weight: 600; font-size: 18px; line-height: 1.35; margin: 0; }
p  { margin: 0; }
.lead { font-size: 19px; line-height: 1.6; color: var(--ink-700); }
.small { font-size: 13px; color: var(--ink-500); }

/* ---------- layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

section { padding: var(--space-10) 0; }
section.compact { padding: var(--space-8) 0; }

.divider-rule { display:flex; align-items:center; gap:14px; color:var(--gold-700); }
.divider-rule::before, .divider-rule::after { content:""; flex:1; height:1px; background:linear-gradient(to right, transparent, var(--gold-300), transparent); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--maroon-900);
  color: var(--cream-100);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 7px 32px; max-width: 1440px; margin: 0 auto; }
.topbar a { color: var(--gold-300); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-pip { width:6px; height:6px; border-radius:50%; background:var(--gold-600); display:inline-block; margin-right:8px; }

/* ---------- nav ---------- */
.nav-wrap { background: rgba(248,251,255,0.96); border-bottom: 1px solid rgba(212,175,55,0.26); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); }
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 32px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 28px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { width: 58px; height: 58px; object-fit: contain; }
.nav-brand .word { font-family: var(--f-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; color: var(--maroon-700); line-height: 1; display: block; }
.nav-brand .word .ink { color: var(--ink-900); }
.nav-brand .tagline { font-family: var(--f-mono); font-size: 8px; letter-spacing: 0.24em; color: var(--gold-700); text-transform: uppercase; margin-top: 4px; display: block; }
.nav-links { display: inline-flex; gap: 4px; justify-content: flex-start; justify-self: start; background: #fff; border: 1px solid rgba(13,59,131,0.10); border-radius: 999px; padding: 6px; box-shadow: 0 12px 36px rgba(4,20,47,0.06); }
.nav-links a {
  font-size: 13px; font-weight: 650; color: var(--ink-700); letter-spacing: 0.01em;
  position: relative; padding: 9px 15px; transition: color .2s, background .2s;
  border-radius: 999px;
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--maroon-700); background: var(--cream-100); }
.nav-links a.active { color: #fff; background: var(--maroon-700); }
.nav-cta-wrap { display: flex; justify-content: flex-end; gap: 12px; }

/* ---------- buttons ---------- */
.btn { display:inline-flex; align-items:center; gap:10px; padding: 14px 26px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; border: 1px solid transparent; transition: all .25s ease; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--maroon-700), var(--maroon-600)); color: var(--cream-50); border-color: var(--maroon-700); }
.btn-primary:hover { background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700)); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(135deg, var(--gold-600), var(--gold-700)); color: var(--maroon-900); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-100); }
.btn-ghost:hover { border-color: var(--maroon-700); color: var(--maroon-700); }
.btn-light { background: var(--paper); color: var(--maroon-700); border-color: var(--line); }
.btn-light:hover { border-color: var(--gold-600); }
.btn .arrow { display:inline-block; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; transition: all .3s ease; }
.card:hover { border-color: var(--gold-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-frame { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }

/* ---------- chips ---------- */
.chip { display: inline-flex; align-items:center; gap:6px; padding: 6px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 500; background: var(--cream-100); color: var(--ink-700); border: 1px solid var(--line); }
.chip-gold { background: var(--gold-100); color: var(--maroon-800); border-color: var(--gold-300); }
.chip-maroon { background: var(--maroon-50); color: var(--maroon-700); border-color: rgba(110,21,48,0.18); }

/* ---------- footer ---------- */
.footer { background: var(--maroon-900); color: var(--cream-100); padding: var(--space-9) 0 var(--space-5); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,233,196,0.12); }
.footer h5 { font-family: var(--f-display); font-size: 18px; color: var(--gold-300); margin: 0 0 18px; font-weight: 600; letter-spacing: -0.01em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--cream-100); opacity: 0.78; font-size: 14px; transition: opacity .2s, color .2s; }
.footer a:hover { opacity: 1; color: var(--gold-300); }
.footer-brand-row { display:flex; align-items:center; gap:14px; margin-bottom: 18px; }
.footer-brand-row img { width: 96px; height: 96px; object-fit:contain; }
.footer-brand-row .word { font-family: var(--f-display); font-weight: 800; font-size: 24px; color: var(--cream-50); letter-spacing: -0.01em; display: none; }
.footer p.about { font-size: 14px; line-height: 1.65; opacity: 0.78; max-width: 380px; }
.footer-bottom { display:flex; justify-content:space-between; padding-top: 24px; font-size: 12px; opacity: 0.6; }
.footer-bottom .legal { display:flex; gap: 24px; }

/* ---------- decorative ---------- */
.ornament { display:inline-flex; align-items:center; gap:10px; color: var(--gold-600); }
.ornament .star { width:14px; height:14px; }

/* gold underline accent */
.gold-underline { position: relative; display: inline-block; }
.gold-underline::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold-600), transparent);
}

/* serif italic accent inside heading */
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--maroon-700); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  section { padding: 56px 0; }
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; padding: 14px 24px; }
  .nav-brand img { width: 56px; height: 56px; }
  .nav-brand .word,
  .nav-brand .tagline { display: none; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-top: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 16px 24px 24px;
    border-radius: 0;
    box-shadow: 0 12px 24px rgba(74,14,32,0.10);
    z-index: 60;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-hamburger { display: inline-flex !important; }
  .nav-cta-wrap .btn { padding: 11px 18px; font-size: 13px; }
  .topbar-inner { font-size: 12px; padding: 8px 24px; }
  .topbar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  section { padding: 48px 0; }
  .wrap, .wrap-wide { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-right { gap: 12px; flex-wrap: wrap; justify-content: flex-end; font-size: 11px; }
  .topbar-right a:nth-child(2) { display: none; } /* hide long email on tiny screens */
  .nav { padding: 12px 18px; gap: 10px; }
  .nav-brand img { width: 48px; height: 48px; }
  .nav-cta-wrap { gap: 8px; }
  .nav-cta-wrap .btn { padding: 10px 14px; font-size: 12px; }
  .nav-cta-wrap .btn .arrow { display: none; }
  .nav-links { top: 100%; }
  h1 { font-size: clamp(32px, 8vw, 48px) !important; }
  h2 { font-size: clamp(26px, 6.4vw, 38px) !important; }
  .lead { font-size: 16px !important; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none;
  width: 44px; height: 44px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line);
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--maroon-700);
  transition: all .2s;
}
.nav-hamburger:hover { background: var(--cream-100); border-color: var(--gold-600); }
.nav-hamburger svg { width: 22px; height: 22px; }
.nav-hamburger .icon-close { display: none; }
.nav-hamburger.open .icon-menu { display: none; }
.nav-hamburger.open .icon-close { display: block; }

/* ---------- utility ---------- */
.center { text-align: center; }
.maroon { color: var(--maroon-700); }
.gold { color: var(--gold-700); }
.muted { color: var(--ink-500); }
.bg-cream { background: var(--cream-100); }
.bg-maroon { background: var(--maroon-700); color: var(--cream-50); }
.bg-paper { background: var(--paper); }
.bg-deep { background: var(--maroon-900); color: var(--cream-100); }

.section-head { max-width: 760px; margin: 0 auto var(--space-7); text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; display: inline-block; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 17px; }

/* svg ornament line */
.orn-line { display:flex; justify-content:center; margin: 12px 0; }
.orn-line svg { width: 80px; height: 14px; color: var(--gold-600); }

/* simple fade-in */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .8s ease both; }
.fade-up.d1 { animation-delay: .08s; }
.fade-up.d2 { animation-delay: .16s; }
.fade-up.d3 { animation-delay: .24s; }
.fade-up.d4 { animation-delay: .32s; }

/* on-scroll reveal — JS toggles .reveal-in */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.36,1); }
.reveal.reveal-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* slow background drift */
@keyframes ornDrift { 0%,100% { transform: translate3d(0,0,0) scale(1);} 50% { transform: translate3d(20px,-10px,0) scale(1.04);} }
.orn-drift { animation: ornDrift 18s ease-in-out infinite; }

@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(42,128,85,0.45);} 70% { box-shadow: 0 0 0 12px rgba(42,128,85,0);} }
.pulse-dot { animation: pulseDot 1.8s ease-out infinite; }

/* ============ FLOATING WHATSAPP ============ */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff; border-radius: 999px;
  box-shadow: 0 12px 32px rgba(18,140,126,0.40), 0 4px 12px rgba(0,0,0,0.18);
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fab-whatsapp:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 18px 40px rgba(18,140,126,0.50); }
.fab-whatsapp .fab-icon {
  width: 38px; height: 38px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative;
}
.fab-whatsapp .fab-icon::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  background: rgba(37,211,102,0.40); z-index: -1;
  animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(.9); opacity: .7;}
  100% { transform: scale(1.6); opacity: 0;}
}
.fab-whatsapp svg { width: 22px; height: 22px; color: #25d366; }
.fab-whatsapp .fab-label { line-height: 1.2; }
.fab-whatsapp .fab-label small { display: block; font-weight: 500; opacity: 0.85; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1px; }
@media (max-width: 640px) {
  .fab-whatsapp .fab-label { display: none; }
  .fab-whatsapp { padding: 10px; }
}

/* ============ CONSENT BLOCK (forms) ============ */
.consent-block {
  background: var(--cream-50); border: 1px solid var(--line);
  border-left: 3px solid var(--gold-600);
  border-radius: 10px; padding: 16px 18px;
  font-size: 13px; color: var(--ink-700); line-height: 1.6;
  display: grid; gap: 10px;
}
.consent-block .consent-row { display: flex; gap: 10px; align-items: flex-start; }
.consent-block input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 3px 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--maroon-700);
  box-shadow: none;
}
.field .consent-block label,
.consent-block label {
  display: block;
  margin: 0;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
  color: var(--ink-700);
}
.consent-block .consent-title { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
.consent-block a { color: var(--maroon-700); text-decoration: underline; text-decoration-color: var(--gold-300); text-underline-offset: 3px; }
.consent-block a:hover { color: var(--gold-700); }
.consent-block .channel-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.consent-block .channel { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 11px; font-weight: 600; color: var(--ink-700); }
.consent-block .channel svg { width: 12px; height: 12px; color: var(--maroon-700); }

/* policy / terms long-form page */
.policy-page { background: var(--cream-50); }
.policy-hero { padding: 64px 0 32px; }
.policy-hero h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 16px; }
.policy-hero h1 em { color: var(--maroon-700); font-style: italic; font-weight: 500; }
.policy-hero p { color: var(--ink-500); max-width: 720px; font-size: 17px; }
.policy-hero .updated { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 16px; }
.policy-body { display: grid; grid-template-columns: 240px 1fr; gap: 56px; padding: 32px 0 96px; }
.policy-toc { position: sticky; top: 110px; align-self: flex-start; font-size: 13px; }
.policy-toc h5 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-500); margin: 0 0 14px; }
.policy-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--line); padding-left: 16px; }
.policy-toc a { color: var(--ink-700); display: block; padding: 4px 0; transition: all .2s; }
.policy-toc a:hover { color: var(--maroon-700); transform: translateX(2px); }
.policy-content { max-width: 760px; }
.policy-content h2 { font-size: clamp(24px, 2.4vw, 32px); margin: 48px 0 16px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.policy-content h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.policy-content h2 .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--maroon-50); color: var(--maroon-700); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.policy-content h2 .ico svg { width: 18px; height: 18px; }
.policy-content h3 { font-family: var(--f-display); font-size: 20px; font-weight: 600; margin: 24px 0 10px; color: var(--ink-900); }
.policy-content p { font-size: 15px; line-height: 1.75; color: var(--ink-700); margin: 0 0 14px; }
.policy-content ul, .policy-content ol { padding-left: 22px; color: var(--ink-700); font-size: 15px; line-height: 1.8; margin: 0 0 18px; }
.policy-content li { margin-bottom: 6px; }
.policy-content .callout { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold-600); border-radius: 10px; padding: 18px 22px; margin: 20px 0; font-size: 14px; color: var(--ink-700); display: flex; gap: 14px; }
.policy-content .callout .ico { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-100); color: var(--maroon-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.policy-content a { color: var(--maroon-700); text-decoration: underline; text-decoration-color: var(--gold-300); text-underline-offset: 3px; }
.policy-content a:hover { color: var(--gold-700); }

@media (max-width: 980px) {
  .policy-body { grid-template-columns: 1fr; gap: 32px; }
  .policy-toc { position: static; display: none; }
}

/* form thank-you / success banner */
.form-success-banner {
  background: linear-gradient(135deg, rgba(42,128,85,0.10), rgba(42,128,85,0.04));
  border: 1px solid rgba(42,128,85,0.30); border-left: 3px solid #2a8055;
  border-radius: 10px; padding: 14px 18px; color: #1f5c3d; font-size: 14px;
  display: flex; align-items: center; gap: 12px;
}
.form-success-banner .check {
  width: 28px; height: 28px; border-radius: 50%; background: #2a8055; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ============ PREMIUM MOTION LAYER ============ */
:root {
  --motion-ease: cubic-bezier(.19, 1, .22, 1);
  --motion-soft: cubic-bezier(.22, .8, .36, 1);
}

@keyframes siteLiftIn {
  from { opacity: 0; transform: translate3d(0, 26px, 0) scale(.985); filter: blur(10px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes goldSheen {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  22% { opacity: .75; }
  55% { opacity: .35; }
  100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}

body.motion-ready .nav-wrap {
  transition: box-shadow .35s var(--motion-soft), border-color .35s var(--motion-soft), background .35s var(--motion-soft);
}

body.motion-ready.scrolled .nav-wrap {
  box-shadow: 0 14px 36px rgba(6, 35, 93, .12);
}

body.motion-ready .fade-up {
  animation-name: siteLiftIn;
  animation-duration: .9s;
  animation-timing-function: var(--motion-ease);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(8px);
  transition:
    opacity .85s var(--motion-soft),
    transform .85s var(--motion-ease),
    filter .85s var(--motion-soft);
}

body.motion-ready .reveal.reveal-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

body.motion-ready [data-depth] {
  --motion-y: 0px;
  transform: translate3d(0, var(--motion-y), 0) scale(1.01);
  will-change: transform;
}

body.motion-ready .card,
body.motion-ready .stream-card,
body.motion-ready .course-card,
body.motion-ready .why-card,
body.motion-ready .test-card,
body.motion-ready .office-card,
body.motion-ready .info-card,
body.motion-ready .team-card,
body.motion-ready .test-card-hero {
  will-change: transform, box-shadow;
  transition:
    transform .42s var(--motion-ease),
    box-shadow .42s var(--motion-soft),
    border-color .32s ease,
    background .32s ease;
}

body.motion-ready .card:hover,
body.motion-ready .stream-card:hover,
body.motion-ready .course-card:hover,
body.motion-ready .why-card:hover,
body.motion-ready .test-card:hover,
body.motion-ready .office-card:hover,
body.motion-ready .info-card:hover,
body.motion-ready .team-card:hover,
body.motion-ready .test-card-hero:hover {
  transform: translate3d(0, -6px, 0);
}

body.motion-ready .btn,
body.motion-ready .start-btn {
  position: relative;
  overflow: hidden;
}

body.motion-ready .fab-whatsapp {
  position: fixed;
  overflow: hidden;
}

body.motion-ready .btn::before,
body.motion-ready .start-btn::before,
body.motion-ready .fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}

body.motion-ready .btn:hover::before,
body.motion-ready .start-btn:hover::before,
body.motion-ready .fab-whatsapp:hover::before {
  animation: goldSheen .85s var(--motion-soft);
}

body.motion-ready .btn > *,
body.motion-ready .start-btn > *,
body.motion-ready .fab-whatsapp > * {
  position: relative;
  z-index: 1;
}

body.motion-ready img {
  transition: transform .75s var(--motion-ease), filter .55s var(--motion-soft);
}

body.motion-ready .team-photo:hover,
body.motion-ready .card-frame:hover img,
body.motion-ready .photo-card:hover img,
body.motion-ready .hero-media:hover img,
body.motion-ready .ct-hero-img-wrap:hover img,
body.motion-ready .ab-hero-img-wrap:hover img,
body.motion-ready .page-hero-img-wrap:hover img {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  body.motion-ready [data-depth],
  body.motion-ready .reveal {
    transform: none !important;
    filter: none !important;
  }
}

/* ============ LINGA ROYAL-BLUE ART DIRECTION ============ */
.hero,
.page-hero,
.ab-hero,
.policy-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(212,175,55,0.22), transparent 30%),
    linear-gradient(135deg, #f9fbff 0%, #eef5ff 48%, #e5eefb 100%) !important;
}

.hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(212,175,55,0.24), transparent 34%),
    linear-gradient(90deg, rgba(4,20,47,0.98), rgba(8,36,86,0.94) 48%, rgba(13,59,131,0.84) 100%),
    linear-gradient(135deg, var(--maroon-900), var(--maroon-700)) !important;
}

.hero .wrap { max-width: 1440px !important; }
.hero-grid { min-height: min(760px, calc(100svh - 96px)) !important; }
.hero-text { max-width: 620px; }
.hero .hero-eyebrow,
.hero .lead,
.hero h1,
.hero h1 .accent,
.hero-meta-item .lbl { color: #fff !important; }
.hero .lead { opacity: 0.90 !important; }
.hero h1 .accent { color: var(--gold-500) !important; }
.hero h1 .underline-gold { background: linear-gradient(180deg, transparent 68%, rgba(212,175,55,0.44) 68%) !important; }
.hero .btn-ghost { color: #fff !important; border-color: rgba(255,255,255,0.34) !important; }
.hero .btn-ghost:hover { color: var(--gold-300) !important; border-color: var(--gold-500) !important; }
.hero-meta { border-color: rgba(255,255,255,0.24) !important; }
.hero-meta-item .num { color: var(--gold-500) !important; }
.hero-visual {
  transform: translateX(10px);
  isolation: isolate;
}
.hero-bg-panel {
  display: none !important;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px -12px 22px 86px;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(212,175,55,0.32), transparent 28%),
    linear-gradient(145deg, rgba(212,175,55,0.92), rgba(13,59,131,0.92) 42%, rgba(4,20,47,0.98));
  border: 1px solid rgba(240,217,138,0.36);
  border-radius: 32px 120px 32px 32px;
  box-shadow: 0 34px 80px rgba(0,0,0,0.28);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 42px 26px 58px 130px;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  opacity: 0.55;
  border-radius: 28px 100px 28px 28px;
}
.hero-photo,
.hero-photo-2 {
  filter: saturate(1.02) contrast(1.03);
  border-color: rgba(255,255,255,0.94);
}
.hero-photo {
  top: 44px !important;
  left: 12px !important;
  width: 390px !important;
  height: 500px !important;
  z-index: 2;
}
.hero-photo-2 {
  right: 10px !important;
  bottom: 38px !important;
  width: 235px !important;
  height: 250px !important;
  z-index: 3;
}
.hero-stat-card {
  left: -4px !important;
  bottom: 42px !important;
  z-index: 4;
}
.hero-badge {
  right: 34px !important;
  top: 88px !important;
}
.hero-stat-card,
.hero-badge { border-color: rgba(212,175,55,0.45); }

.trusted {
  background: var(--maroon-900) !important;
  color: rgba(255,255,255,0.82) !important;
  border: 0;
}
.trusted-label,
.trusted-logo { color: rgba(255,255,255,0.72); }
.trusted-logo:hover { color: var(--gold-300); }

.streams-bg,
.test-bg,
.story-bg,
.team-bg,
.mv-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(212,175,55,0.16), transparent 30%),
    linear-gradient(180deg, #eaf2ff 0%, #dfeafa 100%) !important;
}

.process-band {
  background:
    radial-gradient(circle at 82% 16%, rgba(212,175,55,0.22), transparent 32%),
    linear-gradient(135deg, var(--maroon-900), var(--maroon-800) 58%, var(--maroon-700)) !important;
  color: var(--cream-50);
}
.process-band .section-head h2,
.process-band .section-head p { color: var(--cream-50); }
.process-band .section-head p { opacity: 0.78; }
.process-band .eyebrow { color: var(--gold-300); }
.process-band .step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(240,217,138,0.24);
  border-radius: 18px;
  padding: 32px;
  min-height: 240px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.process-band .process-grid { gap: 18px !important; }
.process-band .step::before {
  color: rgba(240,217,138,0.18) !important;
  right: 20px !important;
  top: 18px !important;
}
.process-band .step::after { display: none !important; }
.process-band .step .num-pip { color: var(--gold-300) !important; }
.process-band .step h3 { color: #fff; }
.process-band .step p { color: rgba(255,255,255,0.76) !important; }

.guidance,
.stats-bg,
.faq-bg,
.footer,
.cta-banner,
.bg-deep {
  background:
    radial-gradient(circle at 82% 16%, rgba(212,175,55,0.18), transparent 34%),
    linear-gradient(135deg, var(--maroon-900), var(--maroon-800) 56%, var(--maroon-700)) !important;
}

.card,
.why-card,
.stream-card,
.test-card,
.course-card,
.info-card,
.office-card,
.form-card,
.test-shell,
.policy-content .callout {
  border-color: rgba(13,59,131,0.12);
  box-shadow: 0 14px 40px rgba(4,20,47,0.05);
}

.why-card,
.stream-card,
.test-card {
  background:
    linear-gradient(155deg, rgba(255,255,255,0.94), rgba(251,241,207,0.55)),
    radial-gradient(circle at 90% 8%, rgba(212,175,55,0.20), transparent 30%) !important;
  border-color: rgba(212,175,55,0.34) !important;
}
.stream-card {
  min-height: 250px;
  box-shadow: 0 20px 52px rgba(4,20,47,0.10) !important;
}
.stream-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-600), var(--maroon-700));
  opacity: 0.85;
}

.why-card:hover,
.stream-card:hover,
.course-card:hover,
.test-card:hover {
  box-shadow: 0 22px 46px rgba(4,20,47,0.12);
}

.nav-brand img,
.footer-brand-row img {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(4,20,47,0.10);
}

.consent-block {
  grid-column: 1 / -1;
  max-width: 100%;
  overflow: hidden;
}
.consent-block .consent-row {
  width: 100%;
}
.consent-block label {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}
.consent-block .channel-row {
  max-width: 100%;
}

@media (max-width: 980px) {
  .hero {
    background:
      radial-gradient(circle at 80% 20%, rgba(212,175,55,0.18), transparent 36%),
      linear-gradient(180deg, rgba(4,20,47,0.98), rgba(8,36,86,0.94)),
      var(--maroon-900) !important;
  }
  .hero-grid { grid-template-columns: 1fr !important; min-height: auto !important; padding: 72px 0 78px !important; }
  .hero-visual { min-height: 500px; transform: none; max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-visual::before { inset: 34px 0 26px 80px; }
  .hero-visual::after { inset: 72px 28px 70px 122px; }
}

@media (max-width: 640px) {
  .hero-grid { padding: 52px 0 60px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 16px; overflow-x: auto; padding-bottom: 4px; }
  .hero-meta-item { min-width: 104px; }
  .hero-visual { height: 430px; min-height: 430px; }
  .hero-visual::before { inset: 48px 0 28px 68px; border-radius: 24px 76px 24px 24px; }
  .hero-visual::after { inset: 78px 22px 72px 98px; }
  .hero-photo { width: min(74vw, 300px) !important; height: 360px !important; left: 0 !important; top: 42px !important; }
  .hero-photo-2 { width: 164px !important; height: 190px !important; right: 0 !important; bottom: 46px !important; }
  .hero-stat-card { left: 0 !important; bottom: 30px !important; }
  .hero-badge { right: 0 !important; top: 48px !important; }
  .consent-block { padding: 14px; }
  .consent-block .channel { max-width: 100%; }
}

/* ============ GOLD ICON SYSTEM ============ */
.why-card .ico,
.hero-stat-card .icon-circle,
.ph-image-wrap .ph-badge .ico,
.stream-header h2 .ico-wrap,
.info-card .ico,
.form-section .form-card .head-row .ico,
.what-card .ico,
.dim-card .ico,
.policy-content h2 .ico,
.policy-content .callout .ico,
.policy-hero-illu .float-card .ico,
.result-head .icon-circle,
.channel-tile .ico-c {
  background: linear-gradient(135deg, #fff8df 0%, var(--gold-600) 54%, var(--gold-700) 100%) !important;
  color: var(--maroon-900) !important;
  border: 1px solid rgba(125,91,20,0.18) !important;
  box-shadow: 0 14px 30px rgba(212,175,55,0.24) !important;
}

.why-card .ico svg,
.hero-stat-card .icon-circle svg,
.ph-image-wrap .ph-badge .ico svg,
.stream-header h2 .ico-wrap svg,
.info-card .ico svg,
.form-section .form-card .head-row .ico svg,
.what-card .ico svg,
.dim-card .ico svg,
.policy-content h2 .ico svg,
.policy-content .callout .ico svg,
.policy-hero-illu .float-card .ico svg,
.result-head .icon-circle svg,
.channel-tile .ico-c svg {
  stroke-width: 1.9;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.55));
}

.stream-card .ico {
  color: var(--gold-600) !important;
  filter: drop-shadow(0 10px 18px rgba(212,175,55,0.24));
}

.course-card .foot .arr,
.stream-card .count .arr,
.consent-block .channel svg,
.office-card .meta a {
  color: var(--gold-700) !important;
}

.office-card .map {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(135deg, var(--maroon-900), var(--maroon-700) 58%, var(--gold-700)) !important;
}

.office-card .pin,
.city-gold-icon {
  background: linear-gradient(135deg, #fff8df, var(--gold-600) 55%, var(--gold-700)) !important;
  color: var(--maroon-900) !important;
  border: 1px solid rgba(255,255,255,0.48);
  box-shadow: 0 16px 34px rgba(4,20,47,0.22), 0 8px 24px rgba(212,175,55,0.28) !important;
}

.city-gold-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  vertical-align: -8px;
}
.city-gold-icon svg { width: 18px; height: 18px; }
.office-card .city {
  display: flex;
  align-items: center;
  gap: 2px;
}

.card,
.why-card,
.stream-card,
.test-card,
.course-card,
.info-card,
.office-card,
.form-card,
.test-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90)),
    radial-gradient(circle at 88% 12%, rgba(212,175,55,0.10), transparent 30%) !important;
}

.card:hover,
.why-card:hover,
.stream-card:hover,
.test-card:hover,
.course-card:hover,
.info-card:hover,
.office-card:hover {
  border-color: rgba(212,175,55,0.68) !important;
}

.process-band .step {
  background:
    radial-gradient(circle at 85% 18%, rgba(212,175,55,0.16), transparent 32%),
    linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045)) !important;
  border: 1px solid rgba(240,217,138,0.30) !important;
  box-shadow: 0 24px 58px rgba(0,0,0,0.24) !important;
}
.process-band .step h3 { color: #fff !important; }
.process-band .step p { color: rgba(255,255,255,0.78) !important; }
