* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5a5a5a;
  --accent: #3b2bd6;
  --accent-soft: #e8e6ff;
  --sun: #f8d87b;
  --fog: #f3f4f6;
  --shadow: rgba(12, 16, 24, 0.12);
  --max-width: 920px;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fcfcfd;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  padding: 28px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 22px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel--soft {
  background: var(--fog);
  box-shadow: none;
}

.panel--accent {
  background: var(--accent);
  color: #fff;
}

.panel--sun {
  background: var(--sun);
}

.panel--split {
  flex-direction: row;
  gap: 24px;
}

.panel--split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.callout {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  font-style: italic;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 18px var(--shadow);
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.price {
  font-weight: 700;
}

.badge {
  display: inline-flex;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d7de;
  font-size: 1rem;
  font-family: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 40px 24px 60px;
  background: #0f0f12;
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

.split-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.spaced {
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid #d1d1d6;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 820px) {
  .panel--split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
