:root {
  color-scheme: light;
  --navy: #0b1220;
  --ink: #111827;
  --sky: #38bdf8;
  --gold: #f59e0b;
  --slate: #1f2937;
  --cream: #f6efe7;
  --stone: #e2e8f0;
  --accent: #7c3aed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fdfbf9;
  line-height: 1.6;
}

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

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

.site-header {
  padding: 24px 6vw 8px;
}

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

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
  color: #374151;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.button.light {
  background: white;
  color: var(--ink);
  border: 1px solid #d1d5db;
}

.button.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: var(--navy);
  color: #f8fafc;
}

.section.tinted {
  background: var(--cream);
}

.section.texture {
  background: url("assets/texture.svg");
  background-size: cover;
  color: #f8fafc;
}

.section h2 {
  font-size: 2rem;
  margin: 0;
}

.section h3 {
  margin: 0;
  font-size: 1.35rem;
}

.lede {
  font-size: 1.15rem;
  max-width: 720px;
}

.hero {
  padding: 24px 6vw 48px;
}

.hero-card {
  background: var(--navy);
  color: #f8fafc;
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card img {
  border-radius: 20px;
}

.hero-title {
  font-size: 2.4rem;
  margin: 0;
}

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

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card.dark {
  background: #111827;
  color: #f8fafc;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.quote {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

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

.metric {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card strong {
  font-size: 1.4rem;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 32px 6vw 48px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  margin: 0 6vw;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.inline-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card > div,
  .hero-card > img {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 240px;
  }
}
