:root {
  --midnight: #020812;
  --space: #061426;
  --deep-navy: #032635;
  --navy: #07364a;
  --blue: #1f7db7;
  --cyan: #73e7ff;
  --cyan-soft: #dff8ff;
  --teal: #19c7bd;
  --mint: #e9fbf8;
  --gold: #d6a43a;
  --gold-soft: #fff2c7;
  --rose: #e76f73;
  --ink: #f5f8fb;
  --muted: rgba(245, 248, 251, 0.74);
  --muted-2: rgba(245, 248, 251, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --bg: #020812;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --soft-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
  --cosmic-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --glow: 0 0 42px rgba(115, 231, 255, 0.34);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--midnight);
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--midnight) 0%, var(--space) 42%, #07101d 100%);
  font-family:
    "Inter",
    "Helvetica Neue",
    "Arial",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--midnight);
  background: var(--cyan);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

body.menu-open .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(115, 231, 255, 0.92);
  outline-offset: 4px;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 880;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-navy);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section[id],
#top {
  scroll-margin-top: 88px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.section-label.light {
  color: #bff7f2;
}

.section-lead {
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 680;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.7, 0.18, 1),
    transform 0.72s cubic-bezier(0.2, 0.7, 0.18, 1),
    box-shadow 0.28s ease,
    background 0.28s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(2, 8, 18, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 8, 18, 0.86);
  border-color: rgba(115, 231, 255, 0.16);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 42px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex: 0 0 auto;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(115, 231, 255, 0.25), rgba(214, 164, 58, 0.13));
  box-shadow: var(--glow);
  position: relative;
}

.logo-mark::before,
.logo-mark::after,
.logo-mark span {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
}

.logo-mark::before {
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.logo-mark::after {
  width: 2px;
  height: 26px;
  inset: 6px auto auto 18px;
  border-radius: 999px;
  background: linear-gradient(var(--gold), var(--cyan));
  transform: rotate(42deg);
  transform-origin: center;
}

.logo-mark span {
  inset: 18px 8px auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.66);
}

.logo-copy {
  display: grid;
  gap: 1px;
}

.logo-copy strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.logo-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
}

.nav-group {
  position: relative;
}

.nav-trigger,
.nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-trigger[aria-expanded="true"],
.nav-link:hover,
.nav-trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-trigger[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-panel {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0.96), rgba(2, 8, 18, 0.96));
  box-shadow: var(--cosmic-shadow);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -8px, 0) scale(0.98);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-group.is-open .nav-panel,
.nav-group:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.panel-link {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--white);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.panel-link:hover {
  background: rgba(115, 231, 255, 0.1);
  transform: translateY(-1px);
}

.panel-link span {
  font-size: 0.94rem;
  font-weight: 880;
}

.panel-link small {
  color: rgba(245, 248, 251, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.header-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--cyan), var(--white));
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(115, 231, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(115, 231, 255, 0.32);
}

.menu-toggle,
.mobile-menu-close {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.menu-toggle span,
.mobile-menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(42deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-42deg);
}

.mobile-scrim {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mobile-scrim.is-visible {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 auto auto;
  z-index: 90;
  width: min(400px, calc(100% - 18px));
  height: 100dvh;
  padding: max(12px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.18, 1);
}

.mobile-menu.is-open {
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu-panel {
  height: 100%;
  padding: 22px;
  border-radius: 24px 0 0 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(115, 231, 255, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(6, 20, 38, 0.98), rgba(2, 8, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.34);
  overflow-y: auto;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-top p {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.mobile-menu-top span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.mobile-menu-close span:first-child {
  transform: rotate(42deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-42deg);
}

.mobile-nav {
  display: grid;
  gap: 22px;
  padding-top: 22px;
}

.mobile-nav-group h2 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav-group a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.mobile-nav-group a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(115, 231, 255, 0.84);
  border-right: 2px solid rgba(115, 231, 255, 0.84);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 24px;
}

/* Hero */

.hero {
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 78px;
  color: var(--white);
  background: var(--midnight);
  isolation: isolate;
}

.parallax-layer {
  position: absolute;
  inset: -9% 0;
  z-index: -3;
  background-position: center;
  background-size: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
}

.hero-photo {
  background-image: url("Image1.png");
  background-image: image-set(
    url("images/optimized/Image1-1536.webp") type("image/webp"),
    url("Image1.png")
  );
  background-position: center center;
  opacity: 0.98;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.92) 0%, rgba(2, 8, 18, 0.76) 34%, rgba(2, 8, 18, 0.38) 62%, rgba(2, 8, 18, 0.56) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.64) 0%, rgba(2, 8, 18, 0.1) 42%, rgba(2, 8, 18, 0.82) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(115, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 231, 255, 0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.6px),
    radial-gradient(circle at 22% 34%, rgba(115, 231, 255, 0.76) 0 1px, transparent 1.7px),
    radial-gradient(circle at 41% 12%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle at 60% 28%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.7px),
    radial-gradient(circle at 82% 16%, rgba(115, 231, 255, 0.8) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 92% 42%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.6px),
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.6px),
    radial-gradient(circle at 52% 80%, rgba(115, 231, 255, 0.64) 0 1px, transparent 1.6px),
    radial-gradient(circle at 74% 68%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.6px);
  opacity: 0.62;
  animation: starDrift 18s ease-in-out infinite alternate;
}

@keyframes starDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(18px, -14px, 0); }
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  width: 440px;
  height: 440px;
  left: -180px;
  top: 110px;
  background: rgba(0, 166, 166, 0.28);
}

.orb-two {
  width: 540px;
  height: 540px;
  right: -250px;
  bottom: -130px;
  background: rgba(31, 125, 183, 0.24);
}

