:root {
  --bg: #080b0f;
  --bg-soft: #0b1016;
  --surface: #0f151c;
  --surface-2: #121a23;
  --line: #202a35;
  --line-strong: #2d3946;
  --text: #f5f7fa;
  --muted: #9ba7b4;
  --muted-2: #6f7c89;
  --accent: #6aa8ff;
  --accent-soft: rgba(106, 168, 255, 0.12);
  --accent-line: rgba(106, 168, 255, 0.42);
  --max: 1220px;
  --radius: 6px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  font-family: var(--font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 8%, rgba(64, 121, 255, 0.10), transparent 28%),
    radial-gradient(circle at 8% 75%, rgba(73, 115, 172, 0.05), transparent 34%);
  z-index: -1;
}

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-logo {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.section-title {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 620;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
}

/* NAVIGATION */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(32, 42, 53, 0.85);
  background: rgba(8, 11, 15, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border: 1px solid var(--accent-line);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.brand-mark::before {
  width: 1px;
  height: 16px;
  left: 8px;
  top: 4px;
  transform: skewX(-18deg);
}

.brand-mark::after {
  width: 9px;
  height: 1px;
  right: 4px;
  top: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c3cbd4;
  font-size: 0.93rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 28px 0 26px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item-dropdown:hover > .nav-link::after,
.nav-item-dropdown:focus-within > .nav-link::after {
  width: 100%;
}

.nav-dropdown {
  position: fixed;
  left: 0;
  right: 0;
  top: 76px;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 150ms ease,
    visibility 150ms ease,
    transform 150ms ease;
  pointer-events: none;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.28fr 0.72fr;
  border: 1px solid var(--line);
  border-top-color: var(--accent-line);
  background: rgba(10, 15, 21, 0.985);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.nav-dropdown-head {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(106, 168, 255, 0.05), transparent 52%),
    rgba(8, 12, 17, 0.9);
}

.dropdown-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-dropdown-head p {
  margin: 56px 0 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

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

.dropdown-entry {
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 12px;
  align-items: start;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 150ms ease;
}

.dropdown-entry:nth-child(even) {
  border-right: 0;
}

.dropdown-entry:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.dropdown-entry:hover {
  background: rgba(106, 168, 255, 0.055);
}

.dropdown-index {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.dropdown-entry strong {
  display: block;
  color: #e7edf3;
  font-size: 0.9rem;
  font-weight: 620;
}

.dropdown-entry small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.dropdown-arrow {
  color: var(--muted-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  padding: 3px;
  background: #0a0f14;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 34px;
  height: 30px;
  padding: 0 8px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.lang-btn + .lang-btn {
  border-left: 1px solid var(--line-strong);
}

.lang-btn.active {
  color: var(--text);
  background: var(--surface-2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

/* BUTTONS */

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 630;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--text);
  color: #070a0e;
  border-color: var(--text);
}

.btn-primary:hover {
  background: #dfe5eb;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.btn .arrow {
  font-size: 1.05em;
  opacity: 0.78;
}

/* HERO */

.hero {
  padding: 108px 0 94px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.34fr);
  gap: 72px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(3.25rem, 7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.072em;
  font-weight: 620;
}

.hero h1 span {
  color: #8da8c8;
}

.hero-lead {
  margin: 34px 0 0;
  max-width: 690px;
  color: #bcc6d0;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  border: 1px solid var(--line);
  background: rgba(12, 17, 23, 0.82);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(106,168,255,.08) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(106,168,255,.08) 50%, transparent 50.2%);
  background-size: 34px 34px;
  opacity: 0.8;
  pointer-events: none;
}

.system-diagram {
  position: relative;
  z-index: 1;

  width: 100%;
  aspect-ratio: 1 / 0.82;

  min-height: 300px;
  overflow: hidden;
}


/* -------------------------
   CONNEXIONS
------------------------- */

.system-links {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
  pointer-events: none;

  z-index: 0;
}

.system-links line {
  stroke: var(--accent-line);
  stroke-width: 0.35;
  vector-effect: non-scaling-stroke;
}


/* -------------------------
   NŒUDS
------------------------- */

.node {
  position: absolute;

  width: clamp(108px, 31%, 145px);

  padding: 12px 14px;

  border: 1px solid var(--line-strong);
  background: #0b1118;

  transform: translate(-50%, -50%);

  z-index: 2;
}

.node strong {
  display: block;

  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  letter-spacing: 0.04em;

  color: #dde5ed;
}

.node small {
  display: block;

  margin-top: 3px;

  color: var(--muted-2);

  font-size: clamp(0.58rem, 1.6vw, 0.68rem);
  line-height: 1.35;
}


/* -------------------------
   POSITIONNEMENT
------------------------- */

.node-a {
  left: 24%;
  top: 17%;
}

.node-b {
  left: 79%;
  top: 37%;
}

.node-c {
  left: 27%;
  top: 78%;
}

.node-core {
  left: 50%;
  top: 50%;

  width: clamp(130px, 36%, 165px);

  border-color: var(--accent-line);

  background:
    linear-gradient(
      135deg,
      rgba(106, 168, 255, 0.08),
      transparent 65%
    ),
    #0d1722;
}

.hero-panel-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

/* SOLUTIONS */

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

.solution {
  min-height: 294px;
  padding: 26px 24px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 19, 0.58);
  transition: background 180ms ease;
  position: relative;
}

.solution:hover {
  background: rgba(16, 23, 31, 0.92);
}

.solution-index {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.solution h3 {
  margin: 76px 0 14px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 620;
}

.solution p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.solution-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--muted-2);
  font-family: var(--font-mono);
}

/* APPROACH */

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

.approach-row {
  display: grid;
  grid-template-columns: 90px minmax(210px, 0.38fr) 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.approach-row .num {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.75rem;
}

.approach-row h3 {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 580;
}

.approach-row p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

/* PROJECTS */

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

.project {
  grid-column: span 6;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.project:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.project-visual {
  height: 265px;
  background: #0b1117;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.visual-argos {
  background:
    linear-gradient(90deg, rgba(106,168,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(106,168,255,.06) 1px, transparent 1px),
    #0b1117;
  background-size: 36px 36px;
}

.visual-argos::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 18%;
  height: 62%;
  border: 1px solid #2a3541;
  background: #0f161f;
  box-shadow: 22px 20px 0 #0c1219;
}

.visual-argos::after {
  content: "PROJECT / TIME / BILLING";
  position: absolute;
  left: 13%;
  top: 28%;
  color: #7e8c9b;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.visual-network {
  background:
    radial-gradient(circle at 18% 26%, rgba(106,168,255,.16), transparent 8%),
    radial-gradient(circle at 74% 26%, rgba(106,168,255,.13), transparent 7%),
    radial-gradient(circle at 46% 76%, rgba(106,168,255,.13), transparent 8%),
    #0a0f15;
}

.visual-network::before {
  content: "";
  position: absolute;
  width: 52%;
  height: 1px;
  top: 40%;
  left: 22%;
  background: var(--accent-line);
  transform: rotate(-2deg);
  box-shadow: 8px 74px 0 rgba(106,168,255,.22);
}

.visual-wakeup {
  background:
    linear-gradient(135deg, rgba(106,168,255,.08), transparent 45%),
    #0c1118;
}

.visual-wakeup::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 1px solid #293542;
  background:
    linear-gradient(#111923 0 0) top/100% 34px no-repeat,
    #0d141c;
}

.visual-rag {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(106,168,255,.14) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(106,168,255,.14) 50%, transparent 50.5%),
    #0a1016;
  background-size: 52px 52px;
}

.visual-rag::before,
.visual-rag::after {
  content: "";
  position: absolute;
  border: 1px solid #2a3643;
  background: #111923;
}

.visual-rag::before {
  width: 46%;
  height: 42%;
  left: 8%;
  top: 20%;
}

.visual-rag::after {
  width: 30%;
  height: 24%;
  right: 8%;
  bottom: 18%;
  border-color: var(--accent-line);
}

.project-content {
  padding: 22px 22px 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project h3 {
  margin: 14px 0 10px;
  font-size: 1.46rem;
  letter-spacing: -0.035em;
  font-weight: 620;
}

.project p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  font-size: 0.93rem;
}

.project-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: #dfe6ed;
  font-size: 0.84rem;
  font-weight: 650;
}

.projects-more {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

/* CAPABILITIES */

.capability-wrap {
  display: grid;
  grid-template-columns: 0.33fr 0.67fr;
  gap: 72px;
}

.capability-title {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.capability-intro {
  color: var(--muted);
  max-width: 390px;
}

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

.capability-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row strong {
  font-weight: 560;
  color: #e4e9ef;
}

.capability-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA */

.cta {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(106,168,255,.04), transparent 35%),
    #090d12;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.cta h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(2.4rem, 5.3vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.062em;
  font-weight: 620;
}

.cta p {
  margin: 22px 0 0;
  color: var(--muted);
  max-width: 680px;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--line);
  background: #070a0e;
}

.footer-main {
  padding: 68px 0 54px;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(120px, 0.7fr));
  gap: 42px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 310px;
  font-size: 0.9rem;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #dce3ea;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

/* RESPONSIVE */

@media (max-width: 1080px) {
  .hero-grid,
  .section-header,
  .capability-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 720px;
  }

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

  .solution:last-child {
    grid-column: span 2;
    min-height: 220px;
  }

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

  .nav-dropdown-inner {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-head {
    display: none;
  }
}

@media (max-width: 840px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(8, 11, 15, 0.985);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-item,
  .nav-link {
    width: 100%;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(32, 42, 53, 0.72);
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-item-dropdown.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown-inner {
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .dropdown-entry,
  .dropdown-entry:nth-child(even),
  .dropdown-entry:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 42, 53, 0.72);
    padding: 16px 10px;
  }

  .dropdown-entry:last-child {
    border-bottom: 1px solid rgba(32, 42, 53, 0.72);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-grid {
    gap: 44px;
  }

  .section {
    padding: 82px 0;
  }

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

  .project {
    grid-column: 1;
  }

  .approach-row {
    grid-template-columns: 54px 1fr;
  }

  .approach-row p {
    grid-column: 2;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-links {
    padding-inline: 14px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.1rem);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .system-diagram {
    aspect-ratio: 1 / 0.95;
    min-height: 285px;
  }

  .node {
    width: clamp(102px, 34%, 125px);
    padding: 9px 10px;
  }

  .node-core {
    width: clamp(122px, 40%, 145px);
  }

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

  .section-title {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

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

  .solution,
  .solution:last-child {
    grid-column: auto;
    min-height: 220px;
  }

  .solution h3 {
    margin-top: 44px;
  }

  .approach-row {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .project-visual {
    height: 210px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta {
    padding: 70px 0;
  }

  .cta h2 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
