:root {
  --bg: #0c0e12;
  --bg-elevated: #14181f;
  --bg-card: #1a1f28;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaef;
  --text-muted: #9aa3b2;
  --accent: #5eead4;
  --accent-dim: rgba(94, 234, 212, 0.15);
  --accent-text: #042f2e;
  --hero-glow: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(94, 234, 212, 0.22), transparent);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1120px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 14, 18, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.announcement {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.announcement__text {
  color: var(--text-muted);
}

.announcement__link {
  color: var(--accent);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: var(--header-h);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav__links a {
  color: var(--text-muted);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a[aria-current="page"],
.nav-mobile a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.nav__cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-text) !important;
  font-weight: 600;
}

.nav__cta:hover {
  filter: brightness(1.08);
  color: var(--accent-text) !important;
}

.nav__toggle {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.nav-mobile:not([hidden]) {
  display: flex;
}

.nav-mobile a {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-weight: 500;
}

@media (min-width: 880px) {
  .nav__links {
    display: flex;
  }
  .nav__toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
  background: var(--bg);
}

.hero__motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__aurora {
  position: absolute;
  inset: -40% -20% -10%;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.hero__orb--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  left: 5%;
  top: -5%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.45), transparent 65%);
  animation: hero-float-a 18s ease-in-out infinite;
}

.hero__orb--b {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  right: 0;
  top: 10%;
  background: radial-gradient(circle at 70% 40%, rgba(99, 102, 241, 0.35), transparent 60%);
  animation: hero-float-b 22s ease-in-out infinite;
}

.hero__orb--c {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  left: 35%;
  bottom: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.25), transparent 55%);
  animation: hero-float-c 20s ease-in-out infinite;
}

.hero__orb--d {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  right: 25%;
  top: 40%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
  animation: hero-float-d 26s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: -30% -50% -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, rgba(0, 0, 0, 0.9), transparent 72%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, rgba(0, 0, 0, 0.9), transparent 72%);
  opacity: 0.35;
  animation: hero-grid-drift 48s linear infinite;
}

.hero__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% -15%, rgba(94, 234, 212, 0.18), transparent 55%);
}

@keyframes hero-float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(8%, 12%) scale(1.08);
  }
  66% {
    transform: translate(-5%, 6%) scale(0.95);
  }
}

@keyframes hero-float-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12%, 8%) scale(1.12);
  }
}

@keyframes hero-float-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(10%, -8%) scale(1.05);
  }
  70% {
    transform: translate(-8%, -4%) scale(0.92);
  }
}

@keyframes hero-float-d {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6%, 14%);
  }
}

