:root {
  --bg: #f4efe7;
  --surface: #fffaf2;
  --text: #1f1b16;
  --muted: #5f5548;
  --accent: #be4f26;
  --accent-dark: #8f3111;
  --line: #e4d8c8;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(31, 27, 22, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  line-height: 1.5;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 15% 20%, rgba(226, 157, 102, 0.35), transparent 60%),
    radial-gradient(55% 75% at 85% 10%, rgba(109, 155, 143, 0.3), transparent 60%),
    linear-gradient(160deg, #f6f0e8, #ece5d8 55%, #f7f3ed);
}

.site-header,
main,
.site-footer {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 0;
}

.brand {
  font-family: "Newsreader", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.header-cta {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  border: 1px solid transparent;
}

.header-cta-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.7);
}

.header-cta-primary {
  color: #fff;
  background: var(--accent);
}

.header-cta-primary:hover {
  background: var(--accent-dark);
}

.header-cta-secondary:hover {
  border-color: #bda98e;
}

.section {
  margin-top: 3.5rem;
}

.hero h1,
h2,
h3 {
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.08;
  max-width: 12ch;
}

.hero-copy {
  max-width: 56ch;
  font-size: 1.15rem;
  margin: 1.25rem 0 0;
  color: #372f27;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.7);
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.proof-points li {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.8);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.split {
  display: grid;
  gap: 1.2rem;
}

.split h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  max-width: 24ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.1rem;
}

.step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  color: var(--accent-dark);
  background: #f8ddcf;
}

.card h3 {
  margin-top: 0.7rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.demo-head h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.demo-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.demo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem;
}

.demo-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(130deg, #d3c2ab, #b5a487);
  border: 1px solid #c9b89f;
  display: block;
}

.demo-card h3 {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.demo-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.demo-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 1.2rem;
}

.value-card h3 {
  font-size: 1.08rem;
}

.value-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.signup {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
}

.signup-form {
  padding: 0;
}

.signup-form .btn {
  width: auto;
  min-width: 220px;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  gap: 1rem;
}

@media (max-width: 900px) {
  .steps,
  .demo-grid,
  .value-grid,
  .signup {
    grid-template-columns: 1fr;
  }

  .signup {
    justify-content: center;
  }
}
