:root {
  --sage: #1B473F;
  --forest: #0E3B34;
  --pine: #0A2620;
  --deep: #031F1A;
  --abyss: #061210;
  --ink: #0A0A0A;
  --graphite: #4A4A4A;
  --bone: #F5F2EC;
  --mist: #E8E4DB;
  --paper: #FFFFFF;
  --font-sans: 'General Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Nav */
.nav {
  background: var(--bone);
  border-bottom: 0.5px solid var(--mist);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.wordmark {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.wordmark .dot { color: var(--forest); }

.wordmark-sub {
  font-weight: 400;
  font-size: 14px;
  color: var(--graphite);
  margin-left: 2px;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--graphite);
  border: 0.5px solid var(--graphite);
  border-radius: var(--radius);
  padding: 8px 14px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-cta:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--bone);
}

/* Dot texture, dark surfaces only */
.dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--bone) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.08;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sage) 0%, var(--forest) 55%, var(--abyss) 100%);
  padding: 96px 0 88px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  margin-bottom: 12px;
}

.eyebrow-hero {
  color: #B7C7C1;
}

.hero h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: #C7CFCB;
  max-width: 520px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 13px 26px;
  transition: transform 0.1s ease, background 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--bone);
  color: var(--forest);
}

.btn-primary:hover { background: var(--mist); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 0.5px solid #5A776F;
}

.btn-ghost:hover { background: rgba(245, 242, 236, 0.08); }

/* Who it's for */
.who {
  padding: 72px 0;
  border-bottom: 0.5px solid var(--mist);
}

.lede {
  font-size: 19px;
  max-width: 640px;
  margin-bottom: 14px;
}

.lede-sub {
  font-size: 15px;
  color: var(--graphite);
  max-width: 620px;
}

/* Process */
.process {
  padding: 72px 0;
  border-bottom: 0.5px solid var(--mist);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 28px;
}

.step-n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sage);
  display: block;
  margin-bottom: 10px;
}

.step h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--graphite);
}

/* CTA band */
.cta-band {
  position: relative;
  background: var(--forest);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-inner { position: relative; }

.cta-band h2 {
  font-weight: 700;
  font-size: 26px;
  color: var(--bone);
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 15px;
  color: #B7C7C1;
  margin-bottom: 28px;
}

/* Footer */
.footer {
  padding: 28px 0;
  background: var(--bone);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 720px) {
  .hero h1 { font-size: 30px; }
  .hero { padding: 72px 0 64px; }
  .hero-logo { width: 140px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lede { font-size: 17px; }
  .who, .process { padding: 56px 0; }
  .cta-band h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .nav-cta { font-size: 11px; padding: 7px 10px; }
  .wordmark-sub { display: none; }
}
