:root {
  --ink: #0a1f2e;
  --ink-soft: #1a3548;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --amber: #e8a317;
  --amber-hot: #f0b429;
  --sand: #f3f0e8;
  --mist: #e8eef2;
  --surface: #ffffff;
  --text: #0a1f2e;
  --muted: #5a6b78;
  --line: rgba(10, 31, 46, 0.1);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 72px;
  --font: 'Figtree', sans-serif;
  --display: 'Bricolage Grotesque', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(10, 31, 46, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92vw); margin: 0 auto; }

/* NAV */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}
.site-nav.scrolled {
  background: rgba(10, 31, 46, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
@media (min-width: 901px) {
  .site-nav.scrolled {
    backdrop-filter: blur(16px);
  }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 1002;
}
.brand-mark {
  width: 40px;
  height: 40px;
  max-width: none;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
  background: #0B1228;
}
.brand-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle::before { top: 14px; }
.nav-toggle::after { top: 28px; }
.site-nav.open .nav-toggle span { opacity: 0; }
.site-nav.open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
.site-nav.open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
body.menu-open .nav-overlay,
.site-nav.open + .nav-overlay {
  display: block;
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-cta {
  background: var(--amber) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  margin-left: 6px;
}
.nav-cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin-left: 4px;
}
.nav-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

/* Desktop: links float in the fixed header row (outside header DOM) */
@media (min-width: 901px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, 96vw);
    height: var(--nav-h);
    z-index: 1001;
    justify-content: flex-end;
    padding-left: 170px;
    gap: 0;
    box-sizing: border-box;
    background: transparent;
    pointer-events: none;
  }
  .nav-links li {
    pointer-events: auto;
  }
}

@media (max-width: 900px) {
  .site-nav {
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 31, 46, 0.96);
  }
  .nav-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: calc(var(--nav-h) + 16px) 20px 28px;
    margin: 0;
    background: var(--ink);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.28);
  }
  body.menu-open .nav-links {
    transform: translateX(0);
  }
  .nav-links li {
    width: 100%;
    display: block;
    flex: 0 0 auto;
  }
  .nav-links a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .nav-cta,
  .nav-cta-ghost {
    margin-left: 0 !important;
    margin-top: 4px;
    text-align: center;
  }
}

