:root {
  --ink: #17201c;
  --muted: #5b665f;
  --paper: #f7f2e8;
  --paper-strong: #fffaf0;
  --line: #d9d0bf;
  --green: #1f6b4a;
  --green-dark: #164b37;
  --yellow: #efbd4d;
  --blue: #2f5873;
  --clay: #c66b3d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(247, 242, 232, 0.9);
  border-bottom: 1px solid rgba(217, 208, 191, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--green-dark);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--paper-strong);
  background: var(--green);
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  padding: 154px 32px 72px;
  border-bottom: 1px solid var(--line);
}

.hero-background {
  position: relative;
  min-height: 560px;
  z-index: 0;
  pointer-events: none;
}

.desk-surface {
  position: absolute;
  inset: 0;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.42), rgba(247, 242, 232, 0.78) 58%),
    repeating-linear-gradient(
      0deg,
      rgba(217, 208, 191, 0.45),
      rgba(217, 208, 191, 0.45) 1px,
      transparent 1px,
      transparent 56px
    );
}

.app-window {
  position: absolute;
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.app-window-main {
  top: 30px;
  left: 0;
  width: min(720px, 100%);
  min-height: 460px;
  overflow: hidden;
}

.window-top {
  display: flex;
  gap: 8px;
  padding: 15px 18px;
  border-bottom: 1px solid #ece4d6;
  background: #fbf7ee;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8ccb9;
}

.quote-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 410px;
}

.quote-sidebar {
  padding: 26px 20px;
  background: #17201c;
}

.sidebar-title,
.sidebar-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.7);
}

.sidebar-title {
  width: 82px;
  margin-bottom: 34px;
  background: var(--yellow);
}

.sidebar-line {
  width: 118px;
  margin-bottom: 18px;
}

.sidebar-line.active {
  background: #ffffff;
}

.sidebar-line.short {
  width: 76px;
}

.quote-main {
  padding: 34px;
}

.quote-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #dcefe3;
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-title {
  width: 70%;
  height: 28px;
  margin: 22px 0;
  border-radius: 6px;
  background: #202a25;
}

.quote-row {
  width: 64%;
  height: 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #d7decd;
}

.quote-row.wide {
  width: 92%;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}

.quote-grid div {
  min-height: 76px;
  border-radius: 8px;
  background: #f2eadb;
  border-top: 6px solid var(--yellow);
}

.quote-table {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.quote-table span {
  height: 14px;
  border-radius: 999px;
  background: #d7decd;
}

.app-window-note {
  top: 385px;
  left: -38px;
  width: 250px;
  padding: 22px;
  background: #fff9e8;
}

.note-label,
.work-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.note-line {
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: #d2c4aa;
}

.note-line.short {
  width: 60%;
}

.note-total {
  margin-top: 22px;
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.app-window-work {
  top: 122px;
  right: -4px;
  width: 210px;
  padding: 20px;
  background: #eef5f8;
}

.work-check {
  width: 46px;
  height: 46px;
  margin: 18px 0;
  border: 10px solid var(--blue);
  border-radius: 50%;
  border-left-color: #b5ccd9;
}

.work-lines span {
  display: block;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #b5ccd9;
}

.work-lines span:nth-child(2) {
  width: 70%;
}

.work-lines span:nth-child(3) {
  width: 46%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 650px;
  font-size: 4.1rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 22px;
  color: #2f3a34;
  font-size: 1.22rem;
}

.hero-quick {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.hero-quick div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  border: 1px solid rgba(217, 208, 191, 0.9);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.88);
}

.hero-quick strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.hero-quick span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  color: var(--paper-strong);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.82);
  border-color: var(--line);
}

.hero-proof {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 0;
}

.hero-proof div {
  min-height: 104px;
  border-left: 4px solid var(--green);
  padding: 12px 16px;
  background: rgba(255, 250, 240, 0.76);
}

.hero-proof dt {
  margin-bottom: 4px;
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
}

.audience-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  color: var(--paper-strong);
  background: var(--ink);
}

.audience-band p,
.audience-band span {
  margin: 0;
  font-weight: 750;
}

.audience-band span {
  color: #e5dccb;
  text-align: right;
}

.section {
  padding: 88px 32px;
}

