:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --accent: #e50914;
  --text: #ffffff;
  --muted: #b3b3b3;
  --border: #2c2c2c;
  --radius: 8px;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #181818 0, #000 55%);
  color: var(--text);
}

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

header {
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

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

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

.nav-cta {
  display: flex;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text);
}

.btn-outline {
  border-color: var(--border);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 1.5rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero p {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(135deg, #151515, #050505);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-metric {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-metric strong {
  color: var(--accent);
}

.section {
  margin-top: 3.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  margin: 0.25rem 0;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 30rem;
}

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

.card {
  background: rgba(10, 10, 10, 0.9);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

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

.price-card {
  background: rgba(10, 10, 10, 0.9);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.4);
}

.price-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.price-value {
  font-size: 1.8rem;
  font-weight: 700;
}

.price-value span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.price-features li {
  margin-bottom: 0.25rem;
}

.price-features li::before {
  content: "• ";
  color: var(--accent);
}

.form-card {
  max-width: 420px;
  margin: 2rem auto 0;
  background: rgba(10, 10, 10, 0.95);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.form-card p {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #050505;
  color: var(--text);
  font-size: 0.85rem;
}

input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-footer a {
  color: var(--accent);
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  background: #050505;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .nav-links {
    display: none;
  }
}/* Make the page fill the full height so footer sits at the bottom */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Push footer to the bottom */
main {
  flex: 1;
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  flex-direction: column;
  padding: 2rem 1.5rem;
}

/* Center all form-card blocks */
.form-card {
  margin: 0 auto;            /* center horizontally */
}

