:root {
  --bg: #f6f6ef;
  --surface: #fffffb;
  --ink: #12120f;
  --muted: #6d6a60;
  --line: #dedbd0;
  --accent: #ff6600;
  --accent-dark: #c84f00;
  --shadow: 0 28px 80px rgba(18, 18, 15, 0.12);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --db-cream-dark: #ebe7da;
  --db-warm-gray: #6d6a60;
  --db-font-ui: var(--font-body);
  --db-terracotta: var(--accent);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 102, 0, 0.14), transparent 22rem),
    linear-gradient(180deg, #fffdf7 0%, var(--bg) 42%);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: rgba(18, 18, 15, 0.28);
  text-underline-offset: 0.22em;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px;
}

.brand,
nav,
.actions {
  align-items: center;
  display: flex;
  gap: 18px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 10px;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 32px;
}

.brand-mark::before,
.brand-mark::after {
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  border: 1.8px solid var(--bg);
  height: 11px;
  width: 11px;
}

.brand-mark::after {
  background: var(--bg);
  height: 3.5px;
  width: 3.5px;
}

nav {
  color: var(--muted);
  font-size: 14px;
}

main {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px 80px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  min-height: calc(100vh - 82px);
  padding: 36px 0 72px;
}

.hero-copy {
  max-width: 640px;
}

.kicker {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(76px, 13vw, 168px);
  line-height: 0.84;
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  margin: 0;
}

.tagline {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(31px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 22px;
}

.lede {
  color: #2a2924;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  margin: 0;
  max-width: 620px;
}

.actions {
  flex-wrap: wrap;
  margin: 34px 0 0;
}

.button {
  border: 1px solid var(--ink);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-width: 132px;
  padding: 12px 16px;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--bg);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.product-shot {
  margin: 0;
}

.menu-preview {
  background: rgba(32, 32, 30, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: #f4f4ed;
  font-size: 14px;
  line-height: 1.45;
  padding: 18px;
}

.menu-preview p {
  margin: 8px 0;
}

.menu-preview .muted {
  color: rgba(244, 244, 237, 0.58);
}

.menu-preview hr {
  border: 0;
  border-top: 1px solid rgba(244, 244, 237, 0.18);
  margin: 12px 0;
}

.menu-action {
  background: #1f6feb;
  border-radius: 6px;
  margin-inline: -7px;
  padding: 6px 7px;
}

figcaption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 104px) 0;
}

.two-col {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  grid-template-columns: 36px minmax(0, 1fr);
}

.steps span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: white;
  display: flex;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.steps p,
.text-block p {
  color: #282720;
  font-size: 20px;
  line-height: 1.58;
  margin: 0;
}

.text-block {
  max-width: 840px;
}

.text-block h2,
.terminal h2 {
  margin-bottom: 24px;
}

code {
  background: rgba(18, 18, 15, 0.06);
  border: 1px solid rgba(18, 18, 15, 0.08);
  border-radius: 5px;
  padding: 0.08em 0.3em;
}

pre {
  background: #151511;
  border-radius: 8px;
  color: #f6f6ef;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  overflow-x: auto;
  padding: 20px;
}

pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

@media (max-width: 820px) {
  .topbar {
    padding: 18px;
  }

  nav {
    display: none;
  }

  main {
    padding-inline: 18px;
  }

  .hero,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .product-shot {
    max-width: 520px;
  }
}