.orb-three {
  width: 300px;
  height: 300px;
  right: 20%;
  top: 26%;
  background: rgba(214, 164, 58, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-shadow: 0 0 24px rgba(115, 231, 255, 0.36);
}

.hero-catch {
  max-width: 760px;
  font-size: clamp(2.9rem, 6.6vw, 6.4rem);
  font-weight: 930;
  letter-spacing: -0.055em;
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

.hero-catch span {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 850;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.46);
}

.title-break {
  display: block;
}

.hero-text {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.hero-value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-value-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.audience-banner {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(115, 231, 255, 0.25);
  border-radius: 999px;
  background: rgba(115, 231, 255, 0.1);
  color: rgba(255, 255, 255, 0.93);
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.audience-label {
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-action-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 780;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 870;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--midnight);
  background: linear-gradient(135deg, var(--cyan), #ffffff 55%, #dff8ff);
  box-shadow: 0 18px 44px rgba(115, 231, 255, 0.28), var(--glow);
}

.button-primary:hover {
  box-shadow: 0 26px 58px rgba(115, 231, 255, 0.36), 0 0 54px rgba(115, 231, 255, 0.42);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.button-secondary:hover {
  border-color: rgba(115, 231, 255, 0.45);
}

.button-light {
  color: var(--deep-navy);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.16);
}

.button.large {
  margin-top: 30px;
  min-height: 56px;
  padding-inline: 30px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 850;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.glass-card {
  background: rgba(2, 8, 18, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--cosmic-shadow);
  backdrop-filter: blur(22px);
}

.main-card {
  width: min(100%, 440px);
  padding: 34px;
  position: absolute;
  top: 92px;
  right: 18px;
  z-index: 4;
}

.card-topline {
  width: 58px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 26px rgba(115, 231, 255, 0.32);
}

.visual-label {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.main-card h2 {
  color: var(--white);
  font-size: 1.78rem;
}

.main-card p:last-child {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.floating-card {
  position: absolute;
  z-index: 5;
  width: 184px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(2, 8, 18, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card:nth-of-type(odd) {
  animation-delay: -1.4s;
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.floating-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.floating-card strong {
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.96rem;
}

.card-a { left: 12px; top: 26px; }
.card-b { left: 0; bottom: 124px; }
.card-c { right: 0; bottom: 34px; }
.card-d { right: 78px; top: 0; }
.card-e { left: 110px; bottom: 10px; }

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(115, 231, 255, 0.2);
  border-radius: 50%;
  z-index: 1;
  box-shadow: inset 0 0 40px rgba(115, 231, 255, 0.06);
}

.ring-one {
  width: 420px;
  height: 420px;
  left: 54px;
  top: 50px;
  transform: rotate(-18deg) skew(8deg);
}

.ring-two {
  width: 310px;
  height: 310px;
  right: 22px;
  bottom: 54px;
  transform: rotate(25deg) skew(-12deg);
}

.molecule-lines {
  position: absolute;
  inset: 34px 8px 20px 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 28%, var(--cyan) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 20%, var(--blue) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 74%, var(--gold) 0 5px, transparent 6px),
    radial-gradient(circle at 30% 78%, var(--rose) 0 5px, transparent 6px);
  opacity: 0.86;
  filter: drop-shadow(0 0 18px rgba(115, 231, 255, 0.16));
  z-index: 2;
}

.molecule-lines::before,
.molecule-lines::after {
  content: "";
  position: absolute;
  inset: 78px 56px;
  border: 1px solid rgba(115, 231, 255, 0.2);
  border-radius: 42% 58% 47% 53%;
  transform: rotate(-18deg);
}

.molecule-lines::after {
  inset: 112px 88px;
  transform: rotate(28deg);
}

/* Desktop Future Compass */

.compass-field {
  display: none;
}

.observatory-stage {
  display: none;
}

@media (min-width: 921px) {
  .hero {
    --compass-cyan: rgba(115, 231, 255, 0.72);
    --compass-cyan-soft: rgba(115, 231, 255, 0.18);
    --compass-gold: rgba(214, 164, 58, 0.58);
    --compass-ink: rgba(2, 8, 18, 0.34);
    --observatory-x: 50%;
    --observatory-y: 46%;
    --observatory-gaze-x: 0px;
    --observatory-gaze-y: 0px;
    min-height: min(860px, calc(100svh - 74px));
    padding-top: 96px;
    padding-bottom: 54px;
  }

  .hero-photo {
    opacity: 1;
    filter: saturate(1.08) contrast(1.06);
    transform:
      translate3d(0, 0, 0)
      scale(1.045);
  }

  .hero-vignette {
    background:
      radial-gradient(circle at 72% 46%, rgba(115, 231, 255, 0.08), transparent 34%),
      linear-gradient(90deg, rgba(2, 8, 18, 0.94) 0%, rgba(2, 8, 18, 0.75) 38%, rgba(2, 8, 18, 0.28) 66%, rgba(2, 8, 18, 0.42) 100%),
      linear-gradient(180deg, rgba(2, 8, 18, 0.58) 0%, rgba(2, 8, 18, 0.08) 42%, rgba(2, 8, 18, 0.78) 100%);
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto -10% 8% -10%;
    z-index: 0;
    height: 42%;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 50% 100%, rgba(115, 231, 255, 0.2), transparent 58%),
      linear-gradient(90deg, transparent 12%, rgba(115, 231, 255, 0.08), rgba(214, 164, 58, 0.08), transparent 88%);
    filter: blur(2px);
    opacity: 0.72;
    transform-origin: center bottom;
    animation: observatoryHorizonWake 14s ease-in-out infinite;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: clamp(28px, 3.6vw, 56px);
  }

  .hero-content {
    position: relative;
    z-index: 3;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero-catch {
    max-width: 780px;
    font-size: 5.15rem;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .hero-subtitle {
    max-width: 620px;
    margin-top: 24px;
    font-size: 1.18rem;
  }

  .hero-text {
    max-width: 610px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-value-strip,
  .audience-banner,
  .hero-notes {
    display: none;
  }

  .hero-actions {
    align-items: center;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button-primary {
    min-height: 58px;
    padding-inline: 30px;
    font-size: 1.02rem;
  }

  .hero-actions .button-secondary {
    min-height: 48px;
    padding-inline: 18px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .hero-action-note {
    max-width: 520px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
  }

  .hero-visual .card-c,
  .hero-visual .card-e {
    display: none;
  }

  .compass-panel p:last-child {
    display: none;
  }

  .compass-panel {
    top: 132px;
    right: 82px;
    width: min(100%, 318px);
    padding: 24px;
  }

  .hero-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: clamp(78px, 8vw, 118px);
    z-index: -1;
    width: min(520px, 84%);
    height: 1px;
    background: linear-gradient(90deg, rgba(115, 231, 255, 0.64), rgba(214, 164, 58, 0.36), transparent);
    box-shadow: 0 0 28px rgba(115, 231, 255, 0.26);
    opacity: 0.42;
    transform-origin: left center;
    animation: observatoryCtaRoute 12s ease-in-out infinite;
  }

  .hero-actions .button-primary {
    position: relative;
    isolation: isolate;
  }

  .hero-actions .button-primary::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(115, 231, 255, 0.4);
    box-shadow: 0 0 34px rgba(115, 231, 255, 0.18);
    opacity: 0.58;
    animation: observatoryCtaPulse 6.8s ease-in-out infinite;
  }

  .hero-visual {
    min-height: clamp(540px, 43vw, 640px);
    isolation: isolate;
  }

  /* Desktop Future Observatory */

  .observatory-stage {
    display: block;
    position: absolute;
    inset: clamp(-38px, -2.2vw, -14px) clamp(-86px, -5vw, -36px) clamp(-22px, -1vw, 0px) clamp(-88px, -6vw, -44px);
    z-index: 0;
    overflow: visible;
    pointer-events: none;
    opacity: 0.96;
    transform: translate3d(var(--observatory-gaze-x), var(--observatory-gaze-y), 0);
    transition: transform 0.24s ease-out;
  }

  .observatory-stage::before,
  .observatory-stage::after {
    content: "";
    position: absolute;
    inset: 7%;
    pointer-events: none;
  }

  .observatory-stage::before {
    border-radius: 50%;
    background-image:
      radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.8px),
      radial-gradient(circle at 78% 16%, rgba(115, 231, 255, 0.72) 0 1px, transparent 1.8px),
      radial-gradient(circle at 88% 68%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.7px),
      radial-gradient(circle at 22% 76%, rgba(115, 231, 255, 0.62) 0 1px, transparent 1.7px),
      radial-gradient(circle at 52% 92%, rgba(214, 164, 58, 0.62) 0 1px, transparent 1.8px);
    opacity: 0.58;
    animation: observatoryParticleDrift 18s ease-in-out infinite alternate;
  }

  .observatory-stage::after {
    inset: 11%;
    border-radius: 46% 54% 52% 48%;
    border: 1px solid rgba(115, 231, 255, 0.08);
    box-shadow:
      inset 0 0 72px rgba(115, 231, 255, 0.035),
      0 0 42px rgba(115, 231, 255, 0.035);
    transform: rotate(-14deg);
  }

  .observatory-light-field {
    position: absolute;
    inset: 0;
    border-radius: 48%;
    background:
      radial-gradient(circle at var(--observatory-x) var(--observatory-y), rgba(255, 255, 255, 0.22), rgba(115, 231, 255, 0.12) 15%, transparent 34%),
      radial-gradient(ellipse at 50% 68%, rgba(115, 231, 255, 0.18), transparent 54%),
      radial-gradient(ellipse at 62% 48%, rgba(214, 164, 58, 0.1), transparent 40%);
    mix-blend-mode: screen;
    opacity: 0.82;
    animation: observatoryLightBreath 13s ease-in-out infinite;
  }

  .observatory-horizon-line {
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 23%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(115, 231, 255, 0.24), rgba(255, 255, 255, 0.68), rgba(214, 164, 58, 0.28), transparent);
    box-shadow:
      0 0 34px rgba(115, 231, 255, 0.34),
      0 -22px 82px rgba(115, 231, 255, 0.12);
    opacity: 0.74;
    transform-origin: center;
    animation: observatoryLineOpen 10s ease-in-out infinite;
  }

  .observatory-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 18px rgba(115, 231, 255, 0.14));
  }

  .observatory-grid-lines path,
  .observatory-grid-lines ellipse {
    fill: none;
    stroke: rgba(115, 231, 255, 0.12);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
  }

  .observatory-life-network path {
    fill: none;
    stroke: rgba(181, 255, 235, 0.18);
    stroke-width: 1.1;
    stroke-dasharray: 5 10;
    vector-effect: non-scaling-stroke;
    animation: observatoryNetworkWake 16s ease-in-out infinite;
  }

  .observatory-life-network circle {
    fill: rgba(181, 255, 235, 0.58);
    filter: drop-shadow(0 0 7px rgba(181, 255, 235, 0.3));
  }

  .observatory-path {
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0.78;
    vector-effect: non-scaling-stroke;
    animation: observatoryPathDraw 12s ease-in-out infinite;
  }

  .observatory-path-english,
  .observatory-path-research,
  .observatory-path-life {
    stroke: url(#observatoryPathCyan);
  }

  .observatory-path-ai,
  .observatory-path-career {
    stroke: url(#observatoryPathGold);
  }

  .observatory-path-ai {
    animation-delay: 0.55s;
  }

  .observatory-path-research {
    animation-delay: 1.05s;
  }

  .observatory-path-life {
    animation-delay: 1.55s;
  }

  .observatory-path-career {
    animation-delay: 2.05s;
  }

  .observatory-anchor {
    fill: rgba(255, 255, 255, 0.88);
    stroke: rgba(115, 231, 255, 0.5);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 10px rgba(115, 231, 255, 0.34));
    opacity: 0;
    transform-origin: center;
    animation: observatoryAnchorWake 12s ease-in-out infinite;
  }

  .anchor-ai {
    animation-delay: 0.55s;
  }

  .anchor-research {
    animation-delay: 1.05s;
  }

  .anchor-life {
    animation-delay: 1.55s;
  }

  .anchor-career {
    animation-delay: 2.05s;
  }

  .compass-field {
    width: min(116%, 650px);
    aspect-ratio: 1;
    display: block;
    position: absolute;
    top: clamp(-24px, 1.4vw, 12px);
    right: clamp(-80px, -4vw, -30px);
    z-index: 2;
    pointer-events: none;
  }

  .compass-field::before {
    content: "";
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    background:
      linear-gradient(90deg, transparent 49.7%, rgba(115, 231, 255, 0.13) 50%, transparent 50.3%),
      linear-gradient(0deg, transparent 49.7%, rgba(115, 231, 255, 0.1) 50%, transparent 50.3%),
      radial-gradient(circle at center, transparent 0 52%, rgba(115, 231, 255, 0.08) 52.3% 52.7%, transparent 53%),
      radial-gradient(circle at center, transparent 0 70%, rgba(255, 255, 255, 0.07) 70.3% 70.7%, transparent 71%);
    opacity: 0.82;
    animation: observatoryCompassResolve 18s ease-in-out infinite;
  }

  .compass-field::after {
    content: "";
    position: absolute;
    inset: 17%;
    border-radius: 44% 56% 48% 52%;
    border: 1px solid rgba(115, 231, 255, 0.14);
    transform: rotate(-18deg);
    box-shadow: inset 0 0 36px rgba(115, 231, 255, 0.05);
  }

  .compass-horizon {
    position: absolute;
    left: 3%;
    right: 2%;
    bottom: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(115, 231, 255, 0.2), rgba(255, 255, 255, 0.45), rgba(214, 164, 58, 0.24), transparent);
    box-shadow:
      0 0 34px rgba(115, 231, 255, 0.24),
      0 -18px 70px rgba(115, 231, 255, 0.1);
    animation: compassHorizonPulse 9s ease-in-out infinite;
  }

  .compass-core {
    width: 128px;
    height: 128px;
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 3px, rgba(115, 231, 255, 0.34) 4px 14px, rgba(2, 8, 18, 0.08) 15px 100%);
    box-shadow:
      0 0 34px rgba(115, 231, 255, 0.3),
      0 0 96px rgba(115, 231, 255, 0.14);
  }

  .compass-core-ring,
  .compass-core-light {
    position: absolute;
    inset: 0;
    border-radius: 50%;
  }

  .compass-core-ring {
    border: 1px solid rgba(115, 231, 255, 0.28);
    transform: rotate(-18deg) scaleX(1.34) scaleY(0.64);
  }

  .compass-core-light {
    inset: 26%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(115, 231, 255, 0.2) 42%, transparent 70%);
    animation: compassCorePulse 7s ease-in-out infinite;
  }

  .compass-orbit {
    position: absolute;
    left: 50%;
    top: 47%;
    border: 1px solid rgba(115, 231, 255, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 0 42px rgba(115, 231, 255, 0.045);
    transform: translate(-50%, -50%);
  }

  .compass-orbit-primary {
    width: 72%;
    height: 46%;
    transform: translate(-50%, -50%) rotate(-20deg);
  }

  .compass-orbit-secondary {
    width: 58%;
    height: 74%;
    transform: translate(-50%, -50%) rotate(30deg);
  }

  .compass-orbit-tertiary {
    width: 88%;
    height: 62%;
    border-color: rgba(214, 164, 58, 0.13);
    transform: translate(-50%, -50%) rotate(8deg);
  }

  .compass-pathways {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .compass-path {
    fill: none;
    stroke: rgba(115, 231, 255, 0.34);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 11 14;
    filter: drop-shadow(0 0 8px rgba(115, 231, 255, 0.18));
    animation: compassPathFlow 14s ease-in-out infinite;
  }

  .path-ai,
  .path-career {
    stroke: rgba(214, 164, 58, 0.34);
    animation-delay: -3s;
  }

  .path-research {
    animation-delay: -6s;
  }

  .path-life {
    animation-delay: -9s;
  }

  .compass-panel {
    top: 112px;
    right: 66px;
    z-index: 6;
    width: min(100%, 360px);
    padding: 26px;
    background:
      linear-gradient(145deg, rgba(2, 8, 18, 0.44), rgba(3, 38, 53, 0.26)),
      rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.23);
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.34),
      0 0 54px rgba(115, 231, 255, 0.08);
  }

  .compass-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--radius-lg) - 12px);
    border: 1px solid rgba(115, 231, 255, 0.08);
    pointer-events: none;
  }

  .compass-panel .visual-label {
    font-size: 0.68rem;
  }

  .compass-panel h2 {
    font-size: 1.52rem;
    line-height: 1.34;
  }

  .compass-panel p:last-child {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .compass-node {
    z-index: 7;
    width: 164px;
    padding: 13px 15px;
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(2, 8, 18, 0.38), rgba(3, 38, 53, 0.24)),
      rgba(255, 255, 255, 0.055);
    border-color: rgba(115, 231, 255, 0.2);
    opacity: 0.98;
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.24),
      0 0 32px rgba(115, 231, 255, 0.1);
    animation: compassNodeDrift 9s ease-in-out infinite;
  }

  .compass-node::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    left: 14px;
    top: 14px;
    border-radius: 50%;
    background: var(--compass-cyan);
    box-shadow: 0 0 18px rgba(115, 231, 255, 0.52);
  }

  .hero.is-observatory-ready .compass-node {
    animation-name: observatoryNodeWake, compassNodeDrift;
    animation-duration: 1.35s, 10s;
    animation-timing-function: ease, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: both, none;
    animation-delay: var(--node-delay, 0.6s), calc(var(--node-delay, 0.6s) + 1s);
  }

  .compass-node span,
  .compass-node strong {
    padding-left: 12px;
  }

  .compass-node span {
    color: rgba(115, 231, 255, 0.9);
    letter-spacing: 0.14em;
  }

  .compass-node strong {
    display: block;
    line-height: 1.45;
  }

  .hero-visual .card-a {
    left: -4px;
    top: 54px;
    --node-delay: 0.55s;
  }

  .hero-visual .card-d {
    right: 4px;
    top: 76px;
    --node-delay: 0.9s;
    animation-delay: -2.1s;
  }

  .hero-visual .card-b {
    left: -16px;
    bottom: 126px;
    --node-delay: 1.25s;
    animation-delay: -4.2s;
  }

  .hero-visual .card-c {
    right: -36px;
    bottom: 62px;
    --node-delay: 1.6s;
    animation-delay: -6.3s;
  }

  .hero-visual .card-e {
    left: 38%;
    bottom: 2px;
    --node-delay: 1.95s;
    animation-delay: -7.5s;
  }

  .orbital-ring {
    border-color: rgba(115, 231, 255, 0.12);
    box-shadow:
      inset 0 0 52px rgba(115, 231, 255, 0.04),
      0 0 34px rgba(115, 231, 255, 0.035);
  }

  .ring-one {
    width: 438px;
    height: 438px;
    left: 52px;
    top: 64px;
  }

  .ring-two {
    width: 330px;
    height: 330px;
    right: 28px;
    bottom: 82px;
  }

  .molecule-lines {
    inset: 72px 58px 54px 54px;
    opacity: 0.42;
    mix-blend-mode: screen;
  }

  @keyframes compassHorizonPulse {
    0%, 100% {
      opacity: 0.42;
      transform: scaleX(0.92);
    }
    50% {
      opacity: 0.84;
      transform: scaleX(1);
    }
  }

  @keyframes compassCorePulse {
    0%, 100% {
      opacity: 0.58;
      transform: scale(0.92);
    }
    50% {
      opacity: 0.92;
      transform: scale(1.08);
    }
  }

  @keyframes compassPathFlow {
    0%, 100% {
      stroke-dashoffset: 0;
      opacity: 0.32;
    }
    50% {
      stroke-dashoffset: -34;
      opacity: 0.78;
    }
  }

  @keyframes compassNodeDrift {
    0%, 100% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, -5px, 0);
    }
  }

  @keyframes observatoryHorizonWake {
    0%, 100% {
      opacity: 0.5;
      transform: scaleX(0.92);
    }
    50% {
      opacity: 0.82;
      transform: scaleX(1.02);
    }
  }

  @keyframes observatoryCtaRoute {
    0%, 100% {
      opacity: 0.26;
      transform: scaleX(0.76);
    }
    48%, 62% {
      opacity: 0.58;
      transform: scaleX(1);
    }
  }

  @keyframes observatoryCtaPulse {
    0%, 100% {
      opacity: 0.36;
      transform: scale(0.985);
    }
    45%, 60% {
      opacity: 0.7;
      transform: scale(1.015);
    }
  }

  @keyframes observatoryParticleDrift {
    from {
      transform: translate3d(-6px, 4px, 0) rotate(-1deg);
    }
    to {
      transform: translate3d(9px, -7px, 0) rotate(1deg);
    }
  }

  @keyframes observatoryLightBreath {
    0%, 100% {
      opacity: 0.62;
      transform: scale(0.98);
    }
    50% {
      opacity: 0.9;
      transform: scale(1.02);
    }
  }

  @keyframes observatoryLineOpen {
    0%, 100% {
      opacity: 0.42;
      transform: scaleX(0.78);
    }
    46%, 64% {
      opacity: 0.86;
      transform: scaleX(1);
    }
  }

  @keyframes observatoryNetworkWake {
    0%, 100% {
      opacity: 0.18;
      stroke-dashoffset: 0;
    }
    50% {
      opacity: 0.62;
      stroke-dashoffset: -24;
    }
  }

  @keyframes observatoryPathDraw {
    0% {
      opacity: 0;
      stroke-dashoffset: 1;
    }
    18%, 68% {
      opacity: 0.84;
      stroke-dashoffset: 0;
    }
    100% {
      opacity: 0.28;
      stroke-dashoffset: -1;
    }
  }

  @keyframes observatoryAnchorWake {
    0%, 11% {
      opacity: 0;
      transform: scale(0.72);
    }
    24%, 72% {
      opacity: 1;
      transform: scale(1);
    }
    100% {
      opacity: 0.54;
      transform: scale(0.92);
    }
  }

  @keyframes observatoryNodeWake {
    from {
      opacity: 0;
      filter: blur(7px);
    }
    to {
      opacity: 0.98;
      filter: blur(0);
    }
  }

  @keyframes observatoryCompassResolve {
    0%, 100% {
      opacity: 0.62;
      transform: rotate(-0.6deg) scale(0.985);
    }
    50% {
      opacity: 0.86;
      transform: rotate(0.4deg) scale(1);
    }
  }
}

