* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5a5f66;
  --accent: #2d6cdf;
  --accent-dark: #1e4aa8;
  --sand: #f6f3ee;
  --mist: #eef1f6;
  --line: #d7dbe2;
  --highlight: #f3f7ff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  min-height: 100vh;
  background: #ffffff;
}

.sidebar {
  width: 260px;
  background: var(--mist);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--muted);
}

.brand h1 {
  font-size: 1.6rem;
  line-height: 1.2;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.nav a {
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.sticky-cta {
  margin-top: auto;
  position: sticky;
  top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-alt {
  background: #0f172a;
  border-color: #0f172a;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.alt {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.highlight {
  background: var(--highlight);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.section h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.section p {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.metric strong {
  font-size: 1.4rem;
  display: block;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  margin-left: 18px;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.pricing-item h3 {
  font-size: 1.2rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #ffffff;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 32px 8vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  cursor: pointer;
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    width: 100%;
    position: static;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }
}
