/* AILearnPath — Dark Green Cosmic Academy (sitewide) */
:root {
  --bg-deep: #0A1210;
  --bg-panel: #12201C;
  --bg-elevated: #182924;
  --bg-soft: #1E322C;
  --text: #EAF3EF;
  --text-muted: #A8BDB4;
  --text-ink: #0B1210;
  --mint: #3EE8C3;
  --mint-dim: rgba(62, 232, 195, 0.22);
  --gold: #F5B942;
  --rim: rgba(62, 232, 195, 0.28);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-lift: 0 18px 48px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 8px 28px rgba(0, 0, 0, 0.28);
  --header-h: 70px;
  --tier1-h: 34px;
  --gutter: clamp(20px, 5vw, 72px);
  --content-max: 1100px;
}

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

html { scroll-behavior: smooth; }

body.site-ailearnpath {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Surfaces — dark green family (not pastel mint) */
.surface-pearl,
.surface-mist,
.surface-muted {
  background: var(--bg-deep);
  color: var(--text);
}
.surface-mist { background: var(--bg-panel); }
.surface-muted { background: var(--bg-elevated); }
.surface-cosmos {
  background: #060C0A;
  color: var(--text);
}
.surface-band {
  background: #0E1A16;
  color: var(--text);
}
.surface-accent {
  background: linear-gradient(160deg, #0F221C 0%, #0A1612 55%, #122820 100%);
  color: var(--text);
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
}
.surface-panel {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
}
.surface-glass {
  background: rgba(24, 41, 36, 0.85);
  border: 1px solid var(--rim);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0;
  color: var(--text);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint) !important;
}
.module-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--mint-dim);
  color: var(--mint) !important;
  border: 1px solid var(--rim);
}

/* Layout — never stick to edges */
.container {
  width: min(var(--content-max), calc(100% - (var(--gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}
.section {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .section { padding: 48px 0; }
  :root { --gutter: 20px; }
}

/* Dual-tier header */
.alp-tier1 {
  position: sticky;
  top: 0;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--tier1-h);
  padding: 0 var(--gutter);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #060C0A !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid var(--rim);
  border-radius: 0;
}
.alp-tier1 .alp-micro { color: var(--text-muted) !important; }
.alp-tier1 .alp-phone { color: var(--mint) !important; }
.alp-tier1 .alp-phone:hover { color: #fff !important; }

.alp-header {
  position: sticky;
  top: var(--tier1-h);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 var(--gutter);
  background: rgba(10, 18, 16, 0.92) !important;
  border-bottom: 1px solid var(--rim);
  border-radius: 0;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.alp-header.is-scrolled { box-shadow: var(--shadow-soft); }

.alp-wordmark {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  justify-self: start;
  color: var(--text) !important;
}

.alp-capsule {
  display: flex;
  gap: 2px;
  padding: 5px 6px;
  justify-self: center;
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.alp-capsule a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
  color: var(--text) !important;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.alp-capsule a:hover { background: var(--mint-dim); color: var(--mint) !important; }
.alp-capsule a.is-active {
  background: rgba(62, 232, 195, 0.2);
  color: var(--mint) !important;
  font-weight: 600;
}

.alp-cta {
  justify-self: end;
  background: var(--mint);
  color: var(--text-ink) !important;
  padding: 11px 22px;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.alp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 232, 195, 0.35);
  color: var(--text-ink) !important;
}

.alp-menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.alp-menu-toggle span,
.alp-menu-toggle::before,
.alp-menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 11px;
  transition: transform 0.3s, opacity 0.3s;
}
.alp-menu-toggle::before { content: ''; top: 14px; }
.alp-menu-toggle span { top: 21px; }
.alp-menu-toggle::after { content: ''; top: 28px; }
.alp-menu-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.alp-menu-toggle.is-open span { opacity: 0; }
.alp-menu-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

/* Curtain */
.alp-curtain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(165deg, #060C0A 0%, #0F221C 45%, #143029 100%);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  pointer-events: none;
}
.alp-curtain.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.alp-curtain-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 48px;
}
.alp-curtain-close {
  position: absolute;
  top: 24px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  border: 1px solid var(--rim);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}
.alp-curtain-nav { flex: 1; }
.alp-curtain-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(62, 232, 195, 0.12);
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.alp-curtain.is-open .alp-curtain-nav a {
  transform: translateY(0);
  opacity: 1;
}
.alp-curtain-nav a:nth-child(1) { transition-delay: 0.05s; }
.alp-curtain-nav a:nth-child(2) { transition-delay: 0.1s; }
.alp-curtain-nav a:nth-child(3) { transition-delay: 0.15s; }
.alp-curtain-nav a:nth-child(4) { transition-delay: 0.2s; }
.alp-curtain-nav a:nth-child(5) { transition-delay: 0.25s; }
.alp-curtain-nav a:nth-child(6) { transition-delay: 0.3s; }
.alp-curtain-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--mint);
  letter-spacing: 0.1em;
}
.alp-curtain-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--rim);
  font-size: 14px;
  color: var(--text-muted);
}
.alp-curtain-footer a { color: var(--mint); }
body.menu-open { overflow: hidden; }