@media (min-width: 921px) and (max-height: 760px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 50px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero-catch {
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: 1.03;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-value-strip {
    margin-top: 16px;
  }

  .audience-banner {
    margin-top: 14px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-action-note {
    margin-top: 8px;
  }

  .hero-notes {
    margin-top: 13px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .compass-field {
    width: min(108%, 560px);
    top: -8px;
    right: -34px;
  }

  .compass-panel {
    top: 96px;
    right: 54px;
  }

  .hero-visual .card-b {
    bottom: 76px;
  }

  .hero-visual .card-c {
    bottom: 50px;
  }

  .hero-visual .card-e {
    bottom: -4px;
  }

  .scroll-cue {
    bottom: 12px;
  }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 8px auto 0;
  background: linear-gradient(var(--cyan), transparent);
  animation: cueLine 1.8s ease-in-out infinite;
}

@keyframes cueLine {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Mobile registration guide */

.mobile-registration-guide {
  display: none;
  padding: 24px 0 8px;
  background:
    linear-gradient(180deg, #020812 0%, #edf7f8 100%);
}

.mobile-guide-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(115, 231, 255, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 54, 74, 0.12);
  box-shadow: var(--soft-shadow);
}

.mobile-guide-panel h2 {
  color: var(--deep-navy);
  font-size: 1.58rem;
}

.mobile-guide-panel p:not(.section-label) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.mobile-guide-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mobile-guide-steps li {
  min-height: 54px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(233, 251, 248, 0.7);
  border: 1px solid rgba(0, 166, 166, 0.14);
}

.mobile-guide-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  font-weight: 950;
}

.mobile-guide-steps strong {
  color: var(--deep-navy);
  font-size: 0.95rem;
}

.mobile-guide-button {
  margin-top: 18px;
}

/* Visual story */

.visual-story {
  padding: 28px 0 18px;
  background: linear-gradient(180deg, #020812 0%, #f7fbfc 100%);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 18px;
}

.visual-story-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  color: var(--white);
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--cosmic-shadow);
  isolation: isolate;
}

.visual-story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.18, 1);
}

