@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@500;700;800;900;1000&display=swap");

:root {
  --ink: #10212c;
  --muted: #5a6c76;
  --surface: #f7fbfa;
  --surface-strong: #edf5f3;
  --white: #ffffff;
  --blue: #0b4f8a;
  --blue-deep: #062f52;
  --navy: #061f35;
  --navy-soft: #0b3152;
  --navy-panel: #0e3a5f;
  --green: #23a96e;
  --green-deep: #147a55;
  --green-soft: #80e0b1;
  --amber: #b98024;
  --line: #d7e5e3;
  --shadow: 0 22px 60px rgba(12, 41, 63, 0.14);
  color-scheme: light;
  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;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

body.booking-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 56px;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(9, 41, 59, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  transform: rotate(-7deg);
  transition: transform 180ms ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(-3deg) translateY(-1px);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: currentColor;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.brand-word {
  color: currentColor;
  text-transform: lowercase;
}

.brand-it {
  color: #54a535;
  font-weight: 900;
}

.brand-caption {
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.91rem;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.partner-network {
  display: grid;
  align-items: center;
  justify-items: start;
  gap: 5px;
  min-width: 270px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 7px 9px 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(3, 20, 34, 0.16);
}

.site-header.is-scrolled .partner-network,
.site-header.is-open .partner-network {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.partner-label {
  color: currentColor;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  opacity: 0.84;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 7px;
}

.partner-logo {
  display: grid;
  width: 88px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(8, 47, 77, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(35, 169, 110, 0.32), 0 8px 18px rgba(3, 20, 34, 0.2);
  outline: 0;
  transform: translateY(-1px);
}

.partner-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-position: center;
}

.partner-logo-graffitecs {
  width: 128px;
  padding: 4px 6px 3px;
}

.partner-logo-groww {
  width: 112px;
  padding: 5px 7px;
  background: #082f4d;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 28, 47, 0.94) 0%, rgba(4, 31, 52, 0.79) 48%, rgba(4, 31, 52, 0.26) 100%),
    linear-gradient(0deg, rgba(4, 25, 42, 0.7), rgba(4, 25, 42, 0.08) 45%);
}

.hero-content {
  position: relative;
  width: min(800px, calc(100% - 44px));
  margin-left: 78px;
  padding-top: 118px;
}

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

.hero .eyebrow {
  color: #75e6ad;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: 5.05rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 3.45rem;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.24;
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.23rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 820;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(16, 137, 92, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-deep);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-note {
  display: grid;
  gap: 4px;
  max-width: 650px;
  border-left: 4px solid var(--green);
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.hero-note strong {
  color: var(--white);
}

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

.proof-strip div {
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: center;
  padding: 28px 48px;
  background: var(--white);
}

.proof-strip strong {
  color: var(--blue);
  font-size: 3rem;
  line-height: 0.9;
}

.proof-strip span {
  max-width: 320px;
  color: var(--muted);
  font-weight: 720;
}

.section {
  padding: 110px 56px;
}

.section-heading,
.offer,
.demo-grid,
.timeline,
.pilot,
.about,
.contact,
.site-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 44px;
}

.section-lede,
.offer-copy p,
.pilot-copy p,
.about-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.pilot-note {
  margin-top: 22px;
  border-left: 4px solid var(--amber);
  padding: 14px 18px;
  background: #fffaf1;
  color: var(--ink);
  font-weight: 720;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.84fr);
  gap: 54px;
  align-items: center;
}

.offer-copy .button {
  margin-top: 12px;
}

.offer-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 79, 138, 0.08), rgba(35, 169, 110, 0.09)),
    var(--white);
  box-shadow: var(--shadow);
}

.offer-panel article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 132px;
  padding: 20px;
  border: 1px solid #dce9e7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.offer-panel h3,
.offer-panel p {
  grid-column: 2;
}

.offer-panel .tool-map {
  grid-column: 2;
}

.offer-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.ai-transform {
  background:
    linear-gradient(135deg, rgba(6, 31, 53, 0.05), rgba(35, 169, 110, 0.08)),
    var(--surface-strong);
}

.ai-card-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ai-card,
.ai-stage-grid article,
.ai-outcome-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(19, 56, 76, 0.06);
}

.ai-card {
  min-height: 260px;
  padding: 26px;
}