/* Hero */
.hero-k {
  position: relative;
  padding: 40px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-k__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 75% 15%, rgba(62, 232, 195, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(245, 185, 66, 0.06) 0%, transparent 50%),
    var(--bg-deep);
}
.hero-k__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 28px;
}
@media (max-width: 1023px) {
  .hero-k__inner { grid-template-columns: 1fr; gap: 28px; }
}

.hero-k__content { max-width: 600px; position: relative; z-index: 3; }
.hero-k__content h1 { color: var(--text) !important; margin: 0; }
.hero-k__serial { font-size: 13px; margin: 12px 0 16px; color: var(--text-muted) !important; }
.hero-k__sub {
  font-size: 16px;
  margin: 16px 0 24px;
  max-width: 500px;
  color: var(--text-muted) !important;
  line-height: 1.65;
}
.hero-k__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

.btn-primary {
  background: var(--mint);
  color: var(--text-ink) !important;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 232, 195, 0.35);
  color: var(--text-ink) !important;
}
.btn-outline {
  background: transparent;
  color: var(--text) !important;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--mint);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--mint-dim); color: var(--text) !important; }

.hero-k__trust {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted) !important;
  margin-bottom: 22px;
}

.hero-k__orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 1023px) { .hero-k__orbit { max-width: 240px; } }

.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(62, 232, 195, 0.35);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.orbit-ring--1 { width: 100%; height: 100%; animation: orbit-spin 60s linear infinite; }
.orbit-ring--2 { width: 72%; height: 72%; animation: orbit-spin 45s linear infinite reverse; }
.orbit-ring--3 { width: 44%; height: 44%; animation: orbit-spin 30s linear infinite; }
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.glass-module {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text) !important;
  white-space: nowrap;
  z-index: 2;
  animation: float-card 6s ease-in-out infinite;
}
.glass-module--1 { top: 6%; right: 4%; }
.glass-module--2 { top: 38%; left: 0; animation-delay: 1s; }
.glass-module--3 { bottom: 28%; right: 2%; animation-delay: 2s; }
.glass-module--4 { bottom: 6%; left: 12%; animation-delay: 3s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-k__kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 8px;
}
.kpi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  padding: 14px 20px;
  box-shadow: var(--shadow-soft);
  min-width: 140px;
}
.kpi-card__num {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mint) !important;
}
.kpi-card__label { font-size: 12px; margin-top: 6px; color: var(--text-muted) !important; }

/* Photo arc — smaller */
.hero-k__arc {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - (var(--gutter) * 2)));
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.hero-k__arc-inner {
  display: flex;
  width: 100%;
  height: clamp(160px, 22vh, 240px);
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.hero-k__arc-inner img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.hero-k__cohort-badge {
  position: absolute;
  bottom: 16px;
  right: 24px;
  z-index: 3;
  background: var(--gold);
  color: var(--text-ink) !important;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-lift);
}

/* Stats */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
  padding: 56px 0;
}
@media (max-width: 767px) { .stats-strip { grid-template-columns: 1fr; gap: 28px; } }
.stat-block__num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--mint) !important;
}
.stat-block__label {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
  color: var(--text-muted) !important;
}

