:root {
  color-scheme: light;
  --page-bg: #f4efe6;
  --page-accent: #d56f3e;
  --page-accent-strong: #b85021;
  --page-ink: #182126;
  --page-muted: #5a625f;
  --panel: rgba(255, 252, 247, 0.86);
  --panel-strong: #fffaf2;
  --line: rgba(24, 33, 38, 0.12);
  --shadow: 0 24px 60px rgba(24, 33, 38, 0.12);
  --headline-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(213, 111, 62, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f1e7 0%, #f4efe6 38%, #efe8dd 100%);
  color: var(--page-ink);
  font-family: var(--body-font);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 24px;
}

.brand {
  font-family: var(--headline-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    border-color 140ms ease;
}

.header-cta,
.button-primary {
  background: var(--page-ink);
  color: #fff8f1;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.66);
}

.section {
  padding: 40px 0;
}

.section-muted {
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 18px -18px;
  border: 1px solid rgba(24, 33, 38, 0.06);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.45);
  z-index: -1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--page-accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--headline-font);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 16ch;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

p {
  margin: 0;
  line-height: 1.65;
}

.lede {
  max-width: 38rem;
  margin-top: 18px;
  color: var(--page-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.supporting-line {
  margin-top: 18px;
  color: var(--page-muted);
  font-weight: 600;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.signal-list li,
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.signal-list li {
  padding: 14px 16px;
  font-weight: 700;
}

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(24, 33, 38, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(242, 233, 221, 0.94));
  box-shadow: 0 32px 90px rgba(24, 33, 38, 0.18);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(24, 33, 38, 0.08);
}

.browser-dots {
  display: inline-flex;
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 5px, #d56f3e 0 4px, transparent 4.5px),
    radial-gradient(circle at 22px 5px, #f1b954 0 4px, transparent 4.5px),
    radial-gradient(circle at 39px 5px, #7d8c57 0 4px, transparent 4.5px);
}

.browser-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--page-muted);
}

.demo-frame {
  display: block;
  width: 100%;
  min-height: 540px;
  border: 0;
  background: linear-gradient(180deg, #fffaf2, #f4ede2);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.steps-grid,
.preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 22px;
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--page-accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audience-copy {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

.final-cta {
  padding-bottom: 0;
}

.cta-panel {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(24, 33, 38, 0.96), rgba(47, 64, 56, 0.94)),
    var(--page-ink);
  color: #fff8f1;
  box-shadow: 0 30px 72px rgba(24, 33, 38, 0.22);
}

.cta-panel .eyebrow {
  color: #f1b954;
}

.cta-panel h2 {
  max-width: 13ch;
}

.cta-panel p {
  max-width: 42rem;
  margin-top: 14px;
  color: rgba(255, 248, 241, 0.84);
}

.cta-panel .button-primary {
  margin-top: 22px;
  background: var(--page-accent);
  color: var(--page-ink);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .preview-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  h1,
  h2,
  .cta-panel h2 {
    max-width: none;
  }

  .demo-frame {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
    padding-bottom: 56px;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    gap: 24px;
    padding-top: 18px;
  }

  .section {
    padding: 32px 0;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .demo-frame {
    min-height: 360px;
  }

  .cta-panel,
  .card {
    padding: 20px;
  }
}