:root {
  --ink: #15302d;
  --ink-soft: #45605b;
  --forest: #123b36;
  --forest-deep: #0b2b27;
  --paper: #f5f2e9;
  --paper-light: #fbfaf6;
  --white: #ffffff;
  --accent: #ff6b45;
  --accent-soft: #ffd8ca;
  --line: #cad3cd;
  --mint: #cfe8dd;
  --yellow: #f0e58e;
  --shadow: 0 24px 70px rgba(18, 59, 54, 0.11);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(245, 242, 233, 0.9);
  border-color: rgba(21, 48, 45, 0.12);
  box-shadow: 0 8px 32px rgba(18, 59, 54, 0.05);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

.brand-mark rect {
  fill: var(--forest);
  stroke: var(--forest);
}

.brand-mark path {
  fill: var(--paper-light);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav .nav-contact {
  padding: 10px 16px;
  background: var(--forest);
  color: var(--white);
  border-radius: 999px;
}

.site-nav .nav-contact:hover {
  color: var(--white);
  background: var(--accent);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--forest);
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -280px;
  right: -180px;
  border: 1px solid rgba(18, 59, 54, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 85px rgba(18, 59, 54, 0.025),
    0 0 0 170px rgba(18, 59, 54, 0.018);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6.3vw, 88px);
  line-height: 0.98;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--forest);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--accent);
  font-size: 17px;
}

.system-panel {
  position: relative;
  padding: 22px;
  background: var(--forest);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.system-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 70%;
  right: -18px;
  bottom: -18px;
  background: var(--accent);
  border-radius: 28px;
}

.panel-topline,
.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.panel-topline {
  padding: 2px 2px 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-label i {
  width: 7px;
  height: 7px;
  background: #91f3bd;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(145, 243, 189, 0.12);
}

.pipeline {
  padding: 19px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
}

.pipeline-node {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
}

.node-number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-soft);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.pipeline-node strong,
.pipeline-node small {
  display: block;
}

.pipeline-node strong {
  font-size: 13px;
}

