:root {
  --accent: #F1685E;
  --accent-deep: #e0554b;
  --coral: #F1685E;
  --coral-deep: #e0554b;
  --navy: #111111;
  --navy-deep: #000000;
  --text: #333333;
  --ink: #000000;
  --white: #ffffff;
  --mist: #f7f7f7;
  --border: #e8e8e8;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1200px, calc(100% - 3rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.15; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-coral { background: var(--coral); color: var(--ink); }
.btn-coral:hover { background: var(--accent-deep); color: var(--ink); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--accent); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--mist); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 0.65rem 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: padding 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--navy);
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--coral);
  background: rgba(238,109,96,.08);
}
.nav-links a.active {
  color: var(--coral);
  background: rgba(238,109,96,.12);
  font-weight: 600;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: 0.35rem;
}
.nav-cta .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.84rem;
  white-space: nowrap;
}
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; cursor: pointer; padding: 0;
}
.burger svg { width: 24px; height: 24px; color: var(--navy); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(7rem, 14vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #1a1a1a 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(241,104,94,.22), transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(238,109,96,.15), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "copy visual"
    "stats visual";
  gap: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-visual { grid-area: visual; }
.hero-stats { grid-area: stats; align-self: start; }
.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.stat {
  padding: 0.85rem 0.65rem;
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0.85rem;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.stat span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255,255,255,.7);
}
.hero-visual { position: relative; min-height: 380px; align-self: center; }
.hero-ring {
  position: absolute;
  inset: 8% 5% 8% 10%;
  border: 2px solid rgba(241,104,94,.35);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.hero-blob {
  position: absolute;
  right: 0; bottom: 0;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(238,109,96,.25), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-figure {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}
.chip i { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; }
.chip.one { top: 12%; left: -4%; }
.chip.two { bottom: 14%; right: -2%; }

/* Marquee strip */
.strip {
  background: var(--coral);
  color: var(--white);
  padding: 0.85rem 0;
  overflow: hidden;
}
.track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.track span { white-space: nowrap; }

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-tight { padding-top: 0; }
.page-hero + .section {
  padding-top: clamp(3.25rem, 6.5vw, 5rem) !important;
}
.sec-head { margin-bottom: 2.5rem; }
.sec-head.center { text-align: center; }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.card .ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(241,104,94,.1);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.card .ico svg { width: 24px; height: 24px; }
.card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.card p, .card h3 + p { color: var(--text); font-size: 0.95rem; }
.card h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 0.5rem; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.35rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split.flip .split-media { order: 2; }
.split.flip > div:last-child { order: 1; }
.split-media { position: relative; }
.halo {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle, rgba(241,104,94,.15), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.media-frame {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,.12);
}
.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.media-frame.tint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35));
}

/* Feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feat {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--mist);
}
.feat .n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral);
  flex-shrink: 0;
}
.feat h4 { color: var(--navy); margin-bottom: 0.35rem; font-size: 1rem; }
.feat p { color: var(--text); font-size: 0.9rem; }

/* Methodology */
.method {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  border-radius: 1.5rem;
  color: var(--white);
  text-align: center;
}
.method .eyebrow { color: var(--coral); }
.method h2 { color: var(--white); font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.method-sub { color: rgba(255,255,255,.75); max-width: 36rem; margin: 0 auto 2.5rem; }
.orbit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: left;
}
.step {
  padding: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
}
.step .node {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.step h4 { color: var(--white); margin-bottom: 0.4rem; font-size: 0.95rem; }
.step p { color: rgba(255,255,255,.7); font-size: 0.85rem; }

/* CTA band */
.cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--navy) 0%, #1a1a1a 100%);
  border-radius: 1.5rem;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--white); margin-bottom: 0.65rem; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 32rem; margin: 0 auto 1.5rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Page hero */
