:root {
  color-scheme: dark;
  --black: #050506;
  --panel: #141416;
  --panel-2: #202126;
  --text: #f7f7f2;
  --muted: #aaaeb7;
  --blue: #1a8fff;
  --green: #5dde92;
  --amber: #f5b45f;
  --coral: #ff6f61;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 56px);
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--black);
  background: var(--text);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a[aria-current="page"],
nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 96px clamp(22px, 8vw, 92px) 120px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(26, 143, 255, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.86) 42%, rgba(5, 5, 6, 0.42) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-shot {
  position: absolute;
  top: 72px;
  right: clamp(16px, 7vw, 96px);
  width: min(36vw, 420px);
  max-height: 78vh;
  object-fit: contain;
  opacity: 0.72;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.5));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 860;
}

h2 {
  font-size: clamp(2.1rem, 5.5vw, 4.8rem);
  font-weight: 830;
}

h3 {
  font-size: 1.22rem;
  font-weight: 760;
}

.lede {
  margin-top: 24px;
  color: #d4d7dc;
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  max-width: 760px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 740;
}

.button.primary {
  background: var(--blue);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid var(--line);
}

.band {
  padding: 78px clamp(22px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
}

.intro-band {
  background: #0b0b0d;
}

.trust-band {
  background: linear-gradient(135deg, #101012, #171614);
}

.pricing-band {
  background: #08090b;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 840px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p,
.two-column p,
.final-cta p,
.text-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.feature-card,
.price-card {
  min-height: 214px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card p,
.price-card p {
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 28px;
  padding: 0 9px;
  color: var(--black);
  background: var(--green);
  border-radius: 7px;
  font-weight: 860;
  font-size: 0.78rem;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--blue);
  color: white;
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--amber);
}

.feature-card h3,
.price-card h3 {
  margin-bottom: 10px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list p {
  padding: 16px;
  color: #d8d9dc;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card.highlighted {
  border-color: rgba(93, 222, 146, 0.65);
  background: #162018;
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--black) !important;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 14px 0 12px;
  color: var(--text) !important;
  font-size: 2.4rem;
  font-weight: 850;
  letter-spacing: 0;
}

.final-cta {
  background: linear-gradient(135deg, #101015, #111719);
}

.final-cta .section-inner {
  max-width: 860px;
}

.final-cta p {
  margin: 18px 0 28px;
}

.page-hero {
  padding: 96px clamp(22px, 6vw, 76px) 62px;
  background:
    linear-gradient(135deg, rgba(26, 143, 255, 0.18), transparent 34%),
    #070708;
  border-bottom: 1px solid var(--line);
}

.updated {
  margin-top: 18px;
  color: var(--amber);
  font-weight: 700;
}

.support-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.support-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 7px;
}

.support-sidebar a {
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  border-radius: 8px;
}

.support-sidebar a:hover {
  color: var(--text);
  border-color: var(--line);
}

.support-content,
.policy-layout {
  display: grid;
  gap: 26px;
}

.text-section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.text-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.text-section p + p {
  margin-top: 12px;
}

.text-section a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px clamp(22px, 6vw, 76px);
  color: var(--muted);
  font-size: 0.95rem;
  background: #050506;
}

.site-footer span {
  color: var(--text);
  font-weight: 750;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 86vh;
    padding-top: 70px;
  }

  .hero-shot {
    top: 24px;
    right: -48px;
    width: 62vw;
    opacity: 0.34;
  }

  .feature-grid,
  .pricing-grid,
  .two-column,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .support-sidebar {
    grid-template-columns: 1fr;
  }
}
