:root {
  --ink: #17231d;
  --ink-2: #24372f;
  --pine: #10261e;
  --pine-2: #1d3930;
  --canvas: #f7f0e4;
  --paper: #fffaf0;
  --paper-2: #f1eadc;
  --wash: #e9f1e4;
  --line: #d7cab6;
  --line-dark: rgba(23, 35, 29, 0.2);
  --muted: #5f6c63;
  --faint: #8d978e;
  --amber: #d99527;
  --amber-2: #ffb844;
  --blue: #2f7399;
  --clay: #96564a;
  --white: #fffdf8;
  --shadow-sheet: 16px 16px 0 rgba(47, 115, 153, 0.1), 0 26px 70px rgba(15, 31, 24, 0.18);
  --shadow-card: 0 14px 34px rgba(31, 43, 34, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(23, 35, 29, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(23, 35, 29, 0.025) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--canvas);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 72px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 5px 10px 5px 5px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 35, 29, 0.22);
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(217, 149, 39, 0.18);
}

.brand-link strong,
.brand-link small {
  display: block;
}

.brand-link strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 35, 29, 0.025) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(255, 253, 248, 0.76);
  box-shadow: 7px 7px 0 rgba(47, 115, 153, 0.06);
  font-size: 14px;
}

.site-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 6px;
  color: var(--ink-2);
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(47, 115, 153, 0.08);
  color: var(--ink);
}

.site-nav a span {
  color: var(--faint);
  font-family:
    ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 800;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 850;
  box-shadow: 5px 5px 0 rgba(217, 149, 39, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-dark,
.section-solution,
.section-case,
.section-pricing,
.section-request,
.section-light {
  padding: 104px 72px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 250, 240, 0.05) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(90deg, rgba(255, 250, 240, 0.04) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(135deg, #0f221b 0%, #173128 52%, #243726 100%);
  color: var(--paper);
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--blue), var(--clay));
}

.hero-grid,
.solution-grid,
.pricing-grid,
.request-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  gap: 72px;
  align-items: center;
}

.hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 78px;
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 630px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translate(-1px, -1px);
}

.button.primary {
  background: var(--amber-2);
  color: #171f19;
  box-shadow: 5px 5px 0 rgba(23, 35, 29, 0.22);
}

.button.primary:hover {
  background: #ffc65c;
}

.button.secondary {
  border-color: rgba(255, 250, 240, 0.28);
  color: var(--paper);
  background: rgba(255, 250, 240, 0.05);
}

.button.secondary.dark {
  border-color: var(--line-dark);
  color: var(--ink);
  background: var(--paper);
}

.button.full {
  width: 100%;
}

.safety-line {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 35, 29, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--paper-2);
  box-shadow: var(--shadow-sheet);
  transform: rotate(0.8deg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(23, 35, 29, 0.16);
  border-radius: 7px;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(23, 35, 29, 0.2);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(20, 31, 24, 0.16);
}

.owner-relief-visual {
  padding: 16px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.06) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(217, 149, 39, 0.12), rgba(47, 115, 153, 0.14)),
    #10251d;
  transform: rotate(0.4deg);
}

.relief-desk {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 35, 29, 0.045) 1px, transparent 1px) 0 0 / 24px 24px,
    radial-gradient(circle at 82% 20%, rgba(47, 115, 153, 0.2), transparent 28%),
    var(--paper);
  color: var(--ink);
  box-shadow: 12px 12px 0 rgba(217, 149, 39, 0.16), 0 24px 44px rgba(8, 18, 14, 0.18);
}

.relief-desk::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(23, 35, 29, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.desk-sheet,
.desk-setup,
.desk-footer {
  position: absolute;
  z-index: 1;
}

.desk-sheet,
.desk-setup {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 10px 10px 0 rgba(23, 35, 29, 0.08);
}

.desk-sheet span,
.desk-setup span,
.desk-footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-sheet strong,
.desk-setup strong {
  display: block;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.04;
}

.desk-sheet p,
.desk-setup p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.sheet-before {
  top: 34px;
  left: 28px;
  width: 248px;
  transform: rotate(-1.8deg);
}

.desk-setup {
  top: 138px;
  left: 50%;
  width: 300px;
  border-color: rgba(217, 149, 39, 0.55);
  background:
    linear-gradient(rgba(23, 35, 29, 0.05) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--white);
  box-shadow: 12px 12px 0 rgba(217, 149, 39, 0.2);
  transform: translateX(-50%);
}

.sheet-after {
  right: 28px;
  bottom: 82px;
  width: 250px;
  border-color: rgba(47, 115, 153, 0.36);
  background: rgba(233, 241, 228, 0.9);
  transform: rotate(1.5deg);
}

.desk-connector {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 47%;
  z-index: 0;
  height: 14px;
  border: 1px solid rgba(23, 35, 29, 0.16);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clay), var(--amber-2), var(--blue));
  opacity: 0.9;
}

