:root {
  --bg: #efeeea;
  --surface: #fbf7f0;
  --surface-strong: #fffaf4;
  --ink: #263744;
  --text: #42505c;
  --muted: #6d7883;
  --soft: #97a1ab;
  --line: #d8cabc;
  --line-blue: #d1d7de;
  --accent: #b57963;
  --accent-soft: #e8cabc;
  --gold: #d6a84f;
  --shadow: 0 24px 70px rgba(29, 40, 50, 0.11);
  --radius: 28px;
  --max: 1180px;
  font-family:
    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #253846;
  background: rgba(246, 241, 234, 0.94);
  backdrop-filter: blur(16px);
}

.nav,
.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
}

.brand-mark span {
  width: 18px;
  height: 18px;
  border: 2px solid #f8f1e7;
  border-radius: 50%;
  position: relative;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid #f8f1e7;
  border-radius: 50%;
}

.brand-mark span::after {
  inset: 7px;
  background: var(--accent);
  border: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 650;
  color: var(--text);
}

.nav-links a,
.nav-cta {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 750;
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 72px 24px 34px;
  background: var(--bg);
}

.hero-inner {
  width: min(1920px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1840px;
  margin: 0 auto 34px;
  color: var(--ink);
  font-size: clamp(76px, 7.5vw, 146px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: 0;
}

p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.58;
}

.hero-lede {
  max-width: 600px;
  margin: 0 auto 60px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(38, 55, 68, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.editorial-overview {
  padding: 64px 24px 72px;
  background: #fbfafa;
}

.editorial-list {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 48px;
  justify-items: center;
  text-align: center;
}

.editorial-list article {
  width: min(560px, 100%);
}

.editorial-list h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1;
  text-wrap: balance;
}

.editorial-list p {
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
  line-height: 1.36;
  text-wrap: balance;
}

.split-section,
.process-section,
.audience-section {
  padding: 92px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  border-top: 1px solid var(--line-blue);
}

.section-intro {
  max-width: 620px;
}

.section-intro.centered {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.feature-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 26px;
}

.feature-grid p,
.steps p,
.audience-list p,
.final-cta p,
.footer p {
  margin-bottom: 0;
}

.feature-number,
.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-section {
  padding: 96px 0;
  border-top: 1px solid var(--line-blue);
  border-bottom: 1px solid var(--line-blue);
  background: #f7f4ef;
}

.screenshots {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.wide-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 18px 50px rgba(29, 40, 50, 0.08);
}

.wide-shot:first-child {
  grid-row: span 2;
}

.wide-shot img {
  width: 100%;
  background: var(--bg);
}

.wide-shot figcaption {
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
}

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

.steps article {
  min-height: 250px;
}

.audience-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line-blue);
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list p {
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: var(--surface);
}

.final-cta {
  padding: 98px 0;
  background: var(--ink);
}

.final-cta-inner {
  max-width: 880px;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: #fffaf4;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #dce1e4;
}

.final-cta .eyebrow {
  color: var(--accent-soft);
}

.final-cta .button.primary {
  background: #fffaf4;
  color: var(--ink);
  box-shadow: none;
}

.footer {
  padding: 34px 0;
  background: #f6f1ea;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .split-section,
  .process-section,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 62px;
  }

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

  .screenshots {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav,
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    padding: 46px 14px 54px;
  }

  h1 {
    font-size: clamp(54px, 16vw, 72px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  p,
  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-lede {
    margin-bottom: 38px;
    font-size: 18px;
    line-height: 1.38;
  }

  .editorial-overview {
    padding: 46px 14px 58px;
  }

  .editorial-list {
    width: min(100%, 360px);
    gap: 36px;
  }

  .editorial-list h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .editorial-list p {
    font-size: 16px;
    line-height: 1.35;
  }

  .split-section,
  .process-section,
  .audience-section,
  .preview-section,
  .final-cta {
    padding: 64px 0;
  }

  .feature-grid article,
  .steps article {
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Landing polish: warm contrast, restrained motion, footer contacts */
:root {
  --paper: #fffaf5;
  --paper-clean: #fffdf9;
  --warm-band: #e9e4dc;
  --warm-band-soft: #f3eee7;
  --rust: #a96348;
  --rust-soft: #d9b6a4;
  --hairline: #ded1c4;
}

.site-header {
  border-bottom-color: rgba(38, 55, 68, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 250, 245, 0.82) 0, rgba(255, 250, 245, 0) 42%),
    var(--bg);
}

.hero-inner {
  animation: hero-rise 720ms ease both;
}

@keyframes hero-rise {
  from {
    opacity: 1;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-overview {
  background: var(--paper-clean);
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 var(--hairline);
}

.editorial-list article:nth-child(2) h2 {
  color: var(--ink);
}

.editorial-list article {
  position: relative;
}

.editorial-list article::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 30px auto 0;
  background: var(--rust-soft);
}

.editorial-list article:last-child::after {
  display: none;
}

.split-section {
  position: relative;
  border-top: 0;
  background: var(--warm-band);
  box-shadow: 0 0 0 100vmax var(--warm-band);
  clip-path: inset(0 -100vmax);
}

.split-section::before,
.preview-section::before,
.process-section::before,
.audience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--max), calc(100vw - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(169, 99, 72, 0.34), transparent);
}

.feature-grid {
  gap: 20px;
}

.feature-grid article,
.steps article {
  background: var(--paper);
  border-color: var(--hairline);
  box-shadow: 0 16px 38px rgba(38, 55, 68, 0.055);
}

.feature-grid article:first-child {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-color: rgba(169, 99, 72, 0.45);
  color: var(--ink);
}

.feature-grid article:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--rust);
}

.feature-grid article:first-child span,
.feature-grid article:first-child p {
  color: var(--text);
}

.feature-number,
.steps span {
  color: var(--rust);
}

.preview-section {
  position: relative;
  background: #f8f5ef;
  border-top: 0;
  border-bottom: 0;
  box-shadow: inset 0 -1px 0 var(--hairline);
}

.wide-shot {
  border-color: var(--hairline);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.wide-shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(38, 55, 68, 0.12);
}

.process-section {
  position: relative;
  background: var(--warm-band-soft);
  box-shadow: 0 0 0 100vmax var(--warm-band-soft);
  clip-path: inset(0 -100vmax);
}

.steps article:nth-child(2) {
  border-color: rgba(169, 99, 72, 0.34);
}

.steps article:nth-child(3) {
  background: #fff4e9;
  border-color: #dfc6b5;
}

.audience-section {
  position: relative;
  border-top: 0;
  background: var(--paper-clean);
  box-shadow: 0 0 0 100vmax var(--paper-clean);
  clip-path: inset(0 -100vmax);
}

.audience-list p {
  background: var(--warm-band-soft);
  border-left-color: var(--rust);
}

.final-cta {
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 250, 245, 0.08);
}

.footer {
  background: var(--paper-clean);
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-contact p {
  margin: 0;
}

.footer-contact p:last-child {
  color: var(--muted);
  margin-top: 8px;
}

.footer-label {
  color: var(--rust);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0.94;
  transform: translateY(12px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid article:nth-child(2).reveal,
.steps article:nth-child(2).reveal,
.audience-list p:nth-child(2).reveal {
  transition-delay: 70ms;
}

.feature-grid article:nth-child(3).reveal,
.steps article:nth-child(3).reveal,
.audience-list p:nth-child(3).reveal {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .reveal,
  .wide-shot {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .split-section::before,
  .preview-section::before,
  .process-section::before,
  .audience-section::before {
    width: calc(100vw - 28px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