@keyframes hero-grid-drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(56px, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orb,
  .hero__grid {
    animation: none;
  }
  .hero__orb {
    opacity: 0.35;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__lead {
  margin: 0 auto 2rem;
  max-width: 540px;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__proof span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(94, 234, 212, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-text);
}

.btn--primary:hover {
  color: var(--accent-text);
  filter: brightness(1.06);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.pillars {
  padding: 0 1.5rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .pillars__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(26, 31, 40, 0.9);
}

.pillar__icon {
  display: block;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pillar__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.pillar__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.logos {
  padding: 2rem 1.5rem 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.logos__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.logo-placeholder {
  min-width: 100px;
  height: 40px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: 8px;
  opacity: 0.7;
}

@media (max-width: 520px) {
  .logo-placeholder--hide-sm {
    display: none;
  }
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  text-align: left;
}

@media (max-width: 640px) {
  .section-head--row {
    justify-content: center;
    text-align: center;
  }
}

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-head--row .section-head__title {
  margin: 0;
}

.section-head__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-head__inline-link {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 600;
  color: var(--accent);
}

.section-head__inline-link:hover {
  color: var(--text);
}

.section-head__note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.platform {
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.platform-tab {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.platform-tab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

.platform-tab.is-active {
  background: var(--accent-dim);
  border-color: rgba(94, 234, 212, 0.35);
  color: var(--accent);
}

.platform-panels {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2rem;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
  .platform-panels {
    padding: 2.5rem 3rem;
  }
}

.platform-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.platform-panel__text {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.platform-panel__list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.platform-panel__list li {
  margin-bottom: 0.5rem;
}

.platform-panel[hidden] {
  display: none;
}

.products {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.products .section-head {
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: stretch;
  }

  .product-grid--single {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.product-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.product-card--featured {
  border-color: rgba(94, 234, 212, 0.25);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.08);
}

.product-card--placeholder {
  opacity: 0.92;
}

.product-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-text);
  background: var(--accent);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 1rem;
}

.product-card__badge--muted {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.product-card__tagline {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.product-card__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.product-card__list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.product-card__list li {
  margin-bottom: 0.4rem;
}

.product-card__link {
  font-weight: 600;
  color: var(--accent);
}

.product-card__soon {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: auto;
}

.stories {
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.stories__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .stories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.story-card--placeholder {
  border-style: dashed;
}

.story-card__quote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--text);
}

.story-card__meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.stats {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.stats__grid {
  display: grid;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
  display: block;
  line-height: 1.5;
}

.team {
  padding: 4rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.team__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.person {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.person:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.person__avatar {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent-dim);
}

.person__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  z-index: 0;
}

.person__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.person__name {
  margin: 0 0 0.2rem;
  font-size: 1.0625rem;
}

.person__role {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

.person__bio {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta-band {
  padding: 4rem 1.5rem;
  background: var(--hero-glow), var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.cta-band__text {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.site-footer {
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__cols {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.site-footer__brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 260px;
}

.site-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list a {
  color: var(--text-muted);
}

.site-footer__list a:hover {
  color: var(--text);
}

.muted {
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.subpage {
  padding: 3.75rem 0 5rem;
}

.page-stack {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding-inline: clamp(1rem, 3.5vw, 2rem);
  display: grid;
  gap: 4rem;
  box-sizing: border-box;
}

.subpage--careers,
.subpage--placeholder {
  display: block;
}

.page-hero {
  position: relative;
  display: grid;
  gap: 2rem;
  width: 100%;
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-card);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

@media (min-width: 960px) {
  .page-hero {
    padding: 3rem;
  }
}

.page-hero--careers {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero__content {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero__eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero__title,
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 13ch;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.page-hero__lead,
.section-copy {
  margin: 1.25rem 0 0;
  max-width: 64ch;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.page-hero__lead--secondary {
  margin-top: 1rem;
}

.page-hero__meta {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 760px) {
  .page-hero__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-hero__metric {
  padding: 1rem 1.125rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.page-hero__metric-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-hero__metric-value {
  font-size: 1rem;
  line-height: 1.4;
}

.careers-shell {
  display: grid;
  gap: 1.75rem;
}

.careers-shell__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.careers-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-card);
  overflow: hidden;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.careers-role-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.careers-role {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}

.careers-role:hover {
  background: rgba(255, 255, 255, 0.02);
}

.careers-role:last-child {
  border-bottom: 0;
}

.careers-role__body {
  flex: 1 1 18rem;
}

.careers-role__title {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.careers-role__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.careers-role__cta {
  flex-shrink: 0;
  min-width: 9.25rem;
}

.careers-principles__grid,
.placeholder-grid__cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .careers-principles__grid,
  .placeholder-grid__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.info-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.info-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.careers-footnote {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.placeholder-hero {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}

.placeholder-hero__content,
.placeholder-hero__panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.placeholder-hero__content {
  padding: 2.75rem 2.25rem;
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.15), transparent 36%),
    var(--bg-card);
  text-align: center;
}

.placeholder-hero__panel {
  padding: 2rem;
  text-align: center;
}

.placeholder-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.placeholder-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
}

.placeholder-status::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(94, 234, 212, 0.12);
}

.placeholder-panel__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
}

.placeholder-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.placeholder-links li + li {
  margin-top: 0.875rem;
}

.placeholder-links a {
  color: var(--text);
  font-weight: 600;
}

.placeholder-links a:hover {
  color: var(--accent);
}

.placeholder-grid {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.site-footer__legal {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-footer__meta-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.9rem;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer__meta-links li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-footer__meta-links li:not(:last-child)::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  margin-left: 0.9rem;
  background: rgba(255, 255, 255, 0.22);
}

.site-footer__meta-links a {
  color: var(--text-muted);
}

.site-footer__meta-links a:hover {
  color: var(--text);
}

@media (max-width: 860px) {
  .site-footer__bottom {
    justify-content: center;
  }

  .site-footer__legal {
    white-space: normal;
    text-align: center;
  }

  .site-footer__meta-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 1rem;
  }

  .nav__brand {
    font-size: 1rem;
  }

  .hero {
    padding: 3.25rem 1rem 4rem;
  }

  .hero__title {
    font-size: clamp(2rem, 12vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .page-hero__title {
    max-width: none;
    font-size: clamp(1.7rem, 8.5vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .section-title {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .hero__lead {
    font-size: 1rem;
    max-width: 22rem;
  }

  .page-hero__lead,
  .section-copy {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .cta-band__actions,
  .placeholder-hero__actions {
    flex-direction: column;
  }

  .careers-role {
    align-items: flex-start;
  }

  .careers-role__cta {
    width: auto;
    min-width: 8.5rem;
  }

  .section-head__inline-link {
    display: block;
    margin: 0.75rem 0 0;
  }

  .page-hero,
  .placeholder-hero__content,
  .placeholder-hero__panel,
  .careers-panel,
  .info-card {
    border-radius: 20px;
  }

  .page-hero,
  .placeholder-hero__content,
  .placeholder-hero__panel {
    padding: 1.5rem;
  }
}

/* Section visibility (controlled via admin.html + visibility.js) */
.site-section--hidden {
  display: none !important;
}

.site-nav-link--hidden {
  display: none !important;
}
