:root {
  --ink: #17211d;
  --muted: #67716c;
  --paper: #f3f0e8;
  --paper-deep: #e8e3d8;
  --white: #fffdf8;
  --green: #164c3b;
  --green-light: #d8e7d9;
  --lime: #d5e36d;
  --orange: #e9784a;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(31, 42, 35, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  min-width: 320px;
}
button, input { font: inherit; }
button { color: inherit; }
.grain {
  position: fixed;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand, .console-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 20px;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: var(--muted);
  text-transform: uppercase;
}
.brand-mark { width: 28px; height: 28px; position: relative; display: inline-block; }
.brand-mark i {
  position: absolute;
  width: 8px;
  border-radius: 8px;
  bottom: 3px;
  background: var(--green);
}
.brand-mark i:nth-child(1) { height: 14px; left: 1px; transform: rotate(-15deg); }
.brand-mark i:nth-child(2) { height: 23px; left: 10px; }
.brand-mark i:nth-child(3) { height: 17px; left: 19px; transform: rotate(15deg); }
.site-header nav { display: flex; height: 84px; gap: 34px; }
.nav-link, .console-nav {
  border: 0;
  background: none;
  cursor: pointer;
}
.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--orange);
}
.quiet-button, .back-button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 11px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.view { display: none; }
.view.active { display: block; }
.hero {
  min-height: 610px;
  padding: 82px max(6vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 9vw;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(22, 76, 59, 0.09);
  border-radius: 50%;
  right: -160px;
  top: -120px;
  box-shadow: 0 0 0 80px rgba(22, 76, 59, 0.025), 0 0 0 160px rgba(22, 76, 59, 0.018);
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font: 500 clamp(52px, 6vw, 86px)/0.94 var(--serif);
  letter-spacing: -0.055em;
  margin: 24px 0 28px;
}
h1 em { color: var(--green); font-weight: 500; }
.hero-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 590px;
}
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 18px; }
.primary-button {
  background: var(--green);
  color: var(--white);
  border: 0;
  border-radius: 3px;
  padding: 15px 21px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(22, 76, 59, 0.18);
}
.primary-button span { padding-left: 16px; font-size: 17px; }
.primary-button.dark { background: var(--ink); }
.microcopy { font-size: 10px; color: var(--muted); }
.proof-strip {
  min-height: 68px;
  background: var(--green);
  color: rgba(255,255,255,.82);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.proof-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.how-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 95px 5vw 110px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
}
.how-section h2 { font: 500 45px/1.05 var(--serif); letter-spacing: -.035em; margin-top: 18px; }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { display: flex; gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps li > span { font: italic 16px var(--serif); color: var(--orange); }
.steps strong { font: 600 20px var(--serif); }
.steps p { color: var(--muted); margin: 7px 0 0; font-size: 13px; }
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .site-header nav { gap: 14px; }
  .site-header .quiet-button { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 50px; }
  .hero-copy { max-width: 680px; }
  .how-section { grid-template-columns: 1fr; padding: 70px 24px; }
  .proof-strip { gap: 12px; padding: 18px; text-align: center; }
}
@media (max-width: 560px) {
  .brand small { display: none; }
  .site-header nav { height: 72px; }
  .site-header { min-height: 72px; }
  .nav-link { font-size: 11px; }
  h1 { font-size: 49px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .proof-strip i { display: none; }
  .proof-strip { flex-direction: column; gap: 8px; }
}
