:root {
  --ink: #101817;
  --ink-2: #30413f;
  --paper: #f5f8f6;
  --white: #ffffff;
  --line: #cdd8d4;
  --line-dark: rgba(255, 255, 255, 0.18);
  --teal: #0b4a43;
  --teal-bright: #0b685d;
  --lime: #dfff6b;
  --blue: #bdd8ff;
  --coral: #ff775c;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("./fonts/ibm-plex-mono-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: 5.5rem;
  font-weight: 700;
}

h2 {
  max-width: 930px;
  font-size: 4.1rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 700;
}

.nowrap {
  white-space: nowrap;
}

.page-shell {
  width: min(100% - 40px, 1460px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 78px;
  padding-inline: max(20px, calc((100vw - 1460px) / 2));
  border-bottom: 1px solid rgba(16, 24, 23, 0.12);
  background: rgba(245, 248, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

.brand .brand-ai {
  color: var(--teal-bright);
}

.brand .brand-dot {
  color: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
}

.site-nav a {
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--teal-bright);
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.header-cta {
  justify-self: end;
  padding: 0 20px;
  background: var(--teal);
  color: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 110px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef4f1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #eef4f1 0%, #eef4f1 43%, rgba(238, 244, 241, 0.94) 52%, rgba(238, 244, 241, 0.18) 78%, rgba(238, 244, 241, 0.04) 100%);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 35%;
  background: url("./assets/operations-command.webp") center right / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 84px;
}

.hero-copy {
  width: min(760px, 58%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--lime);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 119, 92, 0.14);
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: 1.3rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  gap: 18px;
  padding: 0 22px;
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(16, 24, 23, 0.3);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.hero-footnote {
  margin: 22px 0 0;
  color: #51625f;
  font-family: var(--mono);
  font-size: 0.77rem;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-grid p {
  min-height: 158px;
  margin: 0;
  padding: 30px clamp(18px, 2.5vw, 36px);
  border-left: 1px solid var(--line);
}

.signal-grid p:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.signal-grid span {
  color: #5a6966;
  font-size: 0.92rem;
}

.problem-section,
.engagements-section,
.booking-preview-section,
.work-section,
.company-section,
.final-cta {
  padding-block: clamp(90px, 10vw, 150px);
}

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

.problem-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 9vw, 150px);
}

.section-heading > p:last-child,
.split-heading > p,
.company-copy > p,
.case-copy > p,
.final-cta p {
  color: #52615f;
}

.lead-copy {
  font-size: 1.4rem;
  line-height: 1.55;
}

.system-flow {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.system-flow > div {
  display: grid;
  grid-template-columns: 48px minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
}

.system-flow span,
.offer-number {
  color: var(--teal-bright);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.system-flow strong {
  font-size: 1rem;
}

.system-flow small {
  color: #5c6a67;
  font-size: 0.88rem;
}

.system-flow .flow-core {
  background: var(--teal);
  color: var(--white);
}

.system-flow .flow-core span {
  color: var(--lime);
}

.system-flow .flow-core small {
  color: #bed0cc;
}

.engagements-section {
  background: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: 70px;
}

.split-heading > p {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.offer-list {
  border-top: 1px solid var(--ink);
}

.offer-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 190px;
  gap: 28px;
  padding: 42px 22px 44px;
  border-bottom: 1px solid var(--line);
}

.featured-offer {
  background: #eef5ff;
  box-shadow: inset 5px 0 0 var(--blue);
}

.offer-main {
  max-width: 960px;
}

.offer-kicker {
  margin-bottom: 6px;
  color: var(--teal-bright);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.offer-main > p:not(.offer-kicker) {
  max-width: 830px;
  margin: 16px 0 22px;
  color: #52615f;
}

.offer-main ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-main li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
}

.offer-main li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--coral);
}

.offer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.offer-meta span {
  color: #596663;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.offer-meta strong {
  font-size: 1.2rem;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 34px;
}

.section-cta p {
  margin: 0;
  color: #576663;
}

.text-link {
  color: var(--teal-bright);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.booking-preview-section {
  background: var(--blue);
}

.booking-preview-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.booking-preview-copy h2 {
  max-width: 650px;
  font-size: clamp(3rem, 4.4vw, 4.1rem);
}

.booking-preview-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 26px;
  color: #334542;
  font-size: 1.08rem;
}

.quick-book-list {
  border-top: 1px solid rgba(16, 24, 23, 0.55);
}

.quick-book-list > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 120px;
  gap: 26px;
  align-items: center;
  min-height: 142px;
  padding: 24px 18px;
  border-bottom: 1px solid rgba(16, 24, 23, 0.25);
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.quick-book-list > a:hover {
  background: rgba(255, 255, 255, 0.52);
  transform: translateX(3px);
}

.quick-book-list > a > span:first-child,
.quick-book-meta {
  display: flex;
  flex-direction: column;
}

.quick-book-list strong {
  font-size: 1.16rem;
}

.quick-book-list small {
  margin-top: 5px;
  color: #52615f;
  font-size: 0.86rem;
  line-height: 1.45;
}

.quick-book-meta {
  align-items: flex-end;
  text-align: right;
}

.quick-book-meta strong {
  margin-top: 3px;
}

.quick-book-list b {
  color: var(--teal-bright);
  font-size: 0.92rem;
  text-align: right;
}

.work-section {
  background: #edf1ef;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.6fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  padding-block: 70px;
  border-top: 1px solid var(--line);
}

.case-study:last-child {
  border-bottom: 1px solid var(--line);
}

.case-study.reverse {
  grid-template-columns: minmax(340px, 0.6fr) minmax(0, 1.15fr);
}

.case-study.reverse .case-visual {
  grid-column: 2;
}

.case-study.reverse .case-copy {
  grid-column: 1;
  grid-row: 1;
}

.case-visual {
  overflow: hidden;
  border: 1px solid #c5cecb;
  border-radius: 6px;
  background: #f9fbfa;
  box-shadow: 0 30px 70px rgba(22, 41, 37, 0.12);
}

.case-visual img {
  width: 100%;
  max-height: 630px;
  object-fit: cover;
  object-position: top center;
}

.dark-visual {
  border-color: #1c3531;
  background: #08100f;
}

.compact-case .case-visual img {
  max-height: 480px;
  object-fit: contain;
}

.case-copy h3 {
  margin-bottom: 22px;
}

.case-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
}

.case-copy dl {
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
}

.case-copy dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.case-copy dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.case-copy dd {
  color: #596865;
  font-size: 0.92rem;
}

/* Interactive dashboards */

.dashboard-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #07110f;
  color: var(--white);
}

