/* ============================================
   SUPERSPACE — Main Stylesheet
   Palette: Black / White / Peach Fuzz #FFBE98
   ============================================ */

:root {
  --black:       #080808;
  --white:       #f5f2ed;
  --peach:       #FFBE98;
  --peach-dark:  #e8976a;
  --peach-light: #FFD9C0;
  --peach-dim:   rgba(255, 190, 152, 0.12);
  --gray-1:      #111111;
  --gray-2:      #1a1a1a;
  --gray-3:      #2a2a2a;
  --gray-4:      #555555;
  --gray-5:      #888888;
  --gray-6:      #bbbbbb;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Mono', monospace;

  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--peach);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
  margin-right: 48px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-5);
  transition: color var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active { color: var(--peach); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border: 1px solid var(--peach);
  color: var(--peach);
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--peach);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--gray-1);
  border-bottom: 1px solid var(--gray-3);
  z-index: 99;
  padding: 24px 40px;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--peach); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--peach);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--peach-light);
  transform: translateY(-1px);
}

.btn-primary.large { padding: 18px 36px; font-size: 15px; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-primary span { transition: transform var(--transition); }
.btn-primary:hover span { transform: translate(2px, -2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--gray-6);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gray-5);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--peach);
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--peach);
  color: var(--black);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.star-field {
  position: absolute;
  inset: 0;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,190,152,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 36px;
}

.label-dot {
  width: 6px; height: 6px;
  background: var(--peach);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-title .line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .delay-1 { animation-delay: 0.12s; }
.hero-title .delay-2 { animation-delay: 0.24s; }
.accent-word { color: var(--peach); }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 16px;
  color: var(--gray-5);
  margin-bottom: 48px;
  max-width: 400px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-astronaut {
  position: relative;
  width: min(460px, 38vw);
  flex-shrink: 0;
  z-index: 1;
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
  animation: floatIn 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes floatIn {
  to { opacity: 0.85; }
}

.astronaut-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--nav-height));
  object-fit: contain;
  object-position: center bottom;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255,190,152,0.12));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

#astronautPlaceholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,190,152,0.12), transparent 60%);
  border: 1px solid rgba(255,190,152,0.08);
  animation: float 6s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gray-4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION LABELS & HEADERS
   ============================================ */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-3);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--gray-1);
  padding: 48px 40px;
  position: relative;
  transition: background var(--transition);
}

.service-card:hover { background: var(--gray-2); }

.service-card[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-4);
  font-family: var(--font-display);
}

.service-icon {
  width: 48px; height: 48px;
  color: var(--peach);
  margin-bottom: 24px;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-4);
  padding: 5px 12px;
  border: 1px solid var(--gray-3);
  border-radius: 100px;
}

.service-card.featured {
  background: var(--gray-2);
  border: 1px solid rgba(255,190,152,0.15);
}

.service-link {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--peach);
  transition: gap var(--transition);
}

.service-link:hover { letter-spacing: 0.02em; }

/* ============================================
   APPROACH
   ============================================ */
.approach {
  padding: 120px 0;
  border-top: 1px solid var(--gray-3);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.approach-body {
  font-size: 15px;
  color: var(--gray-5);
  line-height: 1.85;
  margin-bottom: 48px;
}

.approach-stats {
  display: flex;
  gap: 40px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--peach);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-5);
  letter-spacing: 0.02em;
}

/* Orbit diagram */
.orbit-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,190,152,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 { width: 90%; height: 90%; animation: spin 30s linear infinite; }
.orbit-2 { width: 64%; height: 64%; animation: spin 20s linear infinite reverse; }
.orbit-3 { width: 38%; height: 38%; animation: spin 12s linear infinite; }

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  z-index: 2;
}

.orbit-node {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-6);
  z-index: 2;
}

.node-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 0%; transform: translateY(-50%); }
.node-3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 0%; transform: translateY(-50%); }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  padding: 100px 0;
  border-top: 1px solid var(--gray-3);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  border-bottom: 1px solid var(--gray-3);
  overflow: hidden;
}

.star-field-sm {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-title em {
  font-style: italic;
  color: var(--peach);
  font-weight: 400;
}

.page-subtitle {
  font-size: 16px;
  color: var(--gray-5);
  max-width: 520px;
  line-height: 1.8;
}

/* ============================================
   SAAS PRODUCTS
   ============================================ */
.products-section {
  padding: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--gray-3);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  overflow: hidden;
}

.product-card {
  background: var(--gray-1);
  padding: 48px 40px;
  transition: background var(--transition);
}

.product-card:hover { background: var(--gray-2); }

.product-featured {
  grid-row: 1 / 3;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.product-badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--peach-dim);
  color: var(--peach);
}

.product-badge.secondary {
  background: rgba(255,255,255,0.04);
  color: var(--gray-5);
}

.product-status {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-5);
}

.product-status.active::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.product-icon-wrap {
  width: 64px; height: 64px;
  color: var(--peach);
  margin-bottom: 24px;
}

.product-icon-wrap.small { width: 40px; height: 40px; }
.product-icon-wrap svg { width: 100%; height: 100%; }

.product-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.product-side .product-name { font-size: 20px; }

.product-category {
  font-size: 12px;
  color: var(--gray-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.product-features span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--gray-3);
  border-radius: 100px;
  color: var(--gray-4);
}

/* ============================================
   BUILD WITH US
   ============================================ */
.build-section {
  padding: 100px 0;
  border-top: 1px solid var(--gray-3);
}

.build-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.build-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.build-text p {
  font-size: 14px;
  color: var(--gray-5);
  line-height: 1.8;
  margin-bottom: 32px;
}

.split-card {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}

.split-half {
  flex: 1;
  padding: 36px 32px;
}

.split-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 20px;
  font-weight: 600;
}

.split-half ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-half li {
  font-size: 14px;
  color: var(--gray-6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.split-half li::before {
  content: '—';
  color: var(--gray-4);
  font-size: 12px;
}

.split-divider {
  width: 1px;
  background: var(--gray-3);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: 80px 0 120px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-5);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: var(--gray-1);
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--peach);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-4);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--gray-3);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color var(--transition);
  font-size: 13px;
  color: var(--gray-6);
}

.checkbox-item:hover { border-color: var(--peach); }

.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--peach);
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-4);
  letter-spacing: 0.04em;
}

.form-success {
  text-align: center;
  padding: 80px 40px;
}

.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--peach-dim);
  border: 1px solid var(--peach);
  color: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p { color: var(--gray-5); }

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.info-block { border-bottom: 1px solid var(--gray-3); padding-bottom: 24px; }
.info-block:last-of-type { border-bottom: none; }

.info-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 6px;
}

.info-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

a.info-value { color: var(--peach); }
a.info-value:hover { text-decoration: underline; }

.contact-tagline {
  margin-top: 8px;
}

.contact-tagline blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--gray-6);
  border-left: 2px solid var(--peach);
  padding-left: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--gray-3);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-4);
}

.footer-right { text-align: right; }

.footer-address,
.footer-legal {
  font-size: 12px;
  color: var(--gray-4);
  line-height: 1.6;
}

/* ============================================
   STAR FIELD (canvas)
   ============================================ */
canvas.stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 60px 24px; }
  .hero-astronaut { display: none; }
  .hero-scroll { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .approach-inner { grid-template-columns: 1fr; gap: 48px; }
  .approach-visual { display: none; }

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

  .products-grid { grid-template-columns: 1fr; }
  .product-featured { grid-row: auto; }
  .build-inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .contact-info { padding-top: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}