:root {
  --max: 1120px;

  --bg: #0b1020;
  --bg2: #070a12;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.12);

  --accent: #6c7dff;
  --accent2: #48e6b7;
  --focus: rgba(108, 125, 255, 0.55);

  --radius: 16px;
  --radius2: 22px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --shadow2: 0 18px 50px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --bg2: #f4f6fb;
    --surface: rgba(17, 20, 33, 0.06);
    --surface2: rgba(17, 20, 33, 0.08);
    --text: rgba(17, 20, 33, 0.92);
    --muted: rgba(17, 20, 33, 0.64);
    --border: rgba(17, 20, 33, 0.14);
    --shadow: 0 22px 70px rgba(10, 12, 18, 0.12);
    --shadow2: 0 18px 50px rgba(10, 12, 18, 0.09);
    --focus: rgba(108, 125, 255, 0.32);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, rgba(108, 125, 255, 0.22), transparent 60%),
    radial-gradient(1000px 600px at 80% 30%, rgba(72, 230, 183, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
  border-radius: 10px;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  padding: 10px 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  transition: top 160ms ease;
  z-index: 999;
}
.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.55);
  border-bottom: 1px solid var(--border);
}

@media (prefers-color-scheme: light) {
  .site-header {
    background: rgba(255, 255, 255, 0.72);
  }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), rgba(72, 230, 183, 0.95));
  box-shadow: 0 14px 35px rgba(108, 125, 255, 0.22);
}

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

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

.nav a {
  padding: 9px 10px;
  border-radius: 12px;
}

.nav a:hover {
  text-decoration: none;
  background: var(--surface);
  color: var(--text);
}

@media (max-width: 920px) {
  .nav a:nth-child(1),
  .nav a:nth-child(2),
  .nav a:nth-child(3) {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(108, 125, 255, 0.95), rgba(72, 230, 183, 0.72));
  color: rgba(7, 10, 18, 0.92);
  font-weight: 700;
  box-shadow: var(--shadow2);
  text-decoration: none !important;
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: var(--shadow);
}

.btn-small {
  padding: 10px 12px;
  border-radius: 13px;
}

.btn-block {
  width: 100%;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--surface);
  box-shadow: none;
}

/* Typography */
h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

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

.hero-accent {
  background: linear-gradient(135deg, rgba(108, 125, 255, 1), rgba(72, 230, 183, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 72ch;
}

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

/* Hero */
.hero {
  padding: 66px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 0 14px;
}

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

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.trust-pill {
  font-size: 12px;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

/* Hero panel */
.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.16);
}

.dot-red {
  background: rgba(255, 95, 87, 0.55);
}
.dot-yellow {
  background: rgba(255, 189, 46, 0.55);
}
.dot-green {
  background: rgba(40, 200, 64, 0.55);
}

.panel-title {
  margin-left: 6px;
  font-weight: 700;
}

.panel-badge {
  margin-left: auto;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(72, 230, 183, 0.12);
  border: 1px solid rgba(72, 230, 183, 0.22);
  color: var(--text);
}

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

.mini-card {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-card-wide {
  grid-column: 1 / -1;
}

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

.mini-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

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

.mini-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.mini-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  background: linear-gradient(135deg, rgba(108, 125, 255, 0.2), rgba(72, 230, 183, 0.14));
  border: 1px solid var(--border);
}

.mini-name {
  font-weight: 700;
}

.mini-chip {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 8px;
  border-radius: 10px;
}

.panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-note {
  font-size: 13px;
  color: var(--muted);
}

.panel-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.panel-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 480px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }
  .panel-bottom {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Feature grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

.feature {
  padding: 18px;
  border-radius: var(--radius2);
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(108, 125, 255, 0.22), rgba(72, 230, 183, 0.14));
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

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

/* Split + community */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

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

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.checklist span {
  color: var(--text);
  font-weight: 900;
}

.quote {
  padding: 20px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(108, 125, 255, 0.14), rgba(72, 230, 183, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow2);
}

.quote-text {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

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

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

.price-card {
  padding: 18px;
  border-radius: var(--radius2);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow2);
  border: 1px solid rgba(108, 125, 255, 0.35);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(72, 230, 183, 0.26);
  background: rgba(72, 230, 183, 0.12);
  margin-bottom: 10px;
  width: fit-content;
}

.price-top h3 {
  margin: 0;
  font-size: 16px;
}

.price-amount {
  margin: 10px 0 6px;
}

.price-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price-per {
  color: var(--muted);
  margin-left: 6px;
}

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

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Callout + footer */
.callout {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(108, 125, 255, 0.14), rgba(72, 230, 183, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.callout h3 {
  margin: 0 0 6px;
}

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

@media (max-width: 720px) {
  .callout {
    flex-direction: column;
    align-items: stretch;
  }
}

.footer {
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a {
  padding: 6px 8px;
  border-radius: 10px;
}

.footer-links a:hover {
  text-decoration: none;
  background: var(--surface);
  color: var(--text);
}

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