@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap");

:root {
  --ink: #0f172a;
  --muted: #475569;
  --accent: #f97316;
  --accent-2: #0ea5e9;
  --panel: rgba(255, 255, 255, 0.9);
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8fafc;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.18), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.2), transparent 55%);
  z-index: -2;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0px);
  z-index: -1;
  opacity: 0.7;
}

.orb-a {
  width: 220px;
  height: 220px;
  background: rgba(14, 165, 233, 0.2);
  top: 120px;
  right: 10%;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: rgba(249, 115, 22, 0.18);
  bottom: 120px;
  left: 6%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 10;
}

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

.logo {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tagline {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 60px 6vw 20px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 40px;
  margin: 8px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.start-path-banner {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}

.start-path-banner strong {
  font-size: 15px;
}

.start-path-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.start-path-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.start-path-steps span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.14);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 12px;
}

.hero-card ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-meta {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 48px 6vw;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.feature-grid,
.delivery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 24px;
}

.feature-card,
.delivery-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.feature-card h3,
.delivery-card h3 {
  margin: 0 0 8px;
}

.feature-card p,
.delivery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pricing {
  background: rgba(248, 250, 252, 0.7);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 24px;
}

.pricing-tier {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.pricing-tier.highlight {
  border: 2px solid rgba(14, 165, 233, 0.6);
  transform: translateY(-6px);
}

.tier-header h3 {
  margin: 0 0 6px;
}

.tier-header .muted {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-table {
  display: grid;
  gap: 8px;
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
}

.price-row.header {
  background: rgba(15, 23, 42, 0.06);
  font-weight: 600;
}

.pricing-notes {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.note-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.note-card h4 {
  margin: 0 0 6px;
}

.note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.scene-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 20px;
}

.scene-card {
  padding: 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 13px;
}

.contact {
  padding-bottom: 80px;
}

.contact-card {
  margin-top: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 24px 6vw 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
