:root {
  --bg: #05060a;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --accent: #ff7b2c;
  --accent-soft: rgba(255, 123, 44, 0.12);
  --border-subtle: rgba(148, 163, 184, 0.25);
  --card: rgba(15, 23, 42, 0.92);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #141826 0, #05060a 55%);
  color: var(--text);
  padding: 2rem;
}

@media (max-width: 880px) {
  body {
    padding: 1.25rem;
  }
}

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

a:hover {
  opacity: 0.92;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

/* Accessiblity helpers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* STICKY TOP NAV */
.topnav {
  position: sticky;
  top: 1rem;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: padding 200ms ease, border-color 200ms ease, background 200ms ease,
    transform 200ms ease;
}

/* JS toggles this */
.topnav.is-compact {
  padding: 0.65rem 0.85rem;
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(255, 123, 44, 0.18);
  transform: translateY(-2px);
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 20%,
    #ffe0c0 0,
    #ff7b2c 30%,
    #c2410c 65%,
    #1f2937 100%
  );
  box-shadow: 0 0 22px rgba(255, 123, 44, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.topnav.is-compact .logo-mark {
  transform: scale(0.95);
  box-shadow: 0 0 18px rgba(255, 123, 44, 0.75),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 50% -40%;
  background: radial-gradient(
    circle at 50% 0,
    rgba(0, 0, 0, 0.5) 0,
    transparent 60%
  );
  opacity: 0.5;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-text span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.45);
  transition: border-color 160ms ease, transform 160ms ease;
}

.nav a:hover {
  border-color: rgba(255, 123, 44, 0.55);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .topnav {
    top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    justify-content: flex-start;
  }
}

/* HERO */
.shell {
  border-radius: 1.75rem;
  padding: 2.5rem 2.25rem;
  background: radial-gradient(circle at top left, #1a1f33 0, #05060a 55%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(15, 23, 42, 0.9);
  position: relative;
  overflow: hidden;
}

.shell::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% -10%, rgba(255, 123, 44, 0.18) 0, transparent 55%),
    radial-gradient(circle at 90% 110%, rgba(56, 189, 248, 0.14) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.shell-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.55fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 880px) {
  .shell {
    padding: 2rem 1.5rem;
  }

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 123, 44, 0.9);
}

h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.06;
  margin-bottom: 0.9rem;
}

h1 span {
  color: var(--accent);
}

.subtitle {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.95;
}

.meta-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(15, 23, 42, 0.7);
}

.meta-pill strong {
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* RIGHT CONSOLE */
.right-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  position: relative;
  overflow: hidden;
}

.right-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 0 0, var(--accent-soft) 0, transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}

.right-inner {
  position: relative;
  z-index: 1;
}

.orbit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.92);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 1);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.9);
}

.stage-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  padding: 0;
  font-size: 0.82rem;
}

.stage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.stage-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.stage-bullet-inner {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.stage-text {
  color: var(--muted);
  line-height: 1.5;
}

.stage-text strong {
  color: var(--text);
  font-weight: 600;
}

.notify-box {
  margin-top: 0.25rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px dashed rgba(148, 163, 184, 0.48);
  font-size: 0.78rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}

.notify-top {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.notify-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--accent);
}

.notify-email {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 0.55rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text);
  width: fit-content;
}

.btnrow {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn.primary {
  border-color: rgba(255, 123, 44, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 123, 44, 0.12) inset;
}

.btn:hover {
  border-color: rgba(255, 123, 44, 0.55);
}

/* Inputs */
.input {
  flex: 1;
  min-width: 200px;
  padding: 0.55rem 0.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text);
  outline: none;
}

.input::placeholder {
  color: rgba(156, 163, 175, 0.75);
}

.newsletter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.form-msg {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* SECTIONS */
.section {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  padding: 1.6rem 1.5rem;
}

.section h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(156, 163, 175, 0.95);
  margin-bottom: 0.85rem;
}

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

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

.card {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.25rem;
  padding: 1.15rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at 15% 5%, rgba(255, 123, 44, 0.14) 0, transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.kicker {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.9);
  margin-bottom: 0.45rem;
}

.title {
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0.45rem;
}

.title span {
  color: var(--accent);
}

.body {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

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

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

.value {
  padding: 1.05rem 1.05rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.75);
}

.value .name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  margin-bottom: 0.4rem;
}

.value .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 123, 44, 0.85);
  flex-shrink: 0;
}

.value p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

/* TEAM (updated) */
.team-note {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.team-email {
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

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

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

.person {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.8);
  padding: 1.1rem 1.05rem;
  display: grid;
  gap: 0.65rem;
}

/* Bigger avatar */
.avatar {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 123, 44, 0.12) inset, 0 0 26px rgba(255, 123, 44, 0.12);
  display: block;
  object-fit: cover;
  object-position: center;
  background: rgba(15, 23, 42, 0.8);
}

@media (max-width: 980px) {
  .avatar {
    width: 96px;
    height: 96px;
  }
}

.person .role {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.9);
}

.person .name {
  font-weight: 750;
}

.person .bio {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.person:hover .avatar {
  box-shadow: 0 0 0 2px rgba(255, 123, 44, 0.25), 0 0 32px rgba(255, 123, 44, 0.18);
}

/* Social links row */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.45);

  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);

  transition: border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.pill:hover {
  border-color: rgba(255, 123, 44, 0.55);
  transform: translateY(-1px);
  opacity: 0.98;
}

.pill svg {
  width: 14px;
  height: 14px;
  opacity: 0.9;
}

/* QUIET FOOTER */
.footer {
  padding: 0.25rem 0.25rem 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.footerline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;

  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.85);
  opacity: 0.95;
}

.footerline .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: none;
  color: rgba(245, 245, 245, 0.85);
}

.footerlinks {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);
}

.footerlinks a {
  opacity: 0.9;
}

.footerlinks a:hover {
  opacity: 1;
  color: rgba(255, 123, 44, 0.95);
}

/* Legal pages (Privacy / Terms) */
.legal-page {
  padding: 1.75rem 1.6rem;
}

.legal-title {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.legal-updated {
  color: rgba(156, 163, 175, 0.95);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.legal-prose {
  color: rgba(229, 231, 235, 0.92);
  line-height: 1.7;
  font-size: 0.98rem;
}

.legal-prose h2 {
  margin-top: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(156, 163, 175, 0.95);
}

.legal-prose p {
  margin: 0.65rem 0;
  color: rgba(156, 163, 175, 0.95);
}

.legal-prose ul {
  margin: 0.65rem 0 0.65rem 1.25rem;
  color: rgba(156, 163, 175, 0.95);
}

.legal-prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(156, 163, 175, 0.85);
}


details.legal {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 0.9rem 1rem;
}

details.legal summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.95);
  user-select: none;
}

details.legal summary::-webkit-details-marker {
  display: none;
}

.chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 123, 44, 0.85);
  border-bottom: 2px solid rgba(255, 123, 44, 0.85);
  transform: rotate(-45deg);
  transition: transform 160ms ease;
  opacity: 0.9;
}

details[open] .chev {
  transform: rotate(45deg);
}

.legalgrid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

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

.legalitem {
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  padding: 0.75rem 0.85rem;
  background: rgba(15, 23, 42, 0.5);
}

.legallabel {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 123, 44, 0.95);
  margin-bottom: 0.25rem;
}

.legalvalue {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  word-break: break-word;
}

.legalvalue .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  color: rgba(245, 245, 245, 0.9);
}
