:root {
  --bg: #061018;
  --surface: #0d1b24;
  --surface-soft: rgba(13, 27, 36, 0.72);
  --surface-light: #f4f7fb;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.08);
  --text: #eff4fa;
  --muted: #a4b3c4;
  --muted-strong: #71839a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #6ad8ff;
  --accent-strong: #0eb9f2;
  --accent-soft: rgba(106, 216, 255, 0.15);
  --glow: rgba(16, 185, 242, 0.24);
  --success: #77e2b8;
  --warm: #ffd68f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 84px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 185, 242, 0.18), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 214, 143, 0.08), transparent 22%),
    linear-gradient(180deg, #07121a 0%, #061018 52%, #09131b 100%);
  line-height: 1.65;
  opacity: 0;
  transition: opacity 350ms ease;
}

body.page-ready {
  opacity: 1;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p,
ul,
ol {
  margin: 0;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.2;
}

.site-shell::before {
  top: -18rem;
  right: -12rem;
  background: rgba(14, 185, 242, 0.45);
}

.site-shell::after {
  bottom: 10%;
  left: -16rem;
  background: rgba(255, 214, 143, 0.18);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
}

.section-light {
  color: #0f1d27;
  background:
    radial-gradient(circle at top right, rgba(14, 185, 242, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(245, 248, 251, 0.98), rgba(234, 240, 247, 0.98));
}

.section-light .section-title,
.section-light .kicker,
.section-light .card-title,
.section-light .feature-title,
.section-light .timeline-title,
.section-light .stat-value,
.section-light .cta-title,
.section-light .page-title,
.section-light .list-title,
.section-light .signal-title {
  color: #10202c;
}

.section-light p,
.section-light .section-copy,
.section-light .card-copy,
.section-light .metric-label,
.section-light .eyebrow,
.section-light .list-copy,
.section-light .timeline-copy,
.section-light .contact-detail {
  color: #56697d;
}

.section-header {
  max-width: 46rem;
  margin-bottom: 2.6rem;
}

.section-header.wide {
  max-width: 56rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.section-title,
.page-title,
.hero-title,
.cta-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.section-copy,
.page-copy,
.hero-copy {
  margin-top: 1rem;
  font-size: 1.04rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(6, 16, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(106, 216, 255, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-mark::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(106, 216, 255, 0.92);
}

.brand-mark::after {
  width: 0.32rem;
  height: 0.32rem;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(106, 216, 255, 0.9);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-size: 0.98rem;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0 0.95rem;
  color: var(--muted);
  font-size: 0.96rem;
  border-radius: 999px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(106, 216, 255, 0.24);
  background: linear-gradient(145deg, rgba(14, 185, 242, 0.18), rgba(255, 255, 255, 0.04));
  color: var(--text);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(106, 216, 255, 0.5);
  box-shadow: 0 16px 30px rgba(14, 185, 242, 0.16);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
}

.menu-toggle span {
  margin-top: 0.28rem;
  margin-bottom: 0.28rem;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-panel {
  display: none;
  padding-bottom: 1.2rem;
}

.mobile-menu {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.9rem;
}

.mobile-menu .nav-link,
.mobile-menu .nav-cta {
  width: 100%;
  justify-content: flex-start;
}

.hero {
  padding: 4.2rem 0 5.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy-wrap {
  max-width: 40rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(106, 216, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 13ch;
}

.hero-copy {
  max-width: 40rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.4rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.button {
  background: linear-gradient(135deg, var(--accent), #9be7ff);
  color: #07121a;
  box-shadow: 0 18px 40px rgba(14, 185, 242, 0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(14, 185, 242, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(106, 216, 255, 0.36);
}

.button-ghost {
  border-color: rgba(106, 216, 255, 0.24);
  background: transparent;
  color: var(--accent);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.3rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-pill strong {
  font-size: 0.96rem;
}

.hero-pill span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  inset: 14% 12% auto auto;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(106, 216, 255, 0.18), transparent 64%);
}

.hero-visual::after {
  inset: auto auto 10% 10%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(255, 214, 143, 0.14), transparent 64%);
}

.signal-panel {
  position: relative;
  height: 100%;
  min-height: 31rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background:
    linear-gradient(180deg, rgba(7, 18, 26, 0.5), rgba(7, 18, 26, 0.78)),
    linear-gradient(135deg, rgba(14, 185, 242, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.signal-rings {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18rem;
  height: 18rem;
  transform: translate(-50%, -50%);
}

.signal-rings::before,
.signal-rings::after,
.signal-core {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-rings::before {
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(106, 216, 255, 0.22);
  box-shadow: 0 0 0 1.2rem rgba(106, 216, 255, 0.04);
}

.signal-rings::after {
  width: 12.6rem;
  height: 12.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.signal-core {
  width: 5rem;
  height: 5rem;
  background: radial-gradient(circle, #9be7ff 0%, var(--accent) 42%, rgba(106, 216, 255, 0.2) 72%, transparent 100%);
  box-shadow: 0 0 34px rgba(106, 216, 255, 0.4);
}

.signal-lines {
  position: absolute;
  inset: auto 8% 12% 8%;
  height: 7rem;
}

.signal-lines span {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(106, 216, 255, 0.25) 8%, rgba(255, 255, 255, 0.72) 40%, rgba(106, 216, 255, 0.4) 64%, transparent 100%);
  transform: translateY(-50%);
  opacity: 0.8;
}

.signal-lines span:nth-child(1) {
  clip-path: polygon(0 48%, 8% 42%, 16% 56%, 24% 36%, 33% 68%, 43% 26%, 54% 58%, 65% 40%, 76% 60%, 88% 32%, 100% 48%, 100% 100%, 0 100%);
}

.signal-lines span:nth-child(2) {
  top: 34%;
  opacity: 0.58;
  clip-path: polygon(0 50%, 10% 50%, 20% 35%, 31% 66%, 43% 38%, 58% 60%, 72% 28%, 84% 64%, 100% 44%, 100% 100%, 0 100%);
}

.signal-lines span:nth-child(3) {
  top: 72%;
  opacity: 0.46;
  clip-path: polygon(0 52%, 12% 44%, 20% 58%, 32% 34%, 45% 63%, 58% 48%, 74% 58%, 86% 30%, 100% 50%, 100% 100%, 0 100%);
}

.visual-card {
  position: absolute;
  width: min(17rem, calc(100% - 3rem));
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(7, 18, 26, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.visual-card.top {
  top: 1.25rem;
  right: 1.25rem;
}

.visual-card.bottom {
  bottom: 1.25rem;
  left: 1.25rem;
}

.visual-card small {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  font-size: 1.1rem;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.4rem;
}

.visual-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.metric-card,
.info-card,
.timeline-card,
.application-card,
.partner-card,
.investor-card,
.career-card,
.contact-card,
.quote-card,
.cta-band,
.feature-block,
.list-card,
.signal-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.metric-card,
.info-card,
.timeline-card,
.partner-card,
.investor-card,
.career-card,
.contact-card,
.quote-card,
.feature-block,
.list-card,
.signal-card {
  padding: 1.5rem;
}

.metric-card {
  min-height: 10rem;
}

.metric-label {
  margin-top: 0.75rem;
  color: var(--muted);
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 2vw, 2.4rem);
}

.grid-3,
.grid-2,
.apps-grid,
.partner-grid,
.investor-grid,
.careers-grid,
.contact-grid,
.list-grid {
  display: grid;
  gap: 1rem;
}

.grid-3,
.apps-grid,
.partner-grid,
.investor-grid,
.careers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.contact-grid,
.list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card:hover,
.application-card:hover,
.partner-card:hover,
.investor-card:hover,
.career-card:hover,
.contact-card:hover,
.list-card:hover,
.signal-card:hover,
.metric-card:hover,
.feature-block:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 216, 255, 0.2);
}

.info-card,
.application-card,
.partner-card,
.investor-card,
.career-card,
.contact-card,
.list-card,
.signal-card,
.feature-block,
.metric-card {
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.card-title,
.feature-title,
.timeline-title,
.contact-title,
.list-title,
.signal-title {
  margin: 0.85rem 0 0.65rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  line-height: 1.2;
}

.card-copy,
.timeline-copy,
.list-copy,
.contact-detail,
.feature-copy {
  color: var(--muted);
  font-size: 0.98rem;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(14, 185, 242, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(106, 216, 255, 0.16);
}

.icon-badge svg {
  width: 1.3rem;
  height: 1.3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(106, 216, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.process-step h3 {
  margin: 1rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 4.2rem 0 3.4rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.55fr);
  gap: 1.5rem;
  align-items: end;
}

.page-title {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-panel {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow);
}

.page-panel strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.page-panel p {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 1.1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(106, 216, 255, 0.28), transparent);
}

.timeline-card {
  padding-left: 3.6rem;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  left: 0.6rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), rgba(106, 216, 255, 0.25));
  box-shadow: 0 0 0 0.45rem rgba(106, 216, 255, 0.08);
}

.application-card {
  padding: 1.6rem;
}

.application-card ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.application-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.application-card li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b6efff);
  box-shadow: 0 0 14px rgba(106, 216, 255, 0.32);
}

.list-card ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.list-card li {
  color: var(--muted);
  padding-left: 1.15rem;
  position: relative;
}

.list-card li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.partner-card strong,
.investor-card strong,
.career-card strong,
.contact-card strong,
.quote-author,
.signal-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.partner-card p,
.investor-card p,
.career-card p,
.contact-card p,
.signal-card p {
  color: var(--muted);
}

.partner-stack,
.investor-stack,
.contact-stack {
  display: grid;
  gap: 1rem;
}

.quote-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.55;
}

.quote-author {
  color: var(--text);
}

.quote-role {
  color: var(--muted);
  font-size: 0.94rem;
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.value-pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.cta-band {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(circle at right top, rgba(106, 216, 255, 0.18), transparent 34%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-detail a {
  color: var(--accent);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.8fr));
  gap: 1.25rem;
}

.footer-brand p,
.footer-nav a,
.footer-contact a,
.footer-contact p {
  color: var(--muted);
}

.footer-title {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 30rem;
  }

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

  .grid-3,
  .apps-grid,
  .partner-grid,
  .investor-grid,
  .careers-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .section,
  .hero {
    padding: 4.3rem 0;
  }

  .hero-title {
    max-width: 10ch;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .button-secondary,
  .hero-actions .button-ghost,
  .cta-actions .button,
  .cta-actions .button-secondary,
  .cta-actions .button-ghost {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
  }

  .hero-pill {
    width: 100%;
  }

  .process-grid,
  .grid-3,
  .grid-2,
  .apps-grid,
  .partner-grid,
  .investor-grid,
  .careers-grid,
  .contact-grid,
  .list-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .signal-rings {
    width: 15rem;
    height: 15rem;
  }

  .signal-rings::before {
    width: 15rem;
    height: 15rem;
  }

  .signal-rings::after {
    width: 10.4rem;
    height: 10.4rem;
  }

  .visual-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .signal-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .signal-grid,
  .signal-rings,
  .signal-lines {
    position: absolute;
  }

  .timeline-card {
    padding-left: 3rem;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Design refresh: monochrome orbit look with lime accents */

:root {
  --bg: #040404;
  --surface: #0b0b0b;
  --surface-soft: rgba(12, 12, 12, 0.82);
  --surface-light: #090909;
  --card: rgba(255, 255, 255, 0.035);
  --card-strong: rgba(255, 255, 255, 0.08);
  --text: #f4f4ef;
  --muted: #9f9f98;
  --muted-strong: #787870;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #d7ff46;
  --accent-strong: #c8ff1f;
  --accent-soft: rgba(215, 255, 70, 0.12);
  --glow: rgba(215, 255, 70, 0.22);
  --shadow: 0 28px 68px rgba(0, 0, 0, 0.38);
  --container: min(1220px, calc(100% - 2rem));
}

body {
  background:
    radial-gradient(circle at 14% 17%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.8px),
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.12) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 32% 72%, rgba(255, 255, 255, 0.11) 0 1px, transparent 2px),
    linear-gradient(180deg, #010101 0%, #040404 52%, #070707 100%);
}

.site-shell::before,
.site-shell::after {
  width: 24rem;
  height: 24rem;
  opacity: 0.45;
}

.site-shell::before {
  top: 8rem;
  right: -8rem;
  background: rgba(215, 255, 70, 0.14);
}

.site-shell::after {
  bottom: 12%;
  left: -10rem;
  background: rgba(255, 255, 255, 0.08);
}

.section-alt,
.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.section-light,
.section-light .section-title,
.section-light .kicker,
.section-light .card-title,
.section-light .feature-title,
.section-light .timeline-title,
.section-light .stat-value,
.section-light .cta-title,
.section-light .page-title,
.section-light .list-title,
.section-light .signal-title {
  color: var(--text);
}

.section-light p,
.section-light .section-copy,
.section-light .card-copy,
.section-light .metric-label,
.section-light .eyebrow,
.section-light .list-copy,
.section-light .timeline-copy,
.section-light .contact-detail,
.section-light .feature-copy {
  color: var(--muted);
}

.section-light .eyebrow {
  color: var(--accent);
}

.site-header {
  background: rgba(5, 5, 5, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  gap: 1rem;
}

.brand {
  gap: 0;
  letter-spacing: normal;
  text-transform: none;
}

.brand-mark {
  width: clamp(8rem, 10vw, 9.4rem);
  height: 2.4rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: url("../assets/pavds-logo.png") center / contain no-repeat;
  box-shadow: none;
  filter: invert(1) grayscale(1) brightness(1.35) contrast(1.04) drop-shadow(0 6px 18px rgba(255, 255, 255, 0.08));
}

.brand-mark::before {
  display: none;
}

.brand-mark::after {
  display: none;
}

.brand-text {
  display: none;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
}

.desktop-nav {
  gap: 0.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  min-height: 2.5rem;
  padding: 0 0.58rem;
  color: #b0b0aa;
  font-size: 0.84rem;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.is-active::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.nav-cta {
  min-height: 2.5rem;
  padding: 0 0.95rem;
  background: #f5f5f0;
  color: #050505;
  border-color: #f5f5f0;
  box-shadow: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: #ffffff;
  box-shadow: 0 18px 30px rgba(255, 255, 255, 0.1);
}

.mobile-panel {
  background: rgba(7, 7, 7, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-title,
.page-title,
.hero-title,
.cta-title {
  letter-spacing: -0.055em;
}

.eyebrow,
.hero-kicker {
  color: var(--accent);
}

.button,
.button-secondary,
.button-ghost {
  min-height: 4rem;
  padding: 0 1.7rem;
  font-size: 1rem;
  border-radius: 999px;
}

.button {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #050505;
  box-shadow: 0 18px 44px rgba(215, 255, 70, 0.18);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 22px 48px rgba(215, 255, 70, 0.26);
}

.button-secondary {
  background: #f3f3ee;
  color: #050505;
  border-color: #ffffff;
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.08);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.metric-card,
.info-card,
.timeline-card,
.application-card,
.partner-card,
.investor-card,
.career-card,
.contact-card,
.quote-card,
.cta-band,
.feature-block,
.list-card,
.signal-card,
.process-step,
.page-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.icon-badge {
  background: linear-gradient(145deg, rgba(215, 255, 70, 0.12), rgba(255, 255, 255, 0.03));
  border-color: rgba(215, 255, 70, 0.14);
  color: var(--accent);
}

.process-index {
  background: rgba(215, 255, 70, 0.12);
  color: var(--accent);
}

.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: 4.8rem 0 5.6rem;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("../assets/hero-space-earth.jpg") center 28% / cover no-repeat;
  filter: saturate(0.9) brightness(0.78) contrast(1.04);
  opacity: 0.95;
  pointer-events: none;
  z-index: -2;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.96) 100%);
  z-index: -1;
}

.hero-stack {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  max-width: 58rem;
  margin: 0 auto;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(12, 12, 12, 0.72);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(215, 255, 70, 0.8);
}

.hero-logo {
  width: min(33rem, 82vw);
  height: auto;
  filter: invert(1) grayscale(1) brightness(1.38) contrast(1.06) drop-shadow(0 14px 32px rgba(255, 255, 255, 0.08));
}

.hero-home-tagline {
  margin: 0;
  max-width: 30ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.84rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #f5f5ef;
}

.hero-home-copy {
  max-width: 48rem;
  font-family: "Sora", sans-serif;
  color: #b6bbbd;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.78;
}

.hero-home-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.hero-home-note span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: #8d8d87;
  font-size: 0.92rem;
}

.hero-home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 0.85rem;
}

.hero-mini-card {
  padding: 1.05rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  text-align: left;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.hero-mini-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.hero-mini-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.25rem;
  align-items: center;
}

.showcase-grid-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 1.6rem;
}

.media-stage,
.media-copy-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.media-stage {
  overflow: hidden;
  min-height: 26rem;
}

.media-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.media-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.04);
}

.media-stage-compact {
  min-height: 22rem;
}

.application-visual-grid {
  align-items: stretch;
}

.application-visual-grid .media-stage {
  min-height: 22rem;
}

.founder-grid {
  align-items: stretch;
}

.founder-photo {
  min-height: 38rem;
}

.founder-photo img {
  object-position: center 72%;
}

.founder-card {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.partner-link {
  color: var(--accent);
}

.partner-spotlight p {
  font-size: 1rem;
}

.media-copy-card {
  padding: 1.7rem;
}

.media-caption {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.media-caption strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.media-caption span {
  color: rgba(244, 244, 239, 0.78);
  font-size: 0.92rem;
}

.page-hero {
  padding: 4rem 0 3rem;
}

.page-title {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.page-copy,
.section-copy,
.hero-copy,
.card-copy,
.feature-copy,
.timeline-copy,
.contact-detail,
.list-copy,
.metric-label {
  color: var(--muted);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.55rem 1.25rem;
}

.form-card,
.plan-card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.form-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #73736d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(215, 255, 70, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--accent);
  font-size: 0.95rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card.featured {
  border-color: rgba(215, 255, 70, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(215, 255, 70, 0.1);
}

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-value {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1;
}

.price-period {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(215, 255, 70, 0.4);
}

.aux-note {
  color: #878780;
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero-home-metrics {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .showcase-grid-reverse {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 26rem;
  }

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

@media (max-width: 760px) {
  .hero-home {
    min-height: auto;
    padding: 5.5rem 0 4.2rem;
  }

  .hero-home::before {
    background-position: center 24%;
  }

  .hero-home-note {
    flex-direction: column;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .media-stage,
  .media-stage-compact {
    min-height: 19rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}