.dashboard-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 17, 15, 0.98) 0%, rgba(7, 17, 15, 0.92) 38%, rgba(7, 17, 15, 0.52) 67%, rgba(7, 17, 15, 0.2) 100%);
  content: "";
}

.dashboard-hero-image {
  position: absolute;
  inset: 0;
  background: url("./assets/screenshots/home-dashboard-agenda.png") center / cover no-repeat;
  opacity: 0.72;
}

.dashboard-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 90px;
}

.dashboard-hero-copy {
  width: min(900px, 66%);
}

.dashboard-hero h1 {
  max-width: 900px;
}

.dashboard-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 34px;
  color: #d0dcda;
  font-size: 1.22rem;
  line-height: 1.62;
}

.dashboard-hero-button {
  border-color: var(--white);
  background: var(--white);
  color: var(--teal);
}

.dashboard-gallery-section {
  padding-block: clamp(90px, 10vw, 150px);
  background: #edf1ef;
}

.dashboard-heading {
  margin-bottom: 34px;
}

.dashboard-case {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  padding-block: clamp(62px, 7vw, 104px);
  border-top: 1px solid var(--line);
}

.dashboard-case:last-child {
  border-bottom: 1px solid var(--line);
}

.dashboard-case.reverse {
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1.25fr);
}

.dashboard-case.reverse .dashboard-preview {
  grid-column: 2;
}

.dashboard-case.reverse .dashboard-case-copy {
  grid-column: 1;
  grid-row: 1;
}

.dashboard-preview {
  display: block;
  overflow: hidden;
  border: 1px solid #1c3531;
  border-radius: 6px;
  background: #07100f;
  box-shadow: 0 30px 70px rgba(22, 41, 37, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dashboard-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 82px rgba(22, 41, 37, 0.22);
}

.dashboard-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3082 / 1688;
  object-fit: cover;
}

.dashboard-case-number {
  margin-bottom: 16px;
  color: var(--teal-bright);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dashboard-case-copy h2 {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
}

.dashboard-case-copy > p:not(.dashboard-case-number) {
  margin: 24px 0 30px;
  color: #52615f;
  font-size: 1.06rem;
  line-height: 1.65;
}

.dashboard-note-section {
  padding-block: clamp(90px, 10vw, 140px);
  background: var(--teal);
  color: var(--white);
}

.dashboard-note-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(300px, 0.75fr);
  gap: 24px clamp(60px, 10vw, 160px);
  align-items: start;
}

.dashboard-note-grid .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.dashboard-note-grid h2 {
  grid-column: 1;
  max-width: 760px;
}

.dashboard-note-grid > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  margin: 4px 0 28px;
  color: #c5d6d2;
  font-size: 1.08rem;
}

.dashboard-note-grid .button {
  grid-column: 2;
  justify-self: start;
}

.trust-section {
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--teal);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
}

.trust-section .section-heading > p:last-child {
  margin-top: 26px;
  color: #bdd0cc;
}

