* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5b5f6a;
  --accent: #6a4bff;
  --accent-dark: #4a31c9;
  --surface: #f6f4ff;
  --surface-strong: #ece8ff;
  --line: #ded9f2;
}

body {
  margin: 0;
  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-dark);
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  gap: 24px;
  background: #ffffff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.hero {
  background: var(--surface);
  padding: 40px 5vw 60px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 5vw;
  align-items: stretch;
}

.split--reverse {
  flex-direction: column-reverse;
}

.split--accent {
  background: var(--surface);
}

.split--lifted {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split__media {
  flex: 1;
  position: relative;
}

.split__media img {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(27, 27, 31, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.display {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card img {
  width: 54px;
  height: 54px;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
}

.section-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(27, 27, 31, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.footer {
  padding: 40px 5vw;
  background: #10101a;
  color: #f4f4f8;
}

.footer a {
  color: #e3dbff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 16px 30px rgba(27, 27, 31, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(27, 27, 31, 0.12);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.notice {
  background: var(--surface-strong);
  padding: 14px 18px;
  border-radius: 16px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .display {
    font-size: 3rem;
  }
}
