:root {
  --charcoal-ink: #151A18;
  --forest-slate: #1E2A26;
  --forest-slate-2: #263B34;
  --soft-cream: #F7F5F0;
  --cream-deep: #EEE8DC;
  --mist-sage: #A7B1AA;
  --pale-sage: #DCE3D6;
  --copper-gold: #B8734A;
  --copper-light: #D39B72;
  --text-dark: #151A18;
  --text-muted: #5B625E;
  --white-soft: #FFFDF7;
  --border-light: rgba(21, 26, 24, 0.12);
  --border-dark: rgba(247, 245, 240, 0.14);
  --shadow-soft: 0 24px 80px rgba(21, 26, 24, 0.18);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--soft-cream);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(22px, 4vw, 56px);
  background: rgba(21, 26, 24, 0.72);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--soft-cream);
}

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

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 22%, rgba(211,155,114,0.45), transparent 26%),
    linear-gradient(145deg, rgba(247,245,240,0.16), rgba(30,42,38,0.35));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.28),
    inset 0 -10px 24px rgba(0,0,0,0.18),
    0 10px 30px rgba(0,0,0,0.24);
  overflow: hidden;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.loop {
  position: absolute;
  border: 2px solid transparent;
  border-top-color: var(--copper-light);
  border-left-color: rgba(247,245,240,0.78);
  border-radius: 999px;
  transform: rotate(-26deg);
}

.loop-one {
  width: 28px;
  height: 19px;
}

.loop-two {
  width: 20px;
  height: 14px;
  transform: rotate(28deg);
  border-top-color: rgba(220,227,214,0.95);
  border-left-color: var(--copper-gold);
}

.loop-core {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 16px rgba(211,155,114,0.95);
}

.brand-word {
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: rgba(247,245,240,0.78);
  font-size: 0.88rem;
}

.nav-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  color: var(--soft-cream);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(184,115,74,0.55);
  border-radius: 999px;
  color: var(--soft-cream);
  background: rgba(184,115,74,0.18);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 90px) clamp(22px, 4vw, 56px) 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
  overflow: hidden;
  color: var(--soft-cream);
  background:
    radial-gradient(circle at 75% 35%, rgba(184,115,74,0.20), transparent 30%),
    radial-gradient(circle at 15% 18%, rgba(167,177,170,0.18), transparent 30%),
    linear-gradient(135deg, #0E1211 0%, var(--charcoal-ink) 42%, var(--forest-slate) 100%);
}

.hero-gradient {
  position: absolute;
  inset: auto -20% -30% 35%;
  width: 80%;
  height: 55%;
  background: radial-gradient(circle, rgba(184,115,74,0.16), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(247,245,240,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,245,240,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 70%, transparent 100%);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 {
  max-width: 860px;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 700;
}

.hero-subtitle {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(247,245,240,0.78);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

.button-primary {
  color: #1A1612;
  background: linear-gradient(135deg, var(--copper-light), var(--copper-gold));
  box-shadow: 0 16px 36px rgba(184,115,74,0.28);
}

.button-secondary {
  color: var(--soft-cream);
  border-color: rgba(247,245,240,0.2);
  background: rgba(247,245,240,0.08);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(247,245,240,0.13);
  border-radius: 999px;
  color: rgba(247,245,240,0.72);
  background: rgba(247,245,240,0.055);
  font-size: 0.84rem;
}

.hero-visual {
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-card {
  position: relative;
  width: min(520px, 90vw);
  height: 560px;
  border: 1px solid rgba(247,245,240,0.12);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 22%, rgba(211,155,114,0.16), transparent 32%),
    linear-gradient(145deg, rgba(247,245,240,0.12), rgba(247,245,240,0.035));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.orbital-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 32px;
  border: 1px solid rgba(247,245,240,0.08);
}

.orbital-emblem {
  position: absolute;
  width: 310px;
  height: 310px;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(247,245,240,0.06), transparent 58%);
}

.orbital-ring {
  position: absolute;
  inset: 46px;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.ring-a {
  border-left-color: rgba(220,227,214,0.82);
  border-top-color: var(--copper-light);
  filter: drop-shadow(0 0 18px rgba(211,155,114,0.22));
}

.ring-b {
  inset: 78px;
  transform: rotate(34deg);
  border-right-color: rgba(220,227,214,0.75);
  border-bottom-color: var(--copper-gold);
}

.orbital-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper-light);
  box-shadow: 0 0 20px rgba(211,155,114,0.8);
}

.dot-a {
  top: 82px;
  right: 92px;
}

.dot-b {
  bottom: 86px;
  left: 106px;
  background: var(--pale-sage);
}

.dashboard-panel {
  position: absolute;
  border: 1px solid rgba(247,245,240,0.12);
  border-radius: 22px;
  background: rgba(21,26,24,0.72);
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.panel-main {
  left: 38px;
  right: 38px;
  bottom: 44px;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}

.panel-main h3 {
  margin-top: 4px;
  font-size: 2.65rem;
}

.panel-label {
  margin: 0;
  color: rgba(247,245,240,0.58);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220,227,214,0.14);
  color: var(--pale-sage);
  font-size: 0.82rem;
  font-weight: 800;
}

.panel-small {
  width: 188px;
  min-height: 86px;
  padding: 16px;
}

.panel-one {
  top: 62px;
  left: 42px;
}

.panel-two {
  top: 210px;
  right: 28px;
}

.panel-three {
  top: 326px;
  left: 32px;
}

.panel-small strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 34px;
  margin-top: 8px;
}

