﻿:root {
  --bg: #07111d;
  --bg-soft: #0c1727;
  --card: rgba(15, 23, 42, 0.82);
  --card-strong: rgba(15, 23, 42, 0.94);
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(148, 163, 184, 0.24);
  --text: #f8fafc;
  --muted: #9fb1c7;
  --muted-strong: #d9e2ec;
  --green: #22c55e;
  --green-soft: rgba(34, 197, 94, 0.16);
  --blue-soft: rgba(96, 165, 250, 0.14);
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.38);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at right, rgba(96, 165, 250, 0.08), transparent 22%),
    linear-gradient(180deg, #06101b, #091321 42%, #09111b);
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(5, 12, 20, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 140ms ease;
}

.brand:hover {
  opacity: 0.96;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #34d399, #16a34a 58%, #052e16);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.28);
}

.brand-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

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

.nav-links a {
  transition: color 140ms ease;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  color: #04200d;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.26);
}

.button-secondary {
  color: var(--text);
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button:hover {
  background: #34d399;
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.3);
}

.button-secondary:hover {
  background: rgba(148, 163, 184, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: start;
  width: auto;
  max-width: max-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #bbf7d0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  padding: 84px 0 52px;
}

.hero-grid,
.page-hero-grid,
.tray-download-section,
.feature-grid,
.pricing-grid {
  display: grid;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.hero-copy,
.page-hero-copy,
.tray-download-copy,
.section-head > div,
.hero-card,
.page-hero-card,
.checkout-status-card,
.tray-download-actions {
  min-width: 0;
}

.hero-copy,
.page-hero-copy,
.tray-download-copy,
.section-head > div {
  display: grid;
  justify-items: start;
  align-content: start;
}

.hero-copy {
  gap: 18px;
}

h1 {
  font-size: clamp(44px, 8vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-card,
.card,
.legal-card,
.pricing-card,
.faq-card,
.page-hero-card,
.checkout-status-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-card,
.page-hero-card,
.checkout-status-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(9, 17, 30, 0.94)), var(--card);
}

.hero-card,
.page-hero-card {
  padding: 26px;
}

.hero-card:hover,
.card:hover,
.pricing-card:hover,
.legal-card:hover,
.faq-card:hover,
.page-hero-card:hover,
.checkout-status-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.hero-metrics {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 160ms ease, background 160ms ease;
}

.metric:hover {
  border-color: rgba(148, 163, 184, 0.18);
}

.metric strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 24px 0 72px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head > div {
  gap: 12px;
}

.section-head p,
.page-hero-copy p,
.page-hero-card p,
.legal-card p,
.faq-card p,
.checkout-status-card p,
.tray-download-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  padding: 44px 0 24px;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.page-hero-copy {
  gap: 16px;
}

.page-hero-copy h1,
.page-hero-copy h2,
.section-head h2,
.legal-card h2,
.faq-card h2,
.checkout-status-card h2 {
  line-height: 1;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.page-hero-copy h1,
.page-hero-copy h2,
.section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
}

.page-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero-card {
  display: grid;
  gap: 14px;
}

.page-hero-card strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

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

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

.card {
  padding: 24px;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  font-size: 22px;
}

.card h3 {
  margin-top: 16px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

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

.pricing-card {
  padding: 28px;
}

.pricing-card.featured {
  position: relative;
  overflow: hidden;
  border-color: rgba(34, 197, 94, 0.28);
  background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 28%), var(--card-strong);
}

.pricing-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: inherit;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-name {
  margin-top: 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}

.pricing-price strong {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pricing-price span,
.pricing-copy,
.tray-download-meta {
  color: var(--muted);
}

.pricing-copy {
  margin-top: 14px;
  line-height: 1.7;
}

.pricing-card .feature-list {
  margin-top: 24px;
}

.feature-list,
.legal-card ul {
  list-style: none;
  padding: 0;
  display: grid;
}

.feature-list {
  gap: 12px;
  margin: 22px 0 0;
}

.legal-card ul {
  gap: 12px;
  margin: 0;
  padding-top: 6px;
}

.feature-list li,
.legal-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.65;
}

.feature-list li {
  color: #dcfce7;
}

.feature-list li::before,
.legal-card li::before {
  content: "\2713";
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
  margin-top: 1px;
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.legal-card,
.faq-card,
.checkout-status-card {
  padding: 28px;
}

.legal-card h2,
.faq-card h2,
.checkout-status-card h2 {
  font-size: 34px;
}

.legal-card h3,
.faq-card h3,
.checkout-status-card h3 {
  margin-top: 22px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.legal-card p,
.faq-card p,
.checkout-status-card p {
  margin-top: 12px;
}

.legal-card a,
.faq-card a,
.checkout-status-card a {
  color: #bbf7d0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-card a:hover,
.faq-card a:hover,
.checkout-status-card a:hover {
  color: #dcfce7;
}

.checkout-status-card {
  display: grid;
  gap: 6px;
}

.checkout-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.12);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tray-download-section {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(9, 17, 30, 0.94));
  box-shadow: var(--shadow);
}

.tray-download-copy {
  gap: 14px;
}

.tray-download-copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.tray-download-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
  align-content: center;
}

.tray-download-meta {
  font-size: 14px;
}

.site-footer {
  padding: 32px 0 48px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

@media (max-width: 920px) {
  .hero-grid,
  .page-hero-grid,
  .feature-grid,
  .pricing-grid,
  .tray-download-section,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100vw - 24px));
  }

  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .brand {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-actions,
  .footer-grid,
  .footer-links {
    display: grid;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .pricing-price {
    flex-wrap: wrap;
  }

  .eyebrow {
    white-space: normal;
  }
}
