/* =============================================================================
   Ikione sample site ? shared styles (single CSS source)
   Brand reference: https://ikione.com/  (+ product palette navy/teal/yellow)
   All Home / Solutions / Innovations / shell styling belongs here only.
   ============================================================================= */

:root {
  /* Colors from ikione.com + product identity */
  --iki-black: #000000;
  --iki-ink: #1a1a1a;
  --iki-muted: #000000;
  --iki-navy: #00205b;
  --iki-navy-dark: #001540;
  --iki-navy-mid: #0a2e72;
  --iki-teal: #00a3ad;
  --iki-teal-dark: #007e87;
  --iki-teal-light: #d6f2f4;
  --iki-teal-pale: #edf9fa;
  --iki-yellow: #fccd06;       /* ikione.com accent (also #ffcc00 on site) */
  --iki-yellow-alt: #ffcc00;
  --iki-yellow-dark: #d4a800;
  --iki-on-yellow: #333333;
  --iki-white: #ffffff;
  --iki-off-white: #f5f8fb;
  --iki-border: #e2e8f0;
  --iki-border-soft: #e8edf3;

  /*
   * Site-wide font ? change ONLY --font-family to update the entire application.
   * Examples: Courier | "DM Sans", system-ui, sans-serif | Georgia, serif
   */
  --font-family: Courier, "Courier New", monospace;
  --font-body: var(--font-family);
  --font-display: var(--font-family);
  --font-ui: var(--font-family);

  /* Top menu + footer share this size (px/rem — not body-relative elsewhere) */
  --nav-font-size: 1.2rem;

  --shadow-sm: 0 1px 3px rgba(0, 32, 91, 0.06), 0 1px 2px rgba(0, 32, 91, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 32, 91, 0.08), 0 2px 6px rgba(0, 32, 91, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 32, 91, 0.12), 0 4px 12px rgba(0, 32, 91, 0.06);

  /* Aliases used by existing page templates */
  --navy: var(--iki-navy);
  --navy-dark: var(--iki-navy-dark);
  --navy-mid: var(--iki-navy-mid);
  --teal: var(--iki-teal);
  --teal-dark: var(--iki-teal-dark);
  --teal-light: var(--iki-teal-light);
  --teal-pale: var(--iki-teal-pale);
  --white: var(--iki-white);
  --off-white: var(--iki-off-white);
  --text: var(--iki-ink);
  --text-sec: var(--iki-muted);
  --text-muted: #4a5568; /* WCAG AA on white (~7:1) */
  --border: var(--iki-border);
  --yellow: var(--iki-yellow);
  --yellow-dark: var(--iki-yellow-dark);
  --on-yellow: var(--iki-on-yellow);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: var(--iki-ink);
  background: var(--iki-white);
  font-family: var(--font-body);
  font-size: 1.0rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

/* Global keyboard focus — never remove without a visible replacement */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--iki-teal);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible,
[role="menuitem"]:focus-visible,
.nav-hamburger:focus-visible,
.theme-swatch:focus-visible,
.tab-btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 3px solid var(--iki-yellow);
  outline-offset: 2px;
}

/* Form controls do not inherit body font by default ? force site font everywhere */
button,
input,
textarea,
select,
optgroup,
.tab-btn,
.tab-nav,
.nav-toggle,
.nav-hamburger {
  font-family: var(--font-family) !important;
}

/*
  Single body-text size for the whole site.
  Headings h1?h6 keep their own font-size (do not override).
*/
p,
li,
a,
span,
label,
td,
th,
input,
textarea,
select,
button,
small,
strong,
em,
b,
cite,
figcaption,
blockquote,
dd,
dt,
legend,
option,
.lede,
.sd,
.hero-desc,
.about-p,
.about-hero-desc,
.tab-desc,
.dcard-body,
.acard-body,
.chcard-body,
.ugcard-body,
.cta-desc,
.demo-desc,
.footer-tagline,
.meta,
.pillar-desc,
.mcard-desc,
.ticker-item,
.ticker-label,
.feature-list li,
.product-card-body,
.product-card-tagline,
.c-desc,
.c-word,
.form-label,
.form-check,
.btn-submit-note,
.form-success p,
.page-hero p,
.band p,
.triple-c-header p,
.hcard-name,
.hcard-sub,
.hcard-badge,
.htag,
.mcard-title,
.mcard-num,
.acard-title,
.chcard-title,
.ugcard-title,
.dcard-title,
.pillar-name,
.arch-header,
.eyebrow,
.hero-eyebrow,
.about-label,
.about-hero-badge,
.about-quote-attr,
.product-card-badge,
.cert span,
.nav-cta,
.btn-teal,
.btn-ghost,
.btn-yellow,
.btn-submit,
.tab-btn,
.footer-col a,
.footer-links a {
  font-size: 1.5rem !important;
}

/* Keep any nested text inside headings at the heading size */
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-size: inherit !important;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--iki-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #FBCC09;
}

p { margin: 0; }

code {
  font-family: var(--font-family);
  font-size: 0.9em;
  background: var(--iki-teal-pale);
  color: #FFFFFF;
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* ??? Shell nav (non-landing Angular routes) ??????????????????????????????? */
#nav,
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 70px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--iki-white);
  border-bottom: 1px solid var(--iki-border-soft);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  font-family: var(--font-ui);
}

#nav a img,
.site-nav img { height: 36px; width: auto; }

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--iki-navy);
  text-decoration: none;
}
.brand span { color: var(--iki-yellow-alt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  margin-right: 4px;
}

.nav-links > .nav-item > a,
.nav-links > a:not(.nav-cta) {
  text-decoration: none;
  font-size: var(--nav-font-size);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--iki-black);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--iki-teal); }

.nav-item { position: relative; }

.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 10px 0;
  background: var(--iki-white);
  border: 1px solid var(--iki-border-soft);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  z-index: 220;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown { display: block; }

.nav-item .dropdown a {
  display: block;
  padding: 12px 16px;
  min-height: 44px;
  box-sizing: border-box;
  font-size: 14px;
  color: var(--iki-ink);
  text-decoration: none;
  font-weight: 500;
}

.nav-item .dropdown a:hover {
  background: var(--iki-teal-pale);
  color: var(--iki-teal-dark);
}

.nav-arrow { font-size: 10px; margin-left: 4px; opacity: 0.7; }

.nav-cta,
.nav-cta-desktop {
  background: var(--apollo-amber, #FBCC09);
  color: #020617 !important;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  padding: 12px 18px;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  border: 1px solid var(--apollo-amber, #FBCC09);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover,
.nav-cta-desktop:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-1px);
  color: #020617 !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 4px;
  background: var(--iki-navy);
}

.app-page { padding-top: 70px; min-height: calc(100vh - 70px); min-height: calc(100dvh - 70px); }

/* ??? Footer ??????????????????????????????????????????????????????????????? */
footer,
.site-footer {
  position: relative;
  z-index: 3;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  color: rgba(10, 0, 0, 0.65);
  padding: 64px 6% 32px;
  border-top: 1px solid #e8edf3;
  font-family: var(--font-body);
}

.site-footer--bar {
  min-height: 120px;
  padding: 0 6%;
  display: flex;
  align-items: flex-end;
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: rgba(226, 232, 240, 0.85);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0 1.25rem;
  position: relative;
  z-index: 5; /* copyright / LinkedIn above page shuttle */
}

.footer-bar__copy {
  margin: 0;
  font-size: 0.9rem !important;
  line-height: 1.4;
  color: rgba(226, 232, 240, 0.88);
}

.footer-bar__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(251, 204, 9, 0.92);
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.footer-bar__linkedin:hover {
  background: #fbcc09;
  transform: translateY(-2px);
}

.footer-bar__linkedin .footer-social-ico {
  width: 16px;
  height: 16px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  /* max-width: 1200px; */
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  width: 150px;
  height: 40px;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 150px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--iki-navy);
}
.footer-tagline { max-width: 36ch; margin-top: 8px; line-height: 1.6; color: rgba(10, 0, 0, 0.85); font-size: var(--nav-font-size); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  background: var(--iki-teal);
  border-color: var(--iki-teal);
  color: var(--iki-white); 
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.footer-social a:hover {
  background: var(--iki-teal);
  border-color: var(--iki-teal);
  color: var(--iki-white);
  transform: translateY(-2px);
}

.footer-social-ico {
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
}

.footer-social-ico[data-icon="linkedin"] {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5zM.24 8.25h4.52V24H.24V8.25zM8.34 8.25h4.33v2.14h.06c.6-1.14 2.08-2.34 4.28-2.34 4.58 0 5.42 3.02 5.42 6.94V24h-4.52v-7.56c0-1.8-.03-4.12-2.51-4.12-2.51 0-2.9 1.96-2.9 3.98V24H8.34V8.25z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1s2.48 1.12 2.48 2.5zM.24 8.25h4.52V24H.24V8.25zM8.34 8.25h4.33v2.14h.06c.6-1.14 2.08-2.34 4.28-2.34 4.58 0 5.42 3.02 5.42 6.94V24h-4.52v-7.56c0-1.8-.03-4.12-2.51-4.12-2.51 0-2.9 1.96-2.9 3.98V24H8.34V8.25z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social-ico[data-icon="facebook"] {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8.2h2.6V4.5H14c-2.8 0-4.6 1.9-4.6 4.8V12H6.8v3.7h2.6V24h3.8v-8.3H16l.6-3.7h-3.2V9.8c0-.9.3-1.6 1.6-1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8.2h2.6V4.5H14c-2.8 0-4.6 1.9-4.6 4.8V12H6.8v3.7h2.6V24h3.8v-8.3H16l.6-3.7h-3.2V9.8c0-.9.3-1.6 1.6-1.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social-ico[data-icon="youtube"] {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31.4 31.4 0 0 0 0 12a31.4 31.4 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.4 31.4 0 0 0 24 12a31.4 31.4 0 0 0-.5-5.8zM9.8 15.5v-7l6.2 3.5-6.2 3.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31.4 31.4 0 0 0 0 12a31.4 31.4 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31.4 31.4 0 0 0 24 12a31.4 31.4 0 0 0-.5-5.8zM9.8 15.5v-7l6.2 3.5-6.2 3.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social-ico[data-icon="x"] {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.2 2H21l-6.6 7.5L22 22h-6.2l-4.9-6.4L5.3 22H2.5l7-8L2 2h6.4l4.4 5.8L18.2 2zm-1.1 18h1.7L7 3.9H5.2L17.1 20z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.2 2H21l-6.6 7.5L22 22h-6.2l-4.9-6.4L5.3 22H2.5l7-8L2 2h6.4l4.4 5.8L18.2 2zm-1.1 18h1.7L7 3.9H5.2L17.1 20z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-col h4 {
  color: rgba(10, 0, 0, 1);
  font-size: var(--nav-font-size);
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.footer-col a,
.footer-links a {
  display: block;
  text-decoration: none;
  color: #0a0000;
  margin-bottom: 8px;
  font-size: var(--nav-font-size);
  opacity: 0.65;
}
.footer-col a:hover,
.footer-links a:hover { color: var(--iki-teal); opacity: 1; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { display: inline; }
.footer-bottom {
  border-top: 1px solid #e8edf3;
  padding-top: 28px;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: var(--nav-font-size);
  font-weight: 500;
  color: rgba(10, 0, 0, 0.38);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--iki-teal); }

/* Floating back-to-top — appears after scrolling down */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9000;
  appearance: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: var(--apollo-amber, #FBCC09);
  border: 1px solid rgba(245, 158, 11, 0.85);
  padding: 12px 16px;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: #FBCC09;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.4);
}

.back-to-top:focus-visible {
  outline: 2px solid #f8fafc;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.site-footer .footer-top--menu {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: start;
}

.footer-col--menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  align-content: start;
}

.footer-col--menu h4 {
  grid-column: 1 / -1;
}

/* ??? Shared page primitives (Home / Solutions / Innovations) ?????????????? */
.page { padding-top: 0; min-height: 100vh; min-height: 100dvh; }
.section { padding: 20px 6%; }
.section.bg-off { background: var(--iki-off-white); }

/* Soft tint panel (e.g. Innovations stages / tabs) */
.section.section-tint {
  background-color: #00000059;
}
.section.bg-teal-pale { background: var(--iki-teal-pale); }
.section-inner { 
  /* max-width: 1200px; */
   margin: 0 auto; }
.lede + .lede { margin-top: 1rem; }
.product-grid.spaced { margin-top: 36px; }
.cert-grid + .lede { margin-top: 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--iki-teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--iki-teal);
}

h2 { font-size: 1.2rem; margin: 0 0 14px; }
h3 {
  font-size: 1.8rem !important;
  margin: 20px 0px !important;
  color: #FBCC09 !important;
}
.lede {
  font-size: 1rem;
  color: var(--iki-muted);
  line-height: 1.8;
  /* max-width: 640px; */
  font-weight: 400;
}

.btn-teal,
.btn-ghost,
.btn-outline,
.btn-yellow,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: inherit;
  border: 1px solid var(--apollo-amber, #FBCC09);
  cursor: pointer;
  background: var(--apollo-amber, #FBCC09);
  color: #020617;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn-teal:hover,
.btn-ghost:hover,
.btn-outline:hover,
.btn-yellow:hover,
.btn-submit:hover {
  background: #d97706;
  border-color: #d97706;
  color: #020617;
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Hero (home) ? match page-hero top/left start (About / Solutions) */
.hero {
  min-height: calc(100vh - 70px);
  background: linear-gradient(150deg, var(--iki-navy-dark) 0%, var(--iki-navy) 45%, #0b2e78 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 100px 6% 70px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 163, 173, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 173, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb1 { width: 500px; height: 500px; background: rgba(0, 163, 173, 0.25); top: -100px; right: -100px; }
.orb2 { width: 300px; height: 300px; background: rgba(0, 32, 91, 0.25); bottom: -50px; left: 5%; }

.hero-inner {
  max-width: none;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--iki-teal);
  margin-bottom: 14px;
}
.hero-eyebrow span { width: 20px; height: 1.5px; background: var(--iki-teal); display: inline-block; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--iki-white);
  margin: 0 0 16px;
  max-width: 16ch;
}
.hero-title em { color: var(--iki-teal); font-style: italic; font-weight: 600; }
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0 0 28px;
  font-weight: 400;
  max-width: 58ch;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-cards { display: flex; flex-direction: column; gap: 12px; }

/* Home hero schematic + live overlay (no photo plate) */
.hero.hero--schematic {
  background: #001a4a;
}

.hero.hero--schematic::before {
  display: none;
}

.hero-schematic-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #001a4a;
}

.hero-schematic-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(0, 16, 48, 0.82) 0%, rgba(0, 26, 74, 0.55) 42%, rgba(0, 32, 91, 0.28) 72%, rgba(0, 32, 91, 0.18) 100%),
    radial-gradient(ellipse at 70% 40%, transparent 20%, rgba(0, 12, 40, 0.35) 100%);
}

.hero.hero--schematic .hero-inner {
  z-index: 3;
}

.hero.hero--schematic .hcard {
  background: rgba(0, 20, 55, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Live schematic motion overlay */
.hero-live {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.85;
}

.hero-live__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-live__guide {
  stroke: rgba(0, 163, 173, 0.14);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  animation: hero-guide-dash 18s linear infinite;
}

.hero-live__guide--b {
  stroke: rgba(252, 205, 6, 0.12);
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-live__guide--c {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-dasharray: 2 14;
  animation-duration: 14s;
}

.hero-live__arrow-shape {
  fill: rgba(0, 220, 230, 0.95);
}

.hero-live__scan {
  fill: rgba(0, 200, 210, 0.35);
}

.hero-live__scan--h {
  animation: hero-scan-y 7.5s linear infinite;
}

.hero-live__scan--h2 {
  fill: rgba(252, 205, 6, 0.22);
  animation: hero-scan-y 11s linear infinite reverse;
  animation-delay: -3s;
}

.hero-live__scan--v {
  animation: hero-scan-x 9s linear infinite;
  animation-delay: -1.5s;
}

.hero-live__dim {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.2;
  fill: rgba(255, 255, 255, 0.75);
  animation: hero-dim-pulse 2.8s ease-in-out infinite;
}

.hero-live__dim line {
  stroke: inherit;
  fill: none;
}

.hero-live__dim polygon {
  fill: inherit;
  stroke: none;
}

.hero-live__node {
  stroke: rgba(0, 200, 210, 0.75);
  stroke-width: 1;
  fill: rgba(0, 200, 210, 0.9);
  animation: hero-node-pulse 3.2s ease-in-out infinite;
}

.hero-live__node .hero-live__ring {
  fill: none;
  stroke: rgba(0, 200, 210, 0.45);
  stroke-width: 1;
}

.hero-live__node line {
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 0.8;
}

.hero-live__trace {
  stroke: rgba(0, 200, 210, 0.55);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 180 900;
  animation: hero-trace-run 6.5s linear infinite;
  filter: drop-shadow(0 0 3px rgba(0, 163, 173, 0.7));
}

.hero-live__trace--alt {
  stroke: rgba(252, 205, 6, 0.45);
  animation-duration: 8.5s;
  animation-delay: -2.5s;
  animation-direction: reverse;
}

@keyframes hero-scan-y {
  0% { transform: translateY(-20px); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(920px); opacity: 0; }
}

@keyframes hero-scan-x {
  0% { transform: translateX(-20px); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% { transform: translateX(1460px); opacity: 0; }
}

@keyframes hero-guide-dash {
  to { stroke-dashoffset: -240; }
}

@keyframes hero-dim-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes hero-node-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes hero-trace-run {
  to { stroke-dashoffset: -1080; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live__scan,
  .hero-live__guide,
  .hero-live__dim,
  .hero-live__node,
  .hero-live__trace,
  .hero-live__arrow {
    animation: none !important;
  }
  .hero-live__arrows {
    display: none;
  }
}

[data-theme="nasa"] .hero.hero--schematic {
  background: #000000;
}

[data-theme="nasa"] .hero-schematic-veil {
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(11, 61, 145, 0.25) 100%),
    radial-gradient(ellipse at 72% 42%, transparent 18%, rgba(0, 0, 0, 0.4) 100%);
}

[data-theme="nasa"] .hero-live__arrow-shape,
[data-theme="nasa"] .hero-live__scan--h,
[data-theme="nasa"] .hero-live__trace,
[data-theme="nasa"] .hero-live__node {
  fill: rgba(252, 61, 33, 0.9);
  stroke: rgba(252, 61, 33, 0.75);
}

[data-theme="nasa"] .hero-live__scan--h {
  fill: rgba(252, 61, 33, 0.4);
}

[data-theme="nasa"] .hero-live__node {
  fill: rgba(252, 61, 33, 0.85);
}
.hcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: iki-float 5s ease-in-out infinite;
}
.hcard:nth-child(2) { animation-delay: 0.8s; }
.hcard:nth-child(3) { animation-delay: 1.6s; }
@keyframes iki-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hcard-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--iki-teal);
  color: var(--iki-white);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.hcard-name { font-size: 14px; font-weight: 600; color: var(--iki-white); font-family: var(--font-ui); }
.hcard-sub { font-size: 12px; color: rgba(255, 255, 255, 0.65); margin-top: 2px; }
.hcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.htag {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(0, 163, 173, 0.12);
  color: var(--iki-teal-light);
  border: 0.5px solid rgba(0, 163, 173, 0.25);
  font-family: var(--font-ui);
  font-weight: 500;
}

/* Product / feature blocks */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: var(--iki-off-white);
  border: 1px solid var(--iki-border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card h3 {
  font-size: 1.6rem;
  margin: 8px 0 12px;
  color: #FBCC09;
}
.product-card p { color: var(--iki-muted); margin-bottom: 20px; }

.pill {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--iki-teal-dark);
  background: var(--iki-teal-light);
  padding: 4px 10px;
  border-radius: 999px;
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  padding: 12px 14px 12px 18px;
  border-left: 3px solid var(--iki-teal);
  background: var(--iki-white);
  border-radius: 0 10px 10px 0;
  color: var(--iki-muted);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
}

/* Innovations stage tabs */
.innovations-tabs {
  margin-top: 28px;
  scroll-margin-top: 96px;
}

.innovations-tabs-nav {
  margin-bottom: 28px;
}

.innovations-tabs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px; 
  transition: opacity 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.innovations-tabs-btn.is-active {
  opacity: 1;
}

.innovations-tabs-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: inherit;
  background: transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.innovations-tabs-btn.is-active .innovations-tabs-num {
  background: #fbcc09;
  border-color: #fbcc09;
  color: #000;
}

.innovations-tabs-label {
  line-height: 1.2;
}

.innovations-tabs-title {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #f8fafc;
}

.innovations-tabs-body {
  margin: 0;
  /* max-width: 52rem; */
}

.innovations-tabs-body p {
  margin: 0 0 1rem;
}

.innovations-tabs-body p:last-child {
  margin-bottom: 0;
}

/* Innovations stages (legacy stack layout) */
.stage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}
.stage {
  display: block;
  padding: 28px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--iki-border);
  position: relative;
}
.stage .apollo-plat {
  display: block;
  background: rgba(2, 6, 23, 0.0); 
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  padding: 28px;
}
.stage.apollo-plat--huston {
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.28);
}
.stage.apollo-plat--odycey {
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.28);
}
.stage-num {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: rgba(15, 23, 42, 0.8);
  color: #f8fafc;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.28);
  letter-spacing: 0.06em;
}
.stage.apollo-plat--huston .stage-num {
  border-color: rgba(245, 158, 11, 0.45);
  color: #FBCC09;
  background: rgba(245, 158, 11, 0.08);
}
.stage.apollo-plat--odycey .stage-num {
  border-color: rgba(59, 130, 246, 0.45);
  color: #FBCC09;
  background: rgba(59, 130, 246, 0.08);
}
.stage h3 {
  font-size: 1.3rem;
  margin: 0 0 8px;
  color: #FBCC09;
}
.stage p { color: #ffffff; margin: 0 0 8px; }
.meta {
  font-size: 13px;
  color: var(--iki-teal-dark);
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
}
.stage.apollo-plat--huston .meta {
  color: #FBCC09;
}
.stage.apollo-plat--odycey .meta {
  color: #FBCC09;
}

[data-theme="apollo"] .stage.apollo-plat {
  background: rgba(2, 6, 23, 0.45);
}
[data-theme="apollo"] .stage.apollo-plat h3 {
  color: #FBCC09;
}
[data-theme="apollo"] .stage.apollo-plat p {
  color: #ffffff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 12px;
  padding: 20px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  grid-column: span 3; /* 4 ISO cards per row */
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.cert--wide {
  grid-column: span 4; /* GDPR / PDPL / InsurTech100 — three equal cards */
}
.cert__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(35%, 120px);
  max-width: 100%;
  height: 88px;
  padding: 10px 12px;
  margin-bottom: 2px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-sizing: border-box;
  margin-top: 20px;
}
.cert__logo {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.cert strong {
  display: block;
  color: var(--iki-navy);
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.cert span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

.band {
  background: linear-gradient(135deg, var(--iki-navy-dark), var(--iki-navy-mid));
  color: var(--iki-white);
  padding: 72px 6%;
  text-align: center;
}
.band h2 { color: var(--iki-white); }
.band p { color: rgba(255, 255, 255, 0.7); 
  /* max-width: 640px;  */
  margin: 0 auto 28px; }
.band .actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.band .eyebrow { color: var(--iki-yellow); justify-content: center; }
.band .eyebrow::before { background: var(--iki-yellow); }

.page-hero {
  background: linear-gradient(150deg, var(--iki-navy-dark), var(--iki-navy));
  padding: 100px 6% 70px;
  color: var(--iki-white);
  position: relative;
  overflow: hidden;
}

/* Optional schematic plate (e.g. solutions apollo-13 SVG) at 35% alpha */
.page-hero__plate {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.20;
}

.page-hero--plate {
  background: #020617a8 !important;
}

/* Image underneath + path-bg animation on top (innovations) */
.page-hero--plate-path .page-hero__plate {
  opacity: 0.15;
  z-index: 0;
}

.page-hero--plate-path app-path-bg,
.page-hero--plate-path .path-bg {
  z-index: 1;
}

.page-hero .eyebrow { color: var(--iki-teal); }

/* Hide page-hero top labels like "— Contact" / "— About" site-wide */
.page-hero > .eyebrow {
  display: none !important;
}
.page-hero h1 {
  color: var(--iki-white);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  /* max-width: 16ch; */
  margin: 0 0 16px;
  font-weight: 700;
}
.page-hero h1 p {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  /* max-width: 58ch; */
  font-size: 1rem;
}

.page-hero--split .apollo-hero-body {
  margin-top: 8px;
}

.page-hero--split .page-hero-lead,
.page-hero--split .page-hero-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.2rem, 2.05vw, 1.80rem) !important;
  line-height: 1.4;
}

.page-hero--split .apollo-hero-moonshot-lead {
  margin-bottom: 0;
}

.page-hero--split .apollo-hero-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.page-hero--split .apollo-hero-moonshot-cta {
  margin-top: 18px;
}

/* ikione.com-style yellow accent helper (footer country labels etc.) */
.iki-accent { color: var(--iki-yellow-alt); }
.iki-link-underline:hover { text-decoration: underline; color: var(--iki-teal); }

/* Mobile shell nav */
@media (max-width: 960px) {
  .hero-inner,
  .product-grid,
  .stage,
  .cert-grid { grid-template-columns: 1fr; }

  .cert,
  .cert--wide {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }

  .cert__logo-wrap {
    width: min(42%, 140px);
  }

  #nav .nav-links,
  #nav .nav-cta-desktop,
  .site-nav .nav-links:not(.open),
  .site-nav .nav-cta { display: none; }

  #nav .nav-links.open,
  .site-nav .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--iki-white);
    padding: 1rem 6% 1.25rem;
    border-bottom: 1px solid var(--iki-border-soft);
    align-items: flex-start;
    gap: 0.75rem;
    z-index: 201;
  }

  .nav-toggle { display: block; }
  .nav-item .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 8px;
  }
}