.mini-bars span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--copper-gold), var(--copper-light));
}

.mini-bars span:nth-child(1) { height: 42%; }
.mini-bars span:nth-child(2) { height: 74%; }
.mini-bars span:nth-child(3) { height: 58%; }
.mini-bars span:nth-child(4) { height: 92%; }

.section {
  padding: 112px clamp(22px, 4vw, 56px);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-light {
  background: var(--soft-cream);
}

.section-cream {
  background: var(--cream-deep);
}

.section-dark {
  background:
    radial-gradient(circle at 80% 16%, rgba(184,115,74,0.18), transparent 30%),
    linear-gradient(135deg, var(--forest-slate), var(--charcoal-ink));
  color: var(--soft-cream);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 5.2rem);
}

h3 {
  font-size: 1.35rem;
}

.section-copy p,
.section-heading p,
.contact-inner > div p,
.pilot-inner > div p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.section-dark .section-copy p,
.section-dark .section-heading p,
.section-dark .pilot-inner > div p,
.section-dark .section-kicker {
  color: rgba(247,245,240,0.72);
}

.section-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading.narrow {
  max-width: 840px;
}

.section-heading p {
  margin-top: 18px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: rgba(247,245,240,0.62);
  box-shadow: 0 20px 54px rgba(21,26,24,0.06);
}

.card-number {
  display: inline-flex;
  color: var(--copper-gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 44px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.domain-grid span {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 0 24px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: rgba(255,255,255,0.35);
  color: var(--forest-slate);
  font-weight: 800;
}

.disclaimer {
  margin: 34px 0 0;
  max-width: 820px;
  padding: 18px 20px;
  border-left: 3px solid var(--copper-gold);
  color: var(--text-muted);
  background: rgba(220,227,214,0.35);
  border-radius: 0 16px 16px 0;
}

.benefit-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-dark);
  font-weight: 700;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper-gold);
  box-shadow: 0 0 0 6px rgba(184,115,74,0.12);
}

.pilot-inner,
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.pilot-card {
  padding: 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  background: rgba(247,245,240,0.08);
  box-shadow: var(--shadow-dark);
}

.pilot-row {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247,245,240,0.12);
}

.pilot-row:first-child {
  padding-top: 0;
}

.pilot-row span {
  color: rgba(247,245,240,0.56);
}

.pilot-row strong {
  text-align: right;
}

.pilot-card .button {
  margin-top: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: rgba(247,245,240,0.75);
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest-slate);
  font-weight: 800;
  font-size: 0.88rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(21,26,24,0.14);
  border-radius: 15px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.58);
  color: var(--text-dark);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(184,115,74,0.75);
  box-shadow: 0 0 0 4px rgba(184,115,74,0.12);
}

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

.site-footer {
  min-height: 112px;
  padding: 28px clamp(22px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--charcoal-ink);
  color: rgba(247,245,240,0.66);
}

.footer-brand {
  color: var(--soft-cream);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 72px);
  }

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

  .orbital-card {
    height: 490px;
  }

  .two-column,
  .pilot-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-word {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .button {
    width: 100%;
  }

  .trust-row span {
    font-size: 0.78rem;
  }

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

  .orbital-card {
    width: 100%;
    height: 405px;
    border-radius: 28px;
  }

  .orbital-emblem {
    width: 240px;
    height: 240px;
    top: 46px;
  }

  .panel-small {
    display: none;
  }

  .panel-main {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .section {
    padding: 78px 18px;
  }

  .card-grid.four,
  .domain-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .card-number {
    margin-bottom: 28px;
  }

  .pilot-row {
    flex-direction: column;
    gap: 6px;
  }

  .pilot-row strong {
    text-align: left;
  }

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