.visual-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.08), rgba(2, 8, 18, 0.74));
}

.visual-story-card:hover::before {
  transform: scale(1.06);
}

.visual-mountain::before {
  background-image: url("Image5.jpg");
  background-image: image-set(
    url("images/optimized/Image5-1672.webp") type("image/webp"),
    url("Image5.jpg")
  );
}

.visual-stars::before {
  background-image: url("Image3.jpg");
  background-image: image-set(
    url("images/optimized/Image3-1672.webp") type("image/webp"),
    url("Image3.jpg")
  );
}

.visual-sky::before {
  background-image: url("Image4.jpg");
  background-image: image-set(
    url("images/optimized/Image4-1672.webp") type("image/webp"),
    url("Image4.jpg")
  );
}

.visual-story-card span {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-story-card h2,
.visual-story-card h3 {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
}

.visual-story-card.wide h2 {
  max-width: 640px;
  font-size: clamp(1.8rem, 4vw, 3.05rem);
}

/* Value */

.value {
  background:
    radial-gradient(circle at 14% 10%, rgba(115, 231, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3fafb 100%);
}

.value-panel {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.1), transparent 28rem),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.question-card,
.answer-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.answer-card {
  background:
    linear-gradient(135deg, rgba(233, 251, 248, 0.78), rgba(255, 255, 255, 0.96));
}

.mini-label {
  margin-bottom: 18px;
  color: var(--deep-navy);
  font-size: 1.06rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 730;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 0.78rem;
  font-weight: 900;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 166, 166, 0.18);
  color: var(--deep-navy);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(7, 54, 74, 0.06);
}