.ai-card strong,
.ai-stage-grid strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ai-card h3,
.ai-stage-grid h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.ai-card p,
.ai-stage-grid p,
.ai-outcome-section p {
  color: var(--muted);
}

.ai-section-action {
  width: min(1180px, 100%);
  margin: 28px auto 0;
}

.panel-icon {
  position: relative;
  grid-row: 1 / span 2;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.panel-icon::before,
.panel-icon::after {
  position: absolute;
  content: "";
}

.panel-icon-workflow::before {
  inset: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.panel-icon-workflow::after {
  top: 20px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: -13px -8px 0 -1px var(--white), 13px -8px 0 -1px var(--white), 0 14px 0 -1px var(--white);
}

.panel-icon-roi::before {
  right: 12px;
  bottom: 12px;
  left: 12px;
  height: 20px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
}

.panel-icon-roi::after {
  right: 11px;
  bottom: 28px;
  width: 23px;
  height: 16px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
  transform: skewY(-28deg);
}

.panel-icon-stack::before {
  inset: 10px 12px;
  border-top: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
}

.panel-icon-stack::after {
  top: 21px;
  right: 12px;
  left: 12px;
  height: 3px;
  background: var(--white);
}

.tool-map {
  display: grid;
  gap: 12px;
}

.tool-map-core {
  display: grid;
  gap: 4px;
  min-height: 78px;
  align-content: center;
  border: 1px solid rgba(35, 169, 110, 0.28);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 28px rgba(11, 79, 138, 0.14);
}

.tool-map-core strong {
  font-size: 1rem;
  line-height: 1.2;
}

.tool-map-core span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 760;
}

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

.app-badge {
  display: grid;
  min-height: 58px;
  align-content: center;
  justify-items: center;
  border: 1px solid #d7e5e3;
  border-radius: 8px;
  padding: 9px 7px;
  color: var(--ink);
  background: var(--white);
  text-align: center;
  box-shadow: 0 8px 18px rgba(19, 56, 76, 0.05);
}

.app-badge b {
  font-size: 0.84rem;
  line-height: 1.1;
}

.app-badge small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1.1;
}

.app-erp {
  border-color: #bcd6e9;
  background: #f3f9fd;
}

.app-hubspot {
  border-color: #ffd4be;
  color: #bf4f18;
  background: #fff7f2;
}

.app-procore {
  border-color: #ffd89d;
  color: #a45c00;
  background: #fff9ed;
}

.app-sql {
  border-color: #c5dbf2;
  color: #174e83;
  background: #f3f8fe;
}

.app-n8n {
  border-color: #ffc9da;
  color: #b82e62;
  background: #fff4f8;
}

.app-make {
  border-color: #d5c8ff;
  color: #5b38b4;
  background: #f8f5ff;
}

.app-zapier {
  border-color: #ffd4b2;
  color: #b85610;
  background: #fff7ef;
}

.app-ai {
  border-color: #bfe8d5;
  color: var(--green-deep);
  background: #f1fbf6;
}

.app-cloud {
  border-color: #cbdde8;
  color: var(--blue-deep);
  background: #f6fbfd;
}

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

.pilot-grid article,
.demo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(19, 56, 76, 0.06);
}

.pilot-grid article {
  padding: 28px;
}

.pilot-grid p,
.demo-card p,
.timeline p {
  color: var(--muted);
}

.demos {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.18), rgba(35, 169, 110, 0) 38%),
    linear-gradient(180deg, var(--navy), var(--navy-soft));
}

.demos .eyebrow {
  color: var(--green-soft);
}

.demos .section-heading h2 {
  color: var(--white);
}

.demos .section-lede {
  color: rgba(255, 255, 255, 0.78);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.demo-video-frame {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}

.demo-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-card {
  grid-column: span 2;
  min-height: 300px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.demo-card-feature {
  grid-column: span 3;
  overflow: hidden;
  padding: 0;
}

.construction-workflow-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.demo-media {
  width: 100%;
  height: 285px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfb;
  object-fit: contain;
}

.demo-body {
  padding: 26px 28px 30px;
}

.demo-body h3 {
  color: var(--ink);
}

.case-sector {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.demo-metrics span {
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(128, 224, 177, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.18), rgba(35, 169, 110, 0.04)),
    var(--navy-panel);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.demo-metrics strong {
  display: block;
  color: var(--green-soft);
  font-size: 1.12rem;
  line-height: 1.05;
}

.demo-metrics small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.2;
}

.workflow-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
}

.workflow-diagram span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(128, 224, 177, 0.26);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.12), rgba(35, 169, 110, 0.02)),
    var(--navy-panel);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.workflow-diagram i {
  position: relative;
  display: block;
  height: 2px;
  background: var(--green);
}