.section-heading,
.positioning-copy,
.pilot-copy,
.contact-copy {
  max-width: 760px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.problem-grid article,
.pilot-box,
.comparison div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.problem-grid article {
  min-height: 210px;
  padding: 24px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-grid p,
.workflow p,
.positioning-copy p,
.comparison p,
.pilot-copy p,
.pilot-box p,
.pilot-box li,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.workflow-section {
  color: var(--paper-strong);
  background: var(--green-dark);
}

.workflow-section .eyebrow {
  color: var(--yellow);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 250, 240, 0.26);
}

.workflow li {
  min-height: 260px;
  padding: 26px;
  background: var(--green-dark);
}

.workflow span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--yellow);
  font-weight: 900;
}

.workflow p {
  color: #e4dccd;
}

.demo-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.demo-controls {
  display: grid;
  gap: 10px;
  align-self: start;
}

.demo-tab {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--muted);
  background: var(--paper-strong);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.demo-tab.active,
.demo-tab:hover {
  color: var(--paper-strong);
  background: var(--blue);
  border-color: var(--blue);
}

.demo-panel {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(23, 32, 28, 0.09);
}

.demo-panel-header {
  display: grid;
  gap: 10px;
  padding: 26px;
  color: var(--paper-strong);
  background: var(--ink);
}

.demo-panel-header span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-panel-header strong {
  font-size: 1.8rem;
  line-height: 1.15;
}

.demo-body {
  padding: 28px;
}

.demo-body p {
  max-width: 720px;
  color: #2f3a34;
  font-size: 1.08rem;
}

.demo-body ul,
.pilot-box ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.demo-body li,
.pilot-box li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid #ece4d6;
}

.demo-body li::before,
.pilot-box li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--yellow);
  content: "";
}

.demo-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 28px 28px;
}

.demo-summary span {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--green-dark);
  background: #dcefe3;
  font-weight: 850;
}

.demo-summary span:last-child {
  color: var(--blue);
  background: #e1eef3;
}

.positioning-section,
.pilot-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.positioning-section {
  border-top: 1px solid var(--line);
}

.comparison {
  display: grid;
  gap: 16px;
}

.comparison div {
  padding: 22px;
}

.comparison span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--clay);
  font-weight: 900;
}

.pilot-section {
  background: #f0e7d6;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.faq-list article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.faq-list p {
  color: var(--muted);
}

.pilot-box {
  padding: 26px;
}

.pilot-box h3 {
  font-size: 1.65rem;
}

.pilot-box strong {
  display: block;
  margin-top: 24px;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.contact-section {
  padding: 88px 32px;
  color: var(--paper-strong);
  background: var(--ink);
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-copy p {
  color: #e4dccd;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #e4dccd;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--paper-strong);
  background: #26312c;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

.contact-form select option {
  color: var(--ink);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #cfc4b1;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 64px 20px 44px;
  }

  .hero-background {
    position: relative;
    order: 2;
    inset: auto;
    height: 430px;
    margin: 36px -20px 0;
  }

  .hero-content {
    order: 1;
  }

  .desk-surface {
    inset: 0 0 0 0;
    min-height: 430px;
  }

  .app-window-main {
    left: 20px;
    width: calc(100% - 40px);
    min-height: 330px;
  }

  .quote-layout {
    grid-template-columns: 96px 1fr;
    min-height: 280px;
  }

  .quote-sidebar {
    padding: 18px 12px;
  }

  .sidebar-line {
    width: 58px;
  }

  .quote-main {
    padding: 22px;
  }

  .app-window-note,
  .app-window-work {
    display: none;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-proof,
  .hero-quick,
  .problem-grid,
  .workflow,
  .faq-list,
  .demo-layout,
  .positioning-section,
  .pilot-section,
  .contact-section,
  .audience-band {
    grid-template-columns: 1fr;
  }

  .audience-band span {
    text-align: left;
  }

  .workflow {
    gap: 0;
  }

  .workflow li {
    min-height: 210px;
  }
}

@media (max-width: 620px) {
  .header-cta {
    width: 100%;
  }

  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding: 64px 20px;
  }

  .audience-band {
    padding: 22px 20px;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-quick div {
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
