/* Earthside public landing, hero + parallax lanes */

.home-landing {
  --home-accent: #34d399;
  --home-neon: #00ff41;
  --home-neon-dim: #00cc34;
  --home-cyan: #00ff41;
  --home-amber: #fbbf24;
  --home-violet: #a78bfa;
  --home-panel: rgba(8, 8, 14, 0.72);
}

.home-landing .wrap {
  max-width: none;
  padding: 0;
  margin: 0;
}

.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}

.home-nav.is-scrolled {
  background: rgba(6, 6, 10, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.home-nav-brand {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.home-nav-brand em {
  font-style: normal;
  color: var(--home-accent);
  font-weight: 600;
}

.home-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.home-nav-links a:hover.home-nav-links a.is-active {
  color: var(--home-accent);
}

.home-nav-cta {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.12);
  color: #f4f4f5;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}

.home-nav-cta:hover {
  background: rgba(52, 211, 153, 0.22);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.15);
  color: #fff;
}

/* ,  Hero ,  */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6.5rem 1.5rem 4rem;
  overflow: hidden;
}

.home-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  will-change: transform;
}

.home-orb--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.35), transparent 70%);
}

.home-orb--2 {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  top: 35%;
  right: -10%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 70%);
}

.home-orb--3 {
  width: min(35vw, 280px);
  height: min(35vw, 280px);
  bottom: 5%;
  left: 30%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 70%);
}

.home-hero-shell {
  position: relative;
  z-index: 2;
  width: min(72rem, 100%);
  margin: 0 auto;
}

.home-brand-lockup {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  text-align: left;
}

.home-brand-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.12em 0.28em;
  margin: 0;
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.home-brand-earth {
  font-size: clamp(3.25rem, 11vw, 6.75rem);
  color: #f8fafc;
  text-shadow: 0 0 60px rgba(52, 211, 153, 0.12);
}

.home-brand-tech {
  font-size: clamp(3.25rem, 11vw, 6.75rem);
  font-weight: 500;
  background: linear-gradient(120deg, var(--home-neon-dim) 0%, var(--home-neon) 50%, var(--home-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-shimmer 8s ease-in-out infinite;
  filter: drop-shadow(0 0 32px rgba(0, 255, 65, 0.35));
}

.home-brand-sub {
  margin: 0.85rem 0 0;
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-neon);
  opacity: 0.85;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.25);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: center;
}

.home-hero-copy {
  max-width: 36rem;
}

.home-hero-tagline {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #cbd5e1;
}

.home-hero-tagline em {
  font-style: normal;
  color: var(--home-neon);
  text-shadow: 0 0 24px rgba(0, 255, 65, 0.3);
}

@keyframes home-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.home-hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 32rem;
}

.home-hero-lead strong {
  color: #e2e8f0;
  font-weight: 500;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.home-btn-primary {
  border: 1px solid rgba(52, 211, 153, 0.55);
  background: rgba(52, 211, 153, 0.18);
  color: #f4f4f5;
}

.home-btn-primary:hover {
  background: rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 28px rgba(52, 211, 153, 0.2);
  transform: translateY(-1px);
  color: #fff;
}

.home-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #94a3b8;
}

.home-btn-ghost:hover {
  border-color: rgba(52, 211, 153, 0.35);
  color: #e2e8f0;
}

