:root {
  --bg: #05090d;
  --bg-soft: #09141a;
  --panel: #101a20;
  --panel-2: #15252c;
  --graphite: #1a2025;
  --text: #f8fbf7;
  --muted: #a7b1ad;
  --line: rgba(255, 255, 255, .12);
  --line-warm: rgba(255, 190, 82, .24);
  --orange: #ff8a22;
  --amber: #ffc247;
  --yellow: #ffe082;
  --cyan: #37d4d8;
  --teal: #1fb6a7;
  --green: #55d696;
  --shadow: 0 24px 70px rgba(0, 0, 0, .44);
  --max: 1160px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 138, 34, .14), transparent 28%),
    radial-gradient(circle at 82% 2%, rgba(55, 212, 216, .12), transparent 25%),
    linear-gradient(180deg, #05090d 0%, #091014 48%, #05090d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 78%);
  opacity: .42;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, rgba(5, 9, 13, .94), rgba(5, 9, 13, .58));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(5, 9, 13, .9);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .26);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 300px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(255, 138, 34, .26));
}

.hero-logo-lockup {
  width: min(520px, 84vw);
  margin: 0 0 24px;
  padding: 6px 0;
}

.hero-logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 44px rgba(255, 138, 34, .28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.site-nav a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  min-height: 94svh;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 86px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 13, .98), rgba(5, 9, 13, .82), rgba(5, 9, 13, .42)),
    radial-gradient(circle at 75% 38%, rgba(255, 194, 71, .18), transparent 30%),
    radial-gradient(circle at 68% 70%, rgba(55, 212, 216, .12), transparent 28%);
}

.hero-grid {
  position: absolute;
  inset: 92px 0 0 0;
  background-image:
    linear-gradient(rgba(255, 194, 71, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 71, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(58deg) translateY(12%);
  transform-origin: bottom;
  opacity: .35;
}

.hero-radar {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 194, 71, .22);
  border-radius: 50%;
  opacity: .58;
}
.hero-radar span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(55, 212, 216, .18);
  border-radius: 50%;
}
.hero-radar span:nth-child(2) { inset: 28%; }
.hero-radar span:nth-child(3) { inset: 44%; background: rgba(255, 138, 34, .12); }

.hero-content, .hero-console {
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 790px; }

.eyebrow {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}
.hero-subtitle {
  max-width: 660px;
  color: #dfe7e3;
  font-size: clamp(19px, 3vw, 27px);
  line-height: 1.28;
}

.hero-actions, .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 138, 34, .18);
}
.button-primary {
  color: #15100a;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}
.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 194, 71, .42);
  background: rgba(255, 138, 34, .12);
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.signal-strip span {
  padding: 8px 10px;
  border: 1px solid rgba(55, 212, 216, .22);
  border-radius: var(--radius);
  color: #d9e6e2;
  background: rgba(9, 20, 26, .62);
  font-size: 13px;
  font-weight: 800;
}

.hero-console {
  align-self: center;
  min-height: 430px;
  padding: 18px;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(21, 37, 44, .94), rgba(8, 16, 20, .96)),
    linear-gradient(135deg, rgba(255, 138, 34, .16), transparent);
  box-shadow: var(--shadow);
}
.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.console-topline strong { color: var(--amber); }
.console-map {
  position: relative;
  margin: 26px auto;
  width: min(100%, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(55, 212, 216, .24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(55, 212, 216, .2) 1px, transparent 2px),
    repeating-radial-gradient(circle, transparent 0 45px, rgba(255, 194, 71, .13) 46px 47px),
    conic-gradient(from 230deg, rgba(255, 138, 34, .38), transparent 32%, rgba(55, 212, 216, .22), transparent 70%);
}
.ping {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(255, 194, 71, .14);
}
.ping-a { top: 24%; left: 34%; }
.ping-b { top: 58%; left: 68%; background: var(--cyan); box-shadow: 0 0 0 8px rgba(55, 212, 216, .14); }
.ping-c { top: 72%; left: 26%; }
.console-readouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.console-readouts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}
.console-readouts span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.console-readouts strong { color: var(--text); }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 20px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.section h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.04;
}
.section-copy {
  color: var(--muted);
  font-size: 18px;
}

.guide-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  min-height: 72svh;
  padding: 142px clamp(18px, 5vw, 72px) 76px;
  overflow: hidden;
}

.guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 9, 13, .98), rgba(5, 9, 13, .72)),
    radial-gradient(circle at 76% 28%, rgba(255, 194, 71, .18), transparent 28%),
    radial-gradient(circle at 24% 82%, rgba(55, 212, 216, .11), transparent 30%);
}

