:root {
  color-scheme: light;
  --ink: #111715;
  --muted: #5e6965;
  --line: #dfe5e1;
  --paper: #f4efe5;
  --soft: #fbfaf5;
  --white: #ffffff;
  --night: #082421;
  --lagoon: #0f6c72;
  --blue: #245f9d;
  --clay: #b95f45;
  --gold: #c49a4f;
  --mint: #dbeee5;
  --shadow: 0 24px 70px rgba(8, 36, 33, 0.18);
  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(--paper);
  color: var(--ink);
}

body,
button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 36, 33, 0.9), rgba(8, 36, 33, 0.62));
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

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

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a,
.header-contact,
.button {
  font-weight: 820;
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.header-contact {
  justify-self: end;
  min-width: 112px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--night);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 122px clamp(20px, 6vw, 86px) 72px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 22, 20, 0.88), rgba(5, 22, 20, 0.5) 52%, rgba(5, 22, 20, 0.16) 82%),
    linear-gradient(0deg, rgba(5, 22, 20, 0.6), rgba(5, 22, 20, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lagoon);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #efd596;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.16;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  line-height: 1.62;
}

.hero-actions,
.demo-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  cursor: pointer;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(185, 95, 69, 0.28);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.button.ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 760;
}

.market-proof {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 0.9fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 82px) clamp(20px, 6vw, 86px);
  background: var(--night);
  color: var(--white);
}

.market-proof h2 {
  max-width: 840px;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.market-proof p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.metric-grid div {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(7.5rem, max-content) 1fr;
  gap: 16px;
  align-items: start;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid dt {
  margin-bottom: 0;
  color: #efd596;
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.metric-grid dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.problem-band,
.section-pad,
.demo-section,
.handoff-section,
.contact-band {
  padding: clamp(58px, 8vw, 118px) clamp(20px, 6vw, 86px);
}

.problem-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--soft);
}

.section-kicker {
  position: sticky;
  top: 104px;
}

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

.problem-grid article,
.step-grid article,
.benefit-list article,
.handoff-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 32px);
}

.problem-grid span,
.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--night);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-grid p,
.section-heading p,
.benefit-list p,
.operator-grid p,
.handoff-section p,
.handoff-list span,
.step-grid p,
.contact-band p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.section-heading {
  width: min(830px, 100%);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.solution-section {
  background: var(--paper);
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
}

.assistant-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 520px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: var(--night);
  color: var(--white);
  box-shadow: var(--shadow);
}

.assistant-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.assistant-top span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--night);
  font-size: 1.22rem;
  font-weight: 950;
}

.assistant-top strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.flow-row {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.flow-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-row strong {
  font-size: 1.08rem;
  line-height: 1.42;
}

.flow-row.accent {
  background: rgba(196, 154, 79, 0.18);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  padding: clamp(22px, 3vw, 34px);
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--lagoon);
  color: var(--white);
}

.demo-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

.demo-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.demo-card-header {
  margin-bottom: 10px;
}

.demo-card-header span,
.demo-card-header strong {
  display: block;
}

.demo-card-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-card-header strong {
  margin-top: 6px;
  font-size: 1.4rem;
}

.demo-card button {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--night);
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}

.operator-section {
  background: var(--soft);
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.operator-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.operator-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.operator-grid img.front-desk-image {
  object-position: 72% center;
}

.operator-grid div {
  padding: 24px;
}

.handoff-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
  background: var(--night);
  color: var(--white);
}

.handoff-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.handoff-list {
  display: grid;
  gap: 14px;
}

.handoff-list article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.handoff-list strong {
  color: var(--white);
  font-size: 1.18rem;
}

.handoff-list span {
  color: rgba(255, 255, 255, 0.72);
}

.implementation-section {
  background: var(--paper);
}

.step-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
}

.pilot-pricing {
  background: var(--soft);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

.pilot-card,
.pricing-next article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pilot-card {
  display: grid;
  align-content: start;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.pilot-card span {
  color: var(--lagoon);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pilot-card strong {
  display: block;
  margin: 14px 0 12px;
  color: var(--night);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.pilot-card p,
.pilot-card li,
.pricing-next p {
  color: var(--muted);
  line-height: 1.7;
}

.pilot-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 1.1rem;
}

.pricing-next {
  display: grid;
  gap: 14px;
}

.pricing-next article {
  padding: clamp(22px, 3vw, 32px);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--blue);
  color: var(--white);
}

.contact-band h2 {
  max-width: 780px;
}

.contact-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  gap: 22px;
  align-items: start;
  padding: 34px clamp(20px, 6vw, 86px);
  background: #0c1413;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

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

.concept-note {
  justify-self: end;
  max-width: 310px;
  text-align: right;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .market-proof,
  .problem-band,
  .solution-layout,
  .demo-section,
  .handoff-section,
  .pricing-layout,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    position: static;
  }

  .assistant-panel {
    min-height: auto;
  }

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

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

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer,
  .concept-note {
    text-align: left;
  }

  .concept-note {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .header-contact {
    min-width: 88px;
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 50px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

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

  .button {
    width: 100%;
  }

  .problem-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .step-grid article {
    min-height: auto;
  }

  .assistant-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-grid div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