/* =============================================================================
   Default page (Odycey landing) ? UI from Default.html, fonts from ikione tokens
   Scoped under .default-page so Home / Solutions / Innovations keep their styles
   ============================================================================= */
.default-page {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.default-page h1,
.default-page h2,
.default-page h3,
.default-page .hero-title,
.default-page h2.sh,
.default-page .tab-title,
.default-page .cta-h2,
.default-page .about-hero-title,
.default-page .about-h3,
.default-page .product-card-name,
.default-page .triple-c-header h3,
.default-page .big-num,
.default-page .quote-text,
.default-page .demo-h2,
.default-page .form-success h3,
.default-page .hstat .val {
  font-family: var(--font-display);
}

.default-page nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:#ffffff;
  border-bottom:1px solid #E8EDF3;
  padding:0 6%;height:70px;
  display:flex;align-items:center;justify-content:space-between;
  transition:all .3s;
  box-shadow:0 1px 8px rgba(0,0,0,.06);
}

.default-page .nav-logo{
  display:flex;align-items:center;width:150px;height:40px;flex-shrink:0;
}
.default-page .nav-logo img{
  width:150px;height:40px;object-fit:contain;object-position:left center;display:block;
}

.default-page .nav-links{display:flex;align-items:center;gap:36px;}

.default-page .nav-links a{
  /* ikione.com exact nav link style */
  
  font-size:16px;
  line-height:23px;
  font-style:normal;
  font-weight:500;
  letter-spacing:0.48px;
  text-transform:none;
  color:#0a0000;
  text-decoration:none;
  transition:color .15s;
}

.default-page .nav-links a:hover{color:var(--teal);}

.default-page .nav-cta{
  background:var(--apollo-amber, #FBCC09);color:#020617;
  font-size:0.85rem;font-weight:700;
  padding:12px 18px;border-radius:0;text-decoration:none;letter-spacing:0.02em;
  transition:background .15s,border-color .15s,transform .15s;
  border:1px solid var(--apollo-amber, #FBCC09);cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
}

.default-page .nav-cta:hover{background:#d97706;border-color:#d97706;transform:translateY(-1px);color:#020617;}


.hero{
  min-height: calc(100vh - 70px);
  background:linear-gradient(150deg,var(--navy-dark) 0%,var(--navy) 45%,#0B2E78 100%);
  position:relative;overflow:hidden;
  display:flex;align-items:flex-start;
  padding:100px 6% 70px;
}


.hero::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(0,163,173,.03) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(0,163,173,.03) 1px,transparent 1px);
  background-size:60px 60px;
  opacity:0.55;
  z-index:0;
  pointer-events:none;
}

/* Fiber-optic light trails (Default hero) ? inspired by stock fiber-line videos */
app-fiber-bg,
app-path-bg,
app-hero-live-bg,
app-apollo-blueprint-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Full-page shuttle — above apollo13 plate, below page copy */
app-blueprint-jet-fly.page-jet-fly,
.page-jet-fly {
  position: fixed !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  max-width: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero.hero--schematic app-hero-live-bg {
  z-index: 2 !important;
}

.apollo-hero app-apollo-blueprint-bg,
.apollo-hero--page app-apollo-blueprint-bg,
.page-hero app-apollo-blueprint-bg {
  z-index: 2 !important;
}

.fiber-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.fiber-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.fiber-bg__glow--1 {
  width: 55%;
  height: 45%;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(0, 163, 173, 0.35), transparent 70%);
}

.fiber-bg__glow--2 {
  width: 50%;
  height: 50%;
  bottom: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(11, 46, 120, 0.7), transparent 70%);
}

.fiber-bg__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fiber-bg__base {
  fill: none;
  stroke: rgba(0, 163, 173, 0.28);
  stroke-width: 1.25;
  stroke-linecap: round;
}

.fiber-bg__pulse {
  fill: none;
  stroke: #5ce1e6;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-dasharray: 64 480;
  stroke-dashoffset: 0;
  animation: fiber-flow linear infinite;
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(0, 163, 173, 0.9));
}

.fiber-bg__pulse--alt {
  stroke: #fccd06;
  stroke-width: 1.75;
  stroke-dasharray: 40 600;
  opacity: 0.8;
  filter: drop-shadow(0 0 5px rgba(252, 205, 6, 0.65));
}

.fiber-bg__pulse--soft {
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1.4;
  stroke-dasharray: 28 640;
  opacity: 0.55;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

@keyframes fiber-flow {
  to { stroke-dashoffset: -1200; }
}

.default-page .hero {
  background: #020617;
}

/* SVG schematic layer ? 50% alpha on desktop */
.default-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('../assets/apollo-13-command-module.svg') center center / cover no-repeat;
  opacity: 0.35;
}

@media (min-width: 961px) {
  .default-page .hero::after {
    opacity: 0.5;
  }
}

.default-page .hero::before {
  background-image: none;
  background:
    linear-gradient(
      105deg,
      rgba(0, 16, 48, 0.55) 0%,
      rgba(0, 26, 74, 0.25) 48%,
      rgba(0, 32, 91, 0.15) 100%
    );
  opacity: 1;
  z-index: 1;
}

.default-page .hero > app-path-bg,
.default-page .hero > .orb {
  display: none;
}

.default-page .hero-inner {
  max-width: none;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .fiber-bg__pulse {
    animation: none !important;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 0.35;
  }
}


.orb{position:absolute;border-radius:50%;filter:blur(80px);}

.default-page .orb1{width:500px;height:500px;background:rgba(0,163,173,.08);top:-100px;right:-100px;}

.default-page .orb2{width:300px;height:300px;background:rgba(0,32,91,.5);bottom:-50px;left:5%;}

.default-page .orb3{width:200px;height:200px;background:rgba(0,163,173,.06);top:40%;left:40%;}

.default-page .hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:none;
  color:var(--teal);margin-bottom:14px;
}

.default-page .hero-eyebrow span{display:inline-block;width:20px;height:1.5px;background:var(--teal);}

.default-page h1.hero-title{
  font-family: var(--font-display);
  font-size:clamp(2.2rem, 4vw, 3.2rem);line-height:1.15;color:#fff;
  margin:0 0 16px;font-weight:700;letter-spacing:-.02em;
  /* max-width:16ch; */
}

.default-page h1.hero-title em{color:var(--teal);font-style:italic;}

.default-page .hero-desc{
  font-size:1rem;color:rgba(255,255,255,.7);
  line-height:1.75;margin:0 0 28px;font-weight:400;
  /* max-width:58ch; */
}

.default-page .hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:52px;}

.default-page .btn-teal,
.default-page .btn-ghost,
.default-page .btn-outline,
.default-page .btn-yellow,
.default-page .btn-submit{
  background:var(--apollo-amber, #FBCC09);color:#020617;font-size:0.85rem;font-weight:700;
  padding:12px 18px;border-radius:0;text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  transition:background .15s,border-color .15s,transform .15s;
  border:1px solid var(--apollo-amber, #FBCC09);cursor:pointer;letter-spacing:.02em;
}

.default-page .btn-teal:hover,
.default-page .btn-ghost:hover,
.default-page .btn-outline:hover,
.default-page .btn-yellow:hover,
.default-page .btn-submit:hover{background:#d97706;border-color:#d97706;transform:translateY(-1px);color:#020617;}

.default-page .hero-stats{
  display:flex;gap:36px;
  padding-top:36px;border-top:1px solid rgba(255,255,255,.1);
}

.default-page .hstat .val{font-size:28px;font-weight:600;color:#fff;font-family: var(--font-display);display:block;line-height:1.1;}

.default-page .hstat .lbl{font-size:11px;color:rgba(255,255,255,.45);margin-top:3px;letter-spacing:.02em;}


.hero-cards{display:flex;flex-direction:column;gap:12px;}

.default-page .hcard{
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 18px 20px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  transition: border-color .2s, transform .2s;
}

.default-page .hcard:hover{border-color:rgba(0,163,173,.35);transform:translateX(4px);}

.default-page .hcard-top{
  display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px;
}

.default-page .hcard-ico{
  width:36px;height:36px;border-radius:9px;
  background:rgb(255, 255, 255);
  display:flex;align-items:center;justify-content:center;
  color:var(--teal);font-size:15px;flex-shrink:0;order:2;margin:0;
}

.default-page .hcard-top > div:not(.hcard-ico){order:1;flex:1;min-width:0;}

.default-page .hcard-name{font-size:13px;font-weight:500;color:#fff;line-height:1.3;}

.default-page .hcard-sub{font-size:11px;color:rgba(255,255,255,.65);margin-top:1px;}

.default-page .hcard-tags{display:flex;flex-wrap:wrap;gap:6px;}

.default-page .htag{font-size:10px;padding:3px 9px;border-radius:20px;}

.default-page .htag-teal{background:rgba(0,163,173,.12);color:var(--iki-off-white);border:0.5px solid rgba(0,163,173,.25);}

.default-page .htag-white{background:rgba(255,255,255,.06);color:rgba(255,255,255,.45);border:0.5px solid rgba(255,255,255,.1);}

.default-page .hcard-badge{
  display:inline-block;font-size:9px;font-weight:700;padding:3px 8px;
  border-radius:4px;background:var(--teal);color:#fff;letter-spacing:.06em;
  text-transform:none;margin-bottom:4px;
}


@keyframes floatA{0%,100%{transform:translateY(0);}50%{transform:translateY(-7px);}}

@keyframes floatB{0%,100%{transform:translateY(-4px);}50%{transform:translateY(4px);}}

.default-page .hcard:nth-child(1){animation:floatA 5s ease-in-out infinite;}

.default-page .hcard:nth-child(2){animation:floatB 5s ease-in-out infinite .8s;}

.default-page .hcard:nth-child(3){animation:floatA 5s ease-in-out infinite 1.6s;}


.default-page .ticker{
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--teal-pale);
  border-top: 1px solid rgba(0,163,173,.15);
  border-bottom: 1px solid rgba(0,163,173,.15);
  padding: 0 0 0 6%;
  overflow: hidden;
  min-height: 48px;
}

.default-page .ticker-label{
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: .1em;
  color: var(--teal-dark);
  padding: 14px 20px 14px 0;
  border-right: 1px solid rgba(0,163,173,.2);
  margin-right: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--teal-pale);
}

.default-page .ticker-viewport{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent);
}

.default-page .ticker-track{
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker-rtl 28s linear infinite;
  will-change: transform;
}

.default-page .ticker:hover .ticker-track{
  animation-play-state: paused;
}

.default-page .ticker-group{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.default-page .ticker-item{
  font-size: 13px;
  color: var(--navy);
  padding: 14px 28px;
  border-right: 1px solid rgba(0,163,173,.15);
  flex-shrink: 0;
  white-space: nowrap;
}

.default-page .ticker-dot{
  color: var(--teal);
  margin-right: 8px;
}

@keyframes ticker-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .default-page .ticker-track {
    animation: none;
  }
  .default-page .ticker-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .default-page .ticker-group[aria-hidden="true"] {
    display: none;
  }
}


.default-page .section{padding:90px 6%;}

.default-page .section-inner{
  /* max-width:1200px; */
  margin:0 auto;}

.default-page .eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:none;
  color:var(--teal);margin-bottom:14px;
}

.default-page .eyebrow span{display:inline-block;width:20px;height:1.5px;background:var(--teal);}

.default-page h2.sh{font-family: var(--font-display);font-size:42px;line-height:1.12;color:var(--navy);margin-bottom:14px;font-weight:400;letter-spacing:-.3px;}

.default-page h2.sh.white{color:#fff;}

.default-page p.sd{font-size:16px;color:var(--text-sec);line-height:1.8;max-width:580px;}

.default-page p.sd.white{color:rgba(255,255,255,.6);}


.default-page .what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}

.default-page .what-grid > * {
  min-width: 0;
}

.default-page .arch-visual{
  background:var(--yellow);border-radius:18px;padding:32px 28px;
  box-shadow:var(--shadow-lg);
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  overflow:hidden;
}

.default-page .arch-header{font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:none;color:rgba(51,51,51,.5);margin-bottom:24px;}

.default-page .arch-layer{
  background:rgba(255,255,255,.55);border:1px solid rgba(51,51,51,.12);
  border-radius:9px;padding:12px 16px;margin-bottom:6px;
  display:flex;align-items:center;gap:12px;
  flex-wrap:wrap;
  min-width:0;
}

.default-page .arch-layer-dot{width:8px;height:8px;border-radius:50%;background:var(--on-yellow);flex-shrink:0;}

.default-page .arch-layer-name{font-size:13px;font-weight:500;color:var(--on-yellow);flex:1;min-width:0;}

.default-page .arch-layer-tag{
  font-size:10px;
  color:rgba(51,51,51,.5);
  white-space:normal;
  text-align:right;
  line-height:1.35;
  max-width:100%;
}

.default-page .arch-arrow{text-align:center;color:rgba(51,51,51,.35);font-size:12px;line-height:1;padding:2px 0 2px 20px;margin-bottom:2px;}

.default-page .pillars{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:32px;}

.default-page .pillar{
  background:var(--off-white);border:1px solid var(--border);border-radius:10px;
  padding:16px 18px;transition:border-color .2s;
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-areas:
    "name ico"
    "desc desc";
  column-gap:12px;
  align-items:start;
  min-width:0;
}

.default-page .pillar:hover{border-color:var(--teal);}

.default-page .pillar .mark,
.default-page .pillar i{
  grid-area:ico;
  color:var(--teal);font-size:20px;margin:0;
}

.default-page .pillar-name{
  grid-area:name;
  font-size:13px;font-weight:600;color:var(--navy);
  margin:0;align-self:center;
}

.default-page .pillar-desc{
  grid-area:desc;
  font-size:12px;color:var(--text-sec);line-height:1.6;
  margin-top:8px;
}


.modules-bg{background:var(--off-white);}

.default-page .modules-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:48px;}

.default-page .mcard{
  background:var(--white);border:1px solid var(--border);border-radius:12px;
  padding:20px 18px;transition:all .22s;position:relative;overflow:hidden;cursor:default;
  box-shadow:var(--shadow-sm);
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-areas:
    "num ico"
    "title title"
    "desc desc";
  column-gap:12px;
  align-items:start;
}

.default-page .mcard::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:var(--teal);transform:scaleX(0);transform-origin:left;transition:transform .22s;
}

.default-page .mcard:hover{border-color:rgba(0,163,173,.3);box-shadow:var(--shadow-md);transform:translateY(-2px);}

.default-page .mcard:hover::after{transform:scaleX(1);}

.default-page .mcard-num{
  grid-area:num;
  font-size:10px;font-weight:600;color:var(--text-muted);letter-spacing:.08em;
  margin-bottom:0;align-self:center;
}

.default-page .mcard-ico{
  grid-area:ico;
  width:40px;height:40px;border-radius:10px;
  background:var(--teal-pale);color:var(--teal);
  display:flex;align-items:center;justify-content:center;font-size:17px;
  margin-bottom:0;
}

.default-page .mcard-title{grid-area:title;font-size:13px;font-weight:600;color:var(--navy);margin:12px 0 6px;}

.default-page .mcard-desc{grid-area:desc;font-size:11px;color:var(--text-sec);line-height:1.65;}


.tabs-section{background:var(--yellow);}

.default-page .tab-nav{
  display:flex;gap:2px;border-bottom:1px solid rgba(51,51,51,.2);
  margin-bottom:44px;
}

.default-page .tab-btn{
  font-family: var(--font-family);
  font-size:14px;font-weight:500;color:rgba(51,51,51,.75);
  padding:12px 20px;min-height:44px;cursor:pointer;border:none;background:none;
  border-bottom:2px solid transparent;margin-bottom:-1px;transition:all .15s;
  letter-spacing:.01em;
}

.default-page .tab-btn:hover{color:var(--on-yellow);}

.default-page .tab-btn.on{color:var(--on-yellow);border-bottom-color:var(--on-yellow);}

.default-page .tab-pane{display:none;}

.default-page .tab-pane.on{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}

.default-page .tab-title{font-family: var(--font-display);font-size:32px;color:var(--on-yellow);margin-bottom:12px;font-weight:400;line-height:1.2;}

.default-page .tab-desc{font-size:13px;color:rgba(51,51,51,.6);line-height:1.75;margin-bottom:4px;}

.default-page .feat-list{list-style:none;margin-top:20px;}

.default-page .feat-list li{
  display:flex;align-items:flex-start;gap:10px;
  padding:9px 0;border-bottom:1px solid rgba(51,51,51,.1);
  font-size:13px;color:rgba(51,51,51,.8);line-height:1.5;
}

.default-page .feat-list li:last-child{border-bottom:none;}

.default-page .feat-dot{width:5px;height:5px;border-radius:50%;background:var(--on-yellow);flex-shrink:0;margin-top:7px;}

.default-page .detail-cards{display:flex;flex-direction:column;gap:12px;}

.default-page .dcard{
  background:rgba(255,255,255,.6);border:1px solid rgba(51,51,51,.1);
  border-radius:10px;padding:16px 18px;padding-right:52px;
  position:relative;
}

.default-page .dcard-title{
  font-size:12px;font-weight:600;color:var(--on-yellow);margin-bottom:6px;
  display:block;padding-right:0;
}

.default-page .dcard-title .mark{
  position:absolute;top:14px;right:14px;margin:0;
  width:28px;height:28px;border-radius:8px;
}

.default-page .dcard-body{font-size:12px;color:rgba(51,51,51,.65);line-height:1.7;}


.arch-section{background:var(--light-gray);}

.default-page .arch-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:48px;}

.default-page .acard{
  background:var(--white);border:1px solid var(--border);border-radius:14px;
  padding:26px 24px;box-shadow:var(--shadow-sm);transition:all .2s;
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-areas:
    "title ico"
    "body body";
  column-gap:12px;
  align-items:start;
}

.default-page .acard:hover{box-shadow:var(--shadow-md);border-color:rgba(0,163,173,.2);transform:translateY(-2px);}

.default-page .acard-ico{
  grid-area:ico;
  width:46px;height:46px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;font-size:20px;margin:0;
}

.default-page .acard-ico.navy{background:var(--navy);color:var(--teal);}

.default-page .acard-ico.teal{background:var(--teal-pale);color:var(--teal-dark);}

.default-page .acard-title{
  grid-area:title;
  font-size:14px;font-weight:600;color:var(--navy);
  margin:0;align-self:center;
}

.default-page .acard-body{
  grid-area:body;
  font-size:12px;color:var(--text-sec);line-height:1.75;
  margin-top:12px;
}


.ch-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:44px;}

.default-page .chcard{
  background:var(--white);border:1px solid var(--border);border-radius:14px;
  padding:26px 24px;box-shadow:var(--shadow-sm);transition:all .2s;
}

.default-page .chcard:hover{border-color:var(--teal);box-shadow:var(--shadow-md);}

.default-page .chcard-head{
  display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:14px;
}

.default-page .chcard-ico{
  width:44px;height:44px;border-radius:11px;background:var(--navy);
  display:flex;align-items:center;justify-content:center;color:var(--teal);font-size:18px;flex-shrink:0;
  order:2;margin:0;
}

.default-page .chcard-title{font-size:14px;font-weight:600;color:var(--navy);order:1;flex:1;}

.default-page .chcard-body{font-size:13px;color:var(--text-sec);line-height:1.75;}


.users-section{background:var(--yellow);}

.default-page .ug-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px;}

.default-page .ugcard{
  background:rgba(255,255,255,.55);border:1px solid rgba(51,51,51,.1);
  border-radius:13px;padding:24px;
  transition:border-color .2s,background .2s;cursor:default;
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-areas:
    "title ico"
    "body body";
  column-gap:12px;
  align-items:start;
}

.default-page .ugcard:hover{border-color:rgba(51,51,51,.3);background:rgba(255,255,255,.8);}

.default-page .ugcard-ico{
  grid-area:ico;
  font-size:30px;margin:0;
  width:44px;height:44px;border-radius:12px;
}

.default-page .ugcard-title{
  grid-area:title;
  font-size:14px;font-weight:600;color:var(--on-yellow);
  margin:0;align-self:center;
}

.default-page .ugcard-body{
  grid-area:body;
  font-size:12px;color:rgba(51,51,51,.65);line-height:1.65;
  margin-top:10px;
}


.cta-section{
  background:linear-gradient(140deg,var(--navy-dark) 0%,var(--navy) 55%,#0B3278 100%);
  padding:100px 6%;text-align:center;position:relative;overflow:hidden;
}

.default-page .cta-section::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(0,163,173,.04) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(0,163,173,.04) 1px,transparent 1px);
  background-size:60px 60px;
}

.default-page .cta-ring{
  position:absolute;border-radius:50%;border:1px solid rgba(0,163,173,.08);
  top:50%;left:50%;transform:translate(-50%,-50%);
}

.default-page .cta-inner{
  /* max-width:680px; */
  margin:0 auto;position:relative;z-index:2;}

