* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5d5f6b;
  --accent: #8a2be2;
  --accent-dark: #5b1b9a;
  --soft: #f3f0f8;
  --paper: #ffffff;
  --shadow: 0 16px 40px rgba(20, 14, 33, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

header {
  padding: 28px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #ececf2;
}

header nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  color: var(--accent);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.cta-button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid #e2d4f8;
  box-shadow: none;
}

.split-section {
  display: flex;
  gap: 42px;
  padding: 70px 6vw;
  align-items: center;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-section .visual {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  background: linear-gradient(120deg, #f4edff, #fef7f0);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-dark);
}

.strip {
  background: var(--soft);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  max-height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  display: inline-block;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ded8e7;
  font-size: 1rem;
}

footer {
  padding: 40px 6vw;
  background: #0f0f14;
  color: #f6f4fb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #d5c4f6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.meta {
  color: #b7b0c6;
  font-size: 0.9rem;
}

.split-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: #1b1b1f;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 40;
}

.banner button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.banner .accept {
  background: #fff;
  color: #121218;
}

.banner .reject {
  background: #2c2c36;
  color: #fff;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-wrap {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dual-column {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.dual-column > div {
  flex: 1 1 300px;
}

.subtle {
  color: var(--muted);
}

@media (max-width: 800px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-section {
    padding: 50px 6vw;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
