/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #04060f;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 500px at 15% 0%, rgba(14, 165, 233, 0.08), transparent 65%),
    radial-gradient(500px 500px at 85% 35%, rgba(8, 200, 170, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 112px 0 64px;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.07;
  letter-spacing: -1.7px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero-copy p.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-muted-60);
  max-width: 512px;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(232, 240, 255, 0.45);
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  display: inline-block;
}

.hero-tags .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-sky { background: #0ea5e9; }
.dot-emerald { background: #10b981; }
.dot-violet { background: #8b5cf6; }

/* Hero visual panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-panel-card {
  position: relative;
  width: 448px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.09) 6%, rgba(3, 105, 161, 0.05) 50%, rgba(8, 13, 28, 0.95) 94%);
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.25), 0 0 80px rgba(14, 165, 233, 0.08);
}

.hero-panel-clip {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-panel-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(14, 165, 233, 0.31);
  border-style: solid;
}

.hero-panel-corner.tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.hero-panel-corner.tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.hero-panel-corner.bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.hero-panel-corner.br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

.hero-panel-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #0ea5e9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-panel-ring.outer { width: 144%; height: 144%; opacity: 0.02; }
.hero-panel-ring.inner { width: 50%; height: 50%; opacity: 0.1; }

.hero-panel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.hero-panel-icon {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: var(--color-accent-gradient);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.25), 0 0 40px rgba(14, 165, 233, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel-icon img { width: 48px; height: 48px; }

.hero-panel-status .fleet-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-panel-status .mode {
  font-size: 14px;
  color: var(--color-text-muted-40);
  margin-top: 4px;
}

.hero-panel-pills {
  display: flex;
  gap: 8px;
}

.hero-panel-pills span {
  background: var(--color-accent-bg-15);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 11px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-accent);
}

.hero-float {
  position: absolute;
  background: rgba(8, 13, 28, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 13px 17px;
}

.hero-float-rooms {
  top: 40px;
  left: -24px;
}

.hero-float-rooms .label,
.hero-float-status .label {
  font-size: 12px;
  color: var(--color-text-muted-40);
}

.hero-float-rooms .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 4px;
}

.hero-float-rooms .value span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-accent);
}

.hero-float-status {
  top: 40px;
  right: -24px;
}

.hero-float-status .status-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-float-status .status-line .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d492;
}

.hero-float-status .value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  margin-top: 4px;
}

.hero-float-pipeline {
  position: static;
  margin-top: 24px;
  background: rgba(8, 13, 28, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  display: flex;
  gap: 16px;
  padding: 9px 17px;
}

.hero-float-pipeline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.hero-float-pipeline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-scroll-cue .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, #0ea5e9, transparent);
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0; }
  .hero-copy h1 { font-size: 44px; }
  .hero-float, .hero-float-pipeline, .hero-scroll-cue { display: none; }
}

/* How it works timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.25) 33%, rgba(14, 165, 233, 0.25) 67%, transparent);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
}

.timeline-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}

.timeline-step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
}

.timeline-step p {
  font-size: 14px;
  line-height: 1.625;
  color: var(--color-text-muted-40);
  max-width: 228px;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
}

/* Two-column feature list (Five Core AI Systems) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-row {
  display: flex;
  gap: 16px;
  background: rgba(8, 13, 28, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 17px 25px;
}

.feature-row .card-icon { margin-bottom: 0; flex-shrink: 0; }

.feature-row h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
}

.feature-row p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-muted-40);
  margin-top: 4px;
}

@media (max-width: 960px) {
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
}

/* Deploy cards with "learn more" link + colored dot */
.deploy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deploy-dot {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.deploy-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.deploy-card .deploy-tag {
  font-size: 12px;
  margin-bottom: 4px;
}

.deploy-card .learn-more {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(232, 240, 255, 0.35);
}

.deploy-card .learn-more img { width: 12px; height: 12px; }

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Why choose cards get an extra glow */
.glow-card {
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.25), 0 0 80px rgba(14, 165, 233, 0.08);
}

.benefit-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Final CTA */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 16px;
}

.final-cta p {
  font-size: 16px;
  color: var(--color-text-muted-60);
  max-width: 640px;
  margin: 0 auto;
}