.default-page .cta-h2{font-family: var(--font-display);font-size:46px;color:#fff;margin-bottom:16px;font-weight:400;line-height:1.15;}

.default-page .cta-desc{font-size:16px;color:rgba(255,255,255,.58);margin-bottom:38px;line-height:1.75;}

.default-page .cta-btns{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;}


footer{background:#ffffff;padding:64px 6% 32px;border-top:1px solid #E8EDF3;}

.default-page .footer-inner{
  /* max-width:1200px; */
  margin:0 auto;}

.default-page .footer-top{display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr;gap:52px;margin-bottom:52px;}

.default-page .footer-logo{
  width:150px;height:40px;margin-bottom:14px;
}
.default-page .footer-logo img{
  width:150px;height:40px;object-fit:contain;object-position:left center;display:block;
}

.default-page .footer-tagline{font-size:var(--nav-font-size);color:rgba(10,0,0,.45);line-height:1.75;
  /* max-width:280px; */
}

.default-page .footer-col h4{
  font-size:var(--nav-font-size);font-weight:600;
  letter-spacing:.1em;text-transform:none;color:rgba(10,0,0,.38);margin-bottom:18px;
}

.default-page .footer-col a{
  display:block;
  font-size:var(--nav-font-size);font-weight:500;
  letter-spacing:0.48px;color:#0a0000;text-decoration:none;
  margin-bottom:10px;transition:color .15s;opacity:.65;
}

.default-page .footer-col a:hover{color:var(--teal);opacity:1;}

.default-page .footer-bottom{
  border-top:1px solid #E8EDF3;padding-top:28px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
}

.default-page .footer-bottom p{
  font-size:var(--nav-font-size);
  font-weight:500;letter-spacing:0.48px;color:rgba(10,0,0,.38);
}

.default-page .footer-bottom a{
  font-size:var(--nav-font-size);
  font-weight:500;letter-spacing:0.48px;
  color:rgba(10,0,0,.38);text-decoration:none;transition:color .15s;
}

.default-page .footer-bottom a:hover{color:var(--teal);}


.reveal{opacity:0;transform:translateY(18px);transition:opacity .55s ease,transform .55s ease;}

/* CMS pages use .page.cms-blocks (not .default-page) — reveal must work site-wide */
.reveal.in,
.default-page .reveal.in,
.cms-blocks .reveal.in,
.page .reveal.in{opacity:1;transform:translateY(0);}


.nav-links{position:relative;}

.default-page .nav-item{position:relative;display:flex;align-items:center;}

.default-page .nav-item > a{
  display:flex;align-items:center;gap:5px;
  font-size:15px;font-weight:500;letter-spacing:0.3px;
  color:#0a0000;text-decoration:none;transition:color .15s;
  padding:8px 0;white-space:nowrap;
}

.default-page .nav-item > a:hover{color:var(--teal);}

.default-page .nav-item > a .nav-arrow{
  font-size:9px;color:var(--text-muted);transition:transform .2s;
  display:inline-block;margin-top:1px;
}

.default-page .nav-item:hover > a .nav-arrow{transform:rotate(180deg);color:var(--teal);}

.default-page .dropdown{
  position:absolute;top:calc(100% + 10px);left:50%;
  min-width:220px;
  background:#fff;border:1px solid var(--border);border-radius:10px;
  box-shadow:0 8px 32px rgba(0,32,91,.12),0 2px 8px rgba(0,32,91,.06);
  padding:8px 0;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .18s,transform .18s,visibility .18s;
  transform:translateX(-50%) translateY(-4px);
  z-index:300;
}

.default-page .nav-item:hover .dropdown,
.default-page .nav-item:focus-within .dropdown{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.default-page .dropdown::before{
  content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%);
  border-left:7px solid transparent;border-right:7px solid transparent;
  border-bottom:7px solid var(--border);
}

.default-page .dropdown::after{
  content:'';position:absolute;top:-5px;left:50%;transform:translateX(-50%);
  border-left:6px solid transparent;border-right:6px solid transparent;
  border-bottom:6px solid #fff;
}

.default-page .dropdown a{
  display:block;padding:9px 18px;
  font-size:13.5px;font-weight:500;color:#0a0000;text-decoration:none;
  letter-spacing:0.2px;transition:background .12s,color .12s;
  white-space:nowrap;
}

.default-page .dropdown a:hover{background:var(--teal-pale);color:var(--teal);}

.default-page .nav-hamburger{
  display:none;flex-direction:column;gap:5px;cursor:pointer;
  background:none;border:none;padding:4px;
}

.default-page .nav-hamburger span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all .25s;}

.default-page .nav-mobile{
  display:none;position:fixed;top:70px;left:0;right:0;bottom:0;
  background:#fff;z-index:199;overflow-y:auto;padding:20px 6%;
  border-top:1px solid var(--border);
}

.default-page .nav-mobile.open{display:block;}

.default-page .mob-item{border-bottom:1px solid var(--border-light);}

.default-page .mob-main{
  display:flex;align-items:center;justify-content:space-between;
  padding:13px 0;font-size:15px;font-weight:500;color:#0a0000;
  text-decoration:none;cursor:pointer;background:none;border:none;width:100%;text-align:left;
}

.default-page .mob-main:hover{color:var(--teal);}

.default-page .mob-sub{display:none;padding-bottom:6px;}

.default-page .mob-sub.open{display:block;}

.default-page .mob-sub a{
  display:block;padding:8px 14px;font-size:13px;color:var(--text-sec);
  text-decoration:none;border-radius:6px;transition:background .12s,color .12s;
}

.default-page .mob-sub a:hover{background:var(--teal-pale);color:var(--teal);}

.default-page .mob-arrow{font-size:11px;transition:transform .2s;display:inline-block;}

.default-page .mob-arrow.open{transform:rotate(180deg);}


@media(max-width:1024px){
  .default-page .hero-inner{grid-template-columns:1fr;gap:48px;}
  .default-page .hero-cards{flex-direction:row;flex-wrap:wrap;}
  .default-page .hcard{flex:1;min-width:220px;}
  .default-page .what-grid,
  .default-page #platform .what-grid,
  .default-page .tab-pane.on,
  .default-page .ch-grid{grid-template-columns:1fr;gap:40px;}
  .default-page .modules-grid{grid-template-columns:1fr 1fr;}
  .default-page .arch-grid,
  .default-page .ug-grid{grid-template-columns:1fr 1fr;}
  .default-page h1.hero-title{font-size:42px;}
  .default-page h2.sh{font-size:34px;}
  .default-page .cta-h2{font-size:36px;}
  .default-page .arch-visual{padding:24px 20px;}
  .default-page .pillars{grid-template-columns:1fr 1fr;}
}

@media(max-width:768px){
  .default-page nav{padding:0 4%;}
  .default-page .nav-links{display:none;}
  .default-page .nav-hamburger{display:flex;}
  .default-page .nav-cta-desktop{display:none !important;}
  .default-page .section{padding:64px 4%;}
  .default-page .modules-grid{grid-template-columns:1fr 1fr;}
  .default-page .arch-grid,
  .default-page .ug-grid,
  .default-page .footer-top{grid-template-columns:1fr;}
  .default-page .hero{padding:100px 4% 60px;}
  .default-page .pillars{grid-template-columns:1fr;}
  .default-page .hero-stats{flex-wrap:wrap;gap:24px;}
  .default-page .what-grid{gap:32px;}
  .default-page .arch-layer{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .default-page .arch-layer-tag{
    text-align:left;
  }
  .default-page .arch-arrow{padding-left:0;}
  .default-page #platform h2.sh br{display:none;}
}

@media(max-width:480px){
  .default-page h1.hero-title{font-size:34px;}
  .default-page .modules-grid{grid-template-columns:1fr;}
  .default-page .ch-grid{grid-template-columns:1fr;}
  .default-page .hcard{min-width:100%;}
  .default-page .arch-visual{padding:20px 16px;border-radius:14px;}
  .default-page p.sd{font-size:15px;}
}

@media(prefers-reduced-motion:reduce){
  .default-page .hcard,
  .default-page .reveal{animation:none;transition:none;opacity:1;transform:none;}
}


.default-page .about-section{background:var(--off-white);padding:100px 6%;}

.default-page .about-hero{
  background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 55%,#0B2E78 100%);
  border-radius:20px;padding:72px 64px;margin-bottom:64px;position:relative;overflow:hidden;
}

.default-page .about-hero::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(0,163,173,.05) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(0,163,173,.05) 1px,transparent 1px);
  background-size:60px 60px;
}

.default-page .about-hero-inner{position:relative;z-index:2;
  /* max-width:760px; */
}

.default-page .about-hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,163,173,.15);border:1px solid rgba(0,163,173,.3);
  border-radius:20px;padding:5px 14px;
  font-size:11px;font-weight:600;color:var(--teal);letter-spacing:.1em;
  margin-bottom:24px;
}

.default-page .about-hero-title{
  font-family: var(--font-display);font-size:50px;line-height:1.1;
  color:#fff;margin-bottom:18px;font-weight:400;
}

.default-page .about-hero-title em{color:var(--teal);font-style:italic;}

.default-page .about-hero-desc{font-size:17px;color:rgba(255,255,255,.62);line-height:1.8;font-weight:300;}


.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;margin-bottom:64px;}

.default-page .about-label{font-size:11px;font-weight:700;letter-spacing:.12em;color:var(--teal);margin-bottom:12px;}

.default-page .about-h3{font-family: var(--font-display);font-size:32px;color:#FBCC09;margin-bottom:16px;font-weight:400;line-height:1.2;}

.default-page .about-p{font-size:15px;color:var(--text-sec);line-height:1.8;margin-bottom:16px;}

.default-page .about-p:last-child{margin-bottom:0;}


.product-cards{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:64px;}

.default-page .product-card{border-radius:16px;padding:36px 32px;position:relative;overflow:hidden;}

.default-page .product-card.houston{background:var(--navy);}

.default-page .product-card.odycey{background:var(--yellow);}

.default-page .product-card-badge{
  display:inline-block;font-size:10px;font-weight:700;
  letter-spacing:.1em;
  padding:4px 12px;border-radius:4px;margin-bottom:20px;
}

.default-page .houston .product-card-badge{background:rgba(0,163,173,.2);color:var(--teal);}

.default-page .odycey .product-card-badge{background:rgba(51,51,51,.12);color:var(--on-yellow);}

.default-page .product-card-name{
  font-family: var(--font-display);font-size:42px;font-weight:400;
  letter-spacing:-1px;margin-bottom:8px;line-height:1;
}

.default-page .houston .product-card-name{color:#fff;}

.default-page .odycey .product-card-name{color:var(--on-yellow);}

.default-page .product-card-tagline{font-size:13px;font-weight:600;margin-bottom:16px;}

.default-page .houston .product-card-tagline{color:var(--teal);}

.default-page .odycey .product-card-tagline{color:rgba(51,51,51,.6);}

.default-page .product-card-body{font-size:14px;line-height:1.75;}

.default-page .houston .product-card-body{color:rgba(255,255,255,.6);}

.default-page .odycey .product-card-body{color:rgba(51,51,51,.7);}

.default-page .product-card-decor{
  position:absolute;bottom:-20px;right:-20px;
  font-size:90px;opacity:.06;line-height:1;
}

.default-page .houston .product-card-decor{color:#fff;}

.default-page .odycey .product-card-decor{color:var(--on-yellow);}


.triple-c{
  background:var(--navy);border-radius:16px;padding:48px 40px;margin-bottom:64px;
}

.default-page .triple-c-header{text-align:center;margin-bottom:40px;}

.default-page .triple-c-header h3{font-family: var(--font-display);font-size:32px;color:#FBCC09;font-weight:400;}

.default-page .triple-c-header p{font-size:14px;color:rgba(255,255,255,.5);margin-top:8px;line-height:1.6;}

.default-page .triple-c-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;}

.default-page .c-card{
  background:rgba(0,163,173,.08);border:1px solid rgba(0,163,173,.18);
  border-radius:12px;padding:28px 24px;text-align:center;
}

.default-page .c-letter{
  font-family: var(--font-display);font-size:64px;color:var(--teal);
  line-height:1;margin-bottom:8px;font-weight:400;
}

.default-page .c-word{font-size:16px;font-weight:600;color:#fff;margin-bottom:10px;}

.default-page .c-desc{font-size:12px;color:rgba(255,255,255,.5);line-height:1.65;}


.about-quote{
  background:var(--yellow);border-radius:16px;padding:48px 40px;text-align:center;
}

.default-page .about-quote-icon{font-size:40px;margin-bottom:20px;opacity:.6;}

.default-page .about-quote-text{
  font-family: var(--font-display);font-size:28px;line-height:1.4;
  color:var(--on-yellow);margin-bottom:16px;font-weight:400;font-style:italic;
  /* max-width:700px; */
  margin-left:auto;margin-right:auto;
}

.default-page .about-quote-attr{font-size:13px;font-weight:600;color:rgba(51,51,51,.55);letter-spacing:.05em;}


.demo-section{
  background:linear-gradient(140deg,var(--navy-dark) 0%,var(--navy) 55%,#0B3278 100%);
  padding:100px 6%;position:relative;overflow:hidden;
}

.demo-section::before{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(0,163,173,.04) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(0,163,173,.04) 1px,transparent 1px);
  background-size:60px 60px;
}

.demo-section .demo-ring{
  position:absolute;border-radius:50%;border:1px solid rgba(0,163,173,.07);
  top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;
}

.demo-section .demo-inner{
  /* max-width:960px; */
  margin:0 auto;position:relative;z-index:2;
}

.demo-section .demo-header{text-align:center;margin-bottom:52px;}

.demo-section .demo-h2{font-family: var(--font-display);font-size:44px;color:#fff;margin-bottom:14px;font-weight:400;line-height:1.15;}

.demo-section .demo-desc{font-size:16px;color:rgba(255,255,255,.55);line-height:1.75;}

.demo-section .demo-form-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;padding:48px 48px;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.demo-section .demo-form-card.apollo-plat{
  border-radius:0;
  /* Keep frosted card look; apollo only adds corner ticks */
  background:rgba(255,255,255,.04);
  padding:48px;
  gap:0;
  min-height:0;
}

.demo-section .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}

.demo-section .form-group{display:flex;flex-direction:column;gap:7px;}

.demo-section .form-group.full{grid-column:1/-1;}

.demo-section .form-label{font-size:12px;font-weight:600;color:rgba(255,255,255,.6);letter-spacing:.04em;}

.demo-section .form-input,
.demo-section .form-select,
.demo-section .form-textarea{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.50);
  border-radius:8px;padding:12px 16px;
  font-size:14px;color:#fff;outline:none;
  transition:border-color .2s,background .2s;
  font-family: var(--font-ui);width:100%;
  box-sizing:border-box;
}

.demo-section .form-input::placeholder,
.demo-section .form-textarea::placeholder{color:rgba(255,255,255,.25);}

.demo-section .form-input:focus,
.demo-section .form-select:focus,
.demo-section .form-textarea:focus{
  border-color:var(--teal);background:rgba(255,255,255,.1);
}

.demo-section .form-select{appearance:none;cursor:pointer;}

.demo-section .form-select option{background:var(--navy);color:#fff;}

.demo-section .form-textarea{resize:vertical;min-height:110px;line-height:1.6;}

.demo-section .form-consent{
  display:flex;align-items:flex-start;gap:12px;
  font-size:13px;color:rgba(255,255,255,.75);line-height:1.6;
}

.demo-section .form-consent input[type=checkbox]{
  margin-top:2px;flex-shrink:0;width:18px;height:18px;min-width:18px;min-height:18px;
  accent-color:var(--teal);cursor:pointer;
}

.demo-section .form-policy-link{
  color:var(--teal,#00a3ad);
  text-decoration:underline;
}

.demo-section .form-field-error,
.demo-section .form-error{
  margin:6px 0 0;
  font-size:0.875rem;
  color:#fca5a5;
  font-weight:600;
}

.demo-section .form-field-error{
  white-space:nowrap;
}

.demo-section .btn-submit-note.form-error{
  margin-top:12px;
  text-align:center;
}

.demo-section .form-submit{
  display:flex;justify-content:center;align-items:center;gap:12px;
  margin-top:8px;flex-wrap:wrap;
}

.demo-section .btn-submit{
  background:var(--apollo-amber, #FBCC09);
  color:#020617;
  font-size:0.85rem;font-weight:700;letter-spacing:.02em;
  padding:12px 18px;border-radius:0;border:1px solid var(--apollo-amber, #FBCC09);cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:48px;
  transition:background .15s,border-color .15s,transform .15s;font-family:inherit;
}

.demo-section .btn-submit:hover{background:#d97706;border-color:#d97706;transform:translateY(-1px);}
.demo-section .btn-submit:disabled{opacity:.7;cursor:not-allowed;transform:none;}

.demo-section .btn-submit-note{font-size:12px;color:rgba(255,255,255,1);text-align:center;}

.demo-section .form-success{
  display:none;text-align:center;padding:40px 20px;
}

.demo-section .form-success-icon{font-size:48px;margin-bottom:16px;}

.demo-section .form-success h3{font-family: var(--font-display);font-size:28px;color:#FBCC09;margin-bottom:10px;}

.demo-section .form-success p{font-size:15px;color:rgba(255,255,255,.55);line-height:1.7;}

.demo-section .req{color:var(--teal,#00a3ad);}

@media(max-width:768px){
  .default-page .about-hero{padding:48px 28px;}
  .default-page .about-hero-title{font-size:36px;}
  .default-page .about-grid{grid-template-columns:1fr;}
  .default-page .product-cards{grid-template-columns:1fr;}
  .default-page .triple-c-grid{grid-template-columns:1fr;}
  .demo-section{padding:64px 5%;}
  .demo-section .demo-form-card,
  .demo-section .demo-form-card.apollo-plat{padding:28px 20px;}
  .demo-section .form-grid{grid-template-columns:1fr;}
  .demo-section .form-group.full{grid-column:1;}
  .demo-section .demo-h2{font-size:32px;}
}




/* =============================================================================
   Shared site shell (header + footer on every page)
   ============================================================================= */
.app-main {
  padding-top: 70px;
  min-height: calc(100vh - 70px);
}

#nav.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 70px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-bottom: 1px solid #e8edf3;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
#nav.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

/* Same logo box for both theme assets (different native aspect ratios) */
#nav.site-header .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 150px;
  height: 40px;
}
#nav.site-header .nav-logo img {
  width: 150px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
#nav.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-top: 15px;
}
#nav.site-header .theme-switch--header {
  flex-shrink: 0;
}
#nav.site-header .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
#nav.site-header .nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--nav-font-size) !important;
  font-weight: 600;
  color: #0a0000;
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
}
#nav.site-header .nav-item > a:hover,
#nav.site-header .nav-item > a.active {
  color: var(--iki-teal);
}
#nav.site-header .nav-arrow {
  font-size: 0.7rem !important;
  opacity: 0.7;
  transition: transform .2s;
}
#nav.site-header .nav-item:hover > a .nav-arrow,
#nav.site-header .nav-item:focus-within > a .nav-arrow,
#nav.site-header .nav-item.open > a .nav-arrow {
  transform: rotate(180deg);
  color: var(--iki-teal);
}
#nav.site-header .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid #e8edf3;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  z-index: 220;
}
#nav.site-header .nav-item:hover .dropdown,
#nav.site-header .nav-item:focus-within .dropdown,
#nav.site-header .nav-item.open .dropdown {
  display: block;
}
#nav.site-header .dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 1rem !important;
  color: #0a0000;
  text-decoration: none;
  font-weight: 500;
}
#nav.site-header .dropdown a:hover {
  background: var(--iki-teal-pale);
  color: var(--iki-teal);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  margin: 0;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  order: -1;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--iki-navy);
  border-radius: 2px;
  transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.nav-backdrop.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  max-width: 320px;
  background: #fff;
  z-index: 199;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 78px 22px 28px;
  border-right: 1px solid var(--iki-border);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s;
}
.nav-mobile.open {
  transform: translateX(0);
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.mob-item { border-bottom: 1px solid var(--iki-border-soft); }
.mob-main-row {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.mob-main-row .mob-main {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  justify-content: flex-start;
}
.mob-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 48px;
  padding: 0 8px;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.mob-toggle:hover {
  color: var(--iki-teal);
}
.mob-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  min-height: 48px;
  font-size: 1rem !important;
  font-weight: 500;
  color: #0a0000;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.mob-main:hover { color: var(--iki-teal); }
.mob-sub { display: none; padding-bottom: 6px; }
.mob-sub.open { display: block; }
.mob-sub a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 1rem !important;
  color: var(--iki-muted);
  text-decoration: none;
  border-radius: 6px;
}
.mob-sub a:hover { background: var(--iki-teal-pale); color: var(--iki-teal); }
.mob-arrow { font-size: 0.75rem !important; transition: transform .2s; display: inline-block; }
.mob-arrow.open { transform: rotate(180deg); }
.mob-cta-wrap { margin-top: 20px; }

@media (max-width: 1100px) {
  #nav.site-header .nav-links,
  #nav.site-header .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
  #nav.site-header .theme-switch--header { margin-left: auto; }
}

@media (max-width: 960px) {
  .site-footer .footer-top,
  .site-footer .footer-top--menu { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-footer .footer-top,
  .site-footer .footer-top--menu { grid-template-columns: 1fr; }
  .footer-col--menu { grid-template-columns: 1fr; }
  #nav.site-header {
    padding: 0 4%;
    gap: 10px;
  }
  #nav.site-header .nav-logo,
  #nav.site-header .nav-logo img {
    width: 130px;
    height: 36px;
  }
}

/* =============================================================================
   Geometric marks ? icon alternative (CSS shapes, no icon font)
   ============================================================================= */
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(0,163,173,.14), rgba(0,32,91,.08));
  border: 1px solid rgba(0,163,173,.22);
  position: relative;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 0.4rem;
  animation: mark-in 0.55s ease-out both;
}
.mark::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: var(--iki-teal);
  border-radius: 3px;
}
.acard-ico.mark,
.chcard-ico.mark,
.hcard-ico.mark,
.mcard-ico.mark {
  margin-right: 0;
}
.acard-ico.navy.mark { background: rgba(0,32,91,.12); border-color: rgba(0,32,91,.2); }
.acard-ico.navy.mark::before { background: var(--iki-navy); }
.acard-ico.teal.mark { background: rgba(0,163,173,.14); }