.page-hero {
  padding: calc(5.5rem + 2rem) 0 clamp(3rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #1a1a1a);
  color: var(--white);
}
.crumb { font-size: 0.85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.crumb a:hover { color: var(--coral); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,.8); max-width: 40rem; font-size: 1.05rem; }

/* PVM cards */
.pvm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.value {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
}
.value .vn {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.value h3 { color: var(--navy); margin-bottom: 0.4rem; font-size: 1.05rem; }
.value p { color: var(--text); font-size: 0.9rem; }

/* Service pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.pillar {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.pillar img { height: 200px; object-fit: cover; width: 100%; }
.pillar-body { padding: 1.5rem; }
.pillar-body h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.pillar-body p { color: var(--text); font-size: 0.92rem; }
.pillar-body .includes { font-size: 0.88rem; margin-top: 0.75rem; }
.pillar .btn { margin-top: 1rem; }

/* Courses */
.courses { display: grid; gap: 1.25rem; }
.course {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.course:hover { border-color: var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.course-media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.course-body { padding: 1.5rem 1.75rem; }
.course-body h3 { color: var(--navy); margin-bottom: 0.35rem; font-size: 1.1rem; }
.course .tagline { color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; }
.course .ideal { font-size: 0.9rem; color: var(--text); margin-top: 0.75rem; }
.checks { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.checks li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* Newsletter */
.newsletter {
  background: var(--mist);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 1.25rem;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.newsletter p { color: var(--text); max-width: 32rem; margin: 0 auto 1.25rem; }
.newsletter form {
  display: flex;
  gap: 0.65rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  color: var(--ink);
}
.newsletter input[type="email"]:focus {
  outline: 2px solid rgba(241,104,94,.3);
  border-color: var(--accent);
}

/* Modules / services list */
.modules { display: grid; gap: 0.85rem; }
.module {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.module:hover { border-color: var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.mnum {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coral);
  flex-shrink: 0;
  width: 2.5rem;
}
.module h3 { color: var(--navy); margin-bottom: 0.35rem; font-size: 1.05rem; }
.module p { color: var(--text); font-size: 0.92rem; }

/* Bio / keynote */
.bio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.bio-photo { position: relative; }
.bio-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 24px 50px rgba(0,0,0,.15);
}
.bio-photo .badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--coral);
  color: var(--white);
  border-radius: 0.75rem;
}
.bio-photo .badge b { display: block; font-size: 1.4rem; }
.bio-photo .badge span { font-size: 0.8rem; opacity: 0.9; }
.bio h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 0.35rem; }
.bio .role { color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; }
.bio p { color: var(--text); }

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.quote {
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--coral);
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.quote cite { font-style: normal; font-size: 0.88rem; color: var(--text); }

/* Audience tags */
.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.audience span {
  padding: 0.5rem 0.9rem;
  background: rgba(241,104,94,.12);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  margin-bottom: 0.85rem;
  background: var(--white);
}
.info-card .ico {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(241,104,94,.1);
  color: var(--accent);
  border-radius: 10px;
  flex-shrink: 0;
}
.info-card .ico svg { width: 20px; height: 20px; }
.info-card h4 { color: var(--navy); margin-bottom: 0.25rem; font-size: 0.95rem; }
.info-card p { color: var(--text); font-size: 0.9rem; }
.info-card a { color: var(--accent); }
.info-card a:hover { color: var(--coral); }
.form-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}
.field { display: grid; gap: 0.35rem; margin-bottom: 0.85rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  font: inherit;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid rgba(241,104,94,.3);
  border-color: var(--accent);
}
.field textarea { min-height: 130px; resize: vertical; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-msg { margin-top: 0.75rem; color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 0.35rem 0.55rem;
  border-radius: 0.4rem;
}
.footer-brand p { font-size: 0.9rem; max-width: 22rem; }
.footer-col h5 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-col li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--coral); }
.footer-col li svg { width: 16px; height: 16px; vertical-align: -3px; margin-right: 0.35rem; }
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
}

/* WhatsApp */
.wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 300;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform 0.25s;
}
.wa:hover { transform: scale(1.08); }
.wa svg { width: 28px; height: 28px; fill: var(--white); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Animations */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.8rem; }
  .nav-cta .btn { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
}
@media (max-width: 960px) {
  .hero {
    padding: calc(5.5rem + 1rem) 0 2.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "stats";
    gap: 1.5rem;
  }
  .hero-copy { align-self: auto; }
  .hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
  }
  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
    max-width: none;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
  }
  .hero-visual {
    min-height: auto;
    margin-top: 0.25rem;
  }
  .hero-figure {
    height: clamp(220px, 55vw, 300px);
    border-radius: 1.1rem;
  }
  .hero-ring { display: none; }
  .hero-blob { width: 55%; height: 55%; }
  .chip { display: none; }
  .hero-stats {
    margin-top: 0;
    gap: 0.55rem;
  }
  .stat {
    padding: 0.75rem 0.4rem;
  }
  .stat b { font-size: 1.15rem; }
  .stat span { font-size: 0.68rem; }
  .split, .split.flip .split-media, .bio, .contact-grid { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .cards, .pvm, .orbit-steps, .pillars { grid-template-columns: 1fr; }
  .course { grid-template-columns: 1fr; }
  .feat-grid, .values, .quotes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .burger { display: flex; align-items: center; justify-content: center; }
  .nav-cta .btn { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 4.5rem 1rem auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: var(--white);
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    z-index: 250;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--navy) !important;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    white-space: normal;
  }
  .nav-links a.active { background: rgba(238,109,96,.12); }
  .site-header { background: rgba(255,255,255,.98); }
  .two { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
