:root {
  --ink: #111111;
  --paper: #f4f0e8;
  --card: #fffaf0;
  --muted: #64615a;
  --line: #d8ccba;
  --orange: #e46f2f;
  --red: #a5302f;
  --teal: #006f75;
  --yellow: #f0b93f;
  --blue: #263f73;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(244, 240, 232, 0.92);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--yellow);
}

nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(88vh - 78px);
  border-bottom: 2px solid var(--ink);
}

.hero-media {
  display: grid;
  place-items: center;
  padding: 54px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.72)),
    url("https://images.unsplash.com/photo-1590602847861-f357a9332bbc?auto=format&fit=crop&w=1200&q=85") center / cover;
}

.screen {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 0.82;
  padding: 32px;
  background: var(--card);
  border: 3px solid var(--ink);
  box-shadow: 18px 18px 0 var(--orange);
}

.wave {
  height: 110px;
  margin-bottom: 28px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 10px, transparent 10px 24px);
  clip-path: polygon(0 54%, 8% 18%, 16% 63%, 24% 28%, 32% 72%, 40% 14%, 48% 58%, 56% 35%, 64% 82%, 72% 30%, 80% 66%, 88% 22%, 96% 55%, 100% 40%, 100% 100%, 0 100%);
}

.line {
  height: 16px;
  margin: 18px 0;
  background: var(--ink);
}

.line.one {
  width: 86%;
}

.line.two {
  width: 68%;
}

.line.three {
  width: 78%;
}

.seo-pill {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 12px 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-weight: 900;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(24px, 6vw, 82px);
  background: var(--card);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.audience-list p,
.module-track p,
.steps span,
.price-box p,
.price-box li,
.faq-grid p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
}

.button.primary {
  background: var(--orange);
  color: white;
}

.button.secondary {
  background: var(--yellow);
}

.button.full {
  width: 100%;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--ink);
}

.ticker span {
  padding: 18px;
  border-right: 2px solid var(--ink);
  background: var(--yellow);
  font-weight: 900;
  text-align: center;
}

.ticker span:last-child {
  border-right: 0;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.audience {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}

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

.audience-list article {
  padding: 24px;
  background: var(--card);
  border: 2px solid var(--ink);
}

.audience-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.inside {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: var(--card);
}

.inside .section-head p {
  color: #c8c0b2;
}

.file-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(190px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.file-board div {
  min-height: 190px;
  padding: 18px;
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--yellow);
}

.file-board strong,
.file-board span {
  display: block;
}

.file-board strong {
  margin-bottom: 40px;
  overflow-wrap: anywhere;
}

.file-board span {
  color: var(--muted);
}

.module-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.module-track article {
  min-height: 220px;
  padding: 22px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--card);
}

.module-track span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--red);
  font-weight: 950;
}

.module-track h3 {
  margin-bottom: 8px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ba-card {
  min-height: 420px;
  padding: clamp(32px, 6vw, 76px);
}

.ba-card.before {
  background: var(--blue);
  color: white;
}

.ba-card.after {
  background: var(--yellow);
  border-left: 2px solid var(--ink);
}

.ba-card.before .kicker {
  color: var(--yellow);
}

.ba-card.after .kicker {
  color: var(--red);
}

.workflow {
  text-align: center;
}

.workflow .section-head {
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  padding: 28px;
  background: var(--card);
  border: 2px solid var(--ink);
  text-align: left;
}

.steps li::before {
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  background: var(--teal);
  color: white;
  border: 2px solid var(--ink);
  font-weight: 950;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: center;
}

pre {
  margin: 0;
  overflow-x: auto;
  padding: 28px;
  color: var(--card);
  background: var(--ink);
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 1.65;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: var(--teal);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.pricing h2,
.pricing p {
  color: white;
}

.pricing .kicker {
  color: var(--yellow);
}

.price-box {
  padding: 28px;
  background: var(--card);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}

.price-box span {
  color: var(--muted);
  font-weight: 850;
}

.price-box strong {
  display: block;
  margin: 6px 0;
  font-size: 64px;
  line-height: 1;
}

.price-box p {
  color: var(--muted);
}

.price-box ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 20px;
  background: var(--card);
  border: 2px solid var(--ink);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--card);
  background: var(--ink);
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .hero,
  .audience,
  .module-track,
  .before-after,
  .steps,
  .demo,
  .pricing,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .ba-card.after {
    border-left: 0;
    border-top: 2px solid var(--ink);
  }
}

@media (max-width: 560px) {
  .hero-media {
    padding: 32px 22px;
  }

  .hero-copy {
    padding: 52px 22px;
  }

  h1 {
    font-size: 42px;
  }

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

  .ticker span {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .ticker span:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  footer {
    flex-direction: column;
  }
}