.mark-pie::before {
  width: 14px; height: 14px; border-radius: 50%;
  background: conic-gradient(var(--iki-teal) 0 70%, rgba(0,163,173,.25) 70% 100%);
}
.mark-shield::before {
  width: 12px; height: 14px;
  clip-path: polygon(50% 0, 100% 20%, 100% 60%, 50% 100%, 0 60%, 0 20%);
  border-radius: 0;
}
.mark-grid::before {
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--iki-teal), var(--iki-teal)) 0 0 / 6px 6px no-repeat,
    linear-gradient(var(--iki-teal), var(--iki-teal)) 8px 0 / 6px 6px no-repeat,
    linear-gradient(var(--iki-navy), var(--iki-navy)) 0 8px / 6px 6px no-repeat,
    linear-gradient(var(--iki-teal), var(--iki-teal)) 8px 8px / 6px 6px no-repeat;
  border-radius: 1px;
}
.mark-tiles::before {
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--iki-teal) 0 0) 0 0 / 100% 4px no-repeat,
    linear-gradient(var(--iki-teal) 0 0) 0 5px / 100% 4px no-repeat,
    linear-gradient(var(--iki-navy) 0 0) 0 10px / 100% 4px no-repeat;
}
.mark-dot::before { width: 8px; height: 8px; border-radius: 50%; }
.mark-cloud::before {
  width: 16px; height: 10px; border-radius: 10px;
  box-shadow: -5px 2px 0 -1px var(--iki-teal);
}
.mark-nodes::before {
  width: 14px; height: 14px; border-radius: 0; background: transparent;
  box-shadow:
    0 0 0 3px var(--iki-teal),
    10px 8px 0 -1px var(--iki-navy),
    0 10px 0 -1px var(--iki-teal);
}
.mark-ring::before {
  width: 14px; height: 14px; border-radius: 50%;
  background: transparent; border: 3px solid var(--iki-teal);
  box-sizing: border-box;
}
.mark-person::before {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 9px 0 -1px var(--iki-teal), 0 9px 0 3px transparent;
}
.mark-card::before {
  width: 14px; height: 10px; border-radius: 2px;
  box-shadow: inset 0 -3px 0 rgba(255,255,255,.35);
}
.mark-swap::before {
  width: 14px; height: 2px; border-radius: 1px;
  box-shadow: 0 -4px 0 var(--iki-navy), 0 4px 0 var(--iki-teal);
}
.mark-bars::before {
  width: 14px; height: 14px; border-radius: 0; background:
    linear-gradient(var(--iki-teal), var(--iki-teal)) bottom left / 3px 8px no-repeat,
    linear-gradient(var(--iki-navy), var(--iki-navy)) bottom center / 3px 12px no-repeat,
    linear-gradient(var(--iki-teal), var(--iki-teal)) bottom right / 3px 6px no-repeat;
}
.mark-play::before {
  width: 0; height: 0; background: transparent;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--iki-teal);
  border-radius: 0;
}
.mark-pulse::before {
  width: 10px; height: 10px; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,163,173,.25);
}
.mark-alert::before {
  width: 0; height: 0; background: transparent; border-radius: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--iki-yellow);
}
.mark-folder::before {
  width: 14px; height: 10px; border-radius: 0 2px 2px 2px;
  box-shadow: -2px -3px 0 -1px var(--iki-navy);
}
.mark-link::before {
  width: 10px; height: 6px; border-radius: 6px;
  background: transparent; border: 2px solid var(--iki-teal);
  box-shadow: 4px 4px 0 -1px var(--iki-navy);
}
.mark-target::before {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle, var(--iki-teal) 20%, transparent 22% 45%, var(--iki-teal) 47% 55%, transparent 57%);
}
.mark-chat::before {
  width: 14px; height: 10px; border-radius: 4px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 70%, 50% 100%, 50% 70%, 0 70%);
}
.mark-stack::before {
  width: 14px; height: 14px; border-radius: 0; background:
    linear-gradient(var(--iki-teal) 0 0) 0 0 / 100% 3px no-repeat,
    linear-gradient(var(--iki-navy) 0 0) 0 5px / 100% 3px no-repeat,
    linear-gradient(var(--iki-teal) 0 0) 0 10px / 100% 3px no-repeat;
}
.mark-building::before {
  width: 12px; height: 14px; border-radius: 1px;
  background:
    linear-gradient(#fff 0 0) 2px 3px / 3px 3px no-repeat,
    linear-gradient(#fff 0 0) 7px 3px / 3px 3px no-repeat,
    linear-gradient(#fff 0 0) 2px 8px / 3px 3px no-repeat,
    linear-gradient(#fff 0 0) 7px 8px / 3px 3px no-repeat,
    var(--iki-navy);
}
.mark-spark::before {
  width: 4px; height: 14px; border-radius: 2px;
  box-shadow: 0 0 0 0 var(--iki-teal), 5px 3px 0 -1px var(--iki-yellow), -5px 3px 0 -1px var(--iki-teal);
}
.mark-check::before {
  width: 8px; height: 14px; background: transparent; border-radius: 0;
  border-right: 3px solid var(--iki-teal);
  border-bottom: 3px solid var(--iki-teal);
  transform: rotate(40deg) translateY(-2px);
}
.mark-mic::before {
  width: 8px; height: 12px; border-radius: 6px;
  box-shadow: 0 6px 0 -2px var(--iki-navy);
}
.mark-chip::before {
  width: 14px; height: 10px; border-radius: 2px;
  box-shadow: -3px 0 0 -1px var(--iki-navy), 3px 0 0 -1px var(--iki-navy);
}
.mark-bolt::before {
  width: 8px; height: 14px; border-radius: 0;
  clip-path: polygon(40% 0, 100% 0, 55% 45%, 90% 45%, 0 100%, 40% 55%, 10% 55%);
}
.mark-code::before {
  width: 14px; height: 10px; border-radius: 0; background: transparent;
  border-left: 3px solid var(--iki-teal);
  border-right: 3px solid var(--iki-teal);
  transform: skewX(-12deg);
}
.mark-device::before {
  width: 10px; height: 14px; border-radius: 2px;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,.4);
}
.mark-orbit::before {
  width: 18px; height: 18px; border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(0,163,173,.35);
  box-shadow: 6px -4px 0 -5px var(--iki-teal);
}
.mark-quote::before {
  width: 8px; height: 8px; border-radius: 2px;
  box-shadow: 8px 0 0 var(--iki-teal);
}

.mark-letters {
  width: 44px; height: 44px; border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.75rem !important;
  font-weight: 700;
  color: var(--iki-navy);
  letter-spacing: 0.04em;
}
.mark-letters::before { display: none; }
.mark-letters::after {
  content: attr(data-letters);
}

.mark-arrow {
  display: inline-block;
  width: 12px; height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-right: 8px;
  vertical-align: middle;
}

.dcard-title .mark {
  width: 28px; height: 28px; border-radius: 8px; margin-right: 0;
}
.dcard-title .mark::before { width: 10px; height: 10px; }

.pillar .mark { margin: 0; }
.ugcard-ico.mark { width: 44px; height: 44px; margin: 0; border-radius: 12px; }
.product-card-decor.mark {
  position: absolute; right: 24px; top: 24px;
  width: 56px; height: 56px; opacity: 0.35; margin: 0;
  background: transparent; border: 0;
}
.about-quote-icon.mark {
  width: 48px; height: 48px; margin-bottom: 20px; opacity: 0.7;
}
.form-success-icon.mark {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px;
}

/* =============================================================================
   Contact ? Addresses (ikione.com style office grid)
   ============================================================================= */
.addresses-section {
  background: var(--iki-white);
  padding-top: 64px;
  padding-bottom: 80px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  /* max-width: 860px; */
  margin: 0 auto;
}

.office-card {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.office-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.office-brand {
  color: var(--iki-black);
  margin-right: 0.35em;
}

.office-place {
  color: var(--iki-yellow-alt);
}

.office-lines p {
  margin: 0;
  color: var(--iki-black);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.office-phone {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--iki-teal);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.office-phone:hover {
  text-decoration: underline;
}

.office-comm {
  max-width: 420px;
  margin: 64px auto 0;
  text-align: left;
}

.comm-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.comm-lines--row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  width: 100%;
}

.comm-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--iki-teal);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.comm-row:hover {
  color: var(--iki-teal);
}

.comm-mail-svg {
  width: 28px;
  height: 28px;
  margin: 0;
  flex-shrink: 0;
  color: #ffffff;
}

.office-card.apollo-plat .comm-mail-svg,
.office-comm .comm-mail-svg {
  color: #ffffff;
}

.person-social--comm {
  position: static;
  top: auto;
  right: auto;
  margin: 0;
  margin-left: auto;
}

.person-social--comm a {
  display: inline-flex;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  line-height: 0;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.person-social--comm .person-social__linkedin {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}

/* Contact Communication box only — LinkedIn ~50% larger */
.contact-split-comm .person-social--comm a,
.office-comm.contact-split-comm .person-social--comm a,
.about-tabs-panel .office-comm .person-social--comm a {
  width: 48px;
  height: 48px;
}

.contact-split-comm .person-social--comm .person-social__linkedin,
.office-comm.contact-split-comm .person-social--comm .person-social__linkedin,
.about-tabs-panel .office-comm .person-social--comm .person-social__linkedin {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}

.person-social--comm a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.45);
  opacity: 0.92;
}

@media (max-width: 720px) {
  .office-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 420px;
  }

  .office-comm {
    margin-top: 48px;
  }
}

/* =============================================================================
   Contact split — form (left) + addresses (right)
   ============================================================================= */
.contact-split-section {
  padding-top: 48px;
  padding-bottom: 80px;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem 3.5rem;
  align-items: start;
}

.contact-split-header {
  margin-bottom: 1.25rem;
}

.contact-split-header h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.55rem;
  line-height: 1.25;
}

.contact-split-header .lede {
  margin: 0;
  max-width: 36rem;
  color: var(--iki-muted, #64748b);
}

.contact-split-form {
  min-width: 0;
}

/* Reuse classic message-form look inside the left column */
.contact-split-form.demo-section {
  padding: 28px 24px;
  border-radius: 0;
  overflow: visible;
}

.contact-split-form.demo-section .demo-inner {
  max-width: none;
  margin: 0;
}

.contact-split-form.demo-section .demo-form-card,
.contact-split-form.demo-section .demo-form-card.apollo-plat {
  padding: 28px 24px;
  min-height: 0;
  overflow: visible;
}

/* Contact tab inside About tabs */
.about-tabs-panel .about-contact-split {
  margin-top: 0.5rem;
}

.about-tabs-panel .about-contact-split.contact-split {
  align-items: start;
}

.about-tabs-panel .contact-split-form.demo-section {
  padding: 0;
  background: transparent;
}

.contact-split-addresses {
  min-width: 0;
  max-width: 100%;
}

.contact-split-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contact-split-office-grid .office-card {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-split-comm {
  max-width: none;
  margin: 1.75rem 0 0;
}

/* iPad Pro / tablet — stack form + addresses before cards clip */
@media (max-width: 1280px) {
  .contact-split,
  .about-tabs-panel .about-contact-split.contact-split {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .contact-split-office-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-split-office-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-split-office-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   Careers split — young (left) + experienced (right) panels
   ============================================================================= */
.careers-split-section {
  padding-top: 48px;
  padding-bottom: 80px;
}

.careers-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.careers-split > .apollo-hero-moonshot.careers-split-experienced {
  min-width: 0;
  box-sizing: border-box;
}

.careers-split-experienced .apollo-hero-moonshot-title {
  margin-bottom: 14px;
  color: #fbcc09;
}

.careers-split-experienced .careers-panel__track {
  margin: 0 0 16px;
  align-self: flex-start;
}

.careers-split-experienced .careers-moonshot-prose {
  margin-bottom: 28px;
}

.careers-split-experienced .careers-moonshot-prose p + p {
  margin-top: 0.85em;
}

.careers-split-experienced .apollo-hero-moonshot-cta {
  margin-top: auto;
}

.careers-split-col,
.careers-panel {
  min-width: 0;
}

.careers-panel {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.5rem;
  height: 100%;
  box-sizing: border-box;
}

.careers-panel--young {
  padding: 1.35rem 1.1rem 1.35rem;
  background: transparent;
  border: 1px solid rgba(251, 204, 9, 0.35);
}

.careers-panel--young .careers-panel__title {
  color: #fbcc09;
}

.careers-panel--young .careers-panel__email {
  color: rgba(226, 232, 240, 0.9);
}

.careers-panel--young .careers-panel__email a {
  color: #fbcc09;
}

/* Interns Certification Track — per-level left note | center badge | right note */
.interns-track {
  color: #e2e8f0;
  border-radius: 0;
  padding: 1.35rem 0.85rem 1.5rem;
  margin: 0 0 1rem;
}

.interns-track__title {
  margin: 0 0 1.35rem;
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FBCC09;
  letter-spacing: 0.01em;
}

.interns-track__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0.35rem 0;
}

.interns-track__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  z-index: 0;
  pointer-events: none;
}

.interns-track__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.85rem 1.15rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(251, 204, 9, 0.35);
  background: transparent;
}

.interns-track__note {
  margin: 0;
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.55;
}

.interns-track__note p {
  margin: 0;
}

.interns-track__note--left {
  text-align: right;
  justify-self: end;
  max-width: 18rem;
}

.interns-track__note--right {
  text-align: left;
  justify-self: start;
  max-width: 18rem;
}

.interns-track__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 7.5rem;
}

.interns-track__badge {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  color: #2f2f2f;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 16px rgba(47, 47, 47, 0.12);
  text-align: center;
  line-height: 1.15;
}

.interns-track__axis {
  display: flex;
  justify-content: center;
}

.interns-track__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #9ec9f5;
  color: #2f2f2f;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.interns-track__row--accent .interns-track__node {
  background: #fbcc09;
}

.interns-track__dur {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FBCC09;
  white-space: nowrap;
  text-align: center;
  background-color: #232324;
  border-radius: 20px;
  padding: 5px;
  border: 1px solid #FBCC09;
}

.interns-track__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.85rem;
  margin-top: 1.35rem;
  padding: 0 0.35rem;
}

.interns-track__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #e2e8f0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.interns-track__feature p {
  margin: 0;
}

.interns-track__feature-icon {
  flex: 0 0 auto;
  color: #FBCC09;
  font-size: 0.85rem;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .interns-track__timeline::before {
    left: 18px;
    transform: none;
  }

  .interns-track__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    /* Clear the left timeline line so badges/text don’t collide with it */
    padding: 1rem 1rem 1rem 2.85rem;
  }

  .interns-track__mid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem 0.75rem;
    min-width: 0;
    order: -1;
  }

  .interns-track__note--left,
  .interns-track__note--right {
    text-align: left;
    justify-self: stretch;
    max-width: none;
  }

  .interns-track__dur {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .interns-track__highlights {
    grid-template-columns: 1fr;
  }
}

.careers-panel__header {
  margin-bottom: 1.35rem;
}

.careers-panel__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fbcc09;
}

.careers-panel__lead {
  margin: 0 0 0.85rem;
  color: rgba(226, 232, 240, 0.78);
}

.careers-panel__track {
  margin: 0;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em; 
  color: #fbcc09;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(251, 204, 9, 0.55);
}

.careers-panel__highlights {
  margin-top: 1.25rem;
}

.careers-panel__email {
  margin: auto 0 0;
  padding-top: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}

.careers-panel__email a {
  color: #fbcc09;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.careers-panel__email a:hover {
  color: #fde047;
}

/* Compact certification track inside careers panel */
.cert-track-timeline--panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  position: relative;
}

.cert-track-timeline--panel::before {
  content: none;
}

.cert-track-row--panel {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.cert-track-row--panel .cert-track-axis {
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}

.cert-track-row--panel .cert-track-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  text-align: left;
}

.cert-track-row--panel .cert-track-badge {
  position: static;
  transform: none;
  margin: 0;
}

.cert-track-row--panel .cert-track-badge::after {
  display: none;
}

.cert-track-row--panel .cert-track-dur {
  margin: 0;
  text-align: left;
}

.cert-track-row--panel .cert-track-copy {
  width: 100%;
  text-align: left;
}

.careers-panel .cert-track-highlights {
  grid-template-columns: 1fr;
}

.careers-split-header {
  margin-bottom: 1.25rem;
}

.careers-split-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  line-height: 1.25;
}

.careers-split-header .lede {
  margin: 0;
  color: var(--iki-muted, #64748b);
}

.careers-split-sub {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.careers-level-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.careers-level-card {
  padding: 1.1rem 1.2rem;
}

.careers-level-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.careers-level-name {
  font-weight: 700;
  font-size: 1rem;
}

.careers-level-dur {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--apollo-amber, #FBCC09);
  white-space: nowrap;
}

.careers-level-points p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--iki-muted, #64748b);
}

.careers-level-points p:last-child {
  margin-bottom: 0;
}

.careers-highlights {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--iki-muted, #64748b);
  font-size: 0.92rem;
  line-height: 1.5;
}

.careers-prose {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.careers-prose .lede {
  margin: 0;
}

.careers-prose .lede:last-child {
  margin-top: 0;
  padding-top: 0;
}

.careers-panel__email--inline {
  margin-top: auto;
  padding-top: 1.35rem;
}

.careers-prose .lede a[href^="mailto:"] {
  color: #fbcc09;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.careers-split-actions {
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .careers-split,
  .about-careers-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =============================================================================
   About tabs — Apollo underline tabs (About us / History / People)
   ============================================================================= */
.about-tabs-section {
  padding-top: 28px;
  padding-bottom: 80px;
  scroll-margin-top: 88px;
  background: linear-gradient(160deg, #020617 0%, #0a1628 55%, #0b1f3a 100%);
  color: #e2e8f0;
}

.about-tabs-section .lede,
.about-tabs-section .about-tabs-lead,
.about-tabs-section .about-tabs-prose .lede {
  color: rgba(226, 232, 240, 0.78);
}

.about-tabs-section .muted {
  color: rgba(148, 163, 184, 0.9);
}

.about-tabs-section .support-downloads {
  margin-top: 4px;
}

.about-tabs-section .support-downloads .lede {
  margin-bottom: 1.25rem;
}

.about-tabs-section .about-tabs-title {
  color: #f8fafc;
}

.about-tabs-section .person-role {
  color: rgba(148, 163, 184, 0.95);
}

.about-tabs-inner {
  min-width: 0;
}

.about-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  margin-bottom: 36px;
}

.about-tabs-btn {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 18px;
  min-height: 44px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 1);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.about-tabs-btn:hover {
  color: #e2e8f0;
}

.about-tabs-btn.is-active {
  color: var(--apollo-cyan, #FBCC09);
  border-bottom-color: var(--apollo-cyan, #22d3ee);
}

.about-tabs-panel {
  display: none;
}

.about-tabs-panel.is-active {
  display: block;
}

.about-tabs-title {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.about-tabs-lead {
  margin: 0 0 28px;
  /* max-width: 52rem; */
}

.about-tabs-prose {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* max-width: 52rem; */
}

.about-tabs-prose .lede {
  margin: 0;
}

.about-tabs-panel .timeline {
  margin-top: 8px;
}

.about-tabs-panel .people-grid {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .about-tabs-btn {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .about-tabs-title {
    font-size: 1.4rem;
  }
}

/* =============================================================================
   Customers — logo boxes (+ side-by-side customers / partners)
   ============================================================================= */
.customers-section {
  background: var(--iki-off-white);
  padding-top: 64px;
  padding-bottom: 80px;
}

.customers-intro {
  margin-bottom: 40px;
}

.customers-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem 3.5rem;
  align-items: start;
}

.customers-split-col {
  min-width: 0;
}

.customers-split-header {
  margin-bottom: 1.25rem;
}

.customers-split-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--iki-navy);
}

[data-theme="apollo"] .customers-split-header h2 {
  color: #f8fafc;
}

.customers-split-header .lede,
.customers-split-header .customers-intro {
  margin: 0;
  max-width: none;
  color: var(--iki-muted, #64748b);
}

.customers-split .logo-grid--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customers-split .logo-grid--partners {
  grid-template-columns: 1fr;
  justify-content: stretch;
}

@media (max-width: 960px) {
  .customers-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .customers-split .logo-grid--partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Customers page: no content max-width constraints */
.customers-page .section-inner,
.customers-page .customers-intro,
.customers-page .lede,
.customers-page .page-hero p {
  max-width: none;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo-grid--partners {
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: start;
}

.partners-block {
  margin-top: 64px;
}

.partners-block h2 {
  margin-bottom: 12px;
  color: var(--iki-navy);
  font-size: 1.5rem;
}

[data-theme="apollo"] .partners-block h2 {
  color: #f8fafc;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 28px 24px;
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 163, 173, 0.28);
}

.logo-card img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

/* =============================================================================
   Partners
   ============================================================================= */
.partners-intro-section {
  padding-top: 56px;
  padding-bottom: 24px;
}

.partners-lede {
  max-width: 720px;
  margin: 0;
}

.partners-type-grid,
.partners-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.partners-type-card,
.partners-benefit-card {
  position: relative;
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 14px;
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partners-type-card:hover,
.partners-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 163, 173, 0.28);
}

.partners-type-card > .mark,
.partners-benefit-card > .mark {
  position: absolute;
  top: 22px;
  right: 22px;
  margin: 0;
}

.partners-type-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--iki-teal);
  margin-bottom: 10px;
}

.partners-type-card h3,
.partners-benefit-card h3,
.partners-step h3 {
  color: #FBCC09;
  font-size: 1.25rem;
  margin: 0 0 10px;
  padding-right: 48px;
  font-family: var(--font-display);
}

.partners-type-card p,
.partners-benefit-card p,
.partners-step p {
  margin: 0;
  color: var(--iki-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.partners-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.partners-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.partners-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--iki-navy);
  color: var(--iki-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
}

.partners-cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--iki-off-white);
  border: 1px solid var(--iki-border);
  border-radius: 16px;
  padding: 40px 44px;
}

.partners-cta-panel h2 {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .partners-type-grid,
  .partners-benefit-grid,
  .partners-steps,
  .partners-cta-panel {
    grid-template-columns: 1fr;
  }

  .partners-cta-panel {
    padding: 28px 24px;
  }
}

/* =============================================================================
   Static pages (Careers, Contact message, Login, solution deep-links)
   ============================================================================= */
.static-page-body {
  /* max-width: 760px; */
}

.static-page-para {
  margin: 0 0 1.25rem;
}

/* Inline Huston / Odycey (and similar) tab jumps in CMS prose */
a.cms-tab-link,
.static-page-para a.cms-tab-link,
.lede a.cms-tab-link,
.static-page-para a[href*="#huston"],
.static-page-para a[href*="#odycey"],
.lede a[href*="#huston"],
.lede a[href*="#odycey"] {
  color: #FBCC09;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

a.cms-tab-link:hover,
.static-page-para a.cms-tab-link:hover,
.lede a.cms-tab-link:hover,
.static-page-para a[href*="#huston"]:hover,
.static-page-para a[href*="#odycey"]:hover,
.lede a[href*="#huston"]:hover,
.lede a[href*="#odycey"]:hover {
  color: #fde047;
}

.static-page-para:last-of-type {
  margin-bottom: 0;
}

.static-page-para ul,
.compliance-reg-list {
  list-style: disc;
  margin: 1.25rem 0 1.5rem;
  padding-left: 1.35rem;
  /* max-width: 52rem; */
}

.static-page-para ul li,
.compliance-reg-list li {
  margin: 0 0 0.9rem;
  color: var(--iki-muted, #64748b);
  line-height: 1.7;
  font-size: 1.05rem;
}

.static-page-para ul li:last-child,
.compliance-reg-list li:last-child {
  margin-bottom: 0;
}

.static-page-para ul strong,
.compliance-reg-list strong {
  color: var(--iki-navy, #0f172a);
  font-weight: 700;
}

[data-theme="apollo"] .static-page-para ul li,
[data-theme="apollo"] .compliance-reg-list li {
  color: rgba(226, 232, 240, 0.82);
}

[data-theme="apollo"] .static-page-para ul strong,
[data-theme="apollo"] .compliance-reg-list strong {
  color: #f8fafc;
}

/* Compliance regulatory pillars (icon + stand + copy) */
.compliance-pillars-section {
  padding-top: 8px;
  padding-bottom: 48px;
}

.compliance-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
  margin: 8px 0 0;
  align-items: stretch;
}

.compliance-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  min-width: 0;
  border: 1px solid #fbcc0969;
  padding: 10px;
  height: 100%;
  background-color: #00000059;
}

.compliance-pillar__svg {
  width: 58px;
  height: 58px;
  margin: 0 0 14px;
  color: #ffffff;
  flex-shrink: 0;
}

.compliance-pillar__title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  /* Reserve 2 lines so bodies (e.g. under “DORA” vs “GDPR…”) start on the same row */
  min-height: calc(1.15rem * 1.25 * 3);
  width: 100%;
  color: #FBCC09;
  letter-spacing: 0.01em;
  text-align: center;
}

.compliance-pillar__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
  max-width: 18rem;
  width: 100%;
  flex: 1 1 auto;
}

.compliance-pillar__body p {
  margin: 0;
}

.compliance-pillars-closing {
  /* max-width: 52rem; */
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

[data-theme="apollo"] .compliance-pillar__title {
  color: #FBCC09;
}

[data-theme="apollo"] .compliance-pillar__body {
  color: rgba(226, 232, 240, 0.82);
}

@media (max-width: 1024px) {
  .compliance-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }
}

@media (max-width: 640px) {
  .compliance-pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compliance-pillar__body {
    max-width: 22rem;
  }
}

/* CMS Quill HTML may wrap body copy in <p> — nest cleanly inside lede containers */
.lede p,
.static-page-para p,
.apollo-plat-lead p,
.customers-intro p,
.demo-desc p {
  margin: 0 0 0.85em;
}

.lede p:last-child,
.static-page-para p:last-child,
.apollo-plat-lead p:last-child,
.customers-intro p:last-child,
.demo-desc p:last-child {
  margin-bottom: 0;
}

.static-page-actions {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid--partners {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid--partners {
    grid-template-columns: 1fr;
  }

  .logo-card {
    min-height: 120px;
  }
}

/* =============================================================================
   About us / History timeline / People
   ============================================================================= */
.about-prose .lede {
  /* max-width: 760px; */
  margin-bottom: 1.25rem;
}

.history-section {
  background: transparent;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #FBCC09 0%, #3b82f6 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 16px;
  margin-bottom: 36px;
  align-items: start;
}

.timeline-item:not(.timeline-right) .timeline-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item:not(.timeline-right) .timeline-marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item.timeline-right .timeline-card {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.timeline-item.timeline-right .timeline-marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline-marker {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--iki-teal);
  border: 3px solid rgba(2, 6, 23, 0.9);
  box-shadow: 0 0 0 2px var(--iki-teal);
}

.timeline-item--huston .timeline-dot {
  background: #FBCC09;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.55);
}

.timeline-item--odycey .timeline-dot {
  background: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.55);
}

.timeline-card {
  background: transparent;
  border: 1px solid var(--iki-border);
  border-radius: 0;
  padding: 22px 24px;
  box-shadow: none;
}

/* Reuse home platform card look on timeline */
.timeline-card.apollo-plat {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0;
  box-shadow: none;
  padding: 22px 24px;
  gap: 10px;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.timeline-card.apollo-plat--huston {
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
  border-color: #FBCC09;
}

.timeline-card.apollo-plat--odycey {
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
  border-color: #FBCC09;
}

.timeline-year {
  display: block;
  margin: 0 0 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #FBCC09;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: none;
  align-self: stretch;
}

.timeline-item:not(.timeline-right) .timeline-year,
.timeline-item.timeline-right .timeline-year {
  align-self: stretch;
}

.timeline-item--odycey .timeline-year,
.timeline-card.apollo-plat--odycey .timeline-year {
  color: #FBCC09;
}

.timeline-item--huston .timeline-year,
.timeline-card.apollo-plat--huston .timeline-year {
  color: #FBCC09;
}

.timeline-topic,
.timeline-card h3.timeline-topic,
.timeline-card.apollo-plat h3.timeline-topic {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #FBCC09;
  letter-spacing: 0.01em;
}

.timeline-item--huston .timeline-topic,
.timeline-card.apollo-plat--huston h3.timeline-topic {
  color: #FBCC09;
}

.timeline-body {
  flex: 1 1 auto;
  margin: 0;
  color: #e2e8f0;
  line-height: 1.7;
  font-size: 1rem;
}

.timeline-body p {
  margin: 0 0 0.6em;
  color: inherit;
}

.timeline-body p:last-child {
  margin-bottom: 0;
}

/* Keep bullets tight to text on both left- and right-aligned cards */
.timeline-body ul,
.timeline-body ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  color: inherit;
}

.timeline-item:not(.timeline-right) .timeline-body ul,
.timeline-item:not(.timeline-right) .timeline-body ol {
  align-items: flex-end;
}

.timeline-item.timeline-right .timeline-body ul,
.timeline-item.timeline-right .timeline-body ol {
  align-items: flex-start;
}

.timeline-body li {
  position: relative;
  margin: 0;
  padding-left: 1.05rem;
  text-align: left;
  width: fit-content;
  max-width: 100%;
}

.timeline-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38em;
  height: 0.38em;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}

