:root {
  color-scheme: light;
  --prep: #f6f0e4;
  --paper: #fffaf1;
  --white: #ffffff;
  --ink: #10231f;
  --muted: #5d6f69;
  --line: #d8d1c3;
  --green: #1f765f;
  --sage: #68a891;
  --ticket: #e0b15d;
  --tomato: #bc5548;
  --steel: #496a77;
  --shadow: 0 22px 58px rgba(29, 38, 35, 0.13);
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--prep);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 35, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 31, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(246, 240, 228, 0.94);
  border-bottom: 1px solid rgba(16, 35, 31, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 19px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav,
.header-actions,
.footer-links,
.hero-actions,
.hero-promises {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 22px;
  color: #31413d;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.footer-links a,
.login-link,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.login-link:hover,
.text-link:hover {
  color: var(--green);
}

.header-actions {
  gap: 12px;
}

.login-link {
  color: #34433f;
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fffaf1;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.68);
  border-color: rgba(16, 35, 31, 0.25);
}

.header-cta:hover,
.button.primary:hover {
  background: #173d35;
}

.button.secondary:hover {
  border-color: rgba(16, 35, 31, 0.5);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 8vh, 96px) 0 62px;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: 5.05rem;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-size: 3.15rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 16px;
  color: #19342f;
  font-size: 2rem;
  font-weight: 820;
  line-height: 1.12;
}

.hero-body,
.copy-column p,
.section-heading p,
.pricing-copy p,
.founder-copy p,
.final-cta p,
.legal-main p,
.legal-main li {
  color: #43534f;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-promises {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-promises li,
.ticket-label,
.section-number {
  color: var(--ink);
  background: rgba(224, 177, 93, 0.34);
  border: 1px solid rgba(16, 35, 31, 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-promises li {
  padding: 8px 10px;
}

.service-station {
  min-height: 610px;
  padding: 22px;
  background: #ede4d4;
  border: 1px solid rgba(16, 35, 31, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.station-rail {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  color: #fffaf1;
  background: var(--ink);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-stack {
  position: relative;
  min-height: 520px;
}

.training-ticket,
.product-shot,
.price-ticket {
  background: var(--paper);
  border: 1px solid rgba(16, 35, 31, 0.15);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(29, 38, 35, 0.11);
}

.training-ticket {
  position: absolute;
  padding: 22px;
}

.ticket-primary {
  top: 40px;
  left: 0;
  width: min(355px, 78%);
}

.ticket-question {
  top: 188px;
  right: 0;
  width: min(310px, 68%);
}

.ticket-manager {
  right: 44px;
  bottom: 12px;
  width: min(370px, 78%);
}

.ticket-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-primary h2 {
  margin-bottom: 24px;
  font-size: 34px;
  line-height: 1;
}

.ticket-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px dashed rgba(16, 35, 31, 0.22);
  font-weight: 730;
}

.ticket-row span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--green);
  border-radius: 3px;
}

.ticket-row.done span {
  background: var(--green);
}

.ticket-label {
  display: inline-flex;
  padding: 7px 9px;
}

.ticket-question p {
  margin: 34px 0 14px;
  color: #162a26;
  font-size: 24px;
  font-weight: 780;
  line-height: 1.18;
}

.ticket-question strong {
  display: block;
  padding: 14px;
  color: #732f27;
  background: #f5ded8;
  border-radius: 6px;
  line-height: 1.4;
}

.metric-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.metric-line strong {
  font-size: 30px;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.status-strip b,
.manager-table b {
  padding: 7px 9px;
  background: #dcefe5;
  border-radius: 6px;
  color: #165844;
  font-size: 12px;
}

.status-strip b:nth-child(2),
.manager-table div:nth-child(2) b {
  color: #7c4c12;
  background: #f3dfbd;
}

.status-strip b:nth-child(3),
.manager-table div:nth-child(4) b {
  color: #85352b;
  background: #f1d9d3;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.74fr);
  gap: clamp(32px, 7vw, 90px);
  border-top: 1px solid rgba(16, 35, 31, 0.15);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 38px;
  min-height: 31px;
  margin-bottom: 18px;
  padding: 0 10px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pain-grid span {
  min-height: 102px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.35;
}

.workflow-section,
.pricing-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  color: #fffaf1;
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 78px minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: 22px clamp(28px, 5vw, 58px);
  align-items: start;
  margin-bottom: 42px;
}

.section-heading .section-number {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: start;
}

.section-heading h2 {
  grid-column: 2;
  grid-row: 1;
  max-width: 600px;
  margin-bottom: 0;
}

.section-heading > p:not(.section-number) {
  grid-column: 3;
  grid-row: 1;
  max-width: 500px;
  margin-top: 4px;
}

.workflow-section .section-heading p,
.pricing-section p,
.price-ticket p {
  color: rgba(255, 250, 241, 0.72);
}

.workflow-section .section-number,
.pricing-section .section-number {
  color: #fffaf1;
  background: rgba(224, 177, 93, 0.2);
  border-color: rgba(255, 250, 241, 0.15);
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 241, 0.22);
  border-left: 1px solid rgba(255, 250, 241, 0.18);
}

.workflow-board article {
  min-height: 250px;
  padding: 22px;
  border-right: 1px solid rgba(255, 250, 241, 0.18);
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.workflow-board span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 44px;
  color: var(--ink);
  background: var(--ticket);
  border-radius: 6px;
  font-weight: 900;
}

.workflow-board h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1;
}

.workflow-board p {
  color: rgba(255, 250, 241, 0.7);
  font-size: 15px;
  line-height: 1.58;
}

.product-grid {
  display: grid;
  grid-template-columns: 0.88fr 0.62fr 0.72fr;
  gap: 22px;
}

.product-shot {
  padding: 24px;
}

.product-shot h3 {
  margin: 20px 0 8px;
  font-size: 21px;
}

.product-shot p {
  color: var(--muted);
  line-height: 1.6;
}

.phone-shot {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.phone-shell {
  min-height: 430px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 31, 0.18);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(29, 38, 35, 0.15);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px 12px;
  font-size: 12px;
  font-weight: 800;
}

.phone-top b {
  width: 44px;
  height: 12px;
  background: var(--ink);
  border-radius: 999px;
}

.phone-screen {
  min-height: 360px;
  padding: 18px;
  background: #edf4ed;
  border-radius: 20px;
}

.phone-screen small {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin: 8px 0 80px;
}

.phone-screen button {
  width: 100%;
  min-height: 46px;
  color: #fffaf1;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 830;
}

.answer-panel {
  min-height: 290px;
  padding: 24px;
  background: #f7e8df;
  border: 1px solid rgba(188, 85, 72, 0.26);
  border-radius: 8px;
}

.answer-panel p {
  margin-top: 46px;
  color: #5a2c26;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.28;
}

.manager-table {
  min-height: 290px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.manager-table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: start;
}

.price-ticket {
  padding: 28px;
  color: var(--ink);
  background: #fffaf1;
}

.price-ticket h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.price-line {
  margin-bottom: 22px;
  font-size: 3.85rem;
  font-weight: 920;
  line-height: 0.95;
}

.price-line small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 780;
}

.price-ticket ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-ticket li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 730;
}