.desk-footer {
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.desk-footer span {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.desk-footer strong {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  position: relative;
  min-height: 124px;
  padding: 24px 36px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(23, 35, 29, 0.035) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--paper);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 5px;
  background: var(--amber);
}

.proof-strip div:nth-child(2)::before {
  background: var(--blue);
}

.proof-strip div:nth-child(3)::before {
  background: var(--clay);
}

.proof-strip div:nth-child(4)::before {
  background: var(--ink);
}

.proof-strip span,
.case-grid span,
.price-card .tag {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  max-width: 260px;
  font-size: 18px;
  line-height: 1.2;
}

.section-light {
  background: rgba(255, 250, 240, 0.74);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto 46px;
}

.pain-grid,
.case-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-grid article,
.case-grid article,
.price-card,
.request-form {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.pain-grid article,
.case-grid article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.pain-grid article::before,
.case-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.pain-grid article:nth-child(2)::before,
.case-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.pain-grid article:nth-child(3)::before,
.case-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--clay), transparent);
}

.pain-grid article > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--wash);
  color: var(--ink-2);
  font-weight: 850;
}

.pain-grid p,
.case-grid p,
.solution-grid p,
.pricing-copy p,
.request-grid p {
  color: var(--muted);
}

.section-solution {
  background:
    linear-gradient(90deg, rgba(47, 115, 153, 0.09) 1px, transparent 1px) 0 0 / 38px 38px,
    var(--wash);
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  position: relative;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(23, 35, 29, 0.14);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 8px 8px 0 rgba(47, 115, 153, 0.08);
}

.steps div:nth-child(2) {
  border-left-color: var(--amber);
  box-shadow: 8px 8px 0 rgba(217, 149, 39, 0.1);
}

.steps div:nth-child(3) {
  border-left-color: var(--clay);
  box-shadow: 8px 8px 0 rgba(150, 86, 74, 0.09);
}

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

.steps span {
  margin-top: 6px;
  color: var(--muted);
}

.section-case {
  background:
    linear-gradient(rgba(255, 250, 240, 0.05) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--pine);
  color: var(--paper);
}

.section-case .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.section-case h2 {
  color: var(--paper);
}

.section-case .eyebrow {
  color: var(--amber-2);
}

.case-grid article {
  background: var(--paper);
  color: var(--ink);
}

.section-pricing {
  background: #edf3e8;
}

.pricing-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.later-note {
  max-width: 620px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.price-card {
  position: relative;
  padding: 30px;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(217, 149, 39, 0.24);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-dark), var(--line-dark) 8px, transparent 8px, transparent 14px);
}

.price-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
}

.price-card ul,
.tick-list {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.price-card li,
.tick-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
}

.price-card li::before,
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
}

.tick-list li:nth-child(2)::before {
  background: var(--blue);
}

.tick-list li:nth-child(3)::before {
  background: var(--clay);
}

.section-request {
  background: rgba(255, 250, 240, 0.74);
}

.request-grid {
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(rgba(23, 35, 29, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--paper);
  box-shadow: 12px 12px 0 rgba(47, 115, 153, 0.1), var(--shadow-card);
}

.request-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(47, 115, 153, 0.2);
  border-color: var(--blue);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status,
.copy-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.email-draft-panel {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.email-draft-panel[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 72px;
  background: #0e1f18;
  color: var(--paper);
  border-top: 6px solid var(--amber);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 250, 240, 0.66);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 250, 240, 0.78);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .site-header,
  .section-dark,
  .section-solution,
  .section-case,
  .section-pricing,
  .section-request,
  .section-light,
  .site-footer {
    padding-left: 46px;
    padding-right: 46px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(23, 35, 29, 0.12);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 13px 4px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-grid,
  .solution-grid,
  .pricing-grid,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-visual {
    max-width: 620px;
    transform: rotate(0deg);
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .pain-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-dark,
  .section-solution,
  .section-case,
  .section-pricing,
  .section-request,
  .section-light,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-dark,
  .section-solution,
  .section-case,
  .section-pricing,
  .section-request,
  .section-light {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .brand-link small {
    display: none;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .owner-relief-visual {
    padding: 10px;
  }

  .relief-desk {
    display: grid;
    min-height: auto;
    gap: 10px;
    padding: 14px;
  }

  .desk-sheet,
  .desk-setup,
  .desk-footer {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .desk-sheet,
  .desk-setup {
    padding: 14px;
  }

  .desk-sheet strong,
  .desk-setup strong {
    font-size: 20px;
  }

  .desk-connector {
    position: relative;
    inset: auto;
    width: 100%;
    height: 8px;
  }

  .desk-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 0 0;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .price-card strong {
    font-size: 50px;
  }
}

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