.timeline-body ol {
  counter-reset: timeline-ol;
}

.timeline-body ol li {
  counter-increment: timeline-ol;
}

.timeline-body ol li::before {
  content: counter(timeline-ol) ".";
  border: 0;
  border-radius: 0;
  width: auto;
  height: auto;
  top: 0;
  font-size: 0.9em;
  line-height: 1.7;
}

.timeline-place {
  display: block;
  margin-top: 16px;
  font-size: 0.95rem;
  font-style: italic;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.timeline-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #FBCC09;
}

.timeline-card.apollo-plat h3 {
  color: #FBCC09;
  font-family: var(--font-family, inherit);
  letter-spacing: 0.01em;
}

.timeline-card p {
  margin: 0;
  color: var(--iki-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.timeline-card.apollo-plat p {
  color: #ffffff;
  font-size: 0.92rem;
}

.people-intro {
  margin-bottom: 28px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.people-grid-directors,
.people-grid-leaders,
.people-grid-team,
.people-grid-all {
  grid-template-columns: repeat(4, 1fr);
}

.person-card {
  background: transparent;
  border: 1px solid var(--iki-border);
  border-radius: 0;
  padding: 22px;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.person-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.person-card.apollo-plat {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0;
  box-shadow: none;
  gap: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
}

.person-card.apollo-plat--huston {
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.28);
}

.person-card.apollo-plat--odycey {
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.28);
}

.person-card.apollo-plat:hover {
  border-color: rgba(148, 163, 184, 0.4);
}

.person-card.apollo-plat--huston:hover {
  border-color: rgba(245, 158, 11, 0.5);
}

.person-card.apollo-plat--odycey:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.person-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-photo-sm {
  width: 88px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.person-card-compact {
  text-align: center;
}

.person-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: #FBCC09;
}

.person-card.apollo-plat h3 {
  color: #FBCC09;
}

.person-role {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--iki-teal-dark);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.person-card.apollo-plat--huston .person-role {
  color: #FFFFFF;
  font-size: 1.2em !important;
}

.person-card.apollo-plat--odycey .person-role {
  color: #FFFFFF;
  font-size: 1.2em !important;
}

.person-card p {
  margin: 0;
  color: var(--iki-muted);
  line-height: 1.65;
  font-size: 0.95rem;
  flex: 1;
}

.person-card.apollo-plat p {
  color: #ffffff;
  font-size: 0.92rem;
}

.person-photo .person-social {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-self: auto;
}

.person-social-center {
  justify-content: flex-end;
  align-self: auto;
}

.person-photo .person-social a {
  display: inline-flex;
  align-items: center;width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  line-height: 0;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.person-photo .person-social__linkedin {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}

.person-photo-sm .person-social {
  top: 4px;
  right: 4px;
}

.person-photo-sm .person-social a,
.person-photo-sm .person-social__linkedin {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
}

.person-photo .person-social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.45);
  opacity: 0.92;
}

.person-card.apollo-plat--huston .person-social a:hover,
.person-card.apollo-plat--odycey .person-social a:hover {
  background: transparent;
  border-color: transparent;
  color: inherit;
}

@media (max-width: 960px) {
  .timeline::before { left: 18px; }
  .timeline-item,
  .timeline-item.timeline-right {
    grid-template-columns: 36px 1fr;
  }
  .timeline-item:not(.timeline-right) .timeline-card,
  .timeline-item.timeline-right .timeline-card {
    grid-column: 2;
    text-align: left;
  }
  .timeline-item:not(.timeline-right) .timeline-marker,
  .timeline-item.timeline-right .timeline-marker {
    grid-column: 1;
  }
  .timeline-item:not(.timeline-right) .timeline-body ul,
  .timeline-item:not(.timeline-right) .timeline-body ol {
    align-items: flex-start;
  }

  .people-grid,
  .people-grid-directors,
  .people-grid-leaders,
  .people-grid-team,
  .people-grid-all {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .people-grid,
  .people-grid-directors,
  .people-grid-leaders,
  .people-grid-team,
  .people-grid-all {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .people-grid,
  .people-grid-directors,
  .people-grid-leaders,
  .people-grid-team,
  .people-grid-all {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   Innovations ? AI & Quantum corporate pages
   ============================================================================= */
.innov-hero-ai {
  background: linear-gradient(150deg, #001540 0%, #00205b 42%, #0a4a52 100%);
}

.innov-hero-quantum {
  background: linear-gradient(150deg, #001028 0%, #001a40 40%, #0b2e78 78%, #123a5c 100%);
}

.innov-lead {
  /* max-width: 820px; */
}

.innov-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.innov-use-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.innov-use-card {
  position: relative;
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.innov-use-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.innov-use-card-dark {
  background: linear-gradient(160deg, var(--iki-navy-dark), var(--iki-navy));
  border-color: transparent;
  color: rgba(255,255,255,0.75);
}

.innov-use-card-dark h3 {
  color: #FBCC09;
}

.innov-use-card-dark .innov-use-tag {
  background: rgba(0,163,173,0.2);
  color: var(--iki-teal);
}

.innov-use-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--iki-teal);
  margin-bottom: 12px;
}

.innov-use-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #FBCC09;
}

.innov-use-card p {
  margin: 0 0 16px;
  color: var(--iki-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.innov-use-card-dark p {
  color: rgba(255,255,255,0.68);
}

.innov-use-tag {
  display: inline-block;
  font-size: 0.75rem !important;
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--iki-teal-light);
  color: var(--iki-teal-dark);
}

.innov-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.innov-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.innov-checklist li {
  position: relative;
  padding: 14px 16px 14px 44px;
  background: var(--iki-off-white);
  border: 1px solid var(--iki-border);
  border-radius: 12px;
  color: var(--iki-ink);
  font-size: 1rem;
  line-height: 1.55;
}

.innov-checklist li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--iki-teal);
  border-bottom: 2.5px solid var(--iki-teal);
  transform: translateY(-60%) rotate(-45deg);
}

.innov-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.innov-stat {
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.innov-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--iki-navy);
  margin-bottom: 8px;
}

.innov-stat span {
  display: block;
  color: var(--iki-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.innov-path {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  /* max-width: 860px; */
}

.innov-path-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.innov-path-index {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--iki-white);
  background: linear-gradient(145deg, var(--iki-navy), var(--iki-teal));
}

.innov-path-step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #FBCC09;
}

.innov-path-step p {
  margin: 0;
  color: var(--iki-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.innov-shield {
  display: grid;
  gap: 12px;
}

.innov-shield-item {
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-left: 4px solid var(--iki-teal);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.innov-shield-item strong {
  display: block;
  color: var(--iki-navy);
  font-family: var(--font-ui);
  margin-bottom: 4px;
}

.innov-shield-item span {
  color: var(--iki-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .innov-use-grid,
  .innov-use-grid-3,
  .innov-stat-row,
  .innov-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .innov-use-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   SVG path-line backgrounds (stroke-dashoffset ? same idea as SVGator, native CSS)
   ============================================================================= */
.hero,
.page-hero {
  isolation: isolate;
}

.path-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}

.path-bg__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.path-bg__line {
  stroke: rgba(0, 163, 173, 0.18);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: path-draw 4.5s ease-out forwards, path-drift 18s linear 4.5s infinite;
}

.path-bg__line--b {
  stroke: rgba(252, 205, 6, 0.12);
  stroke-width: 1.15;
  animation-delay: 0.35s, 4.85s;
}

.path-bg__line--c {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.05;
  animation-delay: 0.7s, 5.2s;
}

.path-bg__dash {
  stroke: rgba(0, 163, 173, 0.14);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 6 14;
  animation: path-march 22s linear infinite;
}

.path-bg__dash--b {
  stroke: rgba(252, 205, 6, 0.1);
  animation-duration: 28s;
  animation-direction: reverse;
}

.path-bg__nodes circle {
  fill: rgba(0, 163, 173, 0.28);
  opacity: 0;
  animation: path-node-in 0.6s ease-out forwards, path-node-pulse 3.5s ease-in-out 1.2s infinite;
}

.path-bg__nodes circle:nth-child(2) { animation-delay: 0.9s, 1.5s; fill: rgba(252, 205, 6, 0.22); }
.path-bg__nodes circle:nth-child(3) { animation-delay: 1.1s, 1.8s; }
.path-bg__nodes circle:nth-child(4) { animation-delay: 1.25s, 2s; fill: rgba(255, 255, 255, 0.2); }
.path-bg__nodes circle:nth-child(5) { animation-delay: 1.4s, 2.2s; }
.path-bg__nodes circle:nth-child(6) { animation-delay: 1.55s, 2.4s; fill: rgba(252, 205, 6, 0.18); }
.path-bg__nodes circle:nth-child(7) { animation-delay: 1.7s, 2.6s; }

.path-bg--dense .path-bg__line {
  stroke-opacity: 1;
  stroke-width: 1.4;
}

.path-bg--dense .path-bg__dash {
  stroke-opacity: 1;
}

/* Grid mesh variant (Solutions) */
.path-bg--grid .path-bg__mesh {
  stroke: rgba(0, 163, 173, 0.08);
  stroke-width: 1;
  fill: none;
}

.path-bg--grid .path-bg__mesh-pulse {
  fill: none;
  stroke: rgba(92, 225, 230, 0.35);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 48 420;
  animation: path-mesh-flow linear infinite;
  filter: drop-shadow(0 0 3px rgba(0, 163, 173, 0.25));
  opacity: 0.55;
}

.path-bg--grid .path-bg__mesh-pulse--alt {
  stroke: rgba(252, 205, 6, 0.28);
  stroke-width: 1.25;
  stroke-dasharray: 32 520;
  filter: drop-shadow(0 0 2px rgba(252, 205, 6, 0.2));
  opacity: 0.45;
}

.path-bg--grid .path-bg__mesh-nodes circle {
  fill: rgba(0, 163, 173, 0.22);
  opacity: 0;
  animation: path-node-in 0.5s ease-out forwards, path-node-pulse 3.2s ease-in-out 0.8s infinite;
}

.path-bg--grid .path-bg__mesh-nodes circle:nth-child(3n) {
  fill: rgba(252, 205, 6, 0.18);
}

.path-bg--grid .path-bg__mesh-nodes circle:nth-child(4n) {
  fill: rgba(255, 255, 255, 0.16);
}

@keyframes path-mesh-flow {
  to { stroke-dashoffset: -900; }
}

/* Soft wave ribbons (About / Careers) */
.path-bg--waves .path-bg__wave {
  fill: none;
  stroke: rgba(0, 163, 173, 0.14);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 90 520;
  animation: path-wave-drift ease-in-out infinite alternate;
  filter: drop-shadow(0 0 2px rgba(0, 163, 173, 0.12));
  opacity: 0.55;
}

.path-bg--waves .path-bg__wave--soft {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.15;
  stroke-dasharray: 70 580;
  filter: none;
  opacity: 0.4;
}

.path-bg--waves .path-bg__wave--accent {
  stroke: rgba(252, 205, 6, 0.12);
  stroke-width: 1.2;
  stroke-dasharray: 60 640;
  filter: drop-shadow(0 0 2px rgba(252, 205, 6, 0.1));
  opacity: 0.45;
}

@keyframes path-wave-drift {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -280; }
}

/* Keep content above orbs; never force hosts of path/fiber bg to relative (collapses absolute kids) */
.hero > *:not(app-path-bg):not(app-fiber-bg):not(app-apollo-blueprint-bg):not(.orb),
.page-hero > *:not(app-path-bg):not(app-fiber-bg):not(app-apollo-blueprint-bg):not(.orb):not(.page-hero__plate) {
  position: relative;
  z-index: 1;
}

@keyframes path-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes path-drift {
  to { stroke-dashoffset: -1400; }
}

@keyframes path-march {
  to { stroke-dashoffset: -400; }
}

@keyframes path-node-in {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes path-node-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.65; }
}

@keyframes mark-in {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .path-bg__line,
  .path-bg__dash,
  .path-bg__nodes circle,
  .path-bg__mesh-pulse,
  .path-bg__mesh-nodes circle,
  .path-bg__wave,
  .mark {
    animation: none !important;
  }
  .path-bg__line {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
  .path-bg__mesh-pulse,
  .path-bg__wave {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
  .path-bg__nodes circle,
  .path-bg__mesh-nodes circle {
    opacity: 0.7;
  }
  .mark {
    opacity: 1;
  }
}

/* =============================================================================
   Login
   ============================================================================= */
.login-wrap {
  max-width: 520px;
}

.login-card {
  background: var(--iki-white);
  border: 1px solid var(--iki-border);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.login-card h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: var(--iki-navy);
}

.login-card-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--iki-navy);
}

.login-card-intro {
  margin: 0 0 22px;
  color: var(--iki-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.login-success-email {
  margin: 0.75rem 0 0;
  color: var(--iki-muted);
  font-size: 0.95rem;
}

.login-lead {
  margin: 0 0 28px;
  color: var(--iki-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.login-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.login-input,
.login-select {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgb(148 163 184);
  background: var(--iki-off-white);
  color: var(--iki-navy);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.login-input:focus,
.login-select:focus {
  border-color: var(--iki-teal);
  box-shadow: 0 0 0 3px rgba(0, 163, 173, 0.15);
  background: var(--iki-white);
}

.login-input:focus-visible,
.login-select:focus-visible {
  outline: 3px solid var(--iki-yellow);
  outline-offset: 2px;
}

.login-select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--iki-navy) 50%),
    linear-gradient(135deg, var(--iki-navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.login-error {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c !important;
  font-size: 0.95rem !important;
  line-height: 1.5;
}

.login-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  border: none;
}

.login-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.login-hint {
  margin: 22px 0 0;
  font-size: 0.9rem;
  color: var(--iki-muted);
  line-height: 1.6;
}

.login-hint code {
  font-size: 0.85em;
}

.login-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--iki-border-soft);
}

.login-links a {
  color: var(--iki-teal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.login-links a:hover {
  text-decoration: underline;
}

.login-success-card {
  text-align: center;
}

.login-success-card .hero-btns {
  justify-content: center;
}

.login-success-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--iki-teal-pale);
  border: 2px solid var(--iki-teal);
  position: relative;
}

.login-success-mark::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 14px;
  height: 22px;
  border-right: 3px solid var(--iki-teal);
  border-bottom: 3px solid var(--iki-teal);
  transform: rotate(40deg);
}

.login-success-card p {
  color: var(--iki-muted);
  line-height: 1.7;
}

@media (max-width: 560px) {
  .login-card {
    padding: 28px 20px;
  }
}

/* =============================================================================
   Theme switcher + NASA mission theme
   Yellow swatch = Ikione (default) ? Black swatch = NASA-inspired mission theme
   ============================================================================= */
.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--iki-border-soft);
  flex-shrink: 0;
}

.theme-swatch {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.theme-swatch:hover {
  transform: translateY(-1px) scale(1.05);
}

.theme-swatch.on {
  border-color: var(--iki-navy);
  box-shadow: 0 0 0 2px rgba(0, 32, 91, 0.18), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.theme-swatch--iki {
  background: linear-gradient(145deg, #fccd06 0%, #ffcc00 100%);
}

.theme-swatch--nasa {
  background: linear-gradient(145deg, #111111 0%, #000000 55%, #0b3d91 160%);
}

.theme-swatch--apollo {
  background:
    linear-gradient(135deg, #FBCC09 0 42%, #3b82f6 42% 100%);
}

.mob-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  margin: 4px 0 8px;
  border-top: 1px solid var(--iki-border-soft);
  border-bottom: 1px solid var(--iki-border-soft);
}

.mob-theme-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--iki-navy);
}

/* ??? NASA-inspired mission theme (black swatch) ??????????????????????????? */
[data-theme="nasa"] {
  --iki-black: #000000;
  --iki-ink: #12151c;
  --iki-muted: #5c6575;
  --iki-navy: #0b3d91;
  --iki-navy-dark: #000000;
  --iki-navy-mid: #0a2a66;
  --iki-teal: #fc3d21;
  --iki-teal-dark: #d83218;
  --iki-teal-light: #ffe3dd;
  --iki-teal-pale: #fff4f1;
  --iki-yellow: #fc3d21;
  --iki-yellow-alt: #ff5a3c;
  --iki-yellow-dark: #c92b12;
  --iki-on-yellow: #ffffff;
  --iki-white: #ffffff;
  --iki-off-white: #f3f5f8;
  --iki-border: #d5dae3;
  --iki-border-soft: #e6e9ef;

  --navy: var(--iki-navy);
  --navy-dark: var(--iki-navy-dark);
  --navy-mid: var(--iki-navy-mid);
  --teal: var(--iki-teal);
  --teal-dark: var(--iki-teal-dark);
  --teal-light: var(--iki-teal-light);
  --teal-pale: var(--iki-teal-pale);
  --white: var(--iki-white);
  --off-white: var(--iki-off-white);
  --text: var(--iki-ink);
  --text-sec: var(--iki-muted);
  --border: var(--iki-border);
  --yellow: var(--iki-yellow);
  --yellow-dark: var(--iki-yellow-dark);
  --on-yellow: var(--iki-on-yellow);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(11, 61, 145, 0.06);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(11, 61, 145, 0.08);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(252, 61, 33, 0.08);
}

[data-theme="nasa"] body {
  background: #f7f8fb;
  color: var(--iki-ink);
}

[data-theme="nasa"] .site-header,
[data-theme="nasa"] #nav,
[data-theme="nasa"] .site-nav {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Beat #nav.site-header link color (#0a0000) on black header */
[data-theme="nasa"] #nav.site-header .nav-item > a,
[data-theme="nasa"] #nav.site-header .nav-links > a:not(.nav-cta),
[data-theme="nasa"] #nav.site-header .nav-links a,
[data-theme="nasa"] .nav-links > .nav-item > a,
[data-theme="nasa"] .nav-links > a:not(.nav-cta),
[data-theme="nasa"] .nav-links a {
  color: #ffffff;
}

[data-theme="nasa"] #nav.site-header .nav-item > a:hover,
[data-theme="nasa"] #nav.site-header .nav-item > a.active,
[data-theme="nasa"] #nav.site-header .nav-links a:hover,
[data-theme="nasa"] #nav.site-header .nav-links a.active,
[data-theme="nasa"] .nav-links a:hover,
[data-theme="nasa"] .nav-links a.active {
  color: #fc3d21;
}

[data-theme="nasa"] #nav.site-header .nav-arrow,
[data-theme="nasa"] #nav.site-header .nav-item:hover > a .nav-arrow {
  color: inherit;
}

[data-theme="nasa"] #nav.site-header .dropdown,
[data-theme="nasa"] .nav-item .dropdown {
  background: #0d0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

[data-theme="nasa"] #nav.site-header .dropdown a,
[data-theme="nasa"] .nav-item .dropdown a {
  color: #ffffff;
}

[data-theme="nasa"] #nav.site-header .dropdown a:hover,
[data-theme="nasa"] .nav-item .dropdown a:hover {
  background: rgba(252, 61, 33, 0.12);
  color: #ff7a62;
}

[data-theme="nasa"] .theme-switch {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="nasa"] .theme-swatch.on {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(252, 61, 33, 0.45);
}

[data-theme="nasa"] .nav-cta,
[data-theme="nasa"] .nav-cta-desktop,
[data-theme="nasa"] .btn-teal,
[data-theme="nasa"] .btn-yellow,
[data-theme="nasa"] .btn-outline,
[data-theme="nasa"] .btn-ghost,
[data-theme="nasa"] .btn-submit,
[data-theme="nasa"] .apollo-btn,
[data-theme="nasa"] .default-page .btn-teal,
[data-theme="nasa"] .default-page .btn-submit,
[data-theme="nasa"] .default-page .nav-cta {
  background: var(--apollo-amber, #FBCC09);
  color: #020617 !important;
  border-color: var(--apollo-amber, #FBCC09);
}

[data-theme="nasa"] .nav-cta:hover,
[data-theme="nasa"] .nav-cta-desktop:hover,
[data-theme="nasa"] .btn-teal:hover,
[data-theme="nasa"] .btn-yellow:hover,
[data-theme="nasa"] .btn-outline:hover,
[data-theme="nasa"] .btn-ghost:hover,
[data-theme="nasa"] .btn-submit:hover,
[data-theme="nasa"] .apollo-btn:hover,
[data-theme="nasa"] .default-page .btn-teal:hover,
[data-theme="nasa"] .default-page .btn-submit:hover,
[data-theme="nasa"] .default-page .nav-cta:hover {
  background: #d97706;
  border-color: #d97706;
  color: #020617 !important;
}

[data-theme="nasa"] .nav-hamburger span {
  background: #ffffff;
}

[data-theme="nasa"] .nav-backdrop {
  background: rgba(0, 0, 0, 0.55);
}

[data-theme="nasa"] .nav-mobile {
  background: #0a0b0e;
  border-right-color: rgba(255, 255, 255, 0.08);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
}

[data-theme="nasa"] .nav-mobile .mob-main,
[data-theme="nasa"] .nav-mobile a,
[data-theme="nasa"] .mob-theme-label {
  color: rgba(255, 255, 255, 0.9);
}

[data-theme="nasa"] .nav-mobile .mob-sub a:hover {
  color: #fc3d21;
}

[data-theme="nasa"] .hero,
[data-theme="nasa"] .page-hero,
[data-theme="nasa"] .default-page .hero {
  background: linear-gradient(155deg, #000000 0%, #05070d 28%, #0b3d91 72%, #061833 100%);
}

[data-theme="nasa"] .default-page .hero {
  background: #000000;
}

[data-theme="nasa"] .hero.hero--schematic {
  background: #000000;
}

[data-theme="nasa"] .hero.hero--schematic::before {
  display: none;
}

[data-theme="nasa"] .hero::before,
[data-theme="nasa"] .default-page .hero::before {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(252, 61, 33, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(11, 61, 145, 0.45), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  opacity: 1;
}

[data-theme="nasa"] .hero-title em,
[data-theme="nasa"] .default-page h1.hero-title em,
[data-theme="nasa"] .page-hero .eyebrow,
[data-theme="nasa"] .eyebrow {
  color: #ff6b52;
}

[data-theme="nasa"] .page-hero .eyebrow::before,
[data-theme="nasa"] .eyebrow::before,
[data-theme="nasa"] .hero-eyebrow span,
[data-theme="nasa"] .default-page .hero-eyebrow span {
  background: #fc3d21;
}

[data-theme="nasa"] .band,
[data-theme="nasa"] .default-page .cta-section {
  background: linear-gradient(140deg, #000000, #0b3d91);
}

[data-theme="nasa"] .site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="nasa"] .footer-tagline,
[data-theme="nasa"] .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="nasa"] .footer-col h4 {
  color: rgba(255, 255, 255, 0.4);
}

[data-theme="nasa"] .footer-col a,
[data-theme="nasa"] .footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="nasa"] .footer-col a:hover,
[data-theme="nasa"] .footer-bottom a:hover {
  color: #fc3d21;
}

[data-theme="nasa"] .footer-social a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

[data-theme="nasa"] .footer-social a:hover {
  background: #fc3d21;
  border-color: #fc3d21;
  color: #ffffff;
}

[data-theme="nasa"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="nasa"] .login-card,
[data-theme="nasa"] .logo-card,
[data-theme="nasa"] .partners-type-card,
[data-theme="nasa"] .partners-benefit-card,
[data-theme="nasa"] .person-card {
  border-color: rgba(11, 61, 145, 0.12);
  box-shadow: var(--shadow-md);
}

[data-theme="nasa"] .path-bg__line,
[data-theme="nasa"] .path-bg__dash {
  stroke: rgba(252, 61, 33, 0.22);
}

[data-theme="nasa"] .path-bg__line--b,
[data-theme="nasa"] .path-bg__dash--b {
  stroke: rgba(255, 255, 255, 0.16);
}

[data-theme="nasa"] .path-bg--grid .path-bg__mesh-pulse {
  stroke: rgba(252, 61, 33, 0.4);
  filter: drop-shadow(0 0 4px rgba(252, 61, 33, 0.35));
}

[data-theme="nasa"] .path-bg--grid .path-bg__mesh-pulse--alt {
  stroke: rgba(255, 255, 255, 0.28);
}

[data-theme="nasa"] .tabs-section {
  background: linear-gradient(189deg, #000000 0%, #f2ce41 100%);
}

/* Top of section sits on black ? keep headings white */
[data-theme="nasa"] .tabs-section > .section-inner > .eyebrow,
[data-theme="nasa"] .tabs-section > .section-inner > .sh {
  color: #ffffff !important;
}

[data-theme="nasa"] .tabs-section > .section-inner > .eyebrow span {
  background: #ffffff !important;
}

[data-theme="nasa"] .tabs-section .tab-nav {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

[data-theme="nasa"] .default-page .tabs-section .tab-btn {
  color: rgba(255, 255, 255, 0.55);
}

[data-theme="nasa"] .default-page .tabs-section .tab-btn:hover,
[data-theme="nasa"] .default-page .tabs-section .tab-btn.on {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Module content sits on the yellow half ? dark ink for contrast */
[data-theme="nasa"] .tabs-section .tab-pane .eyebrow {
  color: #0a0000 !important;
}

[data-theme="nasa"] .tabs-section .tab-pane .eyebrow span {
  background: #0a0000 !important;
}

[data-theme="nasa"] .default-page .tabs-section .tab-title {
  color: #0a0000;
}

[data-theme="nasa"] .default-page .tabs-section .tab-desc {
  color: rgba(10, 0, 0, 0.72);
}

[data-theme="nasa"] .default-page .tabs-section .feat-list li {
  color: rgba(10, 0, 0, 0.88);
  border-bottom-color: rgba(10, 0, 0, 0.14);
}

[data-theme="nasa"] .default-page .tabs-section .feat-dot {
  background: #0a0000;
}

[data-theme="nasa"] .default-page .tabs-section .dcard {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(10, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="nasa"] .default-page .tabs-section .dcard-title {
  color: #0a0000;
}

[data-theme="nasa"] .default-page .tabs-section .dcard-body {
  color: rgba(10, 0, 0, 0.7);
}

[data-theme="nasa"] .tabs-section .mark {
  background: linear-gradient(145deg, rgba(252, 61, 33, 0.14), rgba(11, 61, 145, 0.1));
  border-color: rgba(10, 0, 0, 0.12);
}

[data-theme="nasa"] .tabs-section .mark::before {
  background: #0b3d91;
}

[data-theme="nasa"] .mark {
  background: linear-gradient(145deg, rgba(252, 61, 33, 0.16), rgba(11, 61, 145, 0.1));
  border-color: rgba(252, 61, 33, 0.28);
}

[data-theme="nasa"] .mark::before {
  background: #fc3d21;
}

/* =============================================================================
   Site-wide responsive polish
   ============================================================================= */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

#nav.site-header .nav-logo img,
.footer-logo img,
.default-page .nav-logo img,
.default-page .footer-logo img {
  max-width: none;
  height: 40px;
}

@media (max-width: 1100px) {
  .page-hero,
  .hero,
  .default-page .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section,
  .default-page .section {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 960px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .logo-grid,
  .cert-grid,
  .product-grid,
  .office-grid,
  .innov-stat-row,
  .innov-split,
  .ch-grid,
  .stage {
    grid-template-columns: 1fr !important;
  }

  .cert,
  .cert--wide {
    grid-column: 1 / -1 !important;
    width: 100%;
    max-width: 100%;
  }

  .static-page-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .default-page .tab-pane.on {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .default-page .what-grid,
  .default-page #platform .what-grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }

  .default-page .modules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-btns,
  .default-page .hero-btns {
    flex-wrap: wrap;
  }

  .page-hero h1,
  .default-page h1.hero-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .site-footer,
  footer {
    padding: 48px 4% 28px;
  }

  .app-page,
  .page {
    overflow-x: clip;
  }

  .default-page .modules-grid,
  .default-page .arch-grid,
  .default-page .ug-grid,
  .people-grid,
  .people-grid-directors,
  .people-grid-leaders,
  .people-grid-team,
  .people-grid-all,
  .partners-type-grid,
  .partners-benefit-grid,
  .partners-steps {
    grid-template-columns: 1fr !important;
  }

  .default-page .section,
  .section,
  .page-hero,
  .hero,
  .default-page .hero {
    padding-left: 4%;
    padding-right: 4%;
  }

  .default-page .about-hero {
    padding: 40px 24px;
  }

  .default-page .tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .default-page .tab-btn {
    flex-shrink: 0;
    padding: 10px 14px;
  }

  .login-wrap {
    padding: 24px 4% 48px;
  }

  .login-card {
    padding: 28px 20px;
  }

  .footer-logo,
  .footer-logo img,
  .default-page .footer-logo,
  .default-page .footer-logo img {
    width: 130px;
    height: 36px;
  }

  #nav.site-header .nav-logo img,
  .default-page .nav-logo img {
    height: 36px;
  }
}

@media (max-width: 400px) {
  #nav.site-header .nav-logo,
  #nav.site-header .nav-logo img {
    width: 112px;
    height: 32px;
  }
}





/* =============================================================================
   APOLLO BLUEPRINT THEME ? vintage NASA mission-control aesthetic
   Accent: Amber #FBCC09 (Huston) ? Cyan/Blue #3b82f6 (Odycey)
   ============================================================================= */
[data-theme="apollo"] {
  --apollo-bg: #020617;
  --apollo-amber: #FBCC09;
  --apollo-amber-dim: rgba(245, 158, 11, 0.14);
  --apollo-cyan: #FBCC09;
  --apollo-cyan-dim: rgba(59, 130, 246, 0.14);
  --apollo-line: rgba(148, 163, 184, 0.18);
  --apollo-ink: #e2e8f0;
  --apollo-muted: #FFFFFF;
  --font-family: "Courier New", Courier, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-body: var(--font-family);
  --font-display: var(--font-family);
  --font-ui: var(--font-family);

  --iki-black: #020617;
  --iki-ink: #e2e8f0;
  --iki-muted: #ffffff;
  --iki-navy: #0f172a;
  --iki-navy-dark: #020617;
  --iki-navy-mid: #1e293b;
  --iki-teal: #3b82f6;
  --iki-teal-dark: #2563eb;
  --iki-teal-light: rgba(59, 130, 246, 0.16);
  --iki-teal-pale: #020617;
  --iki-yellow: #FBCC09;
  --iki-yellow-alt: #FBCC09;
  --iki-yellow-dark: #d97706;
  --iki-on-yellow: #e2e8f0;
  --iki-white: #f8fafc;
  --iki-off-white: #020617;
  --iki-border: rgba(148, 163, 184, 0.22);
  --iki-border-soft: rgba(148, 163, 184, 0.12);

  --navy: var(--iki-navy);
  --navy-dark: var(--iki-navy-dark);
  --navy-mid: var(--iki-navy-mid);
  --teal: var(--iki-teal);
  --teal-dark: var(--iki-teal-dark);
  --teal-light: var(--iki-teal-light);
  --teal-pale: var(--iki-teal-pale);
  --white: #020617;
  --off-white: #020617;
  --text: var(--iki-ink);
  --text-sec: var(--iki-muted);
  --border: var(--iki-border);
  --yellow: #020617;
  --yellow-dark: var(--iki-yellow-dark);
  --on-yellow: var(--iki-on-yellow);

  --shadow-sm: 0 0 0 1px rgba(148, 163, 184, 0.12);
  --shadow-md: 0 0 0 1px rgba(148, 163, 184, 0.18), 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 0 0 1px rgba(148, 163, 184, 0.22), 0 24px 60px rgba(0, 0, 0, 0.55);
}

[data-theme="apollo"] body {
  background: #020617;
  background-image: none;
  color: var(--apollo-ink);
  font-family: var(--font-family);
}

[data-theme="apollo"] .site-header,
[data-theme="apollo"] #nav,
[data-theme="apollo"] .site-nav {
  background: rgba(2, 6, 23, 0.95);
  border-bottom: 1px solid var(--apollo-line);
  box-shadow: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

[data-theme="apollo"] #nav.site-header .nav-item > a,
[data-theme="apollo"] #nav.site-header .nav-links a,
[data-theme="apollo"] .nav-links a {
  color: #cbd5e1;
  letter-spacing: 0.04em;
}

[data-theme="apollo"] #nav.site-header .nav-item > a:hover,
[data-theme="apollo"] #nav.site-header .nav-item > a.active,
[data-theme="apollo"] .nav-links a:hover,
[data-theme="apollo"] .nav-links a.active {
  color: var(--apollo-amber);
}

[data-theme="apollo"] #nav.site-header .dropdown,
[data-theme="apollo"] .nav-item .dropdown {
  background: #020617;
  border: 1px solid var(--apollo-line);
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

[data-theme="apollo"] #nav.site-header .dropdown a {
  color: #cbd5e1;
}

[data-theme="apollo"] #nav.site-header .dropdown a:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--apollo-amber);
}

[data-theme="apollo"] .theme-switch {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--apollo-line);
}

[data-theme="apollo"] .theme-swatch.on {
  border-color: var(--apollo-amber);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.35);
}

[data-theme="apollo"] .nav-hamburger span {
  background: #e2e8f0;
}

[data-theme="apollo"] .nav-mobile {
  background: #020617;
  border-right-color: var(--apollo-line);
}

[data-theme="apollo"] .nav-mobile .mob-main,
[data-theme="apollo"] .nav-mobile a,
[data-theme="apollo"] .mob-theme-label {
  color: #e2e8f0;
}

[data-theme="apollo"] .btn-teal,
[data-theme="apollo"] .btn-yellow,
[data-theme="apollo"] .btn-outline,
[data-theme="apollo"] .btn-ghost,
[data-theme="apollo"] .btn-submit {
  background: var(--apollo-amber);
  color: #020617 !important;
  border-color: var(--apollo-amber);
  border-radius: 0;
  letter-spacing: 0.01em;
}

[data-theme="apollo"] .btn-teal:hover,
[data-theme="apollo"] .btn-yellow:hover,
[data-theme="apollo"] .btn-outline:hover,
[data-theme="apollo"] .btn-ghost:hover,
[data-theme="apollo"] .btn-submit:hover {
  background: #d97706;
  border-color: #d97706;
  color: #020617 !important;
}

[data-theme="apollo"] .site-footer,
.site-footer--bar {
  /* Keep copy above the page shuttle; plate stays light so craft remains visible */
  --bp-jet-plate: rgba(11, 20, 48, 0.55);
  --bp-jet-grid: rgba(90, 120, 180, 0.14);
  background-color: var(--bp-jet-plate);
  background-image:
    linear-gradient(var(--bp-jet-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-jet-grid) 1px, transparent 1px);
  background-size: 37px 37px;
  background-position: center top;
  color: rgba(248, 250, 252, 0.92);
  border-top: 1px solid rgba(100, 140, 200, 0.22);
  z-index: 5;
}

[data-theme="apollo"] .site-footer .footer-bottom {
  border-top-color: rgba(100, 140, 200, 0.22);
}

/* Blueprint jet flyover (full page) — Safari / iPad / Chrome / Edge / Firefox */
.bp-jet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bp-jet__fog {
  position: absolute;
  border-radius: 50%;
  -webkit-filter: blur(56px);
  filter: blur(56px);
  opacity: 0.14;
  -webkit-animation: bp-jet-haze 20s ease-in-out infinite;
  animation: bp-jet-haze 20s ease-in-out infinite;
  pointer-events: none;
}

.bp-jet__fog--1 {
  width: 55%;
  height: 70%;
  left: -5%;
  top: 15%;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.32), transparent 70%);
}

.bp-jet__fog--2 {
  width: 50%;
  height: 65%;
  right: -8%;
  top: 20%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.28), transparent 70%);
  -webkit-animation-delay: -7s;
  animation-delay: -7s;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
}

.bp-jet__fog--3 {
  width: 70%;
  height: 50%;
  left: 15%;
  bottom: 0;
  background: radial-gradient(circle, rgba(224, 242, 254, 0.22), transparent 72%);
  -webkit-animation-delay: -12s;
  animation-delay: -12s;
  -webkit-animation-duration: 28s;
  animation-duration: 28s;
}

.bp-jet__spread {
  position: absolute;
  top: var(--top, 30%);
  left: var(--left, 20%);
  width: var(--w, 40%);
  height: var(--h, 50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(226, 242, 254, 0.22) 0%,
    rgba(147, 197, 253, 0.1) 42%,
    transparent 72%
  );
  -webkit-filter: blur(28px);
  filter: blur(28px);
  opacity: 0;
  -webkit-animation: bp-jet-spread var(--dur, 14s) ease-in-out infinite;
  animation: bp-jet-spread var(--dur, 14s) ease-in-out infinite;
  -webkit-animation-delay: var(--delay, 0s);
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}

.bp-jet__craft {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(280px, 40vw);
  -webkit-transform: translate3d(-50%, 110vh, 0);
  transform: translate3d(-50%, 110vh, 0);
  -webkit-animation: bp-jet-fly 40s linear infinite;
  animation: bp-jet-fly 40s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bp-jet__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0.9;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-filter: drop-shadow(0 0 18px rgba(186, 230, 253, 0.35));
  filter: drop-shadow(0 0 18px rgba(186, 230, 253, 0.35));
  mix-blend-mode: normal;
  pointer-events: none;
}

.bp-jet__exhaust {
  position: absolute;
  left: 50%;
  bottom: 4%;
  top: auto;
  right: auto;
  width: 1px;
  height: 1px;
  z-index: 3;
  pointer-events: none;
}

.bp-jet__flare {
  position: absolute;
  left: 50%;
  top: 0;
  width: 42px;
  height: 56px;
  margin-left: -21px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(251, 191, 36, 0.45) 28%,
    rgba(186, 230, 253, 0.35) 48%,
    transparent 72%
  );
  -webkit-filter: blur(4px);
  filter: blur(4px);
  -webkit-animation: bp-jet-flare 1.6s ease-in-out infinite;
  animation: bp-jet-flare 1.6s ease-in-out infinite;
}

.bp-jet__trail {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18vh;
  max-height: 220px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(251, 191, 36, 0.35),
    rgba(186, 230, 253, 0.25),
    transparent
  );
  -webkit-filter: blur(5px);
  filter: blur(5px);
  border-radius: 999px;
  -webkit-animation: bp-jet-trail 2s ease-out infinite;
  animation: bp-jet-trail 2s ease-out infinite;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.bp-jet__trail--mid {
  width: 28px;
  height: 26vh;
  max-height: 320px;
  opacity: 0.65;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-animation-duration: 2.8s;
  animation-duration: 2.8s;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.bp-jet__trail--wide {
  width: 48px;
  height: 36vh;
  max-height: 460px;
  opacity: 0.4;
  -webkit-filter: blur(18px);
  filter: blur(18px);
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.bp-jet__puff {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size, 48px);
  height: var(--size, 48px);
  margin: calc(var(--size, 48px) / -2) 0 0 calc(var(--size, 48px) / -2);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(186, 230, 253, 0.38) 32%,
    rgba(147, 197, 253, 0.12) 58%,
    transparent 78%
  );
  -webkit-filter: blur(6px);
  filter: blur(6px);
  opacity: 0;
  /* CSS fallback when WAAPI is unavailable (no custom props inside keyframes) */
  -webkit-animation: bp-jet-puff-fallback var(--dur, 8s) ease-out infinite;
  animation: bp-jet-puff-fallback var(--dur, 8s) ease-out infinite;
  -webkit-animation-delay: var(--delay, 0s);
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.bp-jet--waapi .bp-jet__puff {
  -webkit-animation: none !important;
  animation: none !important;
}

.bp-jet__puff--wide {
  -webkit-filter: blur(14px);
  filter: blur(14px);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(186, 230, 253, 0.3) 36%,
    rgba(147, 197, 253, 0.1) 62%,
    transparent 80%
  );
}

@-webkit-keyframes bp-jet-fly {
  0% {
    -webkit-transform: translate3d(-50%, 110vh, 0);
    transform: translate3d(-50%, 110vh, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -120vh, 0);
    transform: translate3d(-50%, -120vh, 0);
  }
}

@keyframes bp-jet-fly {
  0% {
    -webkit-transform: translate3d(-50%, 110vh, 0);
    transform: translate3d(-50%, 110vh, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -120vh, 0);
    transform: translate3d(-50%, -120vh, 0);
  }
}

@supports (height: 100dvh) {
  @-webkit-keyframes bp-jet-fly {
    0% {
      -webkit-transform: translate3d(-50%, 110dvh, 0);
      transform: translate3d(-50%, 110dvh, 0);
    }
    100% {
      -webkit-transform: translate3d(-50%, -120dvh, 0);
      transform: translate3d(-50%, -120dvh, 0);
    }
  }

  @keyframes bp-jet-fly {
    0% {
      -webkit-transform: translate3d(-50%, 110dvh, 0);
      transform: translate3d(-50%, 110dvh, 0);
    }
    100% {
      -webkit-transform: translate3d(-50%, -120dvh, 0);
      transform: translate3d(-50%, -120dvh, 0);
    }
  }
}

/* Fallback only — no CSS variables inside transform (Safari/WebKit safe) */
@-webkit-keyframes bp-jet-puff-fallback {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0.2);
    transform: translate3d(0, 0, 0) scale(0.2);
  }
  10% { opacity: 0.85; }
  45% { opacity: 0.5; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2vw, 26vh, 0) scale(6.5);
    transform: translate3d(2vw, 26vh, 0) scale(6.5);
  }
}

@keyframes bp-jet-puff-fallback {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0.2);
    transform: translate3d(0, 0, 0) scale(0.2);
  }
  10% { opacity: 0.85; }
  45% { opacity: 0.5; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2vw, 26vh, 0) scale(6.5);
    transform: translate3d(2vw, 26vh, 0) scale(6.5);
  }
}

@-webkit-keyframes bp-jet-spread {
  0%,
  100% {
    opacity: 0.08;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  45% {
    opacity: 0.42;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}

@keyframes bp-jet-spread {
  0%,
  100% {
    opacity: 0.08;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  45% {
    opacity: 0.42;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}

@-webkit-keyframes bp-jet-flare {
  0%,
  100% {
    opacity: 0.55;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes bp-jet-flare {
  0%,
  100% {
    opacity: 0.55;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@-webkit-keyframes bp-jet-trail {
  0%,
  100% {
    opacity: 0.35;
    -webkit-transform: translateX(-50%) scaleY(0.9);
    transform: translateX(-50%) scaleY(0.9);
  }
  50% {
    opacity: 0.85;
    -webkit-transform: translateX(-50%) scaleY(1.18);
    transform: translateX(-50%) scaleY(1.18);
  }
}

@keyframes bp-jet-trail {
  0%,
  100% {
    opacity: 0.35;
    -webkit-transform: translateX(-50%) scaleY(0.9);
    transform: translateX(-50%) scaleY(0.9);
  }
  50% {
    opacity: 0.85;
    -webkit-transform: translateX(-50%) scaleY(1.18);
    transform: translateX(-50%) scaleY(1.18);
  }
}

@-webkit-keyframes bp-jet-haze {
  0%,
  100% {
    opacity: 0.16;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.32;
    -webkit-transform: translateY(-18px) scale(1.06);
    transform: translateY(-18px) scale(1.06);
  }
}

@keyframes bp-jet-haze {
  0%,
  100% {
    opacity: 0.16;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.32;
    -webkit-transform: translateY(-18px) scale(1.06);
    transform: translateY(-18px) scale(1.06);
  }
}

/* iPad / phones: lighter exhaust (GPU cost of many blurs) */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .bp-jet__exhaust .bp-jet__puff:nth-child(n + 13),
  .bp-jet > .bp-jet__spread:nth-child(n + 8) {
    display: none;
  }

  .bp-jet__fog {
    -webkit-filter: blur(36px);
    filter: blur(36px);
  }

  .bp-jet__craft {
    width: min(220px, 48vw);
    -webkit-animation-duration: 48s;
    animation-duration: 48s;
  }

  .bp-jet__trail--wide {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-jet__craft,
  .bp-jet__puff,
  .bp-jet__trail,
  .bp-jet__flare,
  .bp-jet__fog,
  .bp-jet__spread {
    -webkit-animation: none !important;
    animation: none !important;
  }
  .bp-jet__craft {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.45;
  }
  .bp-jet__exhaust,
  .bp-jet__spread {
    display: none;
  }
}

.site-footer .footer-tagline,
.site-footer .footer-col h4,
.site-footer .footer-col a,
.site-footer .footer-links a,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  font-size: var(--nav-font-size) !important;
}

[data-theme="apollo"] .footer-col h4,
[data-theme="apollo"] .footer-tagline,
[data-theme="apollo"] .footer-bottom p {
  color: rgba(226, 236, 255, 0.82);
}

[data-theme="apollo"] .footer-col a,
[data-theme="apollo"] .footer-bottom a {
  color: #f8fafc;
}

[data-theme="apollo"] .footer-col a:hover,
[data-theme="apollo"] .footer-bottom a:hover {
  color: #FBCC09;
}

[data-theme="apollo"] .page,
[data-theme="apollo"] .section,
[data-theme="apollo"] .page-hero {
  background: transparent;
}

/* Apollo layer stack: apollo13 → shuttle → page content */
[data-theme="apollo"] .app-main {
  position: relative;
  isolation: isolate;
}

[data-theme="apollo"] .app-main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/apollo13.jpg") center center / cover no-repeat;
  opacity: 0.15;
}

/* Former apollo-hero background-image — sits under the flight path */
[data-theme="apollo"] .apollo-hero-bg-plate {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100vh - 140px);
  z-index: 1;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

[data-theme="apollo"] .app-main__content {
  position: relative;
  z-index: 3;
}

/*
 * Page copy / feature lists sit above the flight path
 * (header / footer chrome stay above as well).
 */
[data-theme="apollo"] .section,
[data-theme="apollo"] .apollo-section,
[data-theme="apollo"] .about-tabs-section,
[data-theme="apollo"] .page-hero,
[data-theme="apollo"] .section-inner,
[data-theme="apollo"] .apollo-section-inner,
[data-theme="apollo"] .about-tabs-inner,
[data-theme="apollo"] .about-tabs-panel,
[data-theme="apollo"] .feature-list,
[data-theme="apollo"] .feature-list.feature-list--plat,
[data-theme="apollo"] .apollo-plat,
[data-theme="apollo"] .lede,
[data-theme="apollo"] .solutions-subhead,
[data-theme="apollo"] .apollo-hero-frame,
[data-theme="apollo"] .apollo-hero-title,
[data-theme="apollo"] .apollo-hero-lead,
[data-theme="apollo"] .apollo-hero-actions,
[data-theme="apollo"] .apollo-hero-moonshot,
[data-theme="apollo"] .apollo-coord {
  position: relative;
  z-index: 3;
}

/* Hero section is transparent so apollo13 + shuttle show beneath the copy */
[data-theme="apollo"] .apollo-hero {
  position: relative;
  z-index: 0;
  background-color: transparent !important;
  background-image: none !important;
  isolation: auto;
}

[data-theme="apollo"] .apollo-hero::after {
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.35) 0%,
      rgba(2, 6, 23, 0.12) 42%,
      rgba(2, 6, 23, 0.4) 100%
    ),
    linear-gradient(
      105deg,
      rgba(2, 6, 23, 0.4) 0%,
      rgba(2, 6, 23, 0.08) 48%,
      rgba(2, 6, 23, 0.32) 100%
    );
}

[data-theme="apollo"] .apollo-hero::before {
  z-index: 1;
}

/* Blueprint animation above hero plate / washes, below hero copy */
[data-theme="apollo"] .apollo-hero app-apollo-blueprint-bg,
[data-theme="apollo"] .page-hero app-apollo-blueprint-bg {
  display: block !important;
  z-index: 2 !important;
  opacity: 0.75;
}

/* Footer copy stays above shuttle; translucent plate lets craft show through */
[data-theme="apollo"] .site-footer,
.site-footer--bar {
  z-index: 5;
}

[data-theme="apollo"] .about-tabs-section,
[data-theme="apollo"] .section.bg-off,
[data-theme="apollo"] .careers-split-section {
  background: #0000005e;
}

[data-theme="apollo"] .section.section-tint {
  background-color: #00000059;
}

[data-theme="apollo"] .default-page .hero {
  background: #020617;
}

/* Default page: solid home-page color (#020617) across all bands */
[data-theme="apollo"] .default-page,
[data-theme="apollo"] .default-page .section,
[data-theme="apollo"] .default-page .modules-bg,
[data-theme="apollo"] .default-page .tabs-section,
[data-theme="apollo"] .default-page .arch-section,
[data-theme="apollo"] .default-page .about-section,
[data-theme="apollo"] .default-page .ticker,
[data-theme="apollo"] .default-page .cta-section,
[data-theme="apollo"] .default-page .demo-section,
[data-theme="apollo"] .default-page .band {
  background: #020617 !important;
  background-image: none !important;
}

[data-theme="apollo"] .default-page .ticker {
  border-top-color: rgba(148, 163, 184, 0.18);
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

[data-theme="apollo"] .default-page .ticker-label {
  background: #020617;
  color: #FBCC09;
  border-right-color: rgba(148, 163, 184, 0.22);
}

[data-theme="apollo"] .default-page .ticker-item {
  color: #e2e8f0;
  border-right-color: rgba(148, 163, 184, 0.14);
}

[data-theme="apollo"] .default-page .ticker-dot {
  color: #3b82f6;
}

[data-theme="apollo"] .default-page h2.sh,
[data-theme="apollo"] .default-page .tab-title,
[data-theme="apollo"] .default-page .pillar-name,
[data-theme="apollo"] .default-page .mcard-title,
[data-theme="apollo"] .default-page .acard-title {
  color: #f8fafc;
}

[data-theme="apollo"] .default-page p.sd,
[data-theme="apollo"] .default-page .tab-desc,
[data-theme="apollo"] .default-page .pillar-desc,
[data-theme="apollo"] .default-page .mcard-desc,
[data-theme="apollo"] .default-page .acard-body {
  color: #ffffff;
}

[data-theme="apollo"] .default-page .tabs-section .eyebrow,
[data-theme="apollo"] .default-page .tabs-section .sh,
[data-theme="apollo"] .default-page .tabs-section .tab-title,
[data-theme="apollo"] .default-page .tabs-section .tab-btn.on {
  color: #e2e8f0 !important;
}

[data-theme="apollo"] .default-page .tabs-section .tab-btn {
  color: rgba(226, 232, 240, 0.45);
}

[data-theme="apollo"] .default-page .tabs-section .tab-btn.on {
  border-bottom-color: #3b82f6;
}

[data-theme="apollo"] .default-page .pillar,
[data-theme="apollo"] .default-page .mcard,
[data-theme="apollo"] .default-page .acard,
[data-theme="apollo"] .default-page .dcard,
[data-theme="apollo"] .default-page .arch-visual {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.22);
}

[data-theme="apollo"] .default-page .arch-visual {
  background: rgba(245, 158, 11, 0.08);
}

[data-theme="apollo"] .default-page .arch-layer {
  background: rgba(2, 6, 23, 0.65);
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="apollo"] .default-page .arch-layer-name,
[data-theme="apollo"] .default-page .feat-dot {
  color: #FBCC09;
  background: #FBCC09;
}

[data-theme="apollo"] .default-page .arch-layer-name {
  background: transparent;
}

[data-theme="apollo"] h1,
[data-theme="apollo"] h2,
[data-theme="apollo"] .display {
  color: #f8fafc;
  font-family: var(--font-family);
  letter-spacing: 0.01em;
}[data-theme="apollo"] h3

 {
  color: #FBCC09;
  font-family: var(--font-family);
  letter-spacing: 0.01em;
}

[data-theme="apollo"] .lede,
[data-theme="apollo"] .hero-desc,
[data-theme="apollo"] p {
  color: var(--apollo-muted);
}

[data-theme="apollo"] .product-card,
[data-theme="apollo"] .login-card,
[data-theme="apollo"] .person-card,
[data-theme="apollo"] .partners-type-card {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid var(--apollo-line);
  border-radius: 0;
  box-shadow: none;
}

[data-theme="apollo"] .person-card.apollo-plat {
  background: rgba(2, 6, 23, 0.45);
}

[data-theme="apollo"] .person-card.apollo-plat--huston {
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
}

[data-theme="apollo"] .person-card.apollo-plat--odycey {
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}

[data-theme="apollo"] .person-card.apollo-plat h3 {
  color: #FBCC09;
}

[data-theme="apollo"] .person-card.apollo-plat p {
  color: #ffffff;
}

/* -- Apollo home landing --------------------------------------------------- */
.page--apollo {
  background: transparent;
}

.apollo-hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 6% 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--apollo-line, rgba(148, 163, 184, 0.18));
  background-color: #020617;
  line-height: 1.4;
}

.apollo-hero,
.apollo-hero p,
.apollo-hero h1,
.apollo-hero h2,
.apollo-hero a,
.apollo-hero .apollo-hero-title,
.apollo-hero .apollo-hero-lead,
.apollo-hero .apollo-hero-moonshot-title,
.apollo-hero .apollo-hero-moonshot-lead,
.apollo-hero .apollo-hero-moonshot-cta,
.apollo-hero .apollo-btn {
  line-height: 1.4;
}

/* About / Eternal One — same hero treatment, alternate plate */
.apollo-hero--page {
  min-height: min(50vh, 720px);
  background-position: center center;
  background-size: auto;
  background-repeat: no-repeat;
}

.apollo-hero--page-split {
  min-height: min(62vh, 820px);
}

.apollo-hero--page-split .apollo-hero-frame--split {
  padding-top: 3.5rem;
}

.apollo-hero--page-split .apollo-eyebrow {
  margin-bottom: 1.25rem;
}

.apollo-hero--page-split .apollo-hero-intro .apollo-hero-title {
  margin-bottom: 1.25rem;
}

.apollo-hero--page-split .apollo-hero-moonshot-lead {
  margin-bottom: 0;
}

.apollo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.apollo-hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 1;
  border: 1px solid rgba(148, 163, 184, 0.28);
  pointer-events: none;
}

.apollo-coord {
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #ffffff;
  z-index: 2;
}

.apollo-coord--tl { top: 36px; left: 8%; }
.apollo-coord--tr { top: 36px; right: 8%; }
.apollo-coord--bl { bottom: 36px; left: 8%; }
.apollo-coord--br { bottom: 36px; right: 8%; }

.apollo-hero-frame {
  position: relative;
  z-index: 2;
  /* max-width: 860px; */
  text-align: left;
  width: 100%;
  /* max-width: 1280px; */
}

.apollo-hero-frame--split {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.apollo-hero-intro {
  width: 100%;
  min-width: 0;
}

.apollo-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px 40px;
  align-items: stretch;
}

.apollo-hero-col {
  min-width: 0;
}

/* Stretch both columns so CTAs and Learn More share the same baseline */
.apollo-hero-body > .apollo-hero-col {
  display: flex;
  flex-direction: column;
}

.apollo-hero-frame--split .apollo-hero-actions {
  justify-content: flex-start;
  margin-top: auto;
}

.apollo-hero-frame--split .apollo-hero-title {
  margin-bottom: 0;
  line-height: 1.4;
}

.apollo-hero-frame--split .apollo-hero-lead {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2.05vw, 1.80rem) !important;
  line-height: 1.4;
}

.apollo-hero-moonshot {
  display: flex;
  flex-direction: column;
  height: fit-content;
  padding: 22px 24px 24px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: #8d8d8d87;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.apollo-hero-moonshot-title {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #FBCC09 !important;
}

.apollo-hero-moonshot-title a,
.apollo-hero-moonshot-lead a.apollo-hero-moonshot-link--title {
  color: #FBCC09;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 700;
}

.apollo-hero-moonshot-title a:hover,
.apollo-hero-moonshot-lead a.apollo-hero-moonshot-link--title:hover {
  color: #fde047;
}

.apollo-hero-moonshot-lead {
  flex: 1 1 auto;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.05vw, 1.45rem);
  line-height: 1.4;
}