.home-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.home-pill {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.home-hero-viz {
  position: relative;
  aspect-ratio: 1;
  max-height: min(52vh, 480px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(52, 211, 153, 0.06), rgba(0, 0, 0, 0.5));
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-hero-viz canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.home-scroll-hint span {
  width: 1px;
  height: 2rem;
  background: linear-gradient(180deg, var(--home-accent), transparent);
  animation: home-scroll-pulse 2s ease-in-out infinite;
}

@keyframes home-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ,  Lane sections ,  */
.lane-section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
  overflow: hidden;
}

.lane-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.lane-book::before {
  background: radial-gradient(ellipse 50% 60% at 85% 50%, rgba(251, 191, 36, 0.06), transparent 65%);
}

.lane-blog::before {
  background: radial-gradient(ellipse 50% 60% at 15% 50%, rgba(34, 211, 238, 0.07), transparent 65%);
}

.lane-services::before {
  background: radial-gradient(ellipse 50% 60% at 85% 50%, rgba(167, 139, 250, 0.07), transparent 65%);
}

.lane-inner {
  position: relative;
  z-index: 2;
  width: min(72rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.lane-section--flip .lane-inner {
  direction: rtl;
}

.lane-section--flip .lane-inner > * {
  direction: ltr;
}

.lane-label {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.lane-book .lane-label { color: var(--home-amber); }
.lane-blog .lane-label { color: var(--home-neon); }
.lane-services .lane-label { color: var(--home-violet); }

.lane-copy h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #f1f5f9;
}

.lane-copy h2 em {
  font-style: normal;
  color: var(--home-accent);
}

.lane-blog .lane-copy h2 em { color: var(--home-neon); text-shadow: 0 0 18px rgba(0, 255, 65, 0.25); }
.lane-services .lane-copy h2 em { color: var(--home-violet); }

.lane-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  max-width: 28rem;
}

.lane-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.lane-tag {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.lane-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--home-accent);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.lane-link:hover {
  color: #fff;
  gap: 0.65rem;
}

.lane-link-arrow {
  transition: transform 0.2s;
}

.lane-link:hover .lane-link-arrow {
  transform: translateX(4px);
}

.lane-viz-wrap {
  position: relative;
  will-change: transform;
}

.lane-viz {
  display: block;
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 14, 0.35);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

a.lane-viz:hover {
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(52, 211, 153, 0.06);
  transform: translateY(-4px);
}

.lane-viz canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.lane-viz-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.lane-book .lane-viz-glow {
  background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.12), transparent 65%);
}

.lane-blog .lane-viz {
  aspect-ratio: 5 / 6.2;
  min-height: 380px;
}

@media (min-width: 900px) {
  .lane-blog .lane-viz {
    min-height: 420px;
  }

  .home-stack-key {
    display: none;
  }
}

.lane-blog .lane-viz-glow {
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.1), transparent 65%);
}

.lane-services .lane-viz-glow {
  background: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.12), transparent 65%);
}

.lane-viz:hover .lane-viz-glow.lane-viz-wrap.is-active .lane-viz-glow {
  opacity: 1;
}

.home-stack-key {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.home-stack-key li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.home-stack-key-idx {
  font-size: 0.58rem;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.06em;
  color: var(--home-neon);
  opacity: 0.75;
  flex-shrink: 0;
  width: 1.35rem;
}

.lane-divider {
  width: min(72rem, calc(100% - 3rem));
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ,  Footer band ,  */
.home-footer-cta {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

.home-footer-cta-inner {
  width: min(40rem, 100%);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(52, 211, 153, 0.1), rgba(0, 0, 0, 0.5));
}

.home-footer-cta h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.home-footer-cta p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.home-footer-meta {
  padding: 0 1.5rem 2.5rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}

.home-footer-meta a {
  color: var(--home-accent);
  text-decoration: none;
}

.home-footer-meta a:hover {
  color: #fff;
}

/* ,  Reveal ,  */
.home-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .home-brand-lockup {
    text-align: center;
  }

  .home-brand-title {
    justify-content: center;
  }

  .home-hero-grid.lane-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lane-section--flip .lane-inner {
    direction: ltr;
  }

  .home-hero-viz {
    max-height: 320px;
    order: -1;
  }

  .home-nav-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-brand-tech {
    animation: none;
    -webkit-text-fill-color: var(--home-neon);
    background: none;
    filter: none;
  }

  .home-scroll-hint span {
    animation: none;
  }

  .home-reveal {
    opacity: 1;
    transform: none;
  }

  .home-orb {
    display: none;
  }
}