.workflow-diagram i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.construction-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.18), rgba(35, 169, 110, 0.03)),
    var(--navy);
}

.flow-stage {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  border: 1px solid rgba(128, 224, 177, 0.24);
  border-radius: 8px;
  padding: 16px 14px;
  color: var(--white);
  background: var(--navy-panel);
  text-align: center;
}

.flow-stage-core {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 30px rgba(11, 79, 138, 0.18);
}

.flow-label {
  color: var(--green-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-stage-core .flow-label,
.flow-stage-core small {
  color: rgba(255, 255, 255, 0.86);
}

.flow-stage strong {
  font-size: 1rem;
  line-height: 1.18;
}

.flow-stage small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.construction-flow i {
  display: none;
}

.flow-stage::after {
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.flow-stage:nth-of-type(3)::after,
.flow-stage:nth-of-type(6)::after {
  display: none;
}

.construction-card-body {
  display: grid;
  align-content: center;
  padding: 32px;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.case-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(35, 169, 110, 0.2);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--blue-deep);
  background: #eef8f5;
  font-size: 0.78rem;
  font-weight: 850;
}

.case-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--green-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.case-link:hover,
.case-link:focus-visible {
  color: var(--white);
}

.case-link-card {
  color: var(--blue);
}

.case-link-card:hover,
.case-link-card:focus-visible {
  color: var(--green-deep);
}

.page-hero {
  width: min(1180px, calc(100% - 112px));
  min-height: 640px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: center;
  padding-top: 110px;
}

.page-hero-copy h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: 4.6rem;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-hero .button {
  margin-top: 14px;
}

.page-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(128, 224, 177, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.16), rgba(35, 169, 110, 0.03)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(6, 31, 53, 0.18);
}

.page-diagram span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(128, 224, 177, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-panel);
  font-weight: 900;
  text-align: center;
}

.page-diagram i {
  position: relative;
  display: block;
  width: 2px;
  height: 28px;
  justify-self: center;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.page-diagram i::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.page-section {
  padding: 0 56px 110px;
}

.case-study-hero {
  width: min(1180px, calc(100% - 112px));
  min-height: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.64fr);
  gap: 64px;
  align-items: center;
  padding-top: 116px;
}

.case-study-hero-copy h1 {
  max-width: 940px;
  color: var(--ink);
  font-size: 4.5rem;
}

.case-study-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.button-dark {
  color: var(--blue-deep);
  border-color: #bcd6e9;
  background: #f5fbfd;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #e9f6f8;
}

.case-study-flow {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(128, 224, 177, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.16), rgba(35, 169, 110, 0.03)),
    var(--navy);
  box-shadow: 0 22px 54px rgba(6, 31, 53, 0.18);
}

.case-study-flow span {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 1px solid rgba(128, 224, 177, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-panel);
  font-weight: 900;
  text-align: center;
}

.case-study-flow i {
  position: relative;
  display: block;
  width: 2px;
  height: 24px;
  justify-self: center;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.case-study-flow i::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.case-study-section {
  width: min(1180px, calc(100% - 112px));
  margin-inline: auto;
  padding: 96px 0;
}

.case-study-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-study-split article,
.case-step-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(19, 56, 76, 0.06);
}

.case-study-section h2 {
  font-size: 2.5rem;
}

.case-study-section p,
.case-list,
.feature-list {
  color: var(--muted);
}

.case-list,
.feature-list {
  margin: 0 0 20px;
  padding-left: 20px;
}

.case-list li,
.feature-list li {
  margin-bottom: 8px;
}

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

.case-step-grid article {
  min-height: 270px;
  padding: 24px;
}

.case-step-grid strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.case-step-grid h3 {
  font-size: 1.08rem;
}