.apollo-hero-moonshot-lead h3 {
  margin: 0 0 0.75rem;
  color: #FBCC09;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.apollo-hero-moonshot-lead h3 + p {
  margin-top: 0;
}

.apollo-hero-moonshot-lead a {
  color: var(--apollo-amber, #FBCC09);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.apollo-hero-moonshot-lead a:hover {
  color: #fde047;
}

.apollo-hero-moonshot-lead a.apollo-hero-moonshot-link--title {
  color: #FBCC09;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.apollo-hero-moonshot-lead p {
  margin: 0;
}

.apollo-hero-moonshot-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--apollo-amber, #FBCC09);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 158, 11, 0.55);
  padding-bottom: 2px;
}

.apollo-hero-moonshot-cta:hover {
  color: #FBCC09;
  border-bottom-color: #FBCC09;
}

@media (max-width: 960px) {
  .apollo-hero-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .apollo-hero-moonshot {
    border-top: none;
  }
}

.apollo-eyebrow {
  display: inline-flex;
  align-items: left;
  gap: 10px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--apollo-amber, #FBCC09);
  margin-bottom: 78px;
  font-weight: bold;
  line-height: 1rem;
}

.apollo-pixel {
  width: 8px;
  height: 8px;
  background: var(--apollo-amber, #FBCC09);
  box-shadow: 10px 0 0 #3b82f6, 0 10px 0 #3b82f6, 10px 10px 0 rgba(245, 158, 11, 0.45);
}

.apollo-hero-title {
  font-size: clamp(2rem, 5.2vw, 4.0rem);
  line-height: 1.4;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.apollo-hero-title em {
  color: var(--apollo-cyan, #3b82f6);
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.apollo-hero-lead {
  max-width: 100% !important;
  margin: 0 auto 28px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.4;
}

.apollo-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
}

.apollo-hero-meta span:not(.apollo-sep) {
  color: #e2e8f0;
}

.apollo-sep { color: #475569; }

.apollo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.apollo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.apollo-btn--amber {
  background: var(--apollo-amber, #FBCC09);
  color: #020617;
  border-color: var(--apollo-amber, #FBCC09);
}

.apollo-btn--amber:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-1px);
}

/* One site-wide button style: amber */
.apollo-btn--cyan,
.apollo-btn--ghost {
  background: var(--apollo-amber, #FBCC09);
  color: #020617;
  border-color: var(--apollo-amber, #FBCC09);
}

.apollo-btn--cyan:hover,
.apollo-btn--ghost:hover {
  background: #d97706;
  border-color: #d97706;
  color: #020617;
  transform: translateY(-1px);
}

.apollo-btn:disabled,
.apollo-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.apollo-deco-lines {
  position: absolute;
  inset: 18% 6% auto;
  display: flex;
  gap: 10px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

.apollo-deco-lines span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.apollo-section {
  padding: 12px 6%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Per-section image disabled — page-wide layer on .app-main paints above section fills */
.apollo-section::before {
  content: none;
}

.apollo-section-inner {
  position: relative;
  z-index: 1;
  /* max-width: 1100px; */
  margin: 0 auto;
}

.apollo-history {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(2, 6, 23, 0.0);
  padding: 36px 40px;
}

.apollo-history-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #FBCC09, #3b82f6);
}

.apollo-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  /* margin-bottom: 16px; */
  flex-wrap: wrap;
}

.apollo-tag {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
}

.apollo-tag--amber { color: #FBCC09; }
.apollo-tag--cyan { color: #3b82f6; }

.apollo-history-title {
  font-size: 3.5rem;
  margin: 0 0 14px;
  color: #f8fafc;
}

.apollo-history-body {
  margin: 0 0 28px;
  color: #ffffff;
  line-height: 1.75;
  max-width: 72ch;
}

.apollo-history-body strong {
  color: #e2e8f0;
  font-weight: 700;
}

.apollo-history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px dashed rgba(148, 163, 184, 0.25);
  padding-top: 22px;
}

.apollo-history-grid p {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 0.9rem;
}

.apollo-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
}

.apollo-kicker--amber { color: #FBCC09; }
.apollo-kicker--cyan { color: #3b82f6; }

.apollo-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.apollo-plat {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(2, 6, 23, 0.45);
  padding: 0px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.apollo-plat--huston {
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08);
}

.apollo-plat--odycey {
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.apollo-nameplate {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
}

.apollo-nameplate--amber,
.apollo-nameplate--cyan {
  border: none;
  background: transparent;
}

.apollo-plat-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 4px;
  padding: 0;
  border: none;
  background: transparent;
}

.apollo-plat-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: none;
  color: #FBCC09;
}

.apollo-plat-heading--amber .apollo-plat-title {
  color: #FBCC09;
}

.apollo-plat-heading--cyan .apollo-plat-title {
  color: #FBCC09;
}

.apollo-plat-subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: #e2e8f0;
}

.apollo-name {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #f8fafc;
}

.apollo-nameplate--amber .apollo-name { color: #FBCC09; }
.apollo-nameplate--cyan .apollo-name { color: #FBCC09; }

.apollo-name-sub {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #e2e8f0;
}

.apollo-plat-lead {
  margin: 0;
  color: #ffffff;
  line-height: 1.7;
  font-size: 0.92rem;
  flex: 1;
}

.apollo-plat-lead strong {
  color: #e2e8f0;
}

.apollo-telemetry {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.apollo-telemetry li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.14);
  font-size: 0.86rem;
  color: #cbd5e1;
}

.apollo-telemetry li:last-child { border-bottom: 0; }

.apollo-telemetry span {
  color: #ffffff;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.apollo-plat--huston .apollo-telemetry span { color: #FBCC09; }
.apollo-plat--odycey .apollo-telemetry span { color: #3b82f6; }

.apollo-schematic {
  min-height: 120px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  position: relative;
  overflow: hidden;
}

.apollo-schematic--box {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(245, 158, 11, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.apollo-box-core {
  border: 1px solid rgba(245, 158, 11, 0.7);
  color: #FBCC09;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 18px 28px;
  background: rgba(2, 6, 23, 0.85);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.08);
}

.apollo-schematic--asym {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  grid-template-rows: 1fr 1.15fr;
  gap: 6px;
  padding: 8px;
  background: rgba(59, 130, 246, 0.04);
}

.apollo-asym-cell {
  border: 1px solid rgba(59, 130, 246, 0.35);
  display: grid;
  place-items: center;
  color: #FBCC09;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  background: rgba(2, 6, 23, 0.55);
}

.apollo-asym-cell--tall {
  grid-row: span 2;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.7);
}

.apollo-asym-cell--wide {
  grid-column: span 2;
}

.apollo-section--footer-cta {
  padding-top: 24px;
  padding-bottom: 88px;
}

.apollo-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 28px 32px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.06), rgba(59, 130, 246, 0.06));
}

.apollo-cta-title {
  margin: 8px 0 0;
  font-size: 1.35rem;
  color: #f8fafc;
}

.apollo-cta-lead {
  max-width: 62ch;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.7;
}

.apollo-cta-bar .apollo-hero-actions {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .apollo-platforms,
  .apollo-history-grid {
    grid-template-columns: 1fr;
  }

  .apollo-name {
    letter-spacing: 0.18em;
  }

  .apollo-hero::before {
    inset: 16px;
  }

  .apollo-coord--tl,
  .apollo-coord--bl { left: 5%; }
  .apollo-coord--tr,
  .apollo-coord--br { right: 5%; }
}

@media (max-width: 640px) {
  .apollo-hero {
    padding: 72px 4% 56px;
    align-items: flex-start;
  }

  .apollo-history,
  .apollo-cta-bar {
    padding: 24px 18px;
  }

  .apollo-coord {
    font-size: 0.6rem;
  }

  .apollo-plat {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .apollo-btn:hover {
    transform: none;
  }
}

/* =============================================================================
   Apollo blueprint live overlay
   ============================================================================= */
.apollo-bp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.35;
}

.apollo-bp__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.apollo-bp__draw--hull {
  stroke: rgba(226, 232, 240, 0.35);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: apollo-bp-draw 5.5s ease-out forwards, apollo-bp-drift 16s linear 5.5s infinite;
}

.apollo-bp__dash-run {
  stroke: rgba(59, 130, 246, 0.55);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 14 18;
  animation: apollo-bp-march 2.4s linear infinite;
}

.apollo-bp__dash-run--slow {
  stroke: rgba(245, 158, 11, 0.45);
  animation-duration: 3.6s;
  animation-direction: reverse;
}

.apollo-bp__dash-run--ext,
.apollo-bp__dash-run--ext-v {
  stroke: rgba(226, 232, 240, 0.4);
  stroke-dasharray: 8 14;
  animation-duration: 2s;
}

.apollo-bp__mesh {
  stroke: rgba(148, 163, 184, 0.16);
  stroke-width: 0.7;
}

.apollo-bp__mesh-pulse {
  stroke: rgba(59, 130, 246, 0.75);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 40 220;
  animation: apollo-bp-march 3.2s linear infinite;
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.55));
}

.apollo-bp__mesh-pulse--alt {
  stroke: rgba(226, 232, 240, 0.45);
  animation-duration: 4.2s;
  animation-direction: reverse;
}

.apollo-bp__mesh-pulse--amber {
  stroke: rgba(245, 158, 11, 0.8);
  filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.5));
  animation-duration: 2.8s;
}

.apollo-bp__sq {
  fill: none;
  stroke: rgba(226, 232, 240, 0.4);
  stroke-width: 1.1;
  transform-box: fill-box;
  transform-origin: center;
  animation: apollo-bp-sq-pulse 4.5s ease-in-out infinite;
}

.apollo-bp__sq--1 { animation-delay: 0s; stroke: rgba(59, 130, 246, 0.55); }
.apollo-bp__sq--2 { animation-delay: 0.35s; stroke: rgba(226, 232, 240, 0.45); }
.apollo-bp__sq--3 { animation-delay: 0.7s; stroke: rgba(245, 158, 11, 0.55); }
.apollo-bp__sq--soft {
  stroke: rgba(226, 232, 240, 0.28);
  animation: apollo-bp-sq-pulse 5.5s ease-in-out infinite;
}

.apollo-bp__core {
  fill: rgba(245, 158, 11, 0.85);
  stroke: none;
  animation: apollo-bp-node 2.8s ease-in-out infinite;
}

.apollo-bp__core-ring {
  fill: none;
  stroke: rgba(245, 158, 11, 0.45);
  stroke-width: 1;
  animation: apollo-bp-ring-breathe 3.2s ease-in-out infinite;
}

.apollo-bp__ring {
  fill: none;
  stroke: rgba(226, 232, 240, 0.4);
  stroke-width: 1.1;
}

.apollo-bp__ring--a {
  stroke: rgba(59, 130, 246, 0.55);
  animation: apollo-bp-ring-breathe 3.6s ease-in-out infinite;
}

.apollo-bp__ring--b {
  stroke: rgba(226, 232, 240, 0.4);
  animation: apollo-bp-ring-breathe 4s ease-in-out infinite reverse;
}

.apollo-bp__ring--c {
  stroke: rgba(245, 158, 11, 0.55);
  animation: apollo-bp-node 2.6s ease-in-out infinite;
}

.apollo-bp__ring--spin,
.apollo-bp__ring--spin-rev {
  stroke: rgba(59, 130, 246, 0.5);
  stroke-dasharray: 18 12;
  transform-origin: center;
  transform-box: fill-box;
  animation: apollo-bp-spin 12s linear infinite;
}

.apollo-bp__ring--spin-rev {
  stroke: rgba(245, 158, 11, 0.45);
  animation-direction: reverse;
  animation-duration: 9s;
}

.apollo-bp__cross {
  stroke: rgba(226, 232, 240, 0.35);
  stroke-width: 0.9;
  stroke-dasharray: 4 6;
  animation: apollo-bp-march 3s linear infinite;
}

.apollo-bp__dim {
  stroke: rgba(148, 163, 184, 0.22);
  stroke-width: 0.9;
  stroke-dasharray: 3 10;
  animation: apollo-bp-march 4s linear infinite;
}

.apollo-bp__dim--v {
  animation-direction: reverse;
  animation-duration: 5s;
}

.apollo-bp__marker {
  fill: rgba(59, 130, 246, 0.95);
}

.apollo-bp__node circle {
  fill: rgba(226, 232, 240, 0.75);
}

.apollo-bp__node-ring {
  fill: none !important;
  stroke: rgba(59, 130, 246, 0.55);
  stroke-width: 1;
}

.apollo-bp__node {
  animation: apollo-bp-node 3s ease-in-out infinite;
}

.apollo-bp__scan {
  fill: rgba(59, 130, 246, 0.35);
  animation: apollo-bp-scan-y 8s linear infinite;
}

@keyframes apollo-bp-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes apollo-bp-drift {
  to { stroke-dashoffset: -120; }
}

@keyframes apollo-bp-march {
  to { stroke-dashoffset: -160; }
}

@keyframes apollo-bp-sq-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes apollo-bp-ring-breathe {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes apollo-bp-spin {
  to { transform: rotate(360deg); }
}

@keyframes apollo-bp-node {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes apollo-bp-scan-y {
  0% { transform: translateY(120px); opacity: 0; }
  12% { opacity: 0.9; }
  88% { opacity: 0.9; }
  100% { transform: translateY(780px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .apollo-bp__draw--hull,
  .apollo-bp__dash-run,
  .apollo-bp__mesh-pulse,
  .apollo-bp__sq,
  .apollo-bp__ring,
  .apollo-bp__ring--spin,
  .apollo-bp__ring--spin-rev,
  .apollo-bp__cross,
  .apollo-bp__dim,
  .apollo-bp__node,
  .apollo-bp__core,
  .apollo-bp__core-ring,
  .apollo-bp__scan {
    animation: none !important;
  }
  .apollo-bp__draw--hull {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 0.35;
  }
  .apollo-bp__marker {
    display: none;
  }
}
/* -- SITEWIDE numbered tab markers (ribbon style) ------------------------- */
.feature-list.feature-list--plat {
  --ribbon: #FBCC09;
  list-style: none;
  margin: 20px 0 0;
  padding: 0 0 0 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  counter-reset: plat-ribbon;
}

.feature-list.feature-list--plat li {
  --ribbon: #FBCC09;
  counter-increment: plat-ribbon;
  position: relative;
  margin: 0;
  padding: 8px 20px 10px 60px;
  min-height: 50px;
  display: flex;
  align-items: center;
  background: #8d8d8d78;
  border: none;
  border-radius: 16px;
  color: #FFFFFF !important;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  overflow: visible;
}

/*
 * List marker: fixed size D-tab (does not grow with multi-line text).
 */
.feature-list.feature-list--plat li::before {
  content: counter(plat-ribbon, decimal-leading-zero);
  position: absolute;
  left: -4px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  background: #FBCC09;
  color: #000000 !important;
  font-size: 1.15rem;
  font-weight: 800;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  line-height: 1;
  border-radius: 10px 50px 50px 10px;
  box-shadow:
    3px 2px 8px rgba(15, 23, 42, 0.22),
    1px 0 0 rgba(255, 255, 255, 0.2) inset;
}

/* Subtle wrap/fold lip — same fixed size as the marker */
.feature-list.feature-list--plat li::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 3;
  width: 5px;
  height: 48px;
  pointer-events: none;
  border-radius: 6px 0 0 6px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.05) 55%,
    transparent 100%
  );
}

/* One accent for every plat list item (marker + title) */
.feature-list.feature-list--plat li,
.apollo-plat--huston .feature-list.feature-list--plat li,
.apollo-plat--odycey .feature-list.feature-list--plat li,
.feature-list.feature-list--plat.feature-list--huston li,
.feature-list.feature-list--plat.feature-list--odycey li,
.feature-list.feature-list--plat li:nth-child(n) {
  --ribbon: #FBCC09;
  color: #FBCC09;
}

.feature-list.feature-list--plat li::before {
  background: #FBCC09;
  color: #fffef5;
}

@media (max-width: 720px) {
  .feature-list.feature-list--plat {
    grid-template-columns: 1fr;
  }
}

.office-card.apollo-plat {
  padding: 24px 22px !important;
}

.logo-card.apollo-plat,
.product-card.apollo-plat,
.cert.apollo-plat,
.office-card.apollo-plat,
.partners-type-card.apollo-plat,
.partners-benefit-card.apollo-plat,
.partners-step.apollo-plat,
.innov-use-card.apollo-plat,
.innov-stat.apollo-plat,
.innov-path-step.apollo-plat,
.innov-shield-item.apollo-plat,
.login-card.apollo-plat,
.hcard.apollo-plat {
  background: rgba(2, 6, 23, 0.45) !important;
  border: 1px solid rgba(148, 163, 184, 0.24) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
}

.logo-card.apollo-plat--huston,
.product-card.apollo-plat--huston,
.cert.apollo-plat--huston,
.office-card.apollo-plat--huston,
.partners-type-card.apollo-plat--huston,
.partners-benefit-card.apollo-plat--huston,
.partners-step.apollo-plat--huston,
.innov-use-card.apollo-plat--huston,
.innov-stat.apollo-plat--huston,
.innov-path-step.apollo-plat--huston,
.innov-shield-item.apollo-plat--huston,
.login-card.apollo-plat--huston,
.hcard.apollo-plat--huston {
  border-color: #fbcc096b !important;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08) !important;
}

.logo-card.apollo-plat--odycey,
.product-card.apollo-plat--odycey,
.cert.apollo-plat--odycey,
.office-card.apollo-plat--odycey,
.partners-type-card.apollo-plat--odycey,
.partners-benefit-card.apollo-plat--odycey,
.partners-step.apollo-plat--odycey,
.innov-use-card.apollo-plat--odycey,
.innov-stat.apollo-plat--odycey,
.innov-path-step.apollo-plat--odycey,
.innov-shield-item.apollo-plat--odycey,
.login-card.apollo-plat--odycey,
.hcard.apollo-plat--odycey {
  border-color: #fbcc096b !important;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.08) !important;
}

.product-card.apollo-plat h3,
.partners-type-card.apollo-plat h3,
.partners-benefit-card.apollo-plat h3,
.partners-step.apollo-plat h3,
.innov-use-card.apollo-plat h3,
.innov-path-step.apollo-plat h3 {
  color: #FBCC09 !important;
}

.office-card.apollo-plat .office-place,
.cert.apollo-plat strong,
.innov-stat.apollo-plat strong,
.innov-shield-item.apollo-plat strong,
.hcard.apollo-plat .hcard-name {
  color: #f8fafc !important;
}

.product-card.apollo-plat p,
.partners-type-card.apollo-plat p,
.partners-benefit-card.apollo-plat p,
.partners-step.apollo-plat p,
.innov-use-card.apollo-plat p,
.innov-path-step.apollo-plat p,
.office-card.apollo-plat p,
.office-card.apollo-plat .office-phone,
.cert.apollo-plat span,
.innov-stat.apollo-plat span,
.innov-shield-item.apollo-plat span,
.hcard.apollo-plat .hcard-sub {
  color: #ffffff !important;
}

.cert.apollo-plat .cert__logo-wrap {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.product-card.apollo-plat--huston .pill,
.partners-type-card.apollo-plat--huston .partners-type-tag,
.innov-use-card.apollo-plat--huston .innov-use-num,
.innov-use-card.apollo-plat--huston .innov-use-tag,
.partners-step.apollo-plat--huston .partners-step-num,
.innov-path-step.apollo-plat--huston .innov-path-index,
.office-card.apollo-plat--huston .office-brand,
.hcard.apollo-plat--huston .hcard-badge {
  color: #FBCC09 !important;
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.08) !important;
}

.product-card.apollo-plat--odycey .pill,
.partners-type-card.apollo-plat--odycey .partners-type-tag,
.innov-use-card.apollo-plat--odycey .innov-use-num,
.innov-use-card.apollo-plat--odycey .innov-use-tag,
.partners-step.apollo-plat--odycey .partners-step-num,
.innov-path-step.apollo-plat--odycey .innov-path-index,
.office-card.apollo-plat--odycey .office-brand,
.hcard.apollo-plat--odycey .hcard-badge {
  color: #FBCC09 !important;
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08) !important;
}

.logo-card.apollo-plat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 20px;
  /* 50% white so brand logos stay readable on dark theme */
  background: #FFFFFF !important;
}
.logo-card.apollo-plat--huston {
  background: #FFFFFF !important;
}
.logo-card.apollo-plat--odycey {
  background: #FFFFFF !important;
}
.logo-card.apollo-plat img {
  opacity: 1;
  max-height: 48px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  filter: none;
}

[data-theme="apollo"] .logo-card.apollo-plat,
[data-theme="apollo"] .logo-card.apollo-plat--huston,
[data-theme="apollo"] .logo-card.apollo-plat--odycey {
  background: rgba(255, 255, 255, 1) !important;
}

.partners-step.apollo-plat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.innov-path-step.apollo-plat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}
.partners-step-num,
.innov-path-index {
  border-radius: 0 !important;
}

