/* Rutherfordium refresh (Lunaraus-ish vibe) */
:root {
  --bg: #070A0F;
  --panel: rgba(255, 255, 255, .06);
  --panel-2: rgba(255, 255, 255, .10);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .68);
  --border: rgba(255, 255, 255, .14);
  --shadow: 0 18px 60px rgba(0, 0, 0, .55);
  --radius: 22px;
  --radius-sm: 16px;
  --accent1: #6C5CE7;
  --accent2: #00D2FF;
  --accent3: #FFB703;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(108, 92, 231, .25), transparent 60%),
    radial-gradient(900px 700px at 80% 0%, rgba(0, 210, 255, .18), transparent 55%),
    radial-gradient(900px 700px at 80% 90%, rgba(255, 183, 3, .10), transparent 55%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding .25s ease, background .25s ease, border-color .25s ease;
  background: rgba(7, 10, 15, .35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.site-header.shrink {
  padding: 10px 0;
  background: rgba(7, 10, 15, .55);
  border-bottom-color: rgba(255, 255, 255, .14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}


.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(255, 255, 255, .86);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 25%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .68) 55%),
    linear-gradient(to bottom, rgba(7, 10, 15, .30), rgba(7, 10, 15, .96));
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 60px;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 30px;
  align-items: start;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 10px;
}

.hero-title {
  font-size: clamp(34px, 4.3vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 14px;
}

.accent {
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .80);
  line-height: 1.55;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  border-color: rgba(255, 255, 255, .18);
  background: linear-gradient(90deg, rgba(108, 92, 231, .95), rgba(0, 210, 255, .85));
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
}

.kpi-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.kpi {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.kpi-value {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .70);
  margin-top: 4px;
}

.hero-card {
  align-self: start;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(7, 10, 15, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card-title {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

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

.tiny {
  font-size: 12px;
}

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

.checklist li {
  display: flex;
  gap: 10px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .86);
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(108, 92, 231, .9), rgba(0, 210, 255, .75));
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 46px;
  height: 2px;
  background: rgba(255, 255, 255, .35);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-60%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent);
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-60%);
  }

  100% {
    transform: translateX(60%);
  }
}

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

.section-last {
  padding-bottom: 40px;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.03em;
}

.lead {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
  max-width: 70ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
}

.panel h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.panel p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.member {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.member:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .08);
}

.member-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}

.member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.member-body {
  padding: 16px 18px 18px;
}

.member-body h3 {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.member-role {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
}

.member-placeholder .member-media {
  display: grid;
  place-items: center;
}

.member-placeholder .placeholder {
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(108, 92, 231, .35), transparent 60%),
    radial-gradient(600px 300px at 80% 20%, rgba(0, 210, 255, .25), transparent 60%),
    rgba(255, 255, 255, .06);
}

.initials {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: rgba(7, 10, 15, .55);
  border: 1px solid rgba(255, 255, 255, .16);
}

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

.logo-card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
}

.logo-card img {
  max-height: 70px;
  width: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .35));
}

.cta {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(108, 92, 231, .18), rgba(0, 210, 255, .12));
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.links {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.links a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  display: block;
  color: rgba(255, 255, 255, .86);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.quote {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .12);
  line-height: 1.55;
  color: rgba(255, 255, 255, .86);
}

.footer {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .70);
}