.value-button {
  margin-top: 26px;
}

/* About */

.about {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.two-column > div:first-child p:not(.section-label):not(.section-lead) {
  margin-top: 18px;
  color: var(--muted);
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ffffff, #f5fbfc);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 231, 255, 0.18), transparent 66%);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
}

.philosophy-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 5px solid var(--teal);
  border-radius: 18px;
  background: rgba(233, 251, 248, 0.72);
  border-top: 1px solid rgba(0, 166, 166, 0.12);
  border-right: 1px solid rgba(0, 166, 166, 0.12);
  border-bottom: 1px solid rgba(0, 166, 166, 0.12);
}

.philosophy-note .philosophy-kicker {
  margin: 0 0 6px !important;
  color: var(--teal) !important;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.philosophy-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(0, 166, 166, 0.38);
  text-underline-offset: 5px;
}

.philosophy-note a::after {
  content: "↗";
  color: var(--teal);
  font-size: 0.9em;
}

.philosophy-note p:last-child {
  margin-top: 8px !important;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

/* Current Status */

.status {
  background:
    radial-gradient(circle at top right, rgba(31, 125, 183, 0.1), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
}

.status-panel {
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 251, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.status-panel::before {
  content: "";
  position: absolute;
  inset: -24% -12% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(115, 231, 255, 0.19), transparent 62%);
  pointer-events: none;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

.status-card {
  min-height: 222px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 252, 0.96));
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 54, 74, 0.07);
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--gold));
}

.status-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(115, 231, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, #ffffff, #f1fbfd);
}

.status-number {
  display: block;
  margin-bottom: 12px;
  color: var(--deep-navy);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 960;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.status-number .unit {
  margin-left: 2px;
  font-size: 0.62em;
  letter-spacing: 0;
}

.status-card h3 {
  margin-bottom: 10px;
  color: var(--deep-navy);
}

.status-card p,
.status-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.status-card small {
  display: block;
  margin-top: 10px;
  font-weight: 820;
}

/* Timeline */

.timeline {
  color: var(--white);
  background:
    linear-gradient(rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.9)),
    url("Image3.jpg") center / cover;
  background:
    linear-gradient(rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.9)),
    image-set(
      url("images/optimized/Image3-1672.webp") type("image/webp"),
      url("Image3.jpg")
    ) center / cover;
  overflow: hidden;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(115, 231, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 70%, rgba(214, 164, 58, 0.18), transparent 30rem);
}

.timeline .container {
  position: relative;
  z-index: 1;
}

.timeline .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 231, 255, 0.65), transparent);
}

.timeline-item {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(115, 231, 255, 0.8);
}

.timeline-item span {
  display: block;
  margin-bottom: 42px;
  padding-left: 22px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.timeline-item h3 {
  color: var(--white);
}

.timeline-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

/* Contents */

.contents {
  background: linear-gradient(180deg, #f7fbfc 0%, #eff8f8 100%);
}

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

.content-card {
  min-height: 340px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background: var(--accent);
}

.content-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}

.content-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--accent);
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(7, 54, 74, 0.16);
}

.content-card h3 {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.content-card p {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.content-navy {
  --accent: var(--blue);
  background: linear-gradient(180deg, #ffffff 0%, #eefbff 100%);
  border-color: rgba(31, 125, 183, 0.2);
}
.content-blue { --accent: var(--blue); }
.content-teal { --accent: var(--teal); }
.content-gold { --accent: var(--gold); }

.content-navy::before {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.content-navy .content-icon {
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--cyan), #ffffff 58%, var(--cyan-soft));
}

/* Materials Gallery */

.materials {
  background:
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
}

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

.material-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.7, 0.18, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
  position: relative;
  isolation: isolate;
}

.material-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 28px 80px rgba(7, 54, 74, 0.18), 0 0 34px rgba(115, 231, 255, 0.18);
  border-color: rgba(115, 231, 255, 0.36);
}

.material-card::after {
  content: attr(data-glow);
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 4;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(2, 8, 18, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.material-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.material-image-wrap {
  background: #eaf4f5;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.material-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.22), transparent 40%, rgba(2, 8, 18, 0.14)),
    radial-gradient(circle at top right, rgba(115, 231, 255, 0.22), transparent 44%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.material-card:hover .material-image-wrap::after {
  opacity: 1;
}

.material-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.18, 1), filter 0.35s ease;
}

.material-card:hover .material-image-wrap img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.material-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.material-category {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.material-body h3 {
  font-size: 1.02rem;
  line-height: 1.45;
}

.material-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.material-status {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
}

/* Why */

.why {
  padding: 118px 0;
  color: var(--white);
  overflow: hidden;
  background: var(--deep-navy);
  isolation: isolate;
}

.why-photo {
  background-image: url("Image5.jpg");
  background-image: image-set(
    url("images/optimized/Image5-1672.webp") type("image/webp"),
    url("Image5.jpg")
  );
  background-position: center;
}

.why::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.62), rgba(2, 8, 18, 0.82)),
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.42), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(214, 164, 58, 0.3), transparent 28rem);
}