.innov-checklist li:nth-child(odd) {
  border-left: 3px solid #FBCC09;
  padding-left: 12px;
}
.innov-checklist li:nth-child(even) {
  border-left: 3px solid #3b82f6;
  padding-left: 12px;
}

[data-theme="apollo"] .section.bg-off,
[data-theme="apollo"] .section.bg-teal-pale,
[data-theme="apollo"] .customers-section,
[data-theme="apollo"] .partners-intro-section,
[data-theme="apollo"] .addresses-section,
[data-theme="apollo"] .innov-outcomes {
  background: #020617a8 !important;
}

[data-theme="apollo"] .section#compliance,
.section#compliance {
  scroll-margin-top: 96px;
}

/* Proper tab pairing: nav sits directly on the panel */
.solutions-tabs-nav.about-tabs-nav {
  margin: 0 0 0;
  margin-bottom: 0 !important;
  padding: 4px 6% 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  scroll-margin-top: 88px;
}

.solutions-tabs-nav + .apollo-mission-section.solutions-tab-panel,
.solutions-tabs-nav + .solutions-tab-panel {
  padding-top: 16px;
}

.apollo-mission-section.solutions-tab-panel {
  padding: 16px 6% 48px;
  scroll-margin-top: 88px;
}

/* Solutions Huston / Odycey — mission panel (Apollo) */
.apollo-mission-section {
  padding: 56px 6% 72px;
  scroll-margin-top: 96px;
}