.footer-mark {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.to-top {
  color: rgba(255, 255, 255, .70);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.to-top:hover {
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .08);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

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

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

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

@media (max-width: 760px) {
  .brand {
    min-width: unset;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(7, 10, 15, .72);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    text-align: center;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ---------- Home (Lunar-style) ---------- */
.hero-home {
  min-height: 100vh;
}

.hero-home .hero-inner {
  grid-template-columns: 1fr;
  align-items: end;
  padding: 110px 0 80px;
}

.hero-home .hero-card {
  display: none;
}

.hero-home .kpi-row {
  display: none;
}

.hero-home .hero-actions {
  margin-top: 18px;
}

.hero-home .hero-title {
  max-width: 14ch;
  font-size: clamp(44px, 7vw, 86px);
}

.hero-home .hero-subtitle {
  font-size: 18px;
  max-width: 52ch;
}

.hero-home .eyebrow {
  margin-bottom: 16px;
  opacity: .85;
}

/* Big logo lockup like Lunar */
.lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.lockup img {
  width: 68px;
  height: 68px;
  border-radius: 18px;

  background: #ffffff;
  /* white box */
  border: 1px solid rgba(255, 255, 255, 0.35);


}

.lockup .wordmark {
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 36px;
}

/* Top bar more "navy" like Lunar */
.site-header {
  background: rgba(10, 18, 40, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.site-header.shrink {
  background: rgba(10, 18, 40, .86);
}


/* --- Header tweaks (bigger logo + name, Lunar-like spacing) --- */
.site-header {
  padding: 18px 0;
}

.site-header.shrink {
  padding: 14px 0;
}

.header-inner {
  gap: 28px;
}

.brand {
  gap: 14px;
}


.brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* Push nav to the right + give more breathing room */
.nav {
  margin-left: auto;
  gap: 14px;
}

.nav-link {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.nav-link:hover {
  color: rgba(255, 255, 255, .95);
}



/* --- Mission section (not full homepage hero) --- */
.mission-section {
  padding-top: 110px;
  /* account for fixed header */
}

.mission-bg {
  border-radius: 28px;
  overflow: hidden;
  position: absolute;
  inset: 24px 0 auto 0;
  height: 420px;
  max-width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: .55;
}

.mission-bg img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05) blur(0px);
}

.mission-bg .hero-overlay {
  background: linear-gradient(to bottom, rgba(7, 10, 15, .25), rgba(7, 10, 15, .92));
}

.mission-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  padding: 80px 0 10px;
  align-items: start;
}

.mission-inner .hero-title {
  font-size: clamp(30px, 4vw, 54px);
}

.mission-card {
  background: rgba(7, 10, 15, .62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (max-width: 980px) {
  .mission-bg {
    height: 380px;
    inset: 18px 0 auto 0;
  }

  .mission-inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
}



/* --- Mission hero should NOT feel like a homepage --- */
.mission-hero {
  min-height: auto;
  padding-top: 110px;
  padding-bottom: 40px;
}

.mission-hero .hero-bg {
  border-radius: 28px;
  overflow: hidden;
  position: absolute;
  inset: 24px 0 auto 0;
  height: 420px;
  max-width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: .55;
}

.mission-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(7, 10, 15, .20), rgba(7, 10, 15, .92));
}

.mission-hero .hero-inner {
  padding: 80px 0 0;
  min-height: 0;
}

.mission-hero .scroll-hint {
  display: none;
}

@media (max-width: 980px) {
  .mission-hero .hero-bg {
    height: 360px;
  }

  .mission-hero .hero-inner {
    padding-top: 70px;
  }
}



/* --- Mission section redesign --- */
.mission {
  padding-top: 110px;
  /* room for fixed header when anchored */
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.mission-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.mission-sub {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .80);
  line-height: 1.6;
  max-width: 62ch;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  min-width: 170px;
}

.pill-top {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
}

.pill-bottom {
  margin-top: 6px;
  color: rgba(255, 255, 255, .88);
}

.mission-side {
  display: grid;
  gap: 14px;
}

.mission-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(7, 10, 15, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mission-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  min-height: 210px;
}

.mission-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1.08);
}

.mission-media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 30% 30%, rgba(0, 0, 0, .10), rgba(0, 0, 0, .70) 60%),
    linear-gradient(to bottom, rgba(7, 10, 15, .20), rgba(7, 10, 15, .90));
}

/* If any legacy mission-hero styles exist, neutralize */
.mission-hero {
  all: unset;
}

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

  .pill {
    min-width: 150px;
  }
}





/* Align mission right column to top */
.mission-grid {
  align-items: start !important;
}

.mission-side {
  align-content: start;
}

.mission-card {
  margin-top: 0 !important;
}

.mission-media {
  margin-top: 8px;
}




.brand-name {
  font-size: 24px !important;
  font-weight: 900;
}



/* ===== Tweaks: Mission right column higher + logo box smaller (logo bigger) ===== */

/* Mission: pull right column up to align with left headline block */
.mission-side {
  margin-top: -22px;
  /* shift up */
}

@media (max-width: 980px) {
  .mission-side {
    margin-top: 0;
  }
}



/* Slightly larger wordmark to match */
.brand-name {
  font-size: 23px !important;
}



/* Stronger alignment for mission right column */
.mission-grid {
  align-items: start !important;
}

.mission-side {
  margin-top: -60px !important;
  /* shift up more to match headline */
}

.mission-card {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .mission-side {
    margin-top: 0 !important;
  }
}



/* Team card images consistent */
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.team-card .avatar {
  width: 100%;
  height: 320px;
  padding: 0;
  background: none;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  display: block;
}


/* Team images fill full card top */
.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card .avatar {
  height: 320px;
  padding: 0;
  overflow: hidden;
}

.brand-mark {
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;

  background: #ffffff !important;
  /* FULL WHITE */
  border: #ffffff !important;

  padding: 6px !important;
  display: grid !important;
  place-items: center !important;
}

.brand-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  /* turns logo white */
}