.why-panel {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.why p:not(.section-label) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.quote-line {
  margin-top: 38px;
  padding: 24px 28px;
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 880;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

/* Registration */

.registration {
  background: var(--white);
}

.registration-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.registration-grid p:not(.section-label):not(.section-lead):not(.small-note) {
  margin-top: 18px;
  color: var(--muted);
}

.account-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--deep-navy);
  box-shadow: 0 12px 30px rgba(214, 164, 58, 0.12);
}

.account-note strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.account-note span {
  color: #6b5b35;
  font-size: 0.94rem;
}

.small-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.steps-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(233, 251, 248, 0.9), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.step {
  padding: 22px 22px 22px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 54, 74, 0.1);
  position: relative;
}

.step + .step {
  margin-top: 14px;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(var(--teal), var(--blue));
}

.inquiry-step::before {
  background: linear-gradient(var(--gold), var(--teal));
}

.step span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.inquiry-step span {
  color: var(--gold);
}

.step h3 {
  margin-top: 4px;
  font-size: 1.05rem;
}

.step p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Rules */

.rules {
  background: #f4fafb;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.rules-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(7, 54, 74, 0.07);
}

.rules-grid h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.rules-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Operator Message */

.operator-message {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 166, 166, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(31, 125, 183, 0.1), transparent 34rem),
    var(--white);
}

.message-card {
  max-width: 860px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.message-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 166, 0.12), transparent 68%);
}

.message-body {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.message-body p {
  color: var(--ink);
  font-size: 1.05rem;
}

.message-body p + p {
  margin-top: 18px;
}

.message-quote {
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--mint);
  color: var(--deep-navy) !important;
  font-size: clamp(1.2rem, 2vw, 1.7rem) !important;
  font-weight: 900;
}

.signature {
  text-align: right;
  color: var(--deep-navy) !important;
  font-weight: 900;
}

/* Collaboration */

.collaboration {
  background: #f4fafb;
}

.collaboration-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(115, 231, 255, 0.16), transparent 22rem),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.collaboration-card p:not(.section-label) {
  margin-top: 16px;
  color: var(--muted);
}

.collaboration-button {
  white-space: nowrap;
  color: var(--white);
  background: var(--deep-navy);
}

/* Final CTA */

.final-cta {
  color: var(--white);
  background: var(--midnight);
  overflow: hidden;
  isolation: isolate;
}

.final-photo {
  background-image: url("Image4.jpg");
  background-image: image-set(
    url("images/optimized/Image4-1672.webp") type("image/webp"),
    url("Image4.jpg")
  );
  background-position: center;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(2, 8, 18, 0.84), rgba(2, 8, 18, 0.84)),
    radial-gradient(circle at top left, rgba(0, 166, 166, 0.38), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(214, 164, 58, 0.28), transparent 32rem);
}

.final-card {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 62px 44px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--cosmic-shadow);
  backdrop-filter: blur(18px);
}

.final-card .section-label {
  justify-content: center;
}

.final-card p:not(.section-label) {
  max-width: 740px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-card .button {
  margin-top: 30px;
}

.final-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.final-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 850;
}

/* Footer */

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #01060e;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 32px;
}

.footer-inner h2 {
  color: var(--white);
  font-size: 1.24rem;
}

.footer-inner p {
  font-size: 0.9rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links a {
  color: var(--cyan);
  font-weight: 850;
}

.footer-compass-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-compass-link a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--cyan);
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.42);
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 32;
  min-height: 58px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  border-radius: 999px;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--cyan), #ffffff 58%, var(--cyan-soft));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(2, 8, 18, 0.24), 0 0 28px rgba(115, 231, 255, 0.24);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mobile-sticky-cta span {
  font-weight: 950;
  line-height: 1.25;
}