.deployment-table {
  border-top: 1px solid var(--line-dark);
}

.deployment-row {
  display: grid;
  grid-template-columns: 100px minmax(220px, 0.8fr) minmax(240px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.deployment-row strong {
  color: var(--lime);
}

.deployment-row span {
  font-weight: 700;
}

.deployment-row small {
  color: #bdd0cc;
  font-size: 0.88rem;
}

.company-section {
  background: var(--blue);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(60px, 10vw, 170px);
}

.company-copy .lead-copy {
  color: var(--ink);
}

.company-copy > p:not(.lead-copy) {
  margin-top: 26px;
  color: #334542;
}

.final-cta {
  background: var(--paper);
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  max-width: 1030px;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 34px;
  font-size: 1.12rem;
}

/* Booking */

.booking-hero {
  padding-block: clamp(40px, 4.5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #eef4f1;
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(60px, 10vw, 180px);
  align-items: center;
}

.booking-hero h1 {
  max-width: 730px;
  font-size: clamp(3.9rem, 5vw, 4.9rem);
}

.booking-hero-copy > p {
  margin-bottom: 26px;
  color: var(--ink-2);
  font-size: 1.12rem;
}

.booking-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-choice {
  justify-content: space-between;
  gap: 8px;
  padding-inline: 14px;
  border-color: var(--teal-bright);
  background: rgba(255, 255, 255, 0.56);
  color: var(--teal);
  font-size: 0.86rem;
  white-space: nowrap;
}

.booking-choice:hover {
  background: var(--white);
}

.direct-booking-section {
  padding-block: clamp(48px, 4.8vw, 76px);
  background: var(--white);
}

.direct-booking-heading {
  margin-bottom: 36px;
}

.direct-booking-heading h2 {
  max-width: 1050px;
  font-size: clamp(3rem, 4.3vw, 4rem);
}

.booking-session-list {
  border-top: 1px solid var(--ink);
}

.booking-session-row {
  display: grid;
  grid-template-columns: 48px minmax(280px, 1fr) 150px 90px 120px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.booking-session-row:hover {
  background: #f0f7f4;
  transform: translateX(3px);
}

.featured-session {
  background: #eef5ff;
  box-shadow: inset 5px 0 0 var(--blue);
}

.booking-session-number {
  color: var(--teal-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.booking-session-main {
  display: flex;
  flex-direction: column;
}

.booking-session-main strong {
  font-size: 1.13rem;
}

.booking-session-main small {
  margin-top: 5px;
  color: #596865;
  font-size: 0.88rem;
}

.booking-session-duration {
  color: #566561;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.booking-session-price {
  font-weight: 800;
  text-align: right;
}

.booking-session-action {
  color: var(--teal-bright);
  font-size: 0.91rem;
  font-weight: 800;
  text-align: right;
}

.booking-policy {
  max-width: 980px;
  margin: 30px 0 0;
  color: #5a6966;
  font-size: 0.88rem;
}

.larger-engagement-section {
  padding-block: 56px;
  background: var(--teal);
  color: var(--white);
}

.larger-engagement-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 0.72fr) auto;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.larger-engagement-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.larger-engagement-section p {
  margin: 0;
  color: #c5d6d2;
  line-height: 1.5;
}

.larger-engagement-actions {
  display: flex;
  gap: 12px;
}

.larger-engagement-actions .button {
  white-space: nowrap;
}

.light-button {
  border-color: var(--white);
  background: var(--white);
  color: var(--teal);
}

.outline-light-button {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.booking-notes-section {
  padding-block: clamp(72px, 8vw, 108px);
  background: var(--paper);
}

.booking-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-notes-grid > div {
  padding: 8px clamp(28px, 4vw, 62px) 0;
  border-left: 1px solid var(--line);
}

.booking-notes-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.booking-notes-grid h3 {
  font-size: 1.35rem;
}

.booking-notes-grid p {
  margin: 12px 0 0;
  color: #586764;
}

.site-footer {
  padding-block: 72px 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(160px, 0.6fr));
  gap: 46px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-ai {
  color: var(--lime);
}

.footer-grid p,
.footer-grid a:not(.brand) {
  margin: 0;
  color: #aebbb8;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:not(.brand):hover {
  color: var(--white);
}

.footer-grid strong {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #83928f;
  font-family: var(--mono);
  font-size: 0.7rem;
}

@media (max-width: 1300px) and (min-width: 1101px) {
  .larger-engagement-grid {
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1fr);
    gap: 20px 70px;
  }

  .larger-engagement-grid h2 {
    grid-row: 1 / 3;
  }

  .larger-engagement-actions {
    grid-column: 2;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .site-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: min(780px, 70%);
  }

  .problem-grid,
  .booking-preview-grid,
  .trust-grid,
  .company-grid,
  .booking-hero-grid,
  .larger-engagement-grid {
    grid-template-columns: 1fr;
  }

  .booking-hero-grid {
    gap: 38px;
  }

  .booking-hero-copy {
    max-width: 760px;
  }

  .larger-engagement-grid {
    gap: 24px;
  }

  .larger-engagement-actions {
    margin-top: 10px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-study,
  .case-study.reverse,
  .dashboard-case,
  .dashboard-case.reverse {
    grid-template-columns: 1fr;
  }

  .case-study.reverse .case-visual,
  .case-study.reverse .case-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .case-study.reverse .case-copy {
    order: 2;
  }

  .dashboard-case.reverse .dashboard-preview,
  .dashboard-case.reverse .dashboard-case-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .dashboard-case.reverse .dashboard-case-copy {
    order: 2;
  }

  .dashboard-note-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .dashboard-note-grid .eyebrow,
  .dashboard-note-grid h2,
  .dashboard-note-grid > p:not(.eyebrow),
  .dashboard-note-grid .button {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .page-shell {
    width: min(100% - 32px, 1460px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .site-nav {
    top: 68px;
  }

  .brand {
    font-size: 1.28rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.72rem;
  }

  .hero {
    min-height: 860px;
  }

  .dashboard-hero {
    min-height: 760px;
  }

  .dashboard-hero::after {
    background: linear-gradient(180deg, rgba(7, 17, 15, 0.98) 0%, rgba(7, 17, 15, 0.94) 52%, rgba(7, 17, 15, 0.54) 76%, rgba(7, 17, 15, 0.28) 100%);
  }

  .dashboard-hero-image {
    background-position: 44% center;
  }

  .dashboard-hero-inner {
    align-items: flex-start;
    padding-block: 68px 250px;
  }

  .dashboard-hero-copy {
    width: 100%;
  }

  .dashboard-hero-copy > p:not(.eyebrow) {
    font-size: 1.03rem;
  }

  .hero::after {
    background: linear-gradient(180deg, #eef4f1 0%, #eef4f1 58%, rgba(238, 244, 241, 0.9) 65%, rgba(238, 244, 241, 0.12) 83%, rgba(238, 244, 241, 0.03) 100%);
  }

  .hero-image {
    inset: 64% -40% 0 -25%;
    background-position: center top;
    background-size: cover;
  }

  .hero-inner {
    align-items: flex-start;
    padding-block: 64px 230px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-footnote {
    display: none;
  }

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

  .button {
    width: 100%;
  }

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

  .signal-grid p {
    min-height: 160px;
    padding: 24px 18px;
    border-bottom: 1px solid var(--line);
  }

  .signal-grid p:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .system-flow > div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .system-flow small {
    grid-column: 2;
  }

  .offer-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 32px 0 36px;
  }

  .featured-offer {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .offer-main ul {
    grid-template-columns: 1fr;
  }

  .offer-meta {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .section-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-preview-copy h2 {
    font-size: 2.5rem;
  }

  .quick-book-list > a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 0;
    padding: 24px 4px;
  }

  .quick-book-list > a > span:first-child {
    grid-column: 1 / -1;
  }

  .quick-book-meta {
    align-items: flex-start;
    text-align: left;
  }

  .quick-book-list b {
    align-self: end;
  }

  .booking-hero {
    padding-block: 58px 66px;
  }

  .booking-hero h1 {
    font-size: 2.75rem;
  }

  .booking-hero-copy > p {
    font-size: 1rem;
  }

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

  .direct-booking-heading h2 {
    font-size: 2.5rem;
  }

  .booking-session-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px 14px;
    min-height: 0;
    padding: 26px 4px;
  }

  .featured-session {
    margin-inline: -16px;
    padding-inline: 20px;
  }

  .booking-session-main {
    grid-column: 2 / -1;
  }

  .booking-session-main strong {
    font-size: 1rem;
  }

  .booking-session-duration {
    grid-column: 2;
    margin-top: 6px;
  }

  .booking-session-price {
    grid-column: 3;
    margin-top: 6px;
  }

  .booking-session-action {
    grid-column: 2 / -1;
    margin-top: 4px;
  }

  .larger-engagement-actions {
    flex-direction: column;
  }

  .larger-engagement-actions .button {
    width: 100%;
  }

  .booking-notes-grid {
    grid-template-columns: 1fr;
  }

  .booking-notes-grid > div,
  .booking-notes-grid > div:first-child {
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .booking-notes-grid > div:last-child {
    border-bottom: 1px solid var(--line);
  }

  .case-study {
    padding-block: 52px;
  }

  .dashboard-case {
    gap: 32px;
    padding-block: 52px;
  }

  .dashboard-case-copy h2 {
    font-size: 2.75rem;
  }

  .case-copy dl div {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .deployment-row {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .deployment-row small {
    grid-column: 2;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
