* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0b0c10;
  --muted: #4a5160;
  --paper: #f7f5f1;
  --mist: #e6e2dc;
  --accent: #0f5b9a;
  --accent-2: #d9923b;
  --edge: #d0c7bb;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

header {
  padding: 20px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: #fff3e4;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  background: #f2efe9;
  border-radius: 24px;
  padding: 28px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--edge);
  color: var(--ink);
}

.card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--edge);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card-row .card {
  flex: 1 1 240px;
}

.image-frame {
  background: var(--mist);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  margin: 36px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 10px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.strip {
  border-radius: 22px;
  padding: 24px;
  background: #0f1620;
  color: white;
}

.strip a {
  color: white;
  text-decoration: underline;
}

.bg-launch {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-launch .strip {
  background: rgba(15, 22, 32, 0.78);
}

.pricing {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-2);
}

.form-box {
  background: white;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--edge);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--edge);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: white;
  border-radius: 999px;
  padding: 8px;
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 13px;
}

footer {
  border-top: 1px solid var(--edge);
  margin-top: 40px;
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: white;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-column-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-column-list ul {
  flex: 1 1 220px;
  margin: 0;
  padding-left: 18px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe7dc;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 32px;
  }
}
