:root {
  --void: #050608;
  --void-2: #080b0f;
  --graphite: #101418;
  --panel: rgba(244, 247, 250, 0.052);
  --panel-strong: rgba(244, 247, 250, 0.085);
  --line: rgba(244, 247, 250, 0.13);
  --line-soft: rgba(244, 247, 250, 0.075);
  --text: #f4f7fa;
  --text-soft: #c9d1da;
  --muted: #8d98a6;
  --muted-2: #626d78;
  --amber: #ffb257;
  --amber-bright: #ffd27a;
  --cyan: #7bb7ff;
  --green: #2ecc71;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 178, 87, 0.12), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(123, 183, 255, 0.08), transparent 23%),
    linear-gradient(180deg, #030405 0%, #07090d 48%, #040506 100%);
  min-height: 100vh;
  letter-spacing: -0.012em;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
body::before {
  background-image:
    linear-gradient(rgba(244, 247, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 250, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}
body::after {
  z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); line-height: 1.76; font-size: 16px; }

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 6, 8, 0.72);
  backdrop-filter: blur(24px);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  filter: drop-shadow(0 0 18px rgba(255, 178, 87, 0.09));
}

.brand-wordmark {
  width: 232px;
}
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-link {
  color: var(--muted);
  font: 600 12px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--text); }
.nav-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--amber-bright);
  border: 1px solid rgba(255, 178, 87, .34);
  background: rgba(255, 178, 87, .075);
  box-shadow: inset 0 0 20px rgba(255, 178, 87, .035);
}

.hero {
  position: relative;
  padding: 104px 0 78px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  left: -280px;
  top: -110px;
  border-right: 1px solid rgba(255, 178, 87, .22);
  box-shadow: 80px 0 120px rgba(255, 178, 87, .09);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 58px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--amber-bright);
  font: 700 12px/1 var(--mono);
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: .94;
  letter-spacing: -0.072em;
}
.hero h1 .signal {
  display: block;
  color: var(--amber-bright);
  text-transform: uppercase;
  font: 700 clamp(12px, 1.4vw, 15px)/1 var(--mono);
  letter-spacing: .26em;
  margin-bottom: 18px;
  text-shadow: 0 0 32px rgba(255, 178, 87, .32);
}
.lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.74;
}
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(244, 247, 250, .28); }
.btn-primary {
  color: #120b05;
  border-color: transparent;
  background: linear-gradient(135deg, #ffd27a, #f4a246 48%, #b96824);
  box-shadow: 0 20px 54px rgba(255, 178, 87, .18);
}
.btn-ghost { color: var(--text); background: rgba(244, 247, 250, .04); }
.micro-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.micro-status span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--muted);
  background: rgba(244, 247, 250, .025);
  font: 600 11px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.micro-status span:first-child { color: var(--amber-bright); border-color: rgba(255, 178, 87, .22); }

.signal-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 42%, rgba(255, 178, 87, .15), transparent 25%),
    radial-gradient(circle at 70% 18%, rgba(123, 183, 255, .06), transparent 26%),
    linear-gradient(135deg, rgba(244, 247, 250, .052), rgba(244, 247, 250, .014));
  box-shadow: 0 34px 110px rgba(0, 0, 0, .56), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 247, 250, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 247, 250, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .5;
  mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
}
.signal-panel::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  border-right: 2px solid rgba(255, 210, 122, .9);
  border-top: 1px solid rgba(255, 178, 87, .32);
  border-bottom: 1px solid rgba(255, 178, 87, .32);
  border-left: 1px solid transparent;
  box-shadow: 22px 0 58px rgba(255, 178, 87, .24), inset -20px 0 50px rgba(255, 178, 87, .07);
  opacity: .84;
}
.eclipse-img {
  position: absolute;
  left: 50%;
  top: 43%;
  width: min(74%, 420px);
  transform: translate(-50%, -50%);
  opacity: .92;
  mix-blend-mode: screen;
  filter: saturate(.95) contrast(1.08);
}
.coord-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 178, 87, .48), rgba(244, 247, 250, .18), transparent);
}
.coord-line.vertical {
  top: 11%;
  bottom: 19%;
  left: 50%;
  width: 1px;
  height: auto;
  right: auto;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 250, .18), rgba(255, 178, 87, .32), transparent);
}
.terminal {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(5, 6, 8, .64);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.terminal code {
  font: 500 12px/1.78 var(--mono);
  color: #d8dee6;
}
.terminal .prompt { color: var(--amber-bright); }

.section { padding: 82px 0; }
.section-tight { padding: 52px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}
.label {
  margin-bottom: 18px;
  color: var(--amber-bright);
  font: 700 12px/1 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: .98;
  letter-spacing: -0.06em;
}
.section-head p { margin-bottom: 0; }

.manifest-card {
  position: relative;
  border: 1px solid rgba(255, 178, 87, .18);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 178, 87, .12), transparent 38%),
    linear-gradient(135deg, rgba(255, 178, 87, .055), rgba(244, 247, 250, .022));
  overflow: hidden;
}
.manifest-card::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -180px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border-left: 1px solid rgba(255, 178, 87, .24);
  opacity: .55;
}
.manifest-card p {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-soft);
  line-height: 1.68;
}
.manifest-card p:last-child { margin-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(180deg, rgba(244, 247, 250, .06), rgba(244, 247, 250, .022));
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 178, 87, .26);
  background: linear-gradient(180deg, rgba(244, 247, 250, .072), rgba(244, 247, 250, .026));
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 178, 87, .55), transparent);
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover::before { opacity: 1; }
.card-index {
  margin-bottom: 38px;
  color: var(--amber-bright);
  font: 700 12px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.card p { font-size: 15px; margin-bottom: 0; }

.philosophy {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}
.philosophy-main, .principles-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(244, 247, 250, .035);
}
.philosophy-main { padding: clamp(28px, 4vw, 44px); }
.philosophy-main p { color: var(--text-soft); font-size: 18px; }
.principles-list { overflow: hidden; }
.principle {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line-soft);
}
.principle:last-child { border-bottom: 0; }
.principle strong {
  color: var(--text);
  font-size: 16px;
}
.principle span {
  color: var(--muted);
  line-height: 1.68;
}