/* Mosaic — smaller photos */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.mosaic-card {
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  padding: 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  color: var(--text);
  min-height: 180px;
}
.mosaic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.mosaic-card--span4 { grid-column: span 4; }
.mosaic-card--span6 { grid-column: span 6; }
.mosaic-card--span8 { grid-column: span 8; }
.mosaic-card--span12 { grid-column: span 12; }
.mosaic-card--photo { min-height: 180px; }
.mosaic-card--photo img,
.mosaic-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 220px;
  object-fit: cover;
  display: block;
}
.mosaic-card--span8.mosaic-card--photo img,
.mosaic-card--span12.mosaic-card--photo img {
  max-height: 200px;
  min-height: 180px;
}
.mosaic-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 12, 10, 0.92) 0%, rgba(6, 12, 10, 0.4) 50%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--text);
}
.mosaic-card__overlay h3,
.mosaic-card__overlay p,
.mosaic-card__overlay span { color: var(--text) !important; }
.mosaic-card__overlay p { color: var(--text-muted) !important; font-size: 13px; }
.mosaic-card__overlay .module-tag {
  margin-bottom: 8px;
  align-self: flex-start;
}
@media (max-width: 1023px) {
  .mosaic-card--span4,
  .mosaic-card--span6,
  .mosaic-card--span8,
  .mosaic-card--span12 { grid-column: span 12; }
}

/* Lab split */
.lab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1023px) { .lab-split { grid-template-columns: 1fr; } }
.milestone-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.milestone { display: flex; gap: 14px; align-items: flex-start; }
.milestone__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--mint-dim);
}
.milestone__title { font-weight: 600; margin-bottom: 4px; color: var(--text); }
.milestone__desc { font-size: 14px; color: var(--text-muted); }

.lab-photo-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--rim);
  max-height: 340px;
}
.lab-photo-frame img {
  width: 100%;
  aspect-ratio: 16/11;
  max-height: 340px;
  object-fit: cover;
}
.lab-photo-kpi {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(18, 41, 36, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--rim);
  color: var(--text) !important;
}
.lab-photo-kpi strong,
.lab-photo-kpi span { color: var(--text) !important; }

/* Bento — smaller */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) { .bento { grid-template-columns: 1fr; } }
.bento-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 200px;
  max-height: 240px;
  border: 1px solid var(--rim);
  transition: transform 0.3s;
}
.bento-tile:hover { transform: translateY(-3px); }
.bento-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.bento-tile__content {
  position: relative;
  z-index: 1;
  padding: 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(6, 12, 10, 0.92) 0%, rgba(6, 12, 10, 0.35) 55%, transparent 80%);
  color: var(--text);
}
.bento-tile__content h3,
.bento-tile__content p,
.bento-tile__content span { color: var(--text) !important; }
.bento-tile__content p { font-size: 13px; color: var(--text-muted) !important; }
.bento-tile__content .module-tag {
  margin-bottom: 8px;
  align-self: flex-start;
}

/* FAQ */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 1023px) { .faq-split { grid-template-columns: 1fr; } }
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(62, 232, 195, 0.12);
}
.faq-item__q {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--gold) !important;
}
.faq-item__a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted) !important;
}

/* CTA */
.cta-band {
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { margin-bottom: 12px; color: var(--text) !important; }
.cta-band p {
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted) !important;
}
.cta-band .btn-primary {
  background: var(--mint);
  color: var(--text-ink) !important;
}

/* Page hero */
.page-hero {
  padding: 64px 0 40px;
  text-align: center;
}
.page-hero h1 { color: var(--text) !important; }
.page-hero p {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 16px;
  color: var(--text-muted) !important;
}

/* Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) { .programs-grid { grid-template-columns: 1fr; } }
.program-card {
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.program-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.program-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.program-card__body { padding: 22px; flex: 1; }
.program-card__body h3 { color: var(--text) !important; }
.program-card__body p { color: var(--text-muted) !important; font-size: 14px; }
.program-card__code { color: var(--mint) !important; font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.program-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted) !important;
}
.program-card__price { color: var(--mint) !important; font-weight: 600; }

/* Services */
.services-list { display: flex; flex-direction: column; gap: 24px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  color: var(--text);
}
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
@media (max-width: 1023px) {
  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}
.service-row img {
  border-radius: 12px;
  aspect-ratio: 16/10;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
}
.service-row h3 { color: var(--text) !important; }
.service-row p { color: var(--text-muted) !important; }

