:root {
  --ink: #101817;
  --ink-soft: #283331;
  --paper: #f7f8f5;
  --white: #ffffff;
  --teal: #087f76;
  --teal-light: #c9eee8;
  --coral: #ff6b57;
  --coral-light: #ffd8d1;
  --yellow: #f3c94d;
  --yellow-light: #fff0b8;
  --line: #d9dfdc;
  --muted: #65706d;
  --shadow: 0 16px 40px rgba(16, 24, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(16, 24, 23, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 5px;
  font-weight: 800;
}

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

.brand-copy strong {
  font-size: 16px;
}

.brand-copy small {
  margin-top: 4px;
  opacity: 0.74;
  font-size: 10px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--yellow);
}

.site-header.scrolled .site-nav a:not(.nav-cta):hover {
  color: var(--teal);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 5px;
}

.menu-toggle {
  display: none;
  padding: 8px;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  color: var(--white);
  background-image: url("assets/hero-operations-v2.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 17, 16, 0.92) 0%, rgba(10, 17, 16, 0.78) 35%, rgba(10, 17, 16, 0.18) 67%, rgba(10, 17, 16, 0.04) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 82px;
}

.hero-content > * {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--teal);
}

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

h1,
h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: 64px;
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: #ffda62;
}

.button-ghost {
  color: var(--white);
  background: rgba(16, 24, 23, 0.45);
  border-color: rgba(255, 255, 255, 0.44);
}

.button-ghost:hover {
  border-color: var(--white);
}

.button-secondary {
  color: var(--teal);
  background: var(--teal-light);
  border-color: rgba(8, 127, 118, 0.2);
}

.button-secondary:hover {
  background: #b7e6df;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.signal-band {
  padding: 26px 0;
  color: var(--white);
  background: var(--teal);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  align-items: center;
}

.signal-grid p {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.signal-list span {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-item {
  min-height: 250px;
  padding: 30px 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-item > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 42px;
  color: var(--teal);
}

.solution-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 36px 34px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.steps article + article {
  padding-left: 34px;
}

.steps article:last-child {
  border-right: 0;
}

.steps > article > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.examples-section {
  background: #edf1ef;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.example-card {
  min-height: 380px;
  padding: 34px;
  border: 1px solid rgba(16, 24, 23, 0.16);
  border-radius: 7px;
}

.example-coral {
  background: var(--coral-light);
}

.example-teal {
  background: var(--teal-light);
}

.example-yellow {
  background: var(--yellow-light);
}

.example-white {
  background: var(--white);
}

.example-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 72px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.example-card h3 {
  font-family: "Source Serif 4", serif;
  font-size: 32px;
}

.example-card > p {
  max-width: 520px;
  color: var(--ink-soft);
}

.example-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.example-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
}

.industries-band {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--yellow);
}

.industries-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.industries-layout h2 {
  margin: 0;
  font-size: 40px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.industry-tags span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 24, 23, 0.28);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
}

.compact-heading {
  margin-bottom: 28px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list summary svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-list details p {
  max-width: 800px;
  padding: 0 0 24px;
  color: var(--muted);
}

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background: var(--teal);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2 {
  font-size: 48px;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
}

.contact-points svg {
  color: var(--yellow);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cbd3cf;
  border-radius: 4px;
  outline: none;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 118, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-note a {
  color: var(--teal);
  text-decoration: underline;
}

.legal-page {
  min-height: 100vh;
  padding: 128px 0 80px;
  background: var(--paper);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  max-width: none;
  color: var(--ink);
  font-size: 54px;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: 28px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy a {
  color: var(--teal);
  text-decoration: underline;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.content-page {
  min-height: 100vh;
  padding-top: 76px;
  background: var(--paper);
}

.content-hero {
  padding: 92px 0 80px;
  background: var(--ink);
}

.content-hero h1 {
  max-width: 820px;
  margin: 14px 0 22px;
  color: var(--white);
}

.content-hero .hero-lead {
  max-width: 720px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--yellow);
}

.content-section {
  padding: 88px 0;
}

.content-section + .content-section {
  padding-top: 0;
}

.content-prose {
  max-width: 820px;
}

.content-prose h2 {
  margin-top: 42px;
  font-size: 34px;
}

.content-prose p,
.content-prose li {
  color: var(--muted);
}

.content-prose ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.content-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.content-card h3 {
  margin: 14px 0 8px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.answer-box {
  max-width: 900px;
  margin: -28px auto 0;
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(16, 24, 23, 0.08);
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  text-transform: uppercase;
}

.answer-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
}

.process-list p {
  margin: 0;
}

.intent-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.intent-card,
.related-link {
  display: block;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.intent-card:hover,
.related-link:hover {
  border-color: var(--teal);
}

.intent-card strong,
.related-link strong {
  display: block;
  margin-bottom: 6px;
}

.intent-card p,
.related-link p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.query-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.query-list li {
  padding: 8px 11px;
  color: var(--ink-soft);
  background: #edf1ef;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13px;
}

.reviewed-line,
.source-note {
  color: var(--muted);
  font-size: 12px;
}

.source-note a {
  color: var(--teal);
  text-decoration: underline;
}

.content-faq {
  margin-top: 52px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 48px;
}

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

.footer-layout > div:first-child p {
  max-width: 380px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-links,
.company-meta {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.floating-contact {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: #159c5b;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.floating-contact:hover {
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  .hero {
    min-height: 700px;
    background-position: 58% center;
  }

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

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

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

  .steps article,
  .steps article + article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .industries-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(1180px, calc(100% - 32px));
  }

  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

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

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
    background-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 17, 16, 0.96) 0%, rgba(10, 17, 16, 0.78) 58%, rgba(10, 17, 16, 0.18) 100%);
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 42px;
  }

  h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .content-hero {
    padding: 70px 0 58px;
  }

  .content-hero h1 {
    font-size: 42px;
  }

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

  .intent-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .answer-box {
    width: calc(100% - 32px);
    padding: 22px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .signal-list {
    justify-content: flex-start;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

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

  .solution-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .solution-item {
    min-height: 0;
  }

  .solution-item > svg {
    margin-bottom: 28px;
  }

  .example-card {
    min-height: 0;
    padding: 26px;
  }

  .example-topline {
    margin-bottom: 44px;
  }

  .industries-layout h2 {
    font-size: 34px;
  }

  .industry-tags {
    justify-content: flex-start;
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-form {
    padding: 22px;
  }

  .form-row,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    gap: 32px;
  }
}

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

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