/* KAM — futuristic mobile-first design system */
:root {
  --bg-deep: #1a222d;
  --bg-base: #232d3b;
  --bg-elevated: rgba(255, 255, 255, 0.07);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --kam-blue-dark: #005a9e;
  --kam-blue: #0072bc;
  --kam-blue-bright: #00adef;
  --cyan: #00adef;
  --cyan-dim: rgba(0, 173, 239, 0.18);
  --violet: #4db8e8;
  --violet-dim: rgba(0, 173, 239, 0.12);
  --accent: #7dd3fc;
  --text: #f8fafc;
  --text-muted: #c5d0dc;
  --text-dim: #8b9aab;
  --gradient-brand: linear-gradient(135deg, #005a9e 0%, #0072bc 50%, #00adef 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 90, 158, 0.45), rgba(0, 173, 239, 0.35));
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 40px rgba(0, 173, 239, 0.22);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max-width: 1160px;
  --header-h: 80px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body.kam-app {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7dd3fc;
}

/* Ambient background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-mesh__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}

.bg-mesh__orb--1 {
  width: min(60vw, 480px);
  height: min(60vw, 480px);
  background: #0072bc;
  top: -10%;
  right: -10%;
  opacity: 0.35;
}

.bg-mesh__orb--2 {
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: #005a9e;
  bottom: 20%;
  left: -15%;
  animation-delay: -6s;
  opacity: 0.3;
}

.bg-mesh__orb--3 {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  background: #00adef;
  bottom: -5%;
  right: 20%;
  animation-delay: -12s;
  opacity: 0.28;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--cyan);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.5rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-header.is-scrolled {
  background: rgba(35, 45, 59, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(280px, 65vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.site-nav__link:hover {
  color: var(--text);
  background: var(--glass);
}

.site-nav__phone {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.site-nav__phone:hover {
  color: var(--cyan);
  background: var(--glass);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn--lg {
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(0, 114, 188, 0.45);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(0, 173, 239, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.92;
}

.btn.is-loading:hover {
  transform: none;
}

.btn__spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -0.625rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.65s linear infinite;
}

.btn.is-loading .btn__spinner {
  display: block;
}

.btn.is-loading .btn__label {
  visibility: hidden;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Join form — full-screen submit overlay */
body.join-page--submitting {
  overflow: hidden;
}

.join-loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 12, 24, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.join-loading-overlay.is-active {
  display: flex;
}

.join-loading-overlay__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 22rem;
  padding: 2rem 2.25rem;
  text-align: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(0, 173, 239, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.join-loading-overlay__spinner {
  width: 3rem;
  height: 3rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--cyan, #00adef);
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

.join-loading-overlay__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.btn--glass,
.btn--outline-light {
  background: rgba(0, 114, 188, 0.35);
  border-color: rgba(0, 173, 239, 0.55);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--glass:hover,
.btn--outline-light:hover {
  background: rgba(0, 114, 188, 0.55);
  border-color: var(--kam-blue-bright);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--kam-blue-bright);
  color: var(--kam-blue-bright);
}

.btn--outline:hover {
  background: rgba(0, 173, 239, 0.15);
  color: #fff;
}

.btn--white {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(0, 114, 188, 0.35);
}

.btn--white:hover {
  box-shadow: 0 8px 32px rgba(0, 173, 239, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Glass card mixin via class */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero--image {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  min-height: min(92dvh, 800px);
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 34, 45, 0.15) 0%, rgba(26, 34, 45, 0.72) 100%),
    linear-gradient(115deg, rgba(0, 114, 188, 0.15) 0%, rgba(0, 90, 158, 0.12) 50%, rgba(26, 34, 45, 0.55) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 173, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 173, 239, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 30%, transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 173, 239, 0.35);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Trust bar */
.trust-bar {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-block: 1px solid var(--glass-border);
}

.trust-bar__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.trust-card:hover {
  border-color: rgba(0, 173, 239, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  background: var(--gradient-glow);
  color: var(--cyan);
}

.trust-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.trust-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header__sub {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.features__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.feature-card {
  padding: 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), var(--shadow-glow);
}

.feature-card__icon {
  display: inline-flex;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.feature-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Split paths */
.split-paths {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.split-paths__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.path-card {
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.path-card:hover {
  border-color: rgba(0, 173, 239, 0.25);
  box-shadow: var(--shadow-glow);
}

.path-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.path-card p,
.path-card ul {
  color: var(--text-muted);
}

.path-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

/* Video */
.video-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.video-player {
  max-width: 920px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  background: var(--bg-deep);
}

.video-player__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-player__poster {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.video-player__poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95), rgba(14, 116, 144, 0.4));
  color: var(--text);
}

.video-player__play {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(0, 173, 239, 0.4);
}

.video-player__poster-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
}

.video-player__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left;
  max-width: 22rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.video-player__hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.video-player__hint code {
  background: var(--glass);
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
}

.video-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.video-stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.video-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-player__html5 {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
}

.recruiting-video-player {
  position: relative;
  aspect-ratio: 16 / 9;
}

.recruiting-video-player__screen {
  position: relative;
  height: 100%;
  min-height: 280px;
  background: var(--bg-deep) center / cover no-repeat;
  background-image: linear-gradient(145deg, rgba(0, 90, 158, 0.55), rgba(26, 34, 45, 0.92));
}

.recruiting-video-player[data-poster] .recruiting-video-player__screen {
  background-image:
    linear-gradient(145deg, rgba(0, 90, 158, 0.72), rgba(26, 34, 45, 0.88)),
    var(--recruiting-poster, none);
}

.recruiting-video-player__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.recruiting-video-player.is-slide-visible .recruiting-video-player__slide {
  opacity: 1;
  transform: translateY(0);
}

.recruiting-video-player__headline {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 28ch;
}

.recruiting-video-player__body {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--text-muted);
}

.recruiting-video-player__big-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4.5rem;
  height: 4.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 173, 239, 0.4);
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.recruiting-video-player__big-play:hover {
  transform: scale(1.06);
}

.recruiting-video-player.is-playing .recruiting-video-player__big-play {
  opacity: 0;
  pointer-events: none;
}

.recruiting-video-player__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(7, 10, 18, 0.92);
  border-top: 1px solid var(--glass-border);
}

.recruiting-video-player__btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
}

.recruiting-video-player__progress-wrap {
  flex: 1;
}

.recruiting-video-player__progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  accent-color: var(--cyan);
}

.recruiting-video-player__time {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

/* CTA */
.cta-band {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--glass);
  border-block: 1px solid var(--glass-border);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.25;
  pointer-events: none;
}

.cta-band__inner,
.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
}