.price-ticket p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 0.9fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: center;
}

.founder-mark {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 26px;
  background: #efe1cb;
  border: 1px solid rgba(16, 35, 31, 0.16);
  border-radius: 8px;
}

.founder-mark img {
  width: min(332px, 90%);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.trust-list span {
  padding: 14px;
  background: rgba(255, 250, 241, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.text-link {
  color: var(--green);
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 830;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--green);
  content: "+";
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 850px;
  padding-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(240px, 0.9fr) minmax(300px, 1fr);
  gap: 30px;
  padding: 38px clamp(20px, 4vw, 54px);
  color: rgba(255, 250, 241, 0.75);
  background: var(--ink);
}

.site-footer img {
  width: 220px;
  padding: 8px;
  background: #fffaf1;
  border-radius: 8px;
}

.site-footer p {
  margin: 14px 0 0;
  line-height: 1.55;
}

.footer-links {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-note {
  font-size: 13px;
}

.legal-main {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 78px;
}

.legal-main h1 {
  font-size: 3.8rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.legal-main h2 {
  margin-top: 42px;
  font-size: 2rem;
  line-height: 1.1;
}

.legal-main ul {
  padding-left: 22px;
}

.legal-updated,
.legal-card {
  padding: 18px;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-updated {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.45;
}

.legal-card {
  padding: 22px;
  margin: 22px 0;
}

@media (max-width: 1050px) {
  .site-nav {
    display: none;
  }

  .hero,
  .split-section,
  .pricing-section,
  .founder-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-lede {
    font-size: 1.65rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading .section-number,
  .section-heading h2,
  .section-heading > p:not(.section-number) {
    grid-column: 1;
    grid-row: auto;
  }

  .service-station {
    min-height: 660px;
  }

  .workflow-board,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-shot {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
  }

  .brand small,
  .login-link {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .section,
  .final-cta,
  .legal-main {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.95;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .hero-body,
  .copy-column p,
  .section-heading p,
  .pricing-copy p,
  .founder-copy p,
  .final-cta p,
  .legal-main p,
    .legal-main li {
    font-size: 16px;
  }

  .legal-main {
    padding: 42px 0 58px;
  }

  .legal-main h1 {
    font-size: 2.55rem;
  }

  .legal-main h2 {
    font-size: 1.55rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .service-station {
    min-height: 730px;
    padding: 14px;
  }

  .ticket-primary,
  .ticket-question,
  .ticket-manager {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 14px;
  }

  .ticket-stack {
    min-height: auto;
  }

  .ticket-primary h2 {
    font-size: 28px;
  }

  .pain-grid,
  .workflow-board,
  .product-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .workflow-section,
  .pricing-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .workflow-board article {
    min-height: auto;
  }

  .workflow-board span {
    margin-bottom: 28px;
  }

  .price-line {
    font-size: 3.05rem;
  }

  .phone-shell {
    width: min(250px, 100%);
    margin: 0 auto;
  }

  summary {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