.ai-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ai-stage-grid article {
  min-height: 280px;
  padding: 24px;
}

.ai-outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 52px;
  align-items: center;
}

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

.ai-outcome-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  color: var(--blue-deep);
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.12), rgba(11, 79, 138, 0.05)),
    var(--white);
  font-weight: 900;
  text-align: center;
}

.feature-list {
  columns: 2;
  column-gap: 28px;
}

.value-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.value-grid span {
  display: flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid #d6e8e4;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--blue-deep);
  background: #eef8f5;
  font-weight: 850;
}

.case-study-band,
.case-study-closing {
  border-radius: 8px;
  padding: 56px;
}

.case-study-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(35, 169, 110, 0.16), rgba(35, 169, 110, 0.03)),
    var(--navy);
}

.case-study-band .eyebrow {
  color: var(--green-soft);
}

.case-study-band h2,
.case-study-band p {
  color: var(--white);
}

.case-study-band p {
  max-width: 780px;
  opacity: 0.84;
}

.case-study-closing {
  background: #f3f8fb;
}

.case-study-closing p {
  max-width: 820px;
}

.page-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(19, 56, 76, 0.06);
}

.page-grid h2 {
  font-size: 1.42rem;
  line-height: 1.2;
}

.page-grid p {
  color: var(--muted);
}

.process {
  background: var(--surface);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.timeline article {
  min-height: 236px;
  padding: 34px 34px 10px 0;
}

.timeline article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

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

.pilot-grid strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: 86px;
  align-items: center;
}

.industry-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.industry-panel span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
}

.industry-panel span::before {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  content: "";
  flex: 0 0 auto;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 76px;
  align-items: start;
}

.contact-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c6d8d6;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfefd;
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(35, 169, 110, 0.16);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-booking {
  color: var(--blue-deep);
  border-color: #b9d5df;
  background: #eef8f5;
}

.button-booking:hover,
.button-booking:focus-visible {
  background: #dff2ed;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 31, 53, 0.72);
  backdrop-filter: blur(10px);
}

.booking-modal.is-open {
  display: grid;
}

.booking-dialog {
  width: min(1060px, 100%);
  height: min(760px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(215, 229, 227, 0.7);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(3, 22, 36, 0.35);
}

.booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--line);
}

.booking-header h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
  line-height: 1.12;
}

.booking-header .eyebrow {
  margin-bottom: 8px;
}

.booking-close {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid #c9deda;
  border-radius: 8px;
  background: #f4faf8;
  cursor: pointer;
}

.booking-close::before,
.booking-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--blue-deep);
  content: "";
}

.booking-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-frame-wrap {
  position: relative;
  min-height: 480px;
  background: var(--surface);
}

.booking-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 56px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.footer-details {
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: 680px;
  text-align: right;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  text-align: right;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 840;
}

.footer-contact span {
  color: var(--muted);
  font-weight: 560;
}

.footer-contact a {
  color: var(--blue);
  font-weight: 840;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--green-deep);
}

.footer-social {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  line-height: 1;
  transition: transform 160ms ease, opacity 160ms ease;
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-social:hover,
.footer-social:focus-visible {
  opacity: 0.86;
  outline: 0;
  transform: translateY(-1px);
}

.gt-page {
  color: #0e2230;
  background: #f3f8f5;
  font-family: "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gt-page h1,
.gt-page h2,
.gt-page h3 {
  letter-spacing: 0;
}

.gt-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 46px;
  border-bottom: 1px solid rgba(49, 93, 81, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(17, 54, 48, 0.08);
  backdrop-filter: blur(18px);
}

.gt-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #10212c;
  font-weight: 900;
}

.gt-logo-wrap {
  display: grid;
  width: 164px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(16, 70, 58, 0.1);
}

.gt-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 9px;
}

.gt-brand-copy {
  display: grid;
  line-height: 1.08;
}

.gt-brand-copy span {
  color: #0a4b3d;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gt-brand-copy small {
  color: #647266;
  font-size: 0.82rem;
  font-weight: 900;
}

.gt-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #163129;
  font-size: 0.95rem;
  font-weight: 1000;
}

.gt-nav a {
  position: relative;
  padding: 8px 0;
}

.gt-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: #7fc241;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.gt-nav a:hover::after,
.gt-nav a:focus-visible::after {
  transform: scaleX(1);
}