/* HERO — full-bleed, brand-first, no overlays */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroKen 22s var(--ease) infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-bg-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 46, 0.55) 0%, rgba(10, 31, 46, 0.35) 40%, rgba(10, 31, 46, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 31, 46, 0.65) 0%, transparent 55%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.45;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.hero-orb-a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: var(--teal);
  top: 15%;
  right: 8%;
}
.hero-orb-b {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  background: var(--amber);
  bottom: 10%;
  left: 5%;
  animation-delay: -4s;
  opacity: 0.25;
}
@keyframes orbDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(24px, -18px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-right: auto;
}
.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.95);
}
.hero-lead {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: 8vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.anim-in {
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 0.9s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; }
.delay-4 { animation-delay: 0.48s; }
@keyframes riseIn {
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--amber-hot);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(232, 163, 23, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  border-bottom: 2px solid rgba(13, 148, 136, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }

/* TICKER */
.ticker {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ticker-track span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 2px;
  background: var(--amber);
  vertical-align: middle;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STATS — no negative overlap with hero */
.stats-section {
  padding: 48px 0 8px;
  background: var(--sand);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* SECTIONS */
section { padding: 88px 0; }
.section-head {
  text-align: left;
  max-width: 560px;
  margin: 0 0 48px;
}
.section-head.light .eyebrow { color: var(--amber-hot); }
.section-head.light h2,
.section-head.light p { color: #fff; }
.section-head.light p { color: rgba(255, 255, 255, 0.7); }
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow.light { color: rgba(255, 255, 255, 0.7); }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 12px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ABOUT */
.about {
  background: var(--surface);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(13, 148, 136, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(232, 163, 23, 0.06), transparent 55%);
  pointer-events: none;
}
.about .container { position: relative; }
.about-body {
  max-width: 720px;
}
.about-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-tagline {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  margin: 8px 0 28px !important;
}
.about-skills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
}
.about-skills li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.about-skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--teal);
}
@media (max-width: 700px) {
  .about-skills { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .about-skills { grid-template-columns: 1fr; }
}

/* MISSION & VISION */
.mission-vision {
  padding: 88px 0;
  background: var(--sand);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mv-block {
  padding: 72px 48px;
  background: var(--surface);
}
.mv-block.mv-vision {
  background:
    linear-gradient(160deg, #0a1f2e 0%, #134e4a 100%);
  color: #fff;
}
.mv-block h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.mv-block > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.mv-vision > p { color: rgba(255, 255, 255, 0.78); }
.mv-vision h2 { color: #fff; }
.mv-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mv-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-soft);
}
.mv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--teal);
}
.mv-vision .mv-list li { color: rgba(255, 255, 255, 0.9); }
.mv-vision .mv-list li::before { background: var(--amber); }
.mv-focus {
  margin: 0 !important;
  font-size: 0.98rem !important;
  font-style: italic;
  color: var(--muted) !important;
}
.mv-vision .mv-focus { color: rgba(255, 255, 255, 0.72) !important; }
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-block { padding: 56px 28px; }
}

/* DIRECTOR */
.director {
  background:
    linear-gradient(180deg, var(--mist) 0%, var(--sand) 100%);
}
.director-layout {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 48px;
  align-items: center;
}
.director-photo {
  margin: 0;
  position: relative;
}
.director-photo::after {
  content: '';
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
}
.director-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.director-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 20px;
}
.director-greeting {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}
.director-copy > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.director-sign {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.director-wish {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
}
.director-name {
  margin: 0;
  font-family: var(--display);
  font-weight: 750;
  font-size: 1.25rem;
  color: var(--ink);
}
.director-org {
  margin: 4px 0 10px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.director-site {
  display: inline-block;
  font-weight: 700;
  color: var(--teal-deep);
  border-bottom: 2px solid rgba(13, 148, 136, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.director-site:hover {
  color: var(--teal);
  border-color: var(--teal);
}
@media (max-width: 800px) {
  .director-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .director-photo {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* FEATURES */
.features { background: var(--mist); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.feature-card:hover .feature-media img { transform: scale(1.05); }
.feature-card > h3,
.feature-card > p {
  padding-inline: 22px;
}
.feature-card > h3 {
  margin: 18px 0 8px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
}
.feature-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.feature-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}
.feature-wide .feature-media { aspect-ratio: auto; min-height: 240px; }
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}
.feature-copy h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.5rem;
}
.feature-copy p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-template-columns: 1fr; }
}

/* HOW */
.how { background: var(--sand); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--amber));
  opacity: 0;
  transition: opacity 0.3s;
}
.step:hover::after { opacity: 1; }
.step-index {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* RANKS & OPPORTUNITIES */
.ranks {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(13, 148, 136, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(232, 163, 23, 0.2), transparent),
    var(--ink);
  color: #fff;
}
.ranks .section-head p { display: none; }
.ranks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}
.rank-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.rank-item h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--amber-hot);
}
.rank-item > p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.rank-item h4 {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.rank-item ol {
  margin: 0;
  padding: 0 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rank-item ol > li {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.rank-item ol ul {
  margin: 10px 0 0;
  padding: 0 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: disc;
}
.rank-item ol ul li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}
.ranks-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 820px;
}
.ranks-note p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.ranks-note strong { color: #fff; }

/* INCOME (legacy helpers kept if referenced) */
.income {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(13, 148, 136, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(232, 163, 23, 0.2), transparent),
    var(--ink);
  color: #fff;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.income-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, transparent 25%, rgba(10, 31, 46, 0.92) 100%),
    var(--img) center / cover no-repeat;
  transition: transform 0.35s var(--ease);
}
.income-card:hover { transform: translateY(-4px); }
.income-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
}
.income-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 900px) { .income-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .income-grid { grid-template-columns: 1fr; } }

