:root {
  --bg: #0d1117;
  --bg-alt: #111827;
  --card: #141b2a;
  --accent: #f97316;
  --accent-soft: #fed7aa;
  --mint: #2dd4bf;
  --text: #f8fafc;
  --muted: #a1a1aa;
  --line: rgba(148, 163, 184, 0.2);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  --radius: 18px;
}

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

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.18), transparent 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

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

.bg-orbits {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.12), transparent 35%),
    radial-gradient(circle at 10% 70%, rgba(45, 212, 191, 0.1), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
}

.site-header {
  padding: 28px 7vw 10px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(13, 17, 23, 0.75);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent-soft);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px;
}

.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 80px 7vw 70px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent-soft);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1b1007;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.3);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.metric {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}

.label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.panel-card {
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(20, 27, 42, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.panel-card.small {
  padding: 22px;
}

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

.status {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.5);
  color: var(--mint);
}

.pulse {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
  height: 120px;
  margin-bottom: 18px;
}

.pulse-bar {
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.8), rgba(45, 212, 191, 0.2));
  height: var(--h);
  animation: pulseRise 4s ease-in-out infinite;
}

.pulse-bar:nth-child(2) {
  animation-delay: 0.4s;
}

.pulse-bar:nth-child(3) {
  animation-delay: 0.8s;
}

.pulse-bar:nth-child(4) {
  animation-delay: 1.2s;
}

.pulse-bar:nth-child(5) {
  animation-delay: 1.6s;
}

.pulse-bar:nth-child(6) {
  animation-delay: 2s;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-top: 10px;
}

.tag-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag-group span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--accent-soft);
}

.section {
  padding: 70px 7vw;
}

.section-header {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  min-height: 180px;
}

.feature-card p {
  color: var(--muted);
  margin-top: 12px;
}

.platform {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.95));
}

.platform-steps {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.6);
}

.step-index {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.platform-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.showcase-card {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: var(--card);
  border-radius: calc(var(--radius) + 6px);
  padding: 36px;
  border: 1px solid var(--line);
  align-items: center;
}

.map-mock {
  position: relative;
  height: 260px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 20%, rgba(45, 212, 191, 0.35), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(249, 115, 22, 0.4), transparent 55%),
    #0f172a;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.7);
  animation: float 6s ease-in-out infinite;
}

.map-dot:nth-child(1) {
  top: 40px;
  left: 50px;
}

.map-dot:nth-child(2) {
  bottom: 60px;
  right: 80px;
  animation-delay: 1.4s;
}

.map-dot:nth-child(3) {
  top: 120px;
  right: 140px;
  animation-delay: 0.7s;
}

.map-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.9);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  gap: 4px;
  font-size: 0.85rem;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.download-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.download-card .price {
  margin-top: 4px;
}
.download-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.download-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(249, 115, 22, 0.12));
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.download-icon svg {
  width: 22px;
  height: 22px;
  fill: #e2e8f0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(226, 232, 240, 0.9);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}
.btn-disabled {
  opacity: 0.75;
  cursor: not-allowed;
  border-style: dashed;
}
.download-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  font-weight: 600;
  cursor: not-allowed;
}
.download-btn .coming-soon {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.45);
}

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  position: relative;
}

.price-card ul {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 12px;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card.featured {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.pill {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.2);
  color: var(--accent-soft);
}

.contact {
  padding-bottom: 90px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  border-radius: calc(var(--radius) + 8px);
  padding: 34px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(45, 212, 191, 0.1));
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

input, select, button {
  font-family: inherit;
}

input, select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer {
  padding: 36px 7vw 60px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(15, 23, 42, 0.8);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes pulseRise {
  0%, 100% {
    transform: translateY(6px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 7vw;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-card {
    padding: 20px;
  }

  .showcase-card {
    padding: 24px;
  }
}
