* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5a5f6b;
  --paper: #f5f2ea;
  --paper-dark: #ece6db;
  --accent: #a6402d;
  --accent-dark: #823326;
  --line: #d8d2c5;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

nav a {
  color: var(--ink);
}

.hero {
  padding: 48px 0 56px;
  background: var(--paper);
}

.hero-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  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(-1px);
  background: var(--accent-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  background: #fff3f0;
}

.section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--paper);
}

.magazine-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.col-2 {
  flex: 1 1 300px;
}

.col-3 {
  flex: 1 1 220px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 14px;
}

.muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.pricing-table {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-gap {
  margin-top: 24px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  position: relative;
}

.price-card h3 {
  margin-bottom: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-panel {
  background: var(--paper-dark);
  padding: 24px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.small {
  font-size: 0.85rem;
}

footer {
  padding: 32px 0 48px;
  background: #121212;
  color: #fff;
}

footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.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 26px rgba(0, 0, 0, 0.18);
  z-index: 50;
}

.banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1c1c1c;
  color: #fff;
  padding: 16px;
  display: none;
  z-index: 60;
}

.banner.visible {
  display: block;
}

.banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.banner button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.banner button.accept {
  background: #fff;
  color: #111;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: #fff4ea;
  border: 1px solid #f1d7c6;
}

@media (max-width: 760px) {
  nav ul {
    gap: 12px;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