/* About */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1023px) { .about-split { grid-template-columns: 1fr; } }
.about-rail {
  position: sticky;
  top: calc(var(--tier1-h) + var(--header-h) + 20px);
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-lift);
  color: var(--text);
}
.about-rail__kpi {
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--rim);
  color: var(--text);
}
.about-rail__kpi:last-child { border-bottom: none; }
.about-rail__num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--mint) !important;
}
.about-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 28px 0;
  max-height: 280px;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 280px;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 1023px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { font-size: 15px; color: var(--text-muted); }
.contact-info p { margin-bottom: 10px; color: var(--text-muted) !important; }
.contact-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 280px;
}
.contact-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 280px;
  object-fit: cover;
}

/* Forms — light panels for readability on dark theme */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text) !important;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--rim);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg-soft) !important;
  color: var(--text) !important;
  min-height: 44px;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
}
.form-check input { width: auto; min-height: auto; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-success {
  background: var(--mint-dim);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  padding: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--text);
}

/* FAQ page */
.faq-page-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1023px) { .faq-page-split { grid-template-columns: 1fr; } }
.faq-sidebar img {
  border-radius: var(--radius-card);
  aspect-ratio: 3/4;
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

/* Legal */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 {
  margin: 36px 0 14px;
  font-size: 1.35rem;
  color: var(--text) !important;
}
.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
  color: var(--mint) !important;
}
.legal-content p,
.legal-content li {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-muted) !important;
}
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content a { color: var(--mint) !important; }

/* 404 */
.error-page {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px var(--gutter);
}
.error-page h1 { margin-bottom: 14px; color: var(--text) !important; }
.error-page p {
  margin-bottom: 28px;
  max-width: 460px;
  color: var(--text-muted) !important;
}

/* Footer */
.site-footer { padding: 56px 0 28px; background: #060C0A !important; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .alp-wordmark {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
  color: var(--text) !important;
}
.footer-brand p { font-size: 14px; color: var(--text-muted) !important; margin-bottom: 8px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--mint) !important;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: var(--text-muted) !important;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--mint) !important; }
.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid var(--rim);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted) !important;
}
.footer-disclaimer p { color: var(--text-muted) !important; }
.footer-hosting { font-size: 12px; opacity: 0.75; margin-top: 10px; }

.disclaimer-box {
  background: var(--bg-elevated);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  padding: 20px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.disclaimer-box p,
.disclaimer-box strong,
.disclaimer-box a { color: var(--text-muted) !important; }
.disclaimer-box a { color: var(--mint) !important; }

.charter-statement {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 860px;
  margin: 20px 0;
  color: var(--text) !important;
}
.charter-clarify {
  font-size: 15px;
  max-width: 700px;
  margin-top: 18px;
  padding-left: 18px;
  border-left: 3px solid var(--mint);
  color: var(--text-muted) !important;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #0E1A16;
  color: var(--text);
  padding: 20px var(--gutter);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s;
  border-top: 1px solid var(--rim);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-banner p { font-size: 14px; max-width: 560px; flex: 1; color: var(--text-muted); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner button {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  min-height: 44px;
  border: none;
  font-family: var(--font-body);
}
.cookie-btn-accept { background: var(--mint); color: var(--text-ink); }
.cookie-btn-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--rim);
}
.cookie-btn-custom {
  background: var(--bg-elevated);
  color: var(--text);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3001;
  background: rgba(6, 12, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.is-visible { opacity: 1; pointer-events: auto; }
.cookie-modal__box {
  background: var(--bg-panel);
  color: var(--text);
  border: 1px solid var(--rim);
  border-radius: var(--radius-card);
  padding: 28px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__box h3 { margin-bottom: 14px; color: var(--text); }
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rim);
  color: var(--text);
}
.cookie-toggle label { font-weight: 500; color: var(--text); }

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .orbit-ring, .glass-module, .hero-k__mesh { animation: none; }
  .alp-curtain { transition-duration: 0.01ms; }
}

@media (max-width: 1023px) {
  .alp-header {
    grid-template-columns: 1fr auto;
    top: var(--tier1-h);
  }
  .alp-capsule { display: none; }
  .alp-header .alp-cta { display: none; }
  .alp-menu-toggle { display: block; }
  .alp-wordmark { justify-self: center; grid-column: 1; }
  .alp-menu-toggle { grid-column: 2; }
}

@media (max-width: 767px) {
  .hero-k__kpis { flex-direction: column; }
  .stats-strip { padding: 40px 0; }
}
