:root {
  --bg: #0b0f1a;
  --panel: #121a2a;
  --panel-2: #0f1626;
  --text: #f4f7ff;
  --muted: #b6c3da;
  --accent: #f5b14c;
  --accent-2: #47d9c7;
  --accent-3: #ff7f6e;
  --border: rgba(244, 247, 255, 0.08);
  --shadow: 0 22px 60px rgba(6, 10, 20, 0.45);
  --radius: 20px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(71, 217, 199, 0.18), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(245, 177, 76, 0.16), transparent 50%),
    radial-gradient(700px 500px at 40% 110%, rgba(255, 127, 110, 0.12), transparent 55%),
    linear-gradient(140deg, rgba(16, 23, 38, 0.95), rgba(10, 15, 26, 0.95)),
    #0b0f1a;
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(9, 14, 25, 0.75);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-name {
  font-size: 16px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: conic-gradient(from 120deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 10px 28px rgba(245, 177, 76, 0.22);
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px;
  background: rgba(12, 17, 29, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(71, 217, 199, 0.16);
  border: 1px solid rgba(71, 217, 199, 0.3);
  color: var(--accent-2);
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

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

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.btn.primary {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f1a;
  box-shadow: 0 18px 40px rgba(245, 177, 76, 0.2);
}

.btn.ghost {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.btn.small {
  padding: 8px 12px;
  font-size: 13px;
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(71, 217, 199, 0.2);
}

h1 {
  margin: 16px 0 12px;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.stat-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat-value {
  font-size: 20px;
  font-weight: 900;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.form-card {
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 220px at 100% 0%, rgba(245, 177, 76, 0.18), transparent 60%);
  pointer-events: none;
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}

.card-sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

form {
  display: grid;
  gap: 12px;
  position: relative;
}

label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

input,
select {
  width: 100%;
  background: rgba(10, 15, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 12px;
  color: var(--text);
  font-weight: 600;
  outline: none;
}

input::placeholder {
  color: rgba(182, 195, 218, 0.6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.inline input {
  width: auto;
}

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

.status[data-state="success"] {
  color: var(--accent-2);
}

.status[data-state="warning"] {
  color: var(--accent);
}

.section {
  padding: 36px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.section-desc {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(6, 10, 20, 0.25);
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(71, 217, 199, 0.16);
  border: 1px solid rgba(71, 217, 199, 0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.pricing-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border: 1px solid rgba(245, 177, 76, 0.4);
  background: linear-gradient(180deg, rgba(245, 177, 76, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 40px rgba(245, 177, 76, 0.15);
}

.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 177, 76, 0.18);
  border: 1px solid rgba(245, 177, 76, 0.32);
}

.price-title {
  font-weight: 800;
  margin: 0 0 8px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 6px;
}

.price small {
  font-size: 14px;
  color: var(--muted);
}

.ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.bullet {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(71, 217, 199, 0.16);
  border: 1px solid rgba(71, 217, 199, 0.28);
  flex: 0 0 auto;
  margin-top: 2px;
  position: relative;
}

.bullet::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(40deg);
}

.faq-grid {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px 14px;
}

details summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 14px;
}

.cta-band {
  padding: 32px 0 44px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, rgba(71, 217, 199, 0.18), rgba(245, 177, 76, 0.12));
}

footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

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

.links a {
  color: var(--muted);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

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

  .card-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  nav {
    display: none;
  }
}

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