.mobile-sticky-cta small {
  color: rgba(2, 8, 18, 0.7);
  font-size: 0.72rem;
  font-weight: 840;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive */

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

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

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

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

  .timeline-track::before {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-nav,
  .header-compass-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .hero-grid,
  .value-grid,
  .two-column,
  .registration-grid,
  .collaboration-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
    padding-top: 108px;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(2, 8, 18, 0.94), rgba(2, 8, 18, 0.72)),
      linear-gradient(180deg, rgba(2, 8, 18, 0.72), rgba(2, 8, 18, 0.18) 48%, rgba(2, 8, 18, 0.88));
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .compass-field {
    display: none;
  }

  .main-card {
    grid-column: 1 / -1;
    position: static;
    width: 100%;
    padding: 24px;
  }

  .floating-card {
    position: static;
    width: auto;
    animation: none;
  }

  .card-e {
    display: none;
  }

  .orbital-ring,
  .molecule-lines {
    display: none;
  }

  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .visual-story-card {
    min-height: 220px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .collaboration-button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  :root {
    --radius-xl: 26px;
    --radius-lg: 22px;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    width: min(100% - 24px, var(--max-width));
    height: 66px;
    gap: 8px;
  }

  .site-logo span:last-child {
    font-size: 0.82rem;
  }

  .header-button {
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 32px;
  }

  .hero-photo {
    background-position: 56% center;
    opacity: 0.82;
  }

  .hero-stars {
    opacity: 0.38;
    animation-duration: 36s;
  }

  .hero-bg-orb {
    opacity: 0.45;
    filter: blur(18px);
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .eyebrow {
    order: 1;
    margin-bottom: 14px;
  }

  .hero-catch {
    order: 2;
  }

  .hero-subtitle {
    order: 3;
  }

  .hero-text {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .hero-action-note {
    order: 6;
  }

  .hero-notes {
    order: 7;
  }

  .hero-value-strip {
    order: 8;
  }

  .audience-banner {
    order: 9;
  }

  .hero-catch {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .hero-catch span {
    white-space: normal;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 1.04rem;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-action-note {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero-notes {
    gap: 7px;
    margin-top: 10px;
  }

  .hero-notes span {
    height: 28px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .hero-value-strip {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-value-strip::-webkit-scrollbar {
    display: none;
  }

  .hero-value-strip span {
    flex: 0 0 auto;
    min-height: 31px;
    padding: 6px 11px;
    font-size: 0.75rem;
    box-shadow: none;
  }

  .audience-banner {
    display: none;
  }

  .hero-photo {
    background-image: url("Image1.png");
    background-image: image-set(
      url("images/optimized/Image1-900.webp") type("image/webp"),
      url("Image1.png")
    );
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .audience-banner {
    border-radius: 22px;
  }

  .hero-visual {
    display: flex;
    gap: 8px;
    min-height: auto;
    margin-top: 0;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-visual::-webkit-scrollbar {
    display: none;
  }

  .floating-card {
    flex: 0 0 auto;
    width: auto;
    min-width: 92px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .card-e {
    display: inline-flex;
  }

  .floating-card span {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .floating-card strong,
  .main-card {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .mobile-registration-guide {
    display: block;
  }

  .visual-story {
    padding: 18px 0 6px;
  }

  .visual-story-card {
    min-height: 185px;
    padding: 22px;
  }

  .visual-mountain::before {
    background-image: url("Image5.jpg");
    background-image: image-set(
      url("images/optimized/Image5-900.webp") type("image/webp"),
      url("Image5.jpg")
    );
  }

  .visual-stars::before {
    background-image: url("Image3.jpg");
    background-image: image-set(
      url("images/optimized/Image3-900.webp") type("image/webp"),
      url("Image3.jpg")
    );
  }

  .visual-sky::before {
    background-image: url("Image4.jpg");
    background-image: image-set(
      url("images/optimized/Image4-900.webp") type("image/webp"),
      url("Image4.jpg")
    );
  }

  .visual-story-card.wide h2 {
    font-size: 1.55rem;
  }

  .value-panel,
  .status-panel,
  .message-card,
  .collaboration-card,
  .final-card {
    padding: 28px;
  }

  .content-grid,
  .materials-grid,
  .rules-grid,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: auto;
  }

  .timeline {
    background:
      linear-gradient(rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.9)),
      url("Image3.jpg") center / cover;
    background:
      linear-gradient(rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.9)),
      image-set(
        url("images/optimized/Image3-900.webp") type("image/webp"),
        url("Image3.jpg")
      ) center / cover;
  }

  .material-card {
    border-radius: 24px;
  }

  .material-image-wrap,
  .material-image-wrap img {
    min-height: 270px;
  }

  .material-card::after {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.76rem;
    background: rgba(2, 8, 18, 0.48);
  }

  .why {
    padding: 86px 0;
  }

  .why-photo {
    background-image: url("Image5.jpg");
    background-image: image-set(
      url("images/optimized/Image5-900.webp") type("image/webp"),
      url("Image5.jpg")
    );
    background-position: 52% center;
  }

  .final-photo {
    background-image: url("Image4.jpg");
    background-image: image-set(
      url("images/optimized/Image4-900.webp") type("image/webp"),
      url("Image4.jpg")
    );
  }

  .quote-line {
    padding: 20px;
  }

  .steps-card {
    padding: 18px;
  }

  .final-card {
    text-align: left;
  }

  .final-card .section-label {
    justify-content: flex-start;
  }

  .final-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-catch {
    font-size: clamp(2.24rem, 10.8vw, 3.05rem);
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-value-strip span,
  .hero-notes span,
  .value-tags span {
    font-size: 0.78rem;
  }

  .section-heading p,
  .section-lead,
  .why p:not(.section-label) {
    font-size: 0.96rem;
  }
}

@media (max-width: 370px) {
  .site-logo span:last-child {
    display: none;
  }

  .header-button {
    padding-inline: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .parallax-layer {
    transform: none !important;
  }

  .compass-path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 0.58 !important;
  }

  .observatory-path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 0.62 !important;
  }

  .observatory-anchor {
    opacity: 0.78 !important;
    transform: none !important;
  }

  .observatory-life-network path {
    stroke-dasharray: none !important;
    opacity: 0.36 !important;
  }

  .compass-horizon,
  .compass-core-light,
  .compass-node,
  .observatory-stage,
  .observatory-light-field,
  .observatory-horizon-line,
  .hero-content::after,
  .hero-actions .button-primary::after {
    transform: none !important;
  }
}

/* COMPASS alignment responsive overrides */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 2px;
  }

  .nav-trigger,
  .nav-link {
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .header-button {
    display: none;
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-inner {
    width: min(var(--max-width), calc(100% - 28px));
  }
}

@media (max-width: 680px) {
  .logo-copy small {
    display: none;
  }

  .logo-copy strong {
    font-size: 0.9rem;
  }
}

/* COMPASS parent-site dark alignment */
:root {
  --compass-surface: rgba(255, 255, 255, 0.075);
  --compass-surface-strong: rgba(255, 255, 255, 0.12);
  --compass-muted-strong: rgba(245, 248, 251, 0.88);
}

.section-label,
.section-heading .section-label {
  color: var(--cyan);
}

.section-label.light {
  color: var(--cyan-soft);
}

.section-heading p,
.section-lead,
.two-column > div:first-child p:not(.section-label):not(.section-lead),
.feature-card p,
.philosophy-note p:last-child,
.status-card p,
.status-card small,
.content-card p,
.material-body p,
.registration-grid p:not(.section-label):not(.section-lead):not(.small-note),
.small-note,
.step p,
.rules-grid p,
.message-body p,
.collaboration-card p:not(.section-label),
.mobile-guide-panel p:not(.section-label) {
  color: var(--muted) !important;
}

.value,
.about,
.status,
.contents,
.materials,
.registration,
.rules,
.operator-message,
.collaboration,
.mobile-registration-guide,
.visual-story {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--midnight) 0%, var(--space) 48%, #07101d 100%);
}

.value h2,
.about h2,
.status h2,
.contents h2,
.materials h2,
.registration h2,
.rules h2,
.operator-message h2,
.collaboration h2,
.mobile-registration-guide h2,
.value h3,
.about h3,
.status h3,
.contents h3,
.materials h3,
.registration h3,
.rules h3,
.operator-message h3,
.collaboration h3 {
  color: var(--white);
}

.value-panel,
.mobile-guide-panel,
.status-panel,
.steps-card,
.message-card,
.collaboration-card {
  background:
    linear-gradient(180deg, var(--compass-surface-strong), rgba(255, 255, 255, 0.045));
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.question-card,
.answer-card,
.feature-card,
.status-card,
.content-card,
.material-card,
.step,
.rules-grid article {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}

.answer-card,
.status-card-highlight,
.steps-card,
.collaboration-card {
  background:
    linear-gradient(180deg, rgba(115, 231, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.mini-label,
.status-number,
.status-card h3,
.mobile-guide-panel h2,
.mobile-guide-steps strong,
.signature {
  color: var(--white) !important;
}

.check-list li {
  color: var(--compass-muted-strong);
}

.value-tags span,
.material-status,
.message-quote,
.account-note,
.philosophy-note,
.mobile-guide-steps li {
  color: var(--white) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line);
  box-shadow: none;
}

.philosophy-note {
  border-left-color: var(--teal);
}

.philosophy-note a {
  color: var(--cyan);
  text-decoration-color: rgba(115, 231, 255, 0.48);
}

.account-note {
  border-left-color: var(--gold);
}

.account-note span {
  color: var(--muted);
}

.contents {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(115, 231, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(31, 125, 183, 0.2), transparent 34rem),
    radial-gradient(circle at 50% 86%, rgba(214, 164, 58, 0.1), transparent 32rem),
    linear-gradient(180deg, #020812 0%, #061426 48%, #08101d 100%);
}

.contents .section-label {
  color: var(--cyan-soft);
}

.contents h2,
.contents h3 {
  color: var(--white) !important;
}

.contents .section-heading p,
.contents .content-card p {
  color: rgba(245, 248, 251, 0.72) !important;
}

.contents .content-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border-color: rgba(115, 231, 255, 0.18);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contents .content-card::after {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.contents .content-navy {
  --accent: var(--cyan);
  background:
    radial-gradient(circle at 18% 12%, rgba(115, 231, 255, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(115, 231, 255, 0.13), rgba(255, 255, 255, 0.055));
  border-color: rgba(115, 231, 255, 0.22);
}

.contents .content-navy .content-icon {
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--cyan), #ffffff 62%, var(--cyan-soft));
}

.material-image-wrap {
  background: #061426;
}

.material-card:hover {
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(115, 231, 255, 0.18);
}

.material-status {
  color: var(--midnight) !important;
  background: linear-gradient(135deg, var(--cyan), var(--white));
  border-color: rgba(255, 255, 255, 0.5);
}

.message-card::before {
  background: radial-gradient(circle, rgba(115, 231, 255, 0.12), transparent 68%);
}

.message-quote {
  color: var(--white) !important;
  border-left: 5px solid var(--cyan);
}

.collaboration-button {
  color: var(--midnight);
  background: linear-gradient(135deg, var(--cyan), var(--white));
  border-color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-group h2 {
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.mobile-nav-group a {
  line-height: 1.45;
}

/* Mobile hero and menu refinement */
.hero-mobile-label,
.mobile-hero-needs {
  display: none;
}

@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - 24px);
    align-items: center;
    padding-top: 92px;
    padding-bottom: 46px;
  }

  .hero-vignette {
    background:
      radial-gradient(circle at 50% 32%, rgba(115, 231, 255, 0.18), transparent 28%),
      radial-gradient(circle at 52% 42%, rgba(214, 164, 58, 0.12), transparent 38%),
      linear-gradient(180deg, rgba(2, 8, 18, 0.82) 0%, rgba(2, 8, 18, 0.56) 36%, rgba(2, 8, 18, 0.86) 76%, rgba(2, 8, 18, 0.96) 100%),
      linear-gradient(90deg, rgba(2, 8, 18, 0.78), rgba(2, 8, 18, 0.5) 52%, rgba(2, 8, 18, 0.76));
  }

  .hero-grid {
    min-height: calc(100svh - 164px);
    align-content: center;
    justify-items: center;
  }

  .hero-content {
    position: relative;
    width: min(100%, 34rem);
    margin-inline: auto;
    align-items: center;
    text-align: center;
    z-index: 3;
  }

  .hero-content::after {
    content: "";
    position: absolute;
    inset: -24px -12px -20px;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(2, 8, 18, 0.7), rgba(2, 8, 18, 0.34) 50%, transparent 74%),
      linear-gradient(90deg, transparent, rgba(2, 8, 18, 0.64) 18%, rgba(2, 8, 18, 0.64) 82%, transparent);
  }

  .eyebrow,
  .hero-text,
  .hero-value-strip,
  .audience-banner,
  .hero-action-note,
  .hero-notes,
  .hero-actions .button-primary,
  .hero-visual {
    display: none;
  }

  .hero-mobile-label {
    order: 1;
    display: block;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: clamp(0.74rem, 2.8vw, 0.86rem);
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow:
      0 0 22px rgba(115, 231, 255, 0.62),
      0 0 42px rgba(214, 164, 58, 0.18);
  }

  .hero-catch {
    order: 2;
    width: min(100%, 9.8em);
    max-width: 9.8em;
    margin-inline: auto;
    font-size: clamp(2.2rem, 10.2vw, 3.18rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-align: center;
  }

  .hero-catch span {
    white-space: nowrap;
  }

  .hero-subtitle {
    order: 3;
    width: min(100%, 21rem);
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 3.9vw, 1.16rem);
    line-height: 1.62;
    font-weight: 850;
    text-shadow: 0 14px 46px rgba(0, 0, 0, 0.72);
  }

  .mobile-hero-needs {
    order: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 22rem);
    margin: 22px auto 0;
  }

  .mobile-hero-needs span {
    position: relative;
    min-height: 52px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 8px 6px;
    border: 1px solid var(--need-border, rgba(255, 255, 255, 0.16));
    border-radius: 8px;
    color: var(--white);
    background:
      linear-gradient(180deg, var(--need-glow, rgba(255, 255, 255, 0.11)), rgba(255, 255, 255, 0.045)),
      rgba(2, 8, 18, 0.58);
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: clamp(0.76rem, 2.8vw, 0.84rem);
    font-weight: 920;
    line-height: 1.25;
    backdrop-filter: blur(16px);
  }

  .mobile-hero-needs span::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: var(--need-color, var(--cyan));
    box-shadow: 0 0 18px var(--need-color, var(--cyan));
    opacity: 0.92;
  }

  .need-exam {
    --need-color: rgba(115, 231, 255, 0.96);
    --need-glow: rgba(115, 231, 255, 0.18);
    --need-border: rgba(115, 231, 255, 0.34);
  }

  .need-pharmacy {
    --need-color: rgba(214, 164, 58, 0.98);
    --need-glow: rgba(214, 164, 58, 0.2);
    --need-border: rgba(214, 164, 58, 0.36);
  }

  .need-ai {
    --need-color: rgba(25, 199, 189, 0.98);
    --need-glow: rgba(25, 199, 189, 0.2);
    --need-border: rgba(25, 199, 189, 0.36);
  }

  .hero-actions {
    order: 5;
    width: min(100%, 22rem);
    margin: 26px auto 0;
  }

  .hero-actions .button-secondary {
    width: 100%;
    min-height: 58px;
    color: var(--midnight);
    background: linear-gradient(135deg, var(--cyan), #ffffff 58%, var(--gold-soft));
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow:
      0 22px 56px rgba(0, 0, 0, 0.28),
      0 0 36px rgba(115, 231, 255, 0.26);
  }

  .hero-mobile-label,
  .hero-catch span,
  .hero-subtitle,
  .mobile-hero-needs span,
  .hero-actions {
    opacity: 0;
    animation: mobileHeroLift 0.76s cubic-bezier(0.2, 0.7, 0.18, 1) both;
  }

  .hero-mobile-label {
    animation-delay: 0.06s;
  }

  .hero-catch span:first-child {
    animation-delay: 0.2s;
  }

  .hero-catch span:last-child {
    animation-delay: 0.34s;
  }

  .hero-subtitle {
    animation-delay: 0.52s;
  }

  .mobile-hero-needs span:nth-child(1) {
    animation-delay: 0.72s;
  }

  .mobile-hero-needs span:nth-child(2) {
    animation-delay: 0.84s;
  }

  .mobile-hero-needs span:nth-child(3) {
    animation-delay: 0.96s;
  }

  .hero-actions {
    animation-delay: 1.12s;
  }

  .mobile-nav {
    gap: 18px;
  }

  .mobile-nav-group h2 {
    color: var(--cyan);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: none;
  }

  .mobile-nav-group a {
    min-height: 46px;
    font-size: 0.96rem;
    line-height: 1.42;
  }
}

@keyframes mobileHeroLift {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