/* Proper tab shell: nav + panel as one unit */
.solutions-tabs {
  scroll-margin-top: 88px;
  margin: 0;
  padding: 0;
}

.solutions-tabs .solutions-tabs-nav {
  margin: 0;
  padding: 8px 6% 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.solutions-tabs .solutions-tabs-btn {
  margin-bottom: -1px;
}

.solutions-tabs .apollo-mission-section {
  padding: 20px 6% 48px;
  scroll-margin-top: 0;
}

.solutions-tabs .apollo-mission-panel {
  margin-top: 0;
}

.apollo-mission-section::before {
  background-image: none;
}

.apollo-mission-section--odycey::before {
  background-position: center left;
}

.apollo-mission-section .apollo-section-inner {
  /* max-width: 960px; */
}

.apollo-mission-panel {
  padding: 36px 40px 32px;
  gap: 18px;
  background: rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.apollo-mission-panel .apollo-plat-heading,
.apollo-mission-panel .apollo-nameplate {
  align-self: flex-start;
  /* max-width: 36rem; */
  margin-bottom: 4px;
}

.apollo-mission-panel .apollo-plat-title,
.apollo-mission-panel .apollo-name {
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.15;
}

.apollo-mission-panel .apollo-plat-subtitle,
.apollo-mission-panel .apollo-name-sub {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #e2e8f0;
}

.apollo-mission-panel .apollo-plat-lead {
  margin: 0; 
  font-size: 1.50rem;
  line-height: 1.65;
  color: #e2e8f0;
}

.apollo-mission-panel .solutions-subhead {
  margin: 12px 0 4px;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #FBCC09;
}

.apollo-mission-panel .feature-list.feature-list--plat {
  margin: 4px 0 0;
  width: 100%;
}

.apollo-plat .feature-list.feature-list--plat {
  margin-top: 4px;
}

.apollo-mission-cards {
  margin-top: 12px;
}

.apollo-mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Solutions platform tabs — same underline style as About tabs */
.solutions-tabs-nav {
  position: relative;
  margin: 0;
  padding: 8px 6% 0;
  scroll-margin-top: 96px;
}

/* Invisible #huston / #odycey targets sit on the tab bar */
.solutions-frag {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  scroll-margin-top: 96px;
}

.solutions-tabs-btn__short {
  display: none;
}

.solutions-tab-panel {
  scroll-margin-top: 96px;
}

.solutions-tabs-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 12px 18px 14px;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.solutions-tabs-btn__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.solutions-tabs-btn__desc {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(148, 163, 184, 0.75);
}

.solutions-tabs-btn:hover .solutions-tabs-btn__desc {
  color: rgba(226, 232, 240, 0.7);
}

.solutions-tabs-btn.is-active .solutions-tabs-btn__desc {
  color: rgba(34, 211, 238, 0.75);
}

@media (max-width: 720px) {
  .apollo-mission-panel {
    padding: 24px 20px 22px;
  }

  .apollo-mission-panel .apollo-plat-heading,
  .apollo-mission-panel .apollo-nameplate {
    max-width: 100%;
  }
}



/* Message / CMS form extras */
.demo-section .req {
  color: var(--teal, #00a3ad);
}
[data-theme="apollo"] .demo-section {
  background: linear-gradient(140deg, #020617 0%, #0a1628 55%, #0B3278 100%);
}
[data-theme="apollo"] .demo-section .demo-form-card {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(59, 130, 246, 0.28);
}

/* =============================================================================
   Core standards polish — responsive + CLS + a11y + cross-browser
   ============================================================================= */
img, video, svg {
  max-width: 100%;
  height: auto;
}

.person-photo img,
.nav-logo img,
.footer-logo img {
  height: auto;
  max-height: 100%;
}

.footer-logo img {
  width: 150px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

body {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

#nav.site-header .nav-item > a {
  min-height: 44px;
}

.app-main__content {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 100%;
}

.section-inner,
.hero-inner,
.contact-split,
.careers-split,
.about-tabs-body,
.about-tabs-panel,
.about-tabs-inner {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* iPad Pro (incl. 11" / 12.9" landscape) + tablets — prevent horizontal clip */
@media (max-width: 1280px) {
  .contact-split,
  .careers-split,
  .about-careers-split,
  .about-contact-split,
  .apollo-hero-body {
    grid-template-columns: 1fr !important;
  }

  .people-grid,
  .people-grid-all,
  .product-grid,
  .cert-grid,
  .logo-grid,
  .innov-split,
  .ch-grid,
  .stage {
    grid-template-columns: 1fr 1fr !important;
  }

  .cert,
  .cert--wide {
    grid-column: span 1 !important;
    width: 100%;
    max-width: 100%;
  }

  .interns-track__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-tabs-nav,
  .solutions-tabs-nav {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .about-tabs-btn {
    flex: 0 0 auto;
  }

  .solutions-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: visible;
  }

  .solutions-tabs-btn__full {
    display: none;
  }

  .solutions-tabs-btn__short {
    display: inline;
  }
}

@media (max-width: 768px) {
  .solutions-tabs-nav.about-tabs-nav,
  .solutions-tabs-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 0;
    padding: 8px 4% 0;
  }

  .solutions-tabs-nav .solutions-tabs-btn {
    flex: 1 1 50%;
    justify-content: center;
    text-align: center;
    padding: 12px 8px 14px;
  }

  .solutions-tabs-btn__name {
    font-size: 1rem;
  }

  .innovations-tabs-nav.about-tabs-nav,
  .innovations-tabs-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow: visible;
    gap: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  }

  .innovations-tabs-nav .innovations-tabs-btn {
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  }

  .innovations-tabs-nav .innovations-tabs-btn.is-active {
    border-bottom-color: var(--apollo-cyan, #fbcc09);
  }

  #about-tabs .about-tabs-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    gap: 0;
  }

  #about-tabs .about-tabs-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 12px 10px;
  }
}

/* iPad Mini / portrait tablet */
@media (max-width: 900px) {
  .contact-split,
  .careers-split,
  .about-careers-split,
  .about-contact-split {
    grid-template-columns: 1fr;
  }

  .people-grid,
  .people-grid-all,
  .office-grid,
  .contact-split-office-grid,
  .product-grid,
  .cert-grid,
  .logo-grid,
  .innov-split,
  .ch-grid,
  .stage {
    grid-template-columns: 1fr !important;
  }

  .cert,
  .cert--wide {
    grid-column: 1 / -1 !important;
  }

  .interns-track__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .demo-section .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .apollo-hero {
    min-height: auto;
    padding: 72px 5% 56px;
  }
  .default-page .tab-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .default-page .tab-pane.on {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-btns {
    flex-wrap: wrap;
  }
  .hero-btns a,
  .btn-teal,
  .btn-ghost,
  .btn-outline,
  .btn-submit {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .interns-track__note--left,
  .interns-track__note--right {
    max-width: none;
    text-align: left;
    justify-self: stretch;
  }
}

/* =============================================================================
   Interns Certification Track — zigzag timeline (theme colors, no yellow bg)
   ============================================================================= */
.cert-track-section {
  background: transparent;
  padding-top: 48px;
  padding-bottom: 72px;
}

.cert-track-inner {
  max-width: 1080px;
}

.cert-track-title {
  text-align: center;
  margin: 0 0 40px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: var(--iki-navy);
}

.cert-track-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto 40px;
  padding: 8px 0 16px;
}

.cert-track-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(148, 163, 184, 0.45);
}

.cert-track-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  z-index: 1;
}

.cert-track-row--left {
  grid-template-areas: "side axis dur";
}

.cert-track-row--right {
  grid-template-areas: "dur axis side";
}

.cert-track-side {
  grid-area: side;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cert-track-row--left .cert-track-side {
  justify-content: flex-end;
}

.cert-track-row--right .cert-track-side {
  justify-content: flex-start;
  flex-direction: row-reverse;
}

.cert-track-copy {
  max-width: 300px;
  margin: 0;
  color: var(--iki-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cert-track-row--left .cert-track-copy {
  text-align: right;
}

.cert-track-row--right .cert-track-copy {
  text-align: left;
}

.cert-track-copy p {
  margin: 0;
}

.cert-track-divider {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  margin: 10px 0;
}

.cert-track-badge {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 14px 22px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.96);
  color: var(--iki-navy);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.12);
}

.cert-track-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
}

.cert-track-row--left .cert-track-badge::after {
  right: -10px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent rgba(248, 250, 252, 0.96);
}

.cert-track-row--right .cert-track-badge::after {
  left: -10px;
  border-width: 8px 10px 8px 0;
  border-color: transparent rgba(248, 250, 252, 0.96) transparent transparent;
}

.cert-track-axis {
  grid-area: axis;
  display: flex;
  justify-content: center;
}

.cert-track-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1cd42;
  color: #0f172a;
  border: 3px solid rgba(248, 250, 252, 0.9);
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.4);
}

.cert-track-row--accent .cert-track-node {
  background: #f1cd42;
  box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.35);
}

.cert-track-dur {
  grid-area: dur;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--iki-navy);
  white-space: nowrap;
}

.cert-track-row--left .cert-track-dur {
  justify-self: start;
}

.cert-track-row--right .cert-track-dur {
  justify-self: end;
}

.cert-track-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  margin: 28px 0 8px;
  padding: 8px 0 4px;
  background: transparent;
}

.cert-track-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin: 0;
}

.cert-track-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1e293b;
  color: #f8fafc;
  flex: 0 0 auto;
  box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.2);
}

.cert-track-feature-text {
  margin: 0;
  /* max-width: 220px; */
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--iki-navy);
}

.cert-track-actions {
  margin-top: 2.5rem;
  justify-content: center;
}

[data-theme="apollo"] .cert-track-title,
[data-theme="apollo"] .cert-track-dur {
  color: #f8fafc;
}

[data-theme="apollo"] .cert-track-feature-text {
  color: #e2e8f0;
}

[data-theme="apollo"] .cert-track-feature-icon {
  background: rgba(15, 23, 42, 0.95);
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.12);
}

@media (max-width: 900px) {
  .cert-track-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 560px) {
  .cert-track-highlights {
    grid-template-columns: 1fr;
  }

  .cert-track-feature-text {
    max-width: none;
  }
}

[data-theme="apollo"] .cert-track-copy {
  color: #cbd5e1;
}

[data-theme="apollo"] .cert-track-divider {
  border-top-color: rgba(148, 163, 184, 0.35);
}

[data-theme="apollo"] .cert-track-timeline::before {
  background: rgba(148, 163, 184, 0.35);
}

[data-theme="apollo"] .cert-track-badge {
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

[data-theme="apollo"] .cert-track-row--left .cert-track-badge::after {
  border-color: transparent transparent transparent rgba(15, 23, 42, 0.92);
}

[data-theme="apollo"] .cert-track-row--right .cert-track-badge::after {
  border-color: transparent rgba(15, 23, 42, 0.92) transparent transparent;
}

[data-theme="apollo"] .cert-track-row--accent .cert-track-badge {
  border-color: rgba(56, 189, 248, 0.45);
}

@media (max-width: 860px) {
  .cert-track-timeline::before {
    left: 21px;
    transform: none;
  }

  .cert-track-row,
  .cert-track-row--left,
  .cert-track-row--right {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "axis side"
      ". dur";
    column-gap: 14px;
    row-gap: 8px;
  }

  .cert-track-side {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px;
  }

  .cert-track-row--left .cert-track-copy,
  .cert-track-row--right .cert-track-copy {
    text-align: left;
    max-width: none;
  }

  .cert-track-row--left .cert-track-dur,
  .cert-track-row--right .cert-track-dur {
    justify-self: start;
  }

  .cert-track-row--left .cert-track-badge::after,
  .cert-track-row--right .cert-track-badge::after {
    left: -10px;
    right: auto;
    border-width: 8px 10px 8px 0;
    border-color: transparent rgba(248, 250, 252, 0.96) transparent transparent;
  }

  [data-theme="apollo"] .cert-track-row--left .cert-track-badge::after,
  [data-theme="apollo"] .cert-track-row--right .cert-track-badge::after {
    border-color: transparent rgba(15, 23, 42, 0.92) transparent transparent;
  }
}

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

/* ── Downloads / PDF documents ─────────────────────────────────────────── */
.downloads-section .lede {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.download-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.download-doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  position: relative;
}

.download-doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--teal, #0d9488);
  background: color-mix(in srgb, var(--teal, #0d9488) 12%, transparent);
}

.download-doc-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FBCC09;
}

.download-doc-body p {
  margin: 0 0 0.5rem;
  color: var(--muted, #64748b);
  font-size: 0.92rem;
  line-height: 1.45;
}

.download-doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--muted, #94a3b8);
}

.download-doc-btn {
  white-space: nowrap;
  text-decoration: none;
}

.download-doc-btn--disabled {
  opacity: 0.5;
  pointer-events: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .download-docs-grid {
    grid-template-columns: 1fr;
  }

  .download-doc-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .download-doc-btn,
  .download-doc-btn--disabled {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* Site-wide: every h3 uses brand amber */
h3 {
  color: #FBCC09 !important;
}

