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

:root {
  --bg: #0b0f14;
  --panel: #121824;
  --panel-2: #0e141f;
  --accent: #7bf1a8;
  --accent-2: #5cc8ff;
  --accent-3: #ffd166;
  --text: #e7ecf4;
  --muted: #9aa6b2;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

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

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 95%, rgba(255, 255, 255, 0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.04) 95%);
  background-size: 60px 60px;
  opacity: 0.2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(123, 241, 168, 0.35);
  top: -120px;
  right: -80px;
}

.orb-b {
  width: 520px;
  height: 520px;
  background: rgba(92, 200, 255, 0.25);
  bottom: -160px;
  left: -120px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7bf1a8, #5cc8ff);
  color: #0a0f15;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-title {
  font-weight: 600;
}

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

.nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

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

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

.btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn.solid {
  background: linear-gradient(135deg, #7bf1a8, #5cc8ff);
  color: #0b0f14;
  border: none;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
}

main {
  padding: 0 6vw 80px;
}

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

.hero-copy h1 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 12px 0;
}

.hero-copy h1 span {
  display: block;
  color: var(--accent);
}

.hero-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(123, 241, 168, 0.12);
  color: var(--accent);
  font-size: 12px;
  border: 1px solid rgba(123, 241, 168, 0.2);
}

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

.meta-item {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(10, 14, 20, 0.6);
}

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

.meta-value {
  font-weight: 600;
  margin-top: 6px;
}

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

.panel-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.panel-card.dark {
  background: var(--panel-2);
}

.panel-title {
  font-weight: 600;
  margin-bottom: 14px;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.panel-row:last-child {
  border-bottom: none;
}

.panel-text {
  flex: 1;
}

.panel-head {
  font-weight: 600;
}

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

.panel-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-green { background: var(--accent); }
.dot-blue { background: var(--accent-2); }
.dot-amber { background: var(--accent-3); }

.panel-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
}

.pill {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
}

.panel-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin-top: 16px;
  overflow: hidden;
}

.track-fill {
  height: 100%;
  width: 55%;
  background: linear-gradient(90deg, #7bf1a8, #5cc8ff);
}

.panel-footer {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}

.section {
  padding: 60px 0;
}

.section-header {
  max-width: 560px;
  margin-bottom: 28px;
}

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

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

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

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(10, 14, 20, 0.7);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 6px;
}

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

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
}

.step-count {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-2);
}

.contact {
  border-top: 1px solid var(--border);
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.contact-form input,
.contact-form textarea {
  background: #0c111a;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
}

.contact-note {
  color: var(--muted);
  margin-top: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 6vw 40px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

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

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

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

  .nav, .cta {
    flex-wrap: wrap;
  }

  .panel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer {
    flex-direction: column;
    gap: 6px;
  }
}