/* VOICES */
.voices { background: var(--sand); }
.voices-wrap { overflow: hidden; }
.voices-track {
  display: flex;
  transition: transform 0.65s var(--ease);
}
.voice {
  min-width: 100%;
  margin: 0;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.voice blockquote {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.voice figcaption {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.voices-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.voices-dot,
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.voices-dot.active,
.testi-dot.active {
  background: var(--teal);
  transform: scale(1.25);
}

/* DOWNLOAD */
.download { background: var(--mist); padding-bottom: 96px; }
.download-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  background: var(--ink);
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
  min-height: 320px;
}
.download-copy {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.download-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 8px 0 14px;
  letter-spacing: -0.02em;
}
.download-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36ch;
  line-height: 1.65;
}
.download-aside {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.download-device {
  position: absolute;
  inset: 0;
}
.download-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download-aside::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 40%);
}
@media (max-width: 800px) {
  .download-panel { grid-template-columns: 1fr; }
  .download-aside { min-height: 200px; }
  .download-aside::after {
    background: linear-gradient(180deg, transparent 30%, var(--ink) 100%);
  }
  .download-copy { padding: 36px 28px; }
}

/* FAQ */
.faq-section { background: var(--sand); padding-top: 40px; }
.faq { max-width: 720px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: 0;
  background: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.faq-q span {
  font-size: 1.25rem;
  color: var(--teal);
  transition: transform 0.3s;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-a a { color: var(--teal-deep); font-weight: 600; }
.faq-item.open .faq-a { max-height: 280px; }

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 28px;
}
.footer-brand { margin-bottom: 16px; }
.footer-blurb {
  margin: 0;
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
  opacity: 0.75;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid-legal {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.footer-grid h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-grid a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-grid a:hover { opacity: 1; color: var(--amber-hot); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .footer-grid-legal { grid-template-columns: 1fr 1fr; }
  .footer-grid-legal > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* LEGAL PAGES */
.legal-body .site-nav {
  background: rgba(10, 31, 46, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.legal-page {
  padding: calc(var(--nav-h) + 48px) 0 72px;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 163, 23, 0.1), transparent 50%),
    var(--sand);
  min-height: 70vh;
}

/* COMPANY CONTENT PAGES (About / Mission / Vision / Director) */
.content-page {
  padding: calc(var(--nav-h) + 48px) 0 72px;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 163, 23, 0.1), transparent 50%),
    var(--sand);
  min-height: 70vh;
}
.content-wrap { max-width: 760px; }
.content-wrap-wide { max-width: 980px; }
.content-page h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
}
.content-lead {
  margin: 0 0 32px;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42ch;
}
.content-prose p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.content-skills {
  margin: 8px 0 28px;
}
.content-list {
  margin: 8px 0 24px;
}
.content-next {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.content-next a {
  font-weight: 700;
  color: var(--teal-deep);
  transition: color 0.2s;
}
.content-next a:hover { color: var(--teal); }
.director-page .director-layout {
  margin: 8px 0 8px;
}
.director-page .director-copy > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.legal-wrap { max-width: 760px; }
.legal-eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.legal-page h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
}
.legal-meta,
.legal-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.legal-meta code {
  font-size: 0.9em;
  background: var(--mist);
  padding: 2px 8px;
  border-radius: 6px;
}
.legal-prose h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-prose p,
.legal-prose li {
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.legal-card-title {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.legal-card-text { margin: 0; }
.legal-email {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-deep);
}
.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.legal-list li { margin-bottom: 8px; line-height: 1.6; }
.legal-list a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-alert {
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.35);
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.55;
}
.legal-form {
  display: grid;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.legal-field { display: grid; gap: 8px; }
.legal-field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.legal-field input,
.legal-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.legal-field input:focus,
.legal-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}
.legal-form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
}
.legal-footnote {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.legal-footnote a {
  color: var(--teal-deep);
  font-weight: 600;
}

#backToTop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.35);
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}
#backToTop:hover { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  .anim-in,
  .reveal,
  .hero-bg-img,
  .hero-orb,
  .ticker-track,
  .hero-scroll i {
    animation: none !important;
    transition: none !important;
  }
  .anim-in,
  .reveal { opacity: 1; transform: none; }
}

/* Rapido-style public alert modal — image contain (no crop) */
.site-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.site-alert-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.site-alert-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 46, 0.62);
}
.site-alert-card {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(92vw, 340px);
  max-height: min(90vh, 820px);
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.site-alert-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.site-alert-media {
  background: transparent;
  display: block;
  line-height: 0;
}
.site-alert-media img {
  display: block;
  width: auto;
  max-width: min(92vw, 340px);
  max-height: 72vh;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}
.site-alert-body {
  padding: 12px 4px 0;
  text-align: center;
  color: #fff;
}
.site-alert-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.site-alert-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.site-alert-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
