:root {
  --bg: #070a11;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.10);
  --stroke: rgba(255, 255, 255, 0.12);
  --ink: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --accent: #22c55e;
  --accent-2: #38bdf8;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Sora", "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.22), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.20), transparent 50%),
    radial-gradient(circle at 50% 95%, rgba(245, 158, 11, 0.16), transparent 55%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 26px
    ),
    var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.chrome {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--stroke);
  background: rgba(7, 10, 17, 0.68);
  backdrop-filter: blur(14px);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.20);
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-title {
  font-weight: 800;
  font-family: var(--font-display);
}

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

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

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

.nav-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: rgba(7, 10, 17, 0.96);
  box-shadow: 0 18px 50px rgba(34, 197, 94, 0.18);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(56, 189, 248, 0.22);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 18px 50px rgba(34, 197, 94, 0.18);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--stroke);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.kicker .pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.hero h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  margin-top: 16px;
}

.hero p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 16px;
}

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

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

.proof {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.proof .metric {
  font-family: var(--font-display);
  font-weight: 800;
}

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

.panel {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.22), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.status {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.10);
  color: rgba(255, 255, 255, 0.88);
}

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

.mini {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 17, 0.25);
  border-radius: var(--radius-md);
  padding: 12px;
}

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

.mini .value {
  font-family: var(--font-display);
  font-weight: 800;
  margin-top: 4px;
}

.list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.chip {
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 36px 0;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
}

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

.pricing-grid {
  align-items: stretch;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.price-card {
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(56, 189, 248, 0.35);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.05);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.tag.hot {
  border-color: rgba(56, 189, 248, 0.30);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(56, 189, 248, 0.10);
}

.price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.per {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  margin-left: 6px;
}

.listy {
  margin: 4px 0 6px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.listy li {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.80);
}

.pricing-note {
  margin-top: 12px;
  font-size: 13px;
}

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

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 14px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  margin-top: 10px;
  color: var(--muted);
}

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

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

.cta {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 34px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