.gt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(720px, 1fr);
  gap: 72px;
  align-items: center;
  min-height: 760px;
  padding: 140px 56px 90px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 53, 69, 0.94), rgba(12, 84, 70, 0.84)),
    radial-gradient(circle at 82% 16%, rgba(127, 194, 65, 0.42), transparent 32%),
    #063545;
}

.gt-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

.gt-hero-copy,
.gt-hero-system {
  position: relative;
  width: min(100%, 1180px);
}

.gt-hero-copy {
  justify-self: end;
  max-width: 700px;
}

.gt-eyebrow {
  margin: 0 0 14px;
  color: #7fc241;
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.gt-hero .gt-eyebrow,
.gt-ai-band .gt-eyebrow,
.gt-contact .gt-eyebrow {
  color: #a6eb77;
}

.gt-hero h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 4.72rem;
  line-height: 0.96;
}

.gt-hero p:not(.gt-eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.gt-actions,
.gt-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gt-button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.gt-button-ghost:hover,
.gt-button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.gt-hero-system {
  display: grid;
  grid-template-columns: minmax(180px, 0.74fr) minmax(270px, 0.92fr) minmax(180px, 0.74fr);
  gap: 30px;
  align-items: center;
  max-width: 780px;
  justify-self: start;
}

.gt-system-source,
.gt-system-outcomes {
  display: grid;
  gap: 14px;
}

.gt-system-source span,
.gt-system-outcomes span {
  display: grid;
  min-height: 66px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 1000;
  line-height: 1.2;
}

.gt-agent-orb {
  display: grid;
  min-height: 310px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(166, 235, 119, 0.42);
  border-radius: 8px;
  padding: 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(127, 194, 65, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(2, 42, 55, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.gt-agent-orb strong {
  max-width: 9ch;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.05;
}

.gt-agent-orb small {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 900;
}

.gt-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(49, 93, 81, 0.16);
  background: #ffffff;
}

.gt-proof div {
  display: grid;
  gap: 8px;
  min-height: 136px;
  align-content: center;
  padding: 26px 46px;
  border-right: 1px solid rgba(49, 93, 81, 0.12);
}

.gt-proof strong {
  color: #0a6b55;
  font-size: 1.3rem;
  line-height: 1.05;
}

.gt-proof span {
  max-width: 340px;
  color: #52675e;
  font-weight: 720;
}

.gt-section {
  width: min(1180px, calc(100% - 112px));
  margin-inline: auto;
  padding: 104px 0;
}

.gt-section h2 {
  max-width: 850px;
  color: #10212c;
  font-size: 3.35rem;
  line-height: 1.04;
}

.gt-section p {
  color: #5a6c76;
  font-size: 1.06rem;
}

.gt-section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.gt-split,
.gt-agent-section,
.gt-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: start;
}

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

.gt-panel-list article,
.gt-stage-grid article,
.gt-agent-card,
.gt-usecase-card,
.gt-framework-steps article,
.gt-contact-form {
  border: 1px solid rgba(25, 87, 74, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(17, 54, 48, 0.08);
}

.gt-panel-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 22px;
}

.gt-panel-list span {
  grid-row: 1 / span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b596b, #7fc241);
  font-weight: 950;
}

.gt-panel-list h3,
.gt-panel-list p {
  grid-column: 2;
  margin-bottom: 0;
}

.gt-ai-band {
  width: 100%;
  padding-inline: max(56px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(127, 194, 65, 0.16), rgba(127, 194, 65, 0) 46%),
    #082c3c;
}

.gt-ai-band h2,
.gt-ai-band h3 {
  color: #ffffff;
}

.gt-ai-band p {
  color: rgba(255, 255, 255, 0.76);
}

.gt-stage-grid,
.gt-usecase-grid,
.gt-framework-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gt-stage-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.gt-stage-grid strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: #a6eb77;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gt-agent-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.gt-agent-kicker .gt-eyebrow {
  margin: 0;
}

.gt-agent-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #0b596b 0%, #0a6b55 58%, #7fc241 100%);
  box-shadow: 0 18px 38px rgba(11, 89, 107, 0.18);
}

.gt-agent-icon svg {
  display: block;
  width: 39px;
  height: 39px;
}