.stealth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 4.5vw, 48px);
  border: 1px solid rgba(255, 178, 87, .22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 178, 87, .14), transparent 34%),
    linear-gradient(135deg, rgba(255, 178, 87, .055), rgba(244, 247, 250, .024));
  overflow: hidden;
  position: relative;
}
.stealth::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border-top: 1px solid rgba(255, 178, 87, .26);
  opacity: .6;
}
.stealth p { max-width: 760px; color: var(--text-soft); }
.stealth p:last-child { margin-bottom: 0; }
.status-stack { display: grid; gap: 10px; position: relative; z-index: 1; }
.status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0 14px;
  background: rgba(5, 6, 8, .52);
  color: #dbe1e8;
  font: 600 12px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 20px rgba(255, 178, 87, .8);
}
.status small { color: var(--muted); font-size: 11px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 18px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(244,247,250,.055), rgba(244,247,250,.022));
}
.contact-card p { max-width: 670px; }
.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}
.detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 16px 17px;
  background: rgba(5,6,8,.42);
  color: var(--text-soft);
}
.detail span { color: var(--muted); font: 600 11px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.detail a { color: var(--amber-bright); }
.footer {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-logo { width: 190px; opacity: .86; }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: flex-end;
  text-align: right;
}
.footer-meta span { white-space: nowrap; }

@keyframes softPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255, 178, 87, .12)); opacity: .88; }
  50% { filter: drop-shadow(0 0 34px rgba(255, 178, 87, .24)); opacity: 1; }
}
.eclipse-img { animation: softPulse 6s ease-in-out infinite; }

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

@media (max-width: 980px) {
  .hero-grid, .section-head, .philosophy, .stealth, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .signal-panel { min-height: 460px; }
  .card-grid { grid-template-columns: 1fr; }
  .status-stack { max-width: 420px; }
  .nav-actions .nav-link:not(.nav-pill) { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 30px)); }
  .nav-inner { min-height: 68px; }
  .brand { gap: 10px; }
  .brand-eclipse { width: 28px; height: 34px; }
  .brand-wordmark { width: 188px; }
  .nav-pill { min-height: 36px; padding: 0 12px; }
  .hero { padding: 58px 0 56px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .lead { font-size: 16px; }
  .signal-panel { min-height: 390px; border-radius: 22px; }
  .signal-panel::after { width: 310px; height: 310px; }
  .terminal { left: 14px; right: 14px; bottom: 14px; }
  .section { padding: 60px 0; }
  .section-tight { padding: 36px 0; }
  .card, .contact-card, .manifest-card, .stealth, .philosophy-main { padding: 24px; border-radius: 22px; }
  .principle { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .detail { display: grid; gap: 7px; }
  .footer-inner { display: grid; }
  .footer-meta { justify-content: flex-start; text-align: left; }
}


.brand-eclipse-svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  overflow: visible;
  filter: drop-shadow(0 0 18px rgba(255, 178, 87, 0.35));
}

.brand-wordmark {
  width: 232px;
}

@media (max-width: 720px) {
  .brand-eclipse-svg {
    width: 34px;
    height: 34px;
  }
  .brand-wordmark {
    width: 188px;
  }
}