.cta-band__sub {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--text-muted);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-band__note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* FAQ */
.faq {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.faq__list {
  max-width: 52rem;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 0.75rem;
  padding: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item[open] {
  border-color: rgba(0, 173, 239, 0.3);
}

.faq__question {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__answer {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Blog */
.blog-section {
  padding: clamp(3rem, 8vw, 5rem) 0 calc(3rem + var(--safe-bottom));
}

.section-header--with-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.blog-section__logo {
  height: 44px;
  width: auto;
  filter: brightness(1.1);
}

.blog-section__heading {
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

.blog-section__heading--news {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.blog-section__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.blog-card {
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.blog-card__brand {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

.blog-card__logo {
  height: 26px;
  width: auto;
  opacity: 0.95;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 0 0 0.65rem;
}

.blog-card__category {
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-card__title a {
  color: var(--text);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--cyan);
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-card__link {
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Inner pages */
.page-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40rem;
}

.content-section {
  padding: clamp(2rem, 5vw, 3rem) 0 4rem;
}

.prose {
  max-width: 48rem;
  color: var(--text-muted);
}

.prose h2 {
  margin-top: 2rem;
  font-family: var(--font-display);
  color: var(--text);
}

.prose a {
  color: var(--cyan);
}

.why-switch {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.why-switch__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}

.why-switch__list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.why-switch__list li::before {
  content: "→";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--cyan);
  font-weight: 700;
}

.product-categories__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-category {
  padding: 1.25rem 1.35rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.product-category__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

.product-category__desc {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.product-category__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.product-category__list li {
  margin-bottom: 0.25rem;
}

.recruiting-event {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.recruiting-event__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--gradient-glow);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.recruiting-event__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
}

.recruiting-event__schedule {
  margin: 0;
  font-weight: 600;
  color: var(--accent);
}

.recruiting-event__desc {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  max-width: 36rem;
}

/* Forms */
.form-card {
  padding: 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  max-width: 32rem;
}

.form-card--join {
  max-width: 52rem;
}

.form-row--split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.form-group--checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--cyan);
}

.form-group--checkbox .checkbox-label {
  display: inline;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}

textarea.form-control {
  min-height: 120px;
}

.required-indicator {
  color: #f87171;
  font-weight: 700;
}

.field-validation-error {
  display: block;
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.input-validation-error {
  border-color: rgba(239, 68, 68, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.alert {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-card--join .alert {
  margin-top: 1.25rem;
}

.alert--error {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

.alert--success {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
}

.blog-article__logo {
  display: block;
  margin-bottom: 1rem;
  height: 36px;
  width: auto;
}

.blog-article__meta {
  color: var(--text-dim);
  font-size: 0.875rem;
}

.blog-article__excerpt {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.page-hero--compact {
  padding-top: 2rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 3rem 0 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding-bottom: 2rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0 0 0.75rem;
}

.site-footer__text,
.site-footer__links {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer__links {
  list-style: none;
  padding: 0;
}

.site-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
  min-height: 44px;
  line-height: 44px;
}

.site-footer__links a:hover {
  color: var(--cyan);
}

.site-footer__bottom {
  padding: 1.25rem 0 calc(1.25rem + var(--safe-bottom));
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.site-footer__licenses {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

.site-footer__licenses--bottom {
  margin-top: 0.75rem;
}

.site-footer__disclaimer {
  margin: 0.75rem 0 0;
  max-width: 52rem;
  line-height: 1.55;
}

.site-footer__legal {
  margin: 0.5rem 0 0;
  max-width: 56rem;
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--text-dim);
  opacity: 0.92;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(35, 45, 59, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    max-height: calc(100dvh - var(--header-h) - 1rem);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .site-nav__phone {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 0.25rem;
  }

  .site-nav__cta {
    margin-top: 0.5rem;
    width: 100%;
  }

  .site-header__inner {
    position: relative;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero__title {
    max-width: none;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .site-logo__img {
    height: 62px;
    max-width: 300px;
  }
}