.gt-agent-icon-link {
  fill: none;
  stroke: rgba(255, 255, 255, 0.56);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.gt-agent-icon-node {
  fill: #ffffff;
}

.gt-agent-icon-core {
  fill: rgba(6, 31, 53, 0.38);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 2.2;
}

.gt-agent-icon-spark {
  fill: none;
  stroke: #a6eb77;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.gt-agent-icon-dot {
  fill: #a6eb77;
}

.gt-agent-card {
  padding: 30px;
}

.gt-agent-card h3 {
  font-size: 1.38rem;
}

.gt-agent-card p {
  margin-bottom: 18px;
}

.gt-agent-card ul {
  margin: 0;
  padding-left: 20px;
  color: #52675e;
}

.gt-agent-card li {
  margin-bottom: 10px;
}

.gt-agent-card li strong {
  color: #0a6b55;
  font-weight: 1000;
}

.gt-usecase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gt-usecase-card {
  overflow: hidden;
}

.gt-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #061f35;
}

.gt-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gt-usecase-body {
  padding: 24px;
}

.gt-usecase-body span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0a6b55;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gt-usecase-body h3 {
  font-size: 1.18rem;
}

.gt-usecase-text {
  display: grid;
  grid-template-rows: auto 1fr;
}

.gt-collections-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(127, 194, 65, 0.18), rgba(255, 255, 255, 0.04)),
    #082c3c;
}

.gt-collections-visual span,
.gt-collections-visual strong {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(166, 235, 119, 0.24);
  border-radius: 8px;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  font-weight: 880;
}

.gt-collections-visual strong {
  grid-column: 1 / -1;
  color: #10212c;
  background: #a6eb77;
  font-size: 1.3rem;
}

.gt-framework {
  display: grid;
  gap: 34px;
}

.gt-framework-steps article {
  min-height: 220px;
  padding: 26px;
}

.gt-framework-steps strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b596b, #7fc241);
}

.gt-contact {
  width: 100%;
  margin-inline: 0;
  padding: 104px max(56px, calc((100% - 1180px) / 2));
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(127, 194, 65, 0.18), rgba(127, 194, 65, 0) 44%),
    #063545;
}

.gt-contact h2 {
  color: #ffffff;
}

.gt-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.gt-contact-form {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.gt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 56px 42px;
  border-top: 1px solid rgba(49, 93, 81, 0.16);
  background: #ffffff;
}

.gt-footer-details {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: #5a6c76;
  text-align: right;
}

.gt-footer-details p {
  margin: 0;
}

.gt-footer-details span {
  color: #0a6b55;
  font-size: 0.86rem;
  font-weight: 850;
}

