:root {
  --ink: #15231d;
  --ink-2: #34473e;
  --muted: #6d7b74;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #d8d9d1;
  --orange: #f16132;
  --orange-dark: #c94119;
  --lime: #c9f27b;
  --green: #275642;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
  --font-mono: "DM Mono", monospace;
  --container: 1200px;
  --shadow: 0 26px 70px rgba(21, 35, 29, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 150ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(150%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(21, 35, 29, 0.05);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark { width: 34px; height: 42px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.brand-name em { color: var(--orange); font-weight: 600; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  transition: color 150ms ease;
}
.primary-nav a:hover { color: var(--orange-dark); }
.primary-nav .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
}
.primary-nav .nav-cta:hover { color: var(--white); background: var(--orange-dark); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span { width: 100%; height: 2px; background: var(--ink); transition: transform 150ms ease, opacity 150ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 112px;
  background:
    linear-gradient(rgba(21, 35, 29, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 29, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.38;
  filter: blur(2px);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  gap: 70px;
  align-items: center;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(241, 97, 50, 0.14);
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(3.25rem, 6.1vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
}
.hero h1 em,
.final-cta h2 em {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.035em;
}
.hero-lede {
  max-width: 650px;
  margin-top: 28px;
  color: var(--ink-2);
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .primary-nav a:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 5px 5px 0 var(--ink); }
.button-primary:hover { background: var(--orange-dark); box-shadow: 3px 3px 0 var(--ink); }
.button-light { color: var(--ink); background: var(--lime); box-shadow: 5px 5px 0 rgba(21, 35, 29, 0.35); }
.button-light:hover { background: var(--white); box-shadow: 3px 3px 0 rgba(21, 35, 29, 0.35); }
.button-large { min-height: 60px; padding: 17px 28px; }
.text-link { font-weight: 800; border-bottom: 2px solid var(--ink); }
.text-link:hover { color: var(--orange-dark); border-color: var(--orange-dark); }
.proof-strip {
  display: flex;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip li { display: flex; flex-direction: column; padding: 18px 24px 18px 0; margin-right: 24px; }
.proof-strip li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.proof-strip strong { font-size: 1.1rem; line-height: 1.2; }
.proof-strip span { font-size: 12px; color: var(--muted); }

.ops-shell {
  position: relative;
  border: 1px solid #2d4137;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 18px 22px 0 var(--lime), var(--shadow);
  transform: rotate(1.1deg);
  overflow: hidden;
}
.ops-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,0.07), transparent 38%);
}
.ops-topbar { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.ops-topbar > div { display: flex; align-items: center; gap: 12px; }
.ops-label { padding: 5px 7px; border: 1px solid rgba(255,255,255,0.26); border-radius: 3px; font: 500 10px var(--font-mono); letter-spacing: 0.1em; color: var(--lime); }
.ops-topbar strong { font-size: 14px; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border-radius: 999px; background: rgba(201,242,123,0.12); color: var(--lime); font: 500 11px var(--font-mono); }
.live-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(201,242,123,0.12); }
.ops-scoreboard { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,0.12); }
.ops-scoreboard > div { min-width: 0; padding: 22px 17px; }
.ops-scoreboard > div + div { border-left: 1px solid rgba(255,255,255,0.12); }
.ops-scoreboard span, .ops-scoreboard small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ops-scoreboard span { color: #9eafa6; font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.ops-scoreboard strong { display: block; margin: 4px 0 1px; font-size: 28px; line-height: 1.1; }
.ops-scoreboard small { color: var(--lime); font-size: 10px; }
.activity-list { padding: 13px; }
.activity-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 15px 11px; border-radius: 6px; }
.activity-item + .activity-item { border-top: 1px solid rgba(255,255,255,0.08); }
.activity-active { background: rgba(255,255,255,0.055); }
.activity-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: white; font: 500 10px var(--font-mono); }
.activity-item:nth-child(2) .activity-icon { background: var(--green); color: var(--lime); }
.activity-item:nth-child(3) .activity-icon { background: #3e4c46; color: #dce3df; }
.activity-item strong, .activity-item small { display: block; }
.activity-item strong { font-size: 12px; }
.activity-item small { color: #9eafa6; font-size: 10px; }
.activity-item time { color: #9eafa6; font: 400 10px var(--font-mono); }
.ops-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 24px; color: var(--ink); background: var(--lime); font-size: 11px; }
.ops-footer strong { font-size: 11px; }

.challenge { padding: 0 0 112px; background: linear-gradient(var(--paper) 50%, var(--cream) 50%); }
.challenge-card {
  position: relative;
  padding: 68px min(7vw, 88px);
  color: var(--white);
  background: var(--orange);
  border-radius: 10px;
  box-shadow: 14px 14px 0 var(--ink);
  overflow: hidden;
}
.challenge-card::before {
  content: "7";
  position: absolute;
  right: -18px;
  bottom: -175px;
  font-family: var(--font-display);
  font-size: 510px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.09);
}
.challenge-card > * { position: relative; z-index: 1; }
.challenge-badge { position: absolute; top: 0; left: min(7vw, 88px); padding: 10px 17px; color: var(--ink); background: var(--lime); font: 500 11px var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }
.challenge-preline { margin-top: 8px; font-family: var(--font-display); font-size: 1.5rem; font-style: italic; }
.challenge h2 { max-width: 850px; font-size: clamp(3rem, 6.1vw, 5.3rem); line-height: 0.97; letter-spacing: -0.06em; font-weight: 800; }
.challenge-copy { max-width: 770px; margin-top: 24px; font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.55; color: #fff4ee; }
.challenge-offer { display: flex; align-items: center; gap: 22px; max-width: 690px; margin: 34px 0 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); }
.offer-price { display: flex; align-items: flex-start; font-size: 4rem; font-weight: 800; line-height: 0.85; letter-spacing: -0.07em; }
.offer-price span { margin-right: 2px; font-size: 1.2rem; letter-spacing: 0; }
.challenge-offer > div:last-child { display: flex; flex-direction: column; }
.challenge-offer strong { font-size: 1.05rem; }
.challenge-offer span { color: #fff4ee; font-size: 13px; }
.promo-code { display: flex; align-items: center; width: fit-content; margin-bottom: 30px; border: 1px dashed rgba(255,255,255,0.7); border-radius: 5px; overflow: hidden; }
.promo-code span { padding: 10px 14px; color: #fff4ee; font: 500 10px var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.promo-code strong { padding: 10px 15px; color: var(--ink); background: var(--white); font: 500 15px var(--font-mono); letter-spacing: 0.09em; }

.product { padding: 118px 0; background: var(--cream); }
.section-heading { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.eyebrow { margin-bottom: 13px; color: var(--orange-dark); font: 500 12px var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.section-heading h2, .built-for h2, .process h2 { font-size: clamp(2.4rem, 4.9vw, 4.1rem); line-height: 1.03; letter-spacing: -0.055em; }
.section-heading > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--ink-2); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card-wide { grid-column: 1 / -1; min-height: 390px; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr); gap: 70px; align-items: center; }
.feature-number { position: absolute; top: 25px; right: 28px; color: #b1b7b2; font: 500 12px var(--font-mono); }
.feature-tag { margin-bottom: 13px; color: var(--orange-dark); font: 500 11px var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.feature-card h3 { max-width: 470px; margin-bottom: 15px; font-size: clamp(1.7rem, 3.2vw, 2.65rem); line-height: 1.08; letter-spacing: -0.045em; }
.feature-card p:not(.feature-tag) { max-width: 530px; color: var(--ink-2); }
.call-visual { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 44px rgba(21,35,29,0.1); }
.call-ring { position: relative; width: 42px; height: 42px; border: 10px solid var(--orange); border-radius: 50%; box-shadow: 0 0 0 8px rgba(241,97,50,0.12); }
.call-visual small, .call-visual strong, .call-visual span { display: block; }
.call-visual small { color: var(--muted); font: 500 9px var(--font-mono); }
.call-visual strong { font-size: 1.25rem; }
.call-visual div > span { color: var(--muted); font-size: 12px; }
.call-visual .call-status { padding: 7px 10px; border-radius: 999px; color: var(--green); background: rgba(201,242,123,0.45); font: 500 10px var(--font-mono); }
.mini-stat { position: absolute; left: 34px; right: 34px; bottom: 34px; display: flex; align-items: center; gap: 15px; padding: 20px; background: #fce6dd; border-left: 4px solid var(--orange); }
.mini-stat strong { font-size: 2.2rem; line-height: 1; }
.mini-stat span { color: var(--ink-2); font-size: 13px; }
.feature-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.feature-dark .feature-tag { color: var(--lime); }
.feature-dark p:not(.feature-tag) { color: #b7c3bd; }
.feature-dark .feature-number { color: #6f8178; }
.pipeline-mini { position: absolute; left: 34px; right: 34px; bottom: 42px; display: grid; gap: 12px; }
.pipeline-mini span { display: block; width: var(--width); height: 16px; border-radius: 3px; background: var(--lime); opacity: 0.95; }
.pipeline-mini span:nth-child(2) { background: #73a589; }
.pipeline-mini span:nth-child(3) { background: var(--orange); }
.owner-card { background: #e7f0e8; }
.owner-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.owner-stats > div { padding: 24px; background: var(--paper); border: 1px solid #cbd8cc; border-radius: 6px; }
.owner-stats span, .owner-stats strong, .owner-stats small { display: block; }
.owner-stats span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.owner-stats strong { margin: 6px 0 2px; font-size: 1.7rem; line-height: 1.2; }
.owner-stats small { color: var(--green); font-size: 11px; }

.built-for { padding: 115px 0; color: var(--white); background: var(--ink); }
.built-for-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: start; }
.built-for .eyebrow { color: var(--lime); }
.built-for h2 { max-width: 560px; }
.trade-list { border-top: 1px solid rgba(255,255,255,0.15); }
.trade-list li { display: grid; grid-template-columns: 0.65fr 1fr; gap: 20px; align-items: center; padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.trade-list span { font-size: 1.1rem; font-weight: 800; }
.trade-list small { color: #a8b6af; }

.process { padding: 118px 0; background: var(--paper); }
.section-heading-left { max-width: 760px; margin-inline: 0; text-align: left; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-grid li { min-height: 300px; padding: 32px; background: var(--paper); }
.step { display: inline-block; margin-bottom: 52px; padding: 6px 10px; color: var(--orange-dark); background: #fce6dd; font: 500 11px var(--font-mono); }
.process-grid h3 { margin-bottom: 14px; font-size: 1.45rem; line-height: 1.2; letter-spacing: -0.03em; }
.process-grid p { color: var(--ink-2); }

.final-cta { padding: 120px 0; background: var(--lime); }
.final-cta-inner { max-width: 980px; text-align: center; }
.final-cta .kicker { justify-content: center; }
.final-cta h2 { font-size: clamp(3rem, 7vw, 6.5rem); line-height: 0.93; letter-spacing: -0.065em; }
.final-cta h2 em { color: var(--green); }
.final-cta p:not(.kicker) { max-width: 670px; margin: 26px auto 30px; font-size: 1.14rem; }
.final-cta .button { margin-inline: auto; }
.final-cta small { display: block; margin-top: 20px; color: var(--green); font-size: 12px; }
.final-cta small strong { color: var(--ink); font-family: var(--font-mono); letter-spacing: 0.07em; }

.site-footer { padding: 58px 0 35px; color: #afbeb6; background: var(--ink); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: start; }
.footer-brand .brand-name { color: var(--white); }
.footer-inner > div:first-child > p { max-width: 430px; margin-top: 14px; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; font-size: 13px; }
.footer-links a:hover { color: var(--lime); }
.copyright { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 11px; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 760px; }
  .ops-shell { width: min(100%, 650px); margin-inline: auto; }
  .feature-card-wide { grid-template-columns: 1fr; gap: 32px; }
  .built-for-grid { grid-template-columns: 1fr; gap: 50px; }
  .built-for h2 { max-width: 760px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 36px, var(--container)); }
  .primary-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px 18px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 34px rgba(21,35,29,0.12);
  }
  .primary-nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav a { padding: 13px 8px; }
  .primary-nav .nav-cta { margin-top: 8px; text-align: center; }
  .menu-toggle { display: flex; }
  .hero { padding: 72px 0 88px; }
  .challenge, .product, .built-for, .process, .final-cta { padding-top: 88px; padding-bottom: 88px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; }
  .step { margin-bottom: 32px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 30px; height: 38px; }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
  .proof-strip li { margin: 0; padding: 15px 8px; }
  .proof-strip li + li { padding-left: 12px; }
  .proof-strip strong { font-size: 1rem; }
  .proof-strip span { font-size: 9px; }
  .ops-shell { box-shadow: 8px 10px 0 var(--lime), 0 22px 50px rgba(21,35,29,0.17); transform: none; }
  .ops-topbar { padding: 17px; }
  .ops-topbar > div { flex-direction: column; align-items: flex-start; gap: 5px; }
  .ops-scoreboard > div { padding: 16px 8px; }
  .ops-scoreboard strong { font-size: 22px; }
  .ops-scoreboard span, .ops-scoreboard small { font-size: 8px; }
  .activity-item { gap: 9px; padding-inline: 7px; }
  .activity-icon { width: 29px; height: 29px; }
  .activity-item strong { font-size: 10px; }
  .activity-item small { font-size: 8px; }
  .ops-footer { padding-inline: 14px; }
  .ops-footer span { display: none; }
  .challenge { background: var(--cream); }
  .challenge-card { padding: 65px 24px 42px; box-shadow: 7px 8px 0 var(--ink); }
  .challenge-badge { left: 24px; }
  .challenge h2 { font-size: 2.7rem; }
  .challenge-offer { align-items: flex-start; flex-direction: column; gap: 14px; }
  .feature-card, .feature-card-wide { min-height: 0; padding: 28px 22px; }
  .feature-card:not(.feature-card-wide) { padding-bottom: 180px; }
  .call-visual { grid-template-columns: auto 1fr; padding: 18px; }
  .call-visual .call-status { grid-column: 1 / -1; text-align: center; }
  .mini-stat, .pipeline-mini { left: 22px; right: 22px; bottom: 28px; }
  .owner-stats { grid-template-columns: 1fr; }
  .trade-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { align-items: flex-start; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