.pipeline-node small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.node-status {
  padding: 4px 8px;
  background: rgba(145, 243, 189, 0.11);
  color: #a9f4ca;
  border: 1px solid rgba(145, 243, 189, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline-line {
  height: 25px;
  margin-left: 15px;
  border-left: 1px dashed rgba(255, 255, 255, 0.24);
}

.panel-chart {
  margin-top: 15px;
  padding: 17px 19px 13px;
  background: var(--paper-light);
  color: var(--ink);
  border-radius: 17px;
}

.chart-heading {
  font-size: 11px;
  font-weight: 700;
}

.chart-heading span {
  color: var(--ink-soft);
}

.chart-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.chart-bars {
  height: 77px;
  margin-top: 16px;
  display: flex;
  gap: 8px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.chart-bars span {
  height: var(--height);
  flex: 1;
  background: var(--mint);
  border-radius: 4px 4px 0 0;
}

.chart-bars span:nth-last-child(-n+2) {
  background: var(--accent);
}

.proof {
  border-top: 1px solid rgba(21, 48, 45, 0.16);
  border-bottom: 1px solid rgba(21, 48, 45, 0.16);
}

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

.proof-item {
  min-height: 160px;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(21, 48, 45, 0.16);
}

.proof-item:last-child {
  border-right: 1px solid rgba(21, 48, 45, 0.16);
}

.proof-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.proof-item span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

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

.section-heading.compact {
  max-width: 700px;
}

.section-heading h2,
.history-copy h2,
.about-title h2,
.contact-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 69px);
  line-height: 1.03;
}

.section-heading > p:last-child,
.history-copy > p,
.about-copy > p {
  color: var(--ink-soft);
  font-size: 18px;
}

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

.case-card {
  min-width: 0;
  padding: 34px;
  background: var(--paper-light);
  border: 1px solid rgba(21, 48, 45, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 50px rgba(18, 59, 54, 0.035);
}

.case-featured {
  grid-column: 1 / -1;
  padding: 38px;
  background: var(--white);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-meta span:first-child {
  color: var(--accent);
}

.case-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.case-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.case-card > p,
.case-copy > p {
  color: var(--ink-soft);
}

.outcome-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.outcome-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.outcome-list strong {
  color: var(--ink);
}

.flow-visual {
  padding: 25px;
  background: var(--forest);
  color: var(--white);
  border-radius: 18px;
}

.flow-stage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.flow-stage span {
  font-size: 12px;
  font-weight: 750;
}

.flow-stage i {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-style: normal;
}

.flow-visual > b {
  display: block;
  height: 25px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  transform: rotate(90deg);
}

.flow-log {
  margin-top: 21px;
  padding-top: 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 9px;
}

.flow-log span {
  color: var(--accent-soft);
}

.flow-log code {
  color: rgba(255, 255, 255, 0.67);
  font-family: Consolas, monospace;
}

.match-demo {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.match-record {
  min-width: 0;
  padding: 15px;
  background: var(--paper);
  border-radius: 12px;
}

.match-record small,
.match-record span,
.match-record i {
  display: block;
}

.match-record small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-record span {
  margin: 9px 0 3px;
  font-size: 13px;
  font-weight: 800;
}

.match-record i {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 9px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-score {
  display: grid;
  width: 57px;
  height: 57px;
  place-content: center;
  background: var(--mint);
  border-radius: 50%;
  text-align: center;
}

.match-score strong,
.match-score span {
  display: block;
}

.match-score strong {
  font-size: 13px;
}

.match-score span {
  color: var(--ink-soft);
  font-size: 8px;
  text-transform: uppercase;
}

.region-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.region-grid span {
  position: relative;
  overflow: hidden;
  padding: 13px 14px;
  background: var(--paper);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 750;
}

.region-grid i {
  position: absolute;
  height: 3px;
  width: var(--level);
  bottom: 0;
  left: 0;
  background: var(--accent);
}

.history-section {
  background: var(--forest);
  color: var(--white);
}

.history-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.history-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.history-copy .eyebrow {
  color: var(--accent-soft);
}

.timeline {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline-item {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline-item > span {
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline-item strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

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

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

.principle {
  padding: 29px;
  border-top: 1px solid var(--ink);
}

.principle-number {
  display: block;
  margin-bottom: 55px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.principle h3 {
  margin-bottom: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.principle p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.ai-practice {
  margin-top: 75px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.8fr;
  gap: 45px;
  background: var(--paper-light);
  border: 1px solid rgba(21, 48, 45, 0.16);
  border-radius: var(--radius);
}

.ai-label span,
.ai-label i {
  display: block;
}

.ai-label span {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-label i {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
}

.ai-copy h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ai-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.tool-list {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-list span {
  padding: 7px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
}

.about-title h2 {
  margin-bottom: 0;
}

.about-copy {
  padding-top: 34px;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.5;
}

.about-copy .text-link {
  margin-top: 12px;
}

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

.contact-inner {
  max-width: 960px;
}

.contact-inner .eyebrow {
  color: var(--forest-deep);
}

.contact-inner h2 {
  max-width: 900px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.contact-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.button-light:hover {
  background: var(--forest);
  color: var(--white);
}

.contact-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 28px 0;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 11px;
}

.footer-inner a {
  color: var(--white);
  text-underline-offset: 4px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media (max-width: 980px) {
  .hero-grid,
  .case-layout,
  .history-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
  }

  .system-panel {
    max-width: 650px;
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid rgba(21, 48, 45, 0.16);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid rgba(21, 48, 45, 0.16);
  }

  .case-layout,
  .history-grid,
  .about-grid {
    gap: 50px;
  }

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

  .principle {
    display: grid;
    grid-template-columns: 55px 0.7fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .principle-number {
    margin-bottom: 0;
  }

  .principle p {
    margin-top: 3px;
  }

  .ai-practice {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .tool-list {
    grid-column: 1 / -1;
  }

  .about-copy {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 0;
  }

  .nav-toggle-label {
    font-size: 12px;
    font-weight: 750;
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    width: 21px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle-lines {
    position: relative;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-lines::before {
    top: -6px;
  }

  .nav-toggle-lines::after {
    top: 6px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-contact {
    margin-top: 12px;
    padding: 11px 18px;
    font-family: "Aptos", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0;
  }

  .hero {
    padding: 128px 0 70px;
  }

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

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-intro {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .system-panel {
    padding: 15px;
    border-radius: 20px;
  }

  .system-panel::after {
    right: -8px;
    bottom: -8px;
    border-radius: 20px;
  }

  .pipeline {
    padding: 14px;
  }

  .proof-item {
    min-height: 135px;
    padding: 25px 18px;
  }

  .proof-item:nth-child(odd) {
    border-left: 0;
  }

  .proof-item:nth-child(even) {
    border-right: 0;
  }

  .proof-item strong {
    font-size: 34px;
  }

  .proof-item span {
    font-size: 9px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .history-copy h2,
  .about-title h2,
  .contact-inner h2 {
    font-size: clamp(39px, 11vw, 55px);
  }

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

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

  .case-featured {
    grid-column: auto;
  }

  .case-card,
  .case-featured {
    padding: 24px;
  }

  .case-meta {
    margin-bottom: 26px;
    flex-direction: column;
    gap: 4px;
  }

  .case-layout {
    gap: 35px;
  }

  .match-demo {
    grid-template-columns: 1fr;
  }

  .match-score {
    margin: -3px auto;
  }

  .history-grid {
    gap: 35px;
  }

  .timeline-item {
    grid-template-columns: 73px 1fr;
  }

  .principle {
    padding: 22px 0;
    display: block;
  }

  .principle-number {
    margin-bottom: 32px;
  }

  .ai-practice {
    margin-top: 45px;
    padding: 25px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tool-list {
    grid-column: auto;
  }

  .about-grid {
    gap: 30px;
  }

  .about-copy .about-lead {
    font-size: 20px;
  }

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

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .panel-topline > span:first-child {
    display: none;
  }

  .panel-topline {
    justify-content: flex-end;
  }

  .pipeline-node {
    grid-template-columns: 29px 1fr;
  }

  .node-status {
    display: none;
  }

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