@media (max-width: 1320px) {
  .gt-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gt-hero-copy {
    justify-self: start;
    max-width: 780px;
  }

  .gt-hero h1 {
    max-width: 12ch;
  }

  .gt-hero-system {
    max-width: 860px;
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 28px;
  }

  .site-nav {
    gap: 16px;
  }

  .partner-network {
    min-width: 208px;
    padding: 6px;
  }

  .partner-label {
    font-size: 0.52rem;
  }

  .partner-logo {
    height: 34px;
  }

  .partner-logo-graffitecs {
    width: 96px;
    padding: 3px 5px;
  }

  .partner-logo-groww {
    width: 86px;
    padding: 4px 5px;
  }

  .hero-content {
    margin-left: 44px;
  }

  .gt-header {
    padding-inline: 24px;
  }

  .gt-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .gt-logo-wrap {
    width: 132px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    padding: 14px 22px;
  }

  .partner-network {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 15px 12px;
  }

  .gt-header {
    padding: 13px 18px;
  }

  .gt-nav-toggle {
    display: block;
    color: #0a4b3d;
  }

  .gt-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .gt-nav a {
    padding: 15px 12px;
  }

  .gt-brand-copy {
    display: none;
  }

  .gt-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .gt-hero-copy {
    justify-self: start;
  }

  .gt-stage-grid,
  .gt-usecase-grid,
  .gt-framework-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .proof-strip,
  .offer,
  .pilot,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .timeline,
  .page-hero,
  .page-grid,
  .case-study-hero,
  .case-study-split {
    grid-template-columns: 1fr;
  }

  .page-hero {
    width: min(100% - 56px, 1180px);
    gap: 32px;
    padding: 128px 0 70px;
  }

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

  .ai-outcome-section {
    grid-template-columns: 1fr;
  }

  .case-study-hero {
    width: min(100% - 56px, 1180px);
    gap: 36px;
    padding: 128px 0 70px;
  }

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

  .demo-card,
  .demo-card-feature {
    grid-column: 1 / -1;
  }

  .construction-workflow-card {
    grid-template-columns: 1fr;
  }

  .construction-card-body {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .timeline article,
  .timeline article + article {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .gt-split,
  .gt-agent-section,
  .gt-contact {
    grid-template-columns: 1fr;
  }

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

  .gt-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(49, 93, 81, 0.12);
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .partner-network {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 15px 12px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 28, 47, 0.24) 0%, rgba(4, 28, 47, 0.78) 36%, rgba(4, 28, 47, 0.96) 100%),
      linear-gradient(90deg, rgba(4, 28, 47, 0.78), rgba(4, 28, 47, 0.12));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 126px 0 54px;
  }

  h1 {
    font-size: 3.55rem;
  }

  .page-hero-copy h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .section {
    padding: 72px 18px;
  }

  .page-section {
    padding: 0 18px 72px;
  }

  .case-study-section {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .case-study-hero-copy h1 {
    font-size: 3.6rem;
  }

  .case-study-section h2 {
    font-size: 2.2rem;
  }

  .feature-list {
    columns: 1;
  }

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

  .button {
    width: 100%;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-dialog {
    height: calc(100vh - 24px);
  }

  .booking-header {
    padding: 18px;
  }

  .booking-header h2 {
    font-size: 1.25rem;
  }

  .booking-close {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .proof-strip div {
    min-height: 104px;
    padding: 24px 22px;
  }

  .offer-panel article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .panel-icon {
    width: 40px;
    height: 40px;
  }

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

  .ai-card-grid,
  .ai-stage-grid,
  .ai-outcome-grid {
    grid-template-columns: 1fr;
  }

  .ai-card,
  .ai-stage-grid article {
    min-height: auto;
  }

  .demo-media {
    height: 230px;
  }

  .workflow-diagram,
  .construction-flow,
  .demo-metrics,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .flow-stage::after {
    display: none;
  }

  .workflow-diagram i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--blue), var(--green));
  }

  .workflow-diagram i::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .construction-flow i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--blue), var(--green));
  }

  .construction-flow i::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .contact-form {
    padding: 24px;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-details {
    justify-items: start;
    text-align: left;
  }

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

  .gt-hero {
    min-height: auto;
    padding: 116px 18px 62px;
  }

  .gt-hero h1 {
    font-size: 3.55rem;
  }

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

  .gt-agent-orb {
    min-height: 210px;
    border-radius: 8px;
  }

  .gt-section {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .gt-section h2 {
    font-size: 2.45rem;
  }

  .gt-ai-band,
  .gt-contact {
    padding-inline: 18px;
  }

  .gt-stage-grid,
  .gt-usecase-grid,
  .gt-framework-steps {
    grid-template-columns: 1fr;
  }

  .gt-actions .button,
  .gt-contact-actions .button {
    width: 100%;
  }

  .gt-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .gt-footer-details {
    justify-items: start;
    text-align: left;
  }
}

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

  h2 {
    font-size: 2.08rem;
  }

  .page-hero-copy h1 {
    font-size: 3rem;
  }

  .case-study-hero-copy h1 {
    font-size: 2.72rem;
  }

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

  .case-study-band,
  .case-study-closing {
    padding: 30px 22px;
  }

  .hero-lede,
  .section-lede,
  .offer-copy p,
  .pilot-copy p,
  .about-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .proof-strip strong {
    font-size: 2.42rem;
  }

  .demo-body {
    padding: 22px 20px 24px;
  }

  .construction-flow,
  .construction-card-body {
    padding: 20px;
  }

  .demo-media {
    height: 190px;
    padding: 10px;
  }

  .gt-logo-wrap {
    width: 116px;
    height: 44px;
  }

  .gt-hero h1 {
    font-size: 2.82rem;
  }

  .gt-section h2 {
    font-size: 2.04rem;
  }

}

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