.guide-hero::after {
  content: "GREEN CREW / START HERE";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 126px;
  color: rgba(255, 194, 71, .22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.guide-hero-content,
.guide-summary-card {
  position: relative;
}

.guide-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -.04em;
}

.guide-summary-card,
.guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(21, 37, 44, .96), rgba(9, 20, 26, .96));
  box-shadow: var(--shadow);
}

.guide-summary-card {
  padding: 24px;
  border-color: var(--line-warm);
}

.guide-summary-card h2 {
  margin: 18px 0 10px;
  font-size: 30px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-grid.three {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-card {
  padding: 22px;
}

.guide-card p {
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  color: #1d1206;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 12px;
  font-weight: 950;
}

.guide-timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 138, 34, .08), transparent 28%),
    rgba(16, 26, 32, .86);
}

.timeline-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-warm);
  border-radius: 50%;
  color: var(--amber);
  font-weight: 950;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 30px);
}

.timeline-item p {
  color: var(--muted);
}

.timeline-item p:last-child {
  margin-bottom: 0;
}

.intro-grid, .principles-grid, .upcoming-grid {
  display: grid;
  gap: 14px;
}
.intro-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.principles-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.upcoming-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card, .product-card, .upcoming-card, .contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(21, 37, 44, .96), rgba(9, 20, 26, .96));
  box-shadow: var(--shadow);
}
.info-card, .upcoming-card { padding: 22px; }
.info-card h3, .upcoming-card h3 { margin-bottom: 8px; font-size: 19px; }
.info-card p, .upcoming-card p, .product-copy p, .contact-panel p { color: var(--muted); }
.card-kicker, .number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
}

.products-section, .upcoming-section { max-width: 1240px; }
.product-card.flagship {
  display: grid;
  grid-template-columns: minmax(240px, .74fr) minmax(0, 1.26fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border-color: var(--line-warm);
  background:
    linear-gradient(135deg, rgba(255, 138, 34, .13), transparent 34%),
    linear-gradient(180deg, #17252b, #0a1419 58%, #090d10);
}
.product-visual {
  justify-self: center;
  width: min(100%, 340px);
}
.product-visual img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .5);
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 11px;
  font-weight: 900;
}
.status-pill.live {
  color: #071811;
  background: var(--green);
}
.status-pill.coming {
  color: #1d1206;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}
.product-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}
.feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #e4ebe7;
}
.feature-list li { margin: 8px 0; }
.feature-list.compact { color: #cfd9d5; }

.upcoming-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.upcoming-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 194, 71, .16);
  border-radius: 50%;
}
.app-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 194, 71, .2), rgba(55, 212, 216, .08));
}
.app-icon span {
  position: absolute;
  inset: 14px;
  border: 2px solid var(--amber);
  border-radius: 4px;
}
.logbook-icon span::before,
.logbook-icon span::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--cyan);
}
.logbook-icon span::before { top: 9px; }
.logbook-icon span::after { top: 17px; }
.watch-icon span {
  border-radius: 50%;
}
.watch-icon span::before,
.watch-icon span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: var(--cyan);
  transform-origin: bottom;
}
.watch-icon span::before {
  height: 12px;
  transform: translate(-50%, -100%) rotate(0deg);
}
.watch-icon span::after {
  height: 9px;
  transform: translate(-50%, -100%) rotate(115deg);
}

.contact-section { padding-top: 38px; }
.contact-panel {
  padding: clamp(28px, 6vw, 54px);
  border-color: var(--line-warm);
  background:
    linear-gradient(135deg, rgba(255, 138, 34, .12), transparent 35%),
    linear-gradient(180deg, #17252b, #0a1419);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 20px;
}
.contact-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
}
.contact-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-grid strong, .contact-grid a, .contact-note a { color: var(--text); font-weight: 900; }
.contact-note a { color: var(--amber); }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #04070a;
}
.site-footer strong, .site-footer a { color: var(--text); }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-console {
    min-height: 330px;
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .brand-logo {
    width: 178px;
    max-height: 58px;
  }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .intro-grid,
  .principles-grid,
  .product-card.flagship,
  .contact-grid,
  .guide-hero,
  .guide-grid,
  .guide-grid.three {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
  }
  .hero-logo-lockup {
    width: min(360px, 88vw);
    margin-bottom: 20px;
  }
  .brand-logo {
    width: 150px;
    max-height: 50px;
  }
  .hero-actions, .product-actions, .button { width: 100%; }
  .section { padding: 64px 16px; }
  .guide-hero {
    min-height: auto;
    padding: 126px 16px 58px;
  }
  .guide-hero::after {
    left: 16px;
    right: auto;
    top: 98px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .site-header { padding-inline: 16px; }
  .hero-console { min-height: 300px; }
  .console-readouts { grid-template-columns: 1fr; }
}
