:root {
  --font-sans: "Sora", sans-serif;

  --fs-label: clamp(0.88rem, 0.22vw + 0.78rem, 1.02rem);
  --fs-small: clamp(0.98rem, 0.2vw + 0.9rem, 1.12rem);
  --fs-body: clamp(1rem, 0.26vw + 0.9rem, 1.18rem);
  --fs-body-lg: clamp(1.08rem, 0.35vw + 0.95rem, 1.36rem);
  --fs-h3: clamp(1.75rem, 1.05vw + 1.22rem, 2.55rem);
  --fs-h2: clamp(2.15rem, 1.75vw + 1.3rem, 3.5rem);
  --fs-h1: clamp(2.35rem, 2.25vw + 1.22rem, 4.45rem);
  --fs-display: clamp(2.5rem, 2.55vw + 1.28rem, 4.75rem);
  --fs-section-title: clamp(2.2rem, 2vw + 1.1rem, 4.1rem);

  --lh-tight: 1.02;
  --lh-body: 1.45;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.75rem;

  --gutter: clamp(1.25rem, 2.1vw, 2.75rem);
  --section-y: clamp(3rem, 5.4vw, 6.2rem);
  --container-main: 1280px;
  --container-wide: 1480px;
  --container-narrow: 68rem;
  --content-inset: clamp(1.5rem, 4.5vw, 6rem);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --surface-page: #eef2fa;
  --surface-1: #f6f8fd;
  --surface-2: #ebf0fa;
  --surface-3: #e1e8f6;
  --surface-soft: #dbe4f3;
  --surface-card: #f8faff;
  --surface-dark: #06070b;

  --ink-strong: #121a2a;
  --ink-body: #2c3548;
  --ink-muted: #627089;

  --text-strong: #f5f8ff;
  --text-body: #d2d9e8;
  --text-muted: #9ca8bd;

  --line-soft: rgba(173, 188, 224, 0.2);
  --line-strong: rgba(207, 220, 251, 0.36);

  --accent: #8fb5ff;
  --accent-strong: #c9dcff;
  --accent-dark: #10172a;

  --shadow-soft: 0 10px 28px rgba(1, 3, 9, 0.35);
  --shadow-card: 0 20px 42px rgba(1, 3, 9, 0.45);

  --ease: 0.2s ease;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
  scrollbar-color: rgba(170, 188, 214, 0.72) rgba(8, 12, 20, 0.9);
  scrollbar-width: thin;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* WebKit scrollbar theme (Chrome/Safari/Edge) */
::-webkit-scrollbar {
  width: 0.72rem;
}

::-webkit-scrollbar-track {
  background: rgba(8, 12, 20, 0.9);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(189, 208, 236, 0.7), rgba(130, 154, 188, 0.72));
  border-radius: var(--radius-pill);
  border: 2px solid rgba(8, 12, 20, 0.9);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(207, 222, 244, 0.86), rgba(151, 173, 203, 0.88));
}

body {
  background: radial-gradient(circle at 50% -20%, #d7dfef 0%, var(--surface-page) 56%);
  color: var(--ink-body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

html.dark body {
  background: radial-gradient(circle at 50% -20%, #1a2641 0%, #0a1225 56%);
  color: var(--text-body);
}

html.dark .page {
  background: #0a1225;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}

p {
  color: var(--ink-body);
}

a,
button {
  font: inherit;
  color: inherit;
}

.page {
  width: 100%;
  min-height: 100vh;
  background: var(--surface-page);
  overflow-x: clip;
}

.section-pad {
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: var(--fs-label);
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 239, 252, 0.56);
  background: rgba(184, 202, 225, 0.12);
  color: #f6f9ff;
  box-shadow: 0 0.35rem 1rem rgba(4, 10, 20, 0.2);
  backdrop-filter: blur(0.2rem);
  text-decoration: none;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.btn-link:focus-visible,
.hero-nav ul a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: rgba(184, 202, 225, 0.12);
  color: #f6f9ff;
  border-color: rgba(229, 239, 252, 0.56);
  box-shadow: 0 0.35rem 1rem rgba(4, 10, 20, 0.2);
}

.btn-primary:hover {
  background: rgba(200, 218, 236, 0.18);
  border-color: rgba(237, 245, 254, 0.72);
}

.btn-secondary {
  background: rgba(184, 202, 225, 0.12);
  color: #f6f9ff;
  border-color: rgba(229, 239, 252, 0.56);
  box-shadow: 0 0.35rem 1rem rgba(4, 10, 20, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(237, 245, 254, 0.72);
  background: rgba(200, 218, 236, 0.18);
}

.btn-ghost {
  background: rgba(184, 202, 225, 0.12);
  color: #f6f9ff;
  border-color: rgba(229, 239, 252, 0.56);
  box-shadow: 0 0.35rem 1rem rgba(4, 10, 20, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(237, 245, 254, 0.72);
  background: rgba(200, 218, 236, 0.18);
}

.btn-with-arrow {
  gap: 0.35rem;
  padding-right: 0.28rem;
}

.btn-arrow {
  width: 1.72rem;
  height: 1.72rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 251, 255, 0.96);
  color: #0f1b31;
  font-size: 0.82rem;
  line-height: 1;
}

.btn-with-arrow:hover .btn-arrow {
  background: #ffffff;
}

.btn-solid-light {
  background: #f7fbff;
  color: #0d1524;
  border-color: rgba(247, 251, 255, 0.9);
  box-shadow: 0 0.35rem 1rem rgba(2, 5, 10, 0.24);
}

.btn-solid-light:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.btn-solid-light .btn-arrow {
  background: #0a0f1a;
  color: #f7fbff;
}

.btn-solid-light:hover .btn-arrow {
  background: #050912;
}

.btn-solid-dark {
  background: #05070c;
  color: #f4f7ff;
  border-color: #05070c;
  box-shadow: 0 0.35rem 1rem rgba(2, 5, 10, 0.22);
}

.btn-solid-dark:hover {
  background: #0b111c;
  border-color: #0b111c;
}

.btn-solid-dark .btn-arrow {
  background: #f7fbff;
  color: #0d1524;
}

.btn-solid-dark:hover .btn-arrow {
  background: #ffffff;
}

.btn-link {
  width: fit-content;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  font-size: var(--fs-small);
  color: var(--accent-strong);
  letter-spacing: 0.01em;
  transition: color var(--ease), border-color var(--ease);
}

.btn-link:hover {
  color: #f2f7ff;
  border-color: #f2f7ff;
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(114deg, rgba(6, 10, 18, 0.42), rgba(10, 14, 24, 0.22) 44%, rgba(8, 12, 20, 0.28) 100%),
    radial-gradient(circle at 78% 26%, rgba(255, 188, 102, 0.22), rgba(17, 24, 38, 0.26) 52%, rgba(8, 12, 20, 0.36) 100%),
    url("assets/hero-city-grid.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(249, 252, 255, 0.05) 44%, rgba(8, 12, 20, 0.14) 100%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(4, 8, 16, 0.28) 0%, rgba(4, 8, 16, 0.14) 28%, rgba(4, 8, 16, 0.03) 50%, rgba(4, 8, 16, 0.12) 100%);
  pointer-events: none;
}

/* Contact page hero image */
.contact-page .hero-media {
  background:
    linear-gradient(112deg, rgba(3, 8, 18, 0.34), rgba(5, 12, 24, 0.18) 44%, rgba(3, 9, 20, 0.32) 100%),
    radial-gradient(circle at 80% 20%, rgba(142, 200, 255, 0.18), rgba(8, 18, 34, 0.2) 56%, rgba(4, 10, 20, 0.34) 100%),
    url("./assets/contact-hero-hvac.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-page .hero-media::after {
  background:
    linear-gradient(180deg, rgba(241, 248, 255, 0.16) 0%, rgba(10, 17, 28, 0.12) 45%, rgba(2, 5, 11, 0.24) 100%),
    radial-gradient(circle at 78% 16%, rgba(214, 232, 255, 0.22), rgba(214, 232, 255, 0) 42%),
    linear-gradient(90deg, rgba(3, 7, 13, 0.22) 0%, rgba(3, 7, 13, 0.14) 30%, rgba(3, 7, 13, 0.08) 55%, rgba(3, 7, 13, 0.18) 100%);
}

/* Services page hero image */
.services-page .hero-media {
  background:
    linear-gradient(112deg, rgba(4, 9, 16, 0.34), rgba(7, 13, 22, 0.24) 46%, rgba(6, 10, 18, 0.32) 100%),
    radial-gradient(circle at 84% 10%, rgba(160, 197, 255, 0.14), rgba(9, 15, 25, 0.18) 52%, rgba(4, 8, 14, 0.32) 100%),
    url("assets/images/services-hero-skyline.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-page .hero-media::after {
  background:
    linear-gradient(180deg, rgba(241, 248, 255, 0.16) 0%, rgba(10, 17, 28, 0.12) 45%, rgba(2, 5, 11, 0.24) 100%),
    radial-gradient(circle at 78% 16%, rgba(214, 232, 255, 0.2), rgba(214, 232, 255, 0) 42%),
    linear-gradient(90deg, rgba(3, 7, 13, 0.22) 0%, rgba(3, 7, 13, 0.14) 30%, rgba(3, 7, 13, 0.08) 55%, rgba(3, 7, 13, 0.18) 100%);
}

/* About page hero image */
.about-page .hero-media {
  background:
    linear-gradient(114deg, rgba(4, 9, 18, 0.34), rgba(5, 11, 20, 0.2) 44%, rgba(4, 9, 18, 0.34) 100%),
    radial-gradient(circle at 84% 24%, rgba(160, 192, 242, 0.16), rgba(13, 19, 33, 0.2) 54%, rgba(5, 10, 18, 0.34) 100%),
    url("assets/about-hero-hvac.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-page .hero-media::after {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.16) 0%, rgba(7, 13, 24, 0.12) 46%, rgba(3, 6, 12, 0.24) 100%),
    radial-gradient(circle at 82% 15%, rgba(227, 237, 255, 0.2), rgba(227, 237, 255, 0) 42%),
    linear-gradient(90deg, rgba(4, 8, 16, 0.22) 0%, rgba(4, 8, 16, 0.14) 28%, rgba(4, 8, 16, 0.08) 52%, rgba(4, 8, 16, 0.18) 100%);
}

/* Clients page hero image */
.clients-page .hero-media {
  background:
    linear-gradient(112deg, rgba(5, 9, 16, 0.34), rgba(8, 13, 22, 0.22) 46%, rgba(5, 9, 16, 0.34) 100%),
    radial-gradient(circle at 82% 18%, rgba(242, 179, 101, 0.16), rgba(11, 17, 30, 0.2) 56%, rgba(5, 9, 16, 0.34) 100%),
    url("assets/clients-hero-city.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.clients-page .hero-media::after {
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.16) 0%, rgba(7, 13, 24, 0.12) 46%, rgba(3, 6, 12, 0.24) 100%),
    radial-gradient(circle at 80% 14%, rgba(240, 202, 150, 0.22), rgba(240, 202, 150, 0) 42%),
    linear-gradient(90deg, rgba(4, 8, 16, 0.22) 0%, rgba(4, 8, 16, 0.14) 28%, rgba(4, 8, 16, 0.08) 52%, rgba(4, 8, 16, 0.18) 100%);
}

.scene-line {
  position: absolute;
  height: clamp(0.7rem, 1vw, 1.1rem);
  border-radius: var(--radius-pill);
  background: rgba(248, 245, 236, 0.78);
  box-shadow: 0 0 0 1px rgba(236, 232, 223, 0.4) inset;
}

.scene-line-main {
  width: 190%;
  top: 42%;
  left: -46%;
  transform: rotate(34deg);
}

.scene-line-secondary {
  width: 196%;
  bottom: 14%;
  left: -6%;
  transform: rotate(-24deg);
}

.scene-line-tertiary {
  width: 72%;
  top: 20%;
  left: 22%;
  transform: rotate(-16deg);
}

.infra-block {
  position: absolute;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(171, 221, 255, 0.98), rgba(69, 169, 236, 0.88));
  box-shadow: 0 1.2rem 2.8rem rgba(13, 40, 94, 0.2);
}

.infra-block-top {
  width: clamp(5.5rem, 8vw, 10rem);
  height: clamp(1.4rem, 2vw, 2.2rem);
  top: 7%;
  right: 6%;
  transform: rotate(-24deg);
}

.infra-block-mid {
  width: clamp(4.5rem, 6.4vw, 7.2rem);
  height: clamp(1.1rem, 1.5vw, 1.8rem);
  top: 16%;
  right: 2%;
  transform: rotate(-26deg);
}

.infra-block-bottom {
  width: clamp(6.6rem, 10vw, 13rem);
  height: clamp(1.6rem, 2vw, 2.5rem);
  bottom: 8%;
  left: 48%;
  transform: rotate(14deg);
  opacity: 0.84;
}

.infra-node {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #f8fdb6 0%, #d9ef3f 42%, #95bc12 100%);
  box-shadow: 0 1rem 2.25rem rgba(17, 54, 120, 0.24);
}

.infra-node-a {
  width: clamp(4.8rem, 6.2vw, 8.4rem);
  top: 10.5%;
  left: 48%;
}

.infra-node-b {
  width: clamp(5rem, 7vw, 9.2rem);
  bottom: 22%;
  left: 42%;
}

.hero-core {
  position: absolute;
  width: clamp(10.5rem, 15vw, 19rem);
  aspect-ratio: 0.48;
  right: 16%;
  top: 20%;
  border-radius: 2rem;
  background: linear-gradient(168deg, rgba(247, 250, 255, 0.96), rgba(218, 229, 250, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 1.6rem 3rem rgba(11, 47, 112, 0.28);
  transform: rotate(12deg);
  display: grid;
  gap: var(--space-2);
  align-content: start;
  justify-items: center;
  padding: 1rem 0.8rem 0.8rem;
}

.hero-core-cap {
  width: clamp(2.4rem, 2.7vw, 3.8rem);
  height: clamp(0.4rem, 0.6vw, 0.7rem);
  border-radius: var(--radius-pill);
  background: rgba(41, 55, 89, 0.42);
}

.hero-core-title {
  width: 88%;
  color: #18253f;
  font-size: var(--fs-small);
  font-weight: 600;
}

.hero-core-chart {
  width: 88%;
  height: 36%;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 80% 24%, rgba(218, 237, 255, 0.68), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(20, 77, 178, 1), rgba(43, 145, 231, 1) 65%, rgba(79, 200, 255, 1) 100%);
}

.hero-core-line {
  width: 88%;
  height: 0.72rem;
  border-radius: var(--radius-pill);
  background: rgba(107, 123, 161, 0.44);
}

.hero-core-line.short {
  width: 58%;
}

.hero-ring {
  position: absolute;
  width: clamp(14rem, 23vw, 26rem);
  aspect-ratio: 1;
  right: -8%;
  bottom: -15%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 0 48%, rgba(90, 112, 164, 0.34) 49%, rgba(47, 58, 94, 0.44) 56%, rgba(53, 224, 236, 0.92) 70%, rgba(26, 153, 199, 1) 100%),
    repeating-linear-gradient(90deg, rgba(235, 249, 255, 0.65) 0 0.12rem, rgba(255, 255, 255, 0) 0.12rem 1rem),
    repeating-linear-gradient(0deg, rgba(235, 249, 255, 0.58) 0 0.12rem, rgba(255, 255, 255, 0) 0.12rem 1rem);
  filter: drop-shadow(0 1.2rem 2rem rgba(12, 50, 114, 0.26));
}

.hero-overlay {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  width: 100%;
  margin-inline: 0;
  padding-inline: var(--content-inset);
  padding-top: clamp(1rem, 1.4vw, 1.6rem);
  padding-bottom: clamp(2rem, 4vw, 4.2rem);
  display: flex;
  flex-direction: column;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.65rem, 0.9vw, 1.1rem);
  min-height: clamp(2.9rem, 3.6vw, 3.5rem);
  padding: clamp(0.2rem, 0.45vw, 0.42rem) 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  text-decoration: none;
  color: #f5f8ff;
  font-size: clamp(1rem, 0.28vw + 0.92rem, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand span {
  color: #ff4d5f;
}

.hero-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  flex: 1;
  justify-content: center;
  gap: clamp(0.9rem, 1.2vw, 1.5rem);
  color: rgba(238, 245, 255, 0.94);
  font-size: clamp(0.96rem, 0.18vw + 0.9rem, 1.08rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-nav ul a {
  text-decoration: none;
  color: inherit;
  opacity: 0.92;
  transition: color var(--ease), opacity var(--ease);
}

.hero-nav ul a.is-current {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1px;
}

.hero-nav li {
  transition: color var(--ease);
}

.hero-nav li:hover a {
  color: #ffffff;
  opacity: 1;
}

.hero-nav-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: var(--space-2);
}

.hero-nav-actions .btn {
  min-height: 2.55rem;
  padding: 0.22rem 0.3rem 0.22rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: clamp(0.9rem, 0.14vw + 0.86rem, 1rem);
  letter-spacing: 0.015em;
  text-transform: none;
}

.hero-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(184, 202, 225, 0.1);
  border-color: rgba(229, 239, 252, 0.62);
  color: #f7fbff;
}

.hero-nav-btn .nav-arrow {
  width: 1.68rem;
  height: 1.68rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 251, 255, 0.96);
  color: #0f1b31;
  font-size: 0.78rem;
  line-height: 1;
}

.hero-nav-btn:hover {
  background: rgba(200, 218, 236, 0.16);
  border-color: rgba(239, 246, 255, 0.76);
}

.hero-nav-btn:hover .nav-arrow {
  background: #ffffff;
}

.hero-text {
  margin-top: auto;
  margin-bottom: clamp(1.8rem, 3.2vw, 3.8rem);
  max-width: min(72rem, 100%);
  color: #f4f8ff;
}

.tag-row {
  display: flex;
  gap: var(--space-2);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.45rem);
}

.tag {
  padding: 0.34rem 0.78rem;
  border-radius: var(--radius-sm);
  font-size: clamp(0.64rem, 0.17vw + 0.61rem, 0.76rem);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(18, 58, 126, 0.72);
  border: 1px solid rgba(172, 202, 240, 0.34);
  color: #e8f2ff;
}

.tag.sport {
  background: rgba(194, 223, 32, 0.95);
  color: #0f1a2e;
  border-color: rgba(194, 223, 32, 0.95);
}

.hero h1 {
  font-size: clamp(2.05rem, 2.2vw + 1rem, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 30ch;
  color: #f3f7ff;
}

.hero-line {
  display: inline-block;
}

.kicker {
  margin-top: clamp(0.95rem, 1.6vw, 1.8rem);
  font-size: clamp(1rem, 0.32vw + 0.92rem, 1.28rem);
  line-height: 1.45;
  max-width: 46ch;
  color: rgba(231, 239, 251, 0.92);
}

.about-page .hero h1 {
  max-width: 16ch;
}

.about-page .hero-subcopy {
  margin-top: clamp(0.95rem, 1.8vw, 1.75rem);
  display: grid;
  gap: clamp(0.6rem, 1vw, 1rem);
}

.about-page .hero-subcopy .kicker {
  margin-top: 0;
  max-width: min(74ch, 100%);
  color: rgba(231, 239, 251, 0.9);
  font-size: clamp(1.08rem, 0.4vw + 0.98rem, 1.42rem);
}

.about-page .hero-subcopy .kicker-secondary {
  color: rgba(220, 231, 248, 0.82);
}

.hero-cta {
  margin-top: clamp(1.4rem, 2.3vw, 2.4rem);
  min-width: clamp(9.8rem, 7vw, 11.2rem);
  border-radius: var(--radius-pill);
}

.dark .hero-media {
  background:
    linear-gradient(120deg, rgba(1, 2, 4, 0.84), rgba(5, 7, 11, 0.72)),
    radial-gradient(circle at 74% 34%, rgba(255, 168, 66, 0.18), rgba(4, 6, 10, 0.82) 58%, rgba(1, 1, 2, 0.98) 100%),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=2600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dark .hero-media::after {
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.06) 0%, rgba(245, 248, 255, 0) 38%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.dark .scene-line {
  background: rgba(194, 199, 206, 0.38);
  box-shadow: 0 0 0 1px rgba(189, 196, 207, 0.28) inset;
}

.dark .infra-block {
  background: linear-gradient(180deg, rgba(134, 189, 235, 0.96), rgba(63, 139, 205, 0.84));
}

.dark .hero-nav {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dark .hero-nav-btn {
  background: rgba(189, 208, 236, 0.14);
  border-color: rgba(229, 240, 255, 0.56);
}

.dark .hero-nav-btn .nav-arrow {
  background: rgba(247, 251, 255, 0.94);
  color: #0c1830;
}

.dark .tag {
  background: rgba(32, 70, 137, 0.62);
  border-color: rgba(157, 182, 224, 0.28);
}

.dark .hero-cta {
  background: rgba(189, 208, 236, 0.14);
  color: #f6f9ff;
  border-color: rgba(229, 240, 255, 0.56);
}

@media (max-width: 767px) {
  .hero {
    min-height: max(46rem, 100svh);
  }

  .hero-nav {
    padding: 0.58rem 0.72rem;
  }

  .hero-nav-btn {
    padding-left: 0.28rem;
    min-width: auto;
  }

  .hero-nav-btn .nav-label {
    display: none;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-line {
    white-space: normal;
  }

  .kicker {
    font-size: 1rem;
    max-width: 34ch;
  }

  .scene-line-tertiary,
  .infra-block-bottom,
  .infra-node-a {
    display: none;
  }

  .hero-core {
    right: 6%;
    top: 23%;
    width: clamp(8.4rem, 30vw, 11rem);
  }

  .hero-ring {
    width: clamp(11rem, 46vw, 15rem);
    right: -18%;
    bottom: -10%;
  }
}

/* Success Intro */
.success-intro {
  background: linear-gradient(180deg, #070a12, #03050b);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
  width: 100%;
  margin-inline: 0;
  padding-inline: var(--content-inset);
  padding-top: clamp(2.8rem, 4.6vw, 5.2rem);
  padding-bottom: clamp(2.8rem, 4.6vw, 5.2rem);
}

.success-intro p {
  font-size: clamp(1.06rem, 0.28vw + 0.95rem, 1.28rem);
  font-weight: 600;
  color: rgba(236, 241, 251, 0.9);
}

.success-intro h2 {
  font-size: var(--fs-section-title);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #f7f9ff;
  max-width: 20ch;
}

/* About purpose feature */
.about-purpose {
  background: #e8e9ed;
  padding-inline: var(--content-inset);
  padding-top: clamp(2.6rem, 5.8vw, 6.5rem);
  padding-bottom: clamp(3rem, 8.2vw, 8.6rem);
}

.about-purpose-grid {
  width: min(100%, var(--container-wide));
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.95rem, 1.8vw, 1.8rem);
  align-items: start;
}

.about-purpose-label {
  margin: 0;
  color: #121722;
  font-size: clamp(1.02rem, 0.28vw + 0.9rem, 1.28rem);
  font-weight: 600;
  line-height: 1.2;
}

.about-purpose-content {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.8rem);
  align-content: start;
  margin-left: clamp(2rem, 3.3vw, 4.4rem);
  width: 100%;
}

.about-purpose h2 {
  margin: 0;
  color: #0b1019;
  font-size: clamp(3.35rem, 4.8vw + 0.7rem, 8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.about-purpose-subcopy {
  display: grid;
  gap: clamp(0.7rem, 1.1vw, 1rem);
  max-width: min(66ch, 100%);
}

.about-purpose-subcopy p {
  margin: 0;
  color: #2a3344;
  font-size: clamp(1.16rem, 0.34vw + 1.02rem, 1.4rem);
  line-height: 1.48;
}

/* About feature stack */
.about-feature-stack {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 8%, rgba(129, 152, 204, 0.08), transparent 34%),
    radial-gradient(circle at 80% 72%, rgba(121, 146, 198, 0.1), transparent 36%),
    linear-gradient(170deg, #0f1116 0%, #0a0c11 58%, #07090d 100%);
  border-top: 1px solid rgba(206, 219, 245, 0.12);
  border-bottom: 1px solid rgba(206, 219, 245, 0.12);
  padding-inline: var(--content-inset);
}

.about-feature-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(218, 230, 252, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(218, 230, 252, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
}

.about-feature-row {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.8vw, 3.6rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4.8rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.8rem);
}

.about-feature-row + .about-feature-row {
  border-top: 1px solid rgba(216, 227, 247, 0.16);
}

.about-feature-copy {
  display: grid;
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
  align-content: start;
  justify-items: start;
  text-align: left;
}

.about-feature-copy h2 {
  margin: 0;
  color: #f2f6ff;
  font-size: clamp(2.15rem, 2.05vw + 1.25rem, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
  font-weight: 500;
}

.about-feature-copy p {
  margin: 0;
  color: rgba(208, 218, 236, 0.76);
  font-size: clamp(1rem, 0.35vw + 0.88rem, 1.25rem);
  line-height: 1.55;
  max-width: 54ch;
}

.about-feature-subcopy {
  display: grid;
  gap: clamp(0.24rem, 0.45vw, 0.44rem);
}

.about-feature-subcopy p {
  max-width: 58ch;
}

.about-feature-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style-position: outside;
  display: grid;
  gap: clamp(0.28rem, 0.5vw, 0.5rem);
}

.about-feature-list li {
  color: rgba(208, 218, 236, 0.8);
  font-size: clamp(1rem, 0.35vw + 0.88rem, 1.25rem);
  line-height: 1.5;
  max-width: 56ch;
  text-align: left;
}

.about-feature-list li::marker {
  color: rgba(232, 240, 253, 0.82);
}

.about-feature-copy .btn {
  justify-self: start;
  margin-top: 0.25rem;
  background: rgba(249, 251, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.98);
  color: #0b1221;
  box-shadow: 0 0.75rem 2rem rgba(1, 3, 8, 0.45);
}

.about-feature-copy .btn .btn-arrow {
  background: #0e1526;
  color: #f4f8ff;
}

.about-feature-row-wide-copy .about-feature-copy h2 {
  max-width: 26ch;
}

.about-feature-row-wide-copy .about-feature-subcopy p {
  max-width: 66ch;
}

.about-feature-row-wide-copy .about-feature-list li {
  max-width: 66ch;
}

.about-feature-row-purpose .about-feature-subcopy p {
  max-width: 68ch;
}

.about-feature-row-purpose {
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
}

.about-feature-visual {
  position: relative;
  width: 100%;
  height: clamp(300px, 33vw, 430px);
  border-radius: clamp(1rem, 1.7vw, 1.7rem);
  border: 1px solid rgba(221, 232, 250, 0.2);
  background: linear-gradient(180deg, rgba(27, 31, 40, 0.88), rgba(12, 14, 20, 0.95));
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.about-feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.about-feature-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-feature-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(4, 9, 16, 0.54), rgba(4, 9, 16, 0.12) 44%, rgba(4, 9, 16, 0.56) 100%);
}

.about-feature-photo-hvac {
  background-image: url("https://images.unsplash.com/photo-1771902985060-6133bb4b2eb6?auto=format&fit=crop&w=2000&q=80");
}

.about-feature-photo-water {
  background-image: url("https://images.unsplash.com/photo-1769695832195-dfe7e9f36980?auto=format&fit=crop&w=2000&q=80");
}

.about-feature-photo-renewables {
  background-image: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=2000&q=80");
}

.services-page .services-feature-visual {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-page .services-feature-visual-hvac {
  background-image:
    linear-gradient(145deg, rgba(5, 9, 16, 0.56), rgba(5, 8, 14, 0.18) 44%, rgba(5, 9, 16, 0.58) 100%),
    url("https://images.unsplash.com/photo-1771902985060-6133bb4b2eb6?auto=format&fit=crop&w=2000&q=80");
}

.services-page .services-feature-visual-water {
  background-image:
    linear-gradient(145deg, rgba(4, 11, 18, 0.62), rgba(4, 10, 16, 0.22) 46%, rgba(4, 10, 16, 0.56) 100%),
    url("https://images.unsplash.com/photo-1769695832195-dfe7e9f36980?auto=format&fit=crop&w=2000&q=80");
}

.services-page .services-feature-visual-renewables {
  background-image:
    linear-gradient(145deg, rgba(7, 11, 18, 0.5), rgba(7, 11, 18, 0.12) 48%, rgba(7, 11, 18, 0.46) 100%),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=2000&q=80");
}

.about-feature-visual-top {
  background:
    radial-gradient(circle at 80% 12%, rgba(199, 214, 244, 0.12), transparent 40%),
    linear-gradient(170deg, rgba(19, 22, 29, 0.96) 0%, rgba(10, 12, 17, 0.98) 100%);
}

.feature-chart-card {
  position: absolute;
  top: clamp(0.85rem, 1.8vw, 1.4rem);
  right: clamp(0.85rem, 1.8vw, 1.5rem);
  width: min(92%, 410px);
  height: clamp(195px, 20vw, 270px);
  border-radius: 1rem;
  border: 1px solid rgba(226, 237, 253, 0.18);
  background: linear-gradient(180deg, rgba(34, 38, 47, 0.86), rgba(19, 22, 29, 0.92));
  padding: clamp(0.7rem, 1.2vw, 1rem);
}

.feature-chart-card p {
  margin: 0;
  color: rgba(241, 247, 255, 0.92);
  font-size: clamp(0.92rem, 0.2vw + 0.84rem, 1.08rem);
  font-weight: 500;
}

.feature-chart-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 1rem;
  height: 58%;
  border-radius: 0.7rem;
  background:
    linear-gradient(180deg, rgba(235, 243, 255, 0.06), rgba(235, 243, 255, 0)),
    linear-gradient(125deg, transparent 0 18%, rgba(247, 251, 255, 0.45) 19% 22%, transparent 23% 38%, rgba(247, 251, 255, 0.24) 39% 44%, transparent 45% 100%);
  border: 1px solid rgba(224, 235, 252, 0.14);
}

.feature-widget-card {
  position: absolute;
  left: clamp(0.7rem, 1.4vw, 1.2rem);
  bottom: clamp(0.85rem, 1.8vw, 1.5rem);
  width: min(90%, 360px);
  border-radius: 0.95rem;
  border: 1px solid rgba(225, 236, 252, 0.2);
  background: linear-gradient(180deg, rgba(29, 33, 42, 0.9), rgba(13, 16, 22, 0.96));
  padding: clamp(0.65rem, 1.1vw, 0.9rem);
  display: grid;
  gap: 0.55rem;
}

.feature-widget-title {
  margin: 0;
  color: rgba(239, 246, 255, 0.93);
  font-size: clamp(0.85rem, 0.2vw + 0.8rem, 1rem);
}

.feature-widget-pill {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.feature-widget-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border-radius: 0.6rem;
  background: rgba(250, 253, 255, 0.1);
  border: 1px solid rgba(245, 250, 255, 0.2);
  color: rgba(236, 243, 252, 0.88);
  font-size: 0.78rem;
}

.feature-widget-amount {
  border-top: 1px solid rgba(233, 242, 255, 0.16);
  padding-top: 0.55rem;
  display: grid;
  gap: 0.15rem;
}

.feature-widget-amount p {
  margin: 0;
}

.feature-widget-amount p:first-child {
  color: rgba(212, 224, 244, 0.64);
  font-size: 0.72rem;
}

.feature-widget-amount p:last-child {
  color: rgba(241, 247, 255, 0.95);
  font-size: 0.96rem;
  font-weight: 500;
}

.about-feature-visual-bottom {
  background:
    radial-gradient(circle at 10% 82%, rgba(174, 193, 232, 0.16), transparent 46%),
    linear-gradient(165deg, rgba(17, 21, 30, 0.96) 0%, rgba(8, 11, 16, 0.97) 100%);
}

.feature-table-card {
  position: absolute;
  inset: clamp(0.9rem, 1.8vw, 1.4rem);
  border-radius: 1rem;
  border: 1px solid rgba(224, 236, 252, 0.2);
  background: linear-gradient(180deg, rgba(32, 36, 46, 0.86), rgba(13, 16, 22, 0.95));
  padding: clamp(0.75rem, 1.4vw, 1.1rem);
  display: grid;
  gap: 0.45rem;
}

.feature-table-head,
.feature-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.7fr;
  gap: 0.6rem;
  align-items: center;
}

.feature-table-head {
  color: rgba(211, 224, 247, 0.74);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(220, 232, 251, 0.2);
  padding-bottom: 0.5rem;
}

.feature-table-row {
  min-height: 2.1rem;
  border-bottom: 1px solid rgba(214, 228, 250, 0.11);
  color: rgba(235, 244, 255, 0.88);
  font-size: 0.84rem;
}

.feature-table-row:last-child {
  border-bottom: 0;
}

/* Strategy */
.strategy {
  position: relative;
  overflow: hidden;
  color: var(--text-strong);
  background:
    radial-gradient(circle at 20% 0%, rgba(96, 122, 182, 0.2), transparent 43%),
    radial-gradient(circle at 6% 92%, rgba(56, 74, 118, 0.22), transparent 34%),
    linear-gradient(170deg, #131a27 0%, #0f1521 44%, #0b1019 100%);
  border-top: 0;
  border-bottom: 0;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.strategy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(1, 4, 10, 0.32) 52%, rgba(1, 4, 10, 0.76) 100%);
}

.strategy-head,
.offer-list,
.strategy-footer {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container-narrow));
  margin-inline: auto;
}

.strategy-head {
  text-align: center;
  display: grid;
  gap: var(--space-3);
}

.strategy h2 {
  font-size: var(--fs-section-title);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  max-width: 13ch;
  margin-inline: auto;
  color: var(--text-strong);
}

.offer-list {
  margin-top: var(--space-5);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.offer-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(1.18rem, 1.3vw + 0.9rem, 1.75rem);
  font-weight: 500;
  color: rgba(216, 226, 246, 0.78);
  padding-right: var(--space-2);
}

.offer-no {
  font-size: var(--fs-label);
  letter-spacing: 0.06em;
  color: rgba(178, 191, 218, 0.52);
}

.strategy-footer {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

.strategy-footer p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.strategy-footer .btn-with-arrow {
  gap: var(--space-3);
  padding: 0.4rem 0.54rem 0.4rem 1rem;
  text-transform: none;
  letter-spacing: normal;
  font-size: var(--fs-small);
}

/* Stories */
.story-card {
  min-height: clamp(430px, 68vh, 760px);
  position: relative;
  overflow: hidden;
  color: var(--text-strong);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: var(--space-3);
  padding-inline: var(--content-inset);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  border-top: 0;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 12, 0.7) 0%, rgba(3, 6, 12, 0.52) 45%, rgba(2, 4, 9, 0.9) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 46%);
}

.story-top,
.story-service,
.story-bottom,
.story-center {
  position: relative;
  z-index: 2;
}

.story-top {
  display: grid;
  gap: var(--space-2);
}

.story-center {
  display: grid;
  gap: var(--space-2);
  align-self: center;
  justify-self: center;
  align-items: center;
  justify-items: center;
  text-align: center;
  width: 100%;
  max-width: min(96vw, 80rem);
}

.story-summary {
  font-size: clamp(0.9rem, 0.5vw + 0.7rem, var(--fs-small));
  line-height: 1.35;
  color: rgba(238, 242, 251, 0.95);
  max-width: 100%;
  width: auto;
  text-align: center;
  margin-inline: auto;
  white-space: normal;
  overflow-wrap: anywhere;
  overflow: visible;
}

.story-service {
  font-size: var(--fs-body);
  font-weight: 700;
  color: rgba(242, 246, 255, 0.98);
  text-align: center;
  margin-inline: auto;
}

.story-bottom {
  display: grid;
  gap: var(--space-2);
  align-self: end;
  justify-self: start;
}

.story-card h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  color: var(--text-strong);
}

.story-card .btn-link {
  font-size: clamp(1rem, 1vw + 0.82rem, 1.35rem);
  color: #e8f0ff;
  border-color: rgba(232, 240, 255, 0.9);
}

.tiny-mobile {
  background-image: url("assets/hvac-dashboard.png");
  background-position: center;
}

.holon-iq {
  background-image: url("https://images.pexels.com/photos/15751132/pexels-photo-15751132.jpeg?auto=compress&cs=tinysrgb&w=2400");
  background-position: center;
}

.stoov {
  background-image: url("assets/water-damage.png");
  background-position: center;
}

/* Value Props */
.value-props {
  background: linear-gradient(180deg, #07080d 0%, #03050a 100%);
  padding-inline: var(--content-inset);
  padding-top: clamp(2rem, 4vw, 4.2rem);
  padding-bottom: clamp(2rem, 4vw, 4.2rem);
}

.value-props-wrap {
  width: 100%;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}

.value-props-intro {
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.value-props-kicker {
  color: rgba(208, 220, 246, 0.72);
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-props-intro h2 {
  color: #f4f8ff;
  font-size: var(--fs-section-title);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.value-props-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 1.7vw, 1.4rem);
  justify-items: stretch;
}

.value-prop-card {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.95), rgba(233, 240, 251, 0.95));
  border-radius: clamp(0.9rem, 1.4vw, 1.2rem);
  border: 1px solid rgba(220, 230, 246, 0.9);
  box-shadow: 0 1rem 2.1rem rgba(1, 3, 8, 0.34);
  padding: clamp(1.1rem, 2.1vw, 1.8rem);
  display: grid;
  gap: var(--space-3);
  align-content: start;
  width: 100%;
  max-width: none;
}

.value-prop-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
}

.value-prop-icon {
  width: clamp(2.3rem, 0.6vw + 2.05rem, 2.75rem);
  height: clamp(2.3rem, 0.6vw + 2.05rem, 2.75rem);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7eefb;
  color: #101929;
  font-size: clamp(1.1rem, 0.45vw + 0.9rem, 1.3rem);
  line-height: 1;
}

.value-prop-card h3 {
  font-size: clamp(1.3rem, 0.54vw + 1.08rem, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #141c2e;
  font-weight: 600;
}

.value-prop-card p {
  font-size: var(--fs-body);
  line-height: 1.42;
  color: #3b455a;
  max-width: none;
}

/* Contact About */
.contact-about {
  background: linear-gradient(180deg, #eceef2 0%, #e9ebf0 100%);
  border-top: 0;
  border-bottom: 0;
  padding-inline: var(--content-inset);
  padding-top: clamp(2rem, 3.8vw, 3.6rem);
  padding-bottom: clamp(2rem, 3.8vw, 3.8rem);
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2.1rem);
}

.contact-about-head {
  width: 100%;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 1.6vw, 1.3rem);
  align-items: start;
}

.contact-about-label {
  color: #b56a57;
  font-size: clamp(1.2rem, 0.7vw + 0.88rem, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
}

.contact-about-copy {
  display: grid;
  gap: clamp(0.6rem, 1.4vw, 1rem);
  width: 100%;
  max-width: none;
}

.contact-about-copy h2 {
  color: #2f333b;
  font-size: clamp(2.7rem, 2.9vw + 1.1rem, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: none;
}

.contact-about-copy p {
  color: #6a707b;
  font-size: clamp(1.5rem, 1.05vw + 0.92rem, 2.55rem);
  line-height: 1.28;
  max-width: 36ch;
}

.contact-about-pillars {
  width: 100%;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.2vw, 0.95rem);
}

.contact-about-card {
  background: #f1f2f5;
  border: 1px solid rgba(219, 222, 230, 0.95);
  min-height: 11.2rem;
  padding: clamp(0.95rem, 1.6vw, 1.2rem);
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.contact-about-card::before {
  content: "";
  width: 1.45rem;
  height: 1px;
  background: rgba(70, 75, 86, 0.55);
  display: block;
  margin-bottom: 0.12rem;
}

.contact-card-title {
  color: #363b45;
  font-size: clamp(1.18rem, 0.3vw + 1.02rem, 1.34rem);
  font-weight: 600;
  line-height: 1.32;
}

.contact-card-body {
  color: #868b95;
  font-size: clamp(0.98rem, 0.24vw + 0.86rem, 1.14rem);
  line-height: 1.42;
}

/* Contact Form */
.contact-talk {
  background:
    linear-gradient(102deg, rgba(8, 10, 14, 0.76) 0%, rgba(8, 10, 14, 0.86) 52%, rgba(4, 6, 10, 0.95) 100%),
    radial-gradient(circle at 18% 16%, rgba(118, 132, 158, 0.2), transparent 42%),
    radial-gradient(circle at 86% 92%, rgba(90, 104, 130, 0.18), transparent 44%),
    url("https://images.unsplash.com/photo-1515169067868-5387ec356754?auto=format&fit=crop&w=2600&q=80");
  background-size: cover;
  background-position: center;
  border-top: 0;
  border-bottom: 0;
  padding-inline: var(--content-inset);
  padding-top: clamp(2.2rem, 3.8vw, 3.9rem);
  padding-bottom: clamp(2.2rem, 3.8vw, 3.9rem);
}

.contact-talk-shell {
  width: 100%;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 2.7vw, 2.2rem);
  align-items: start;
  min-height: 0;
}

.contact-talk-copy {
  display: grid;
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
  align-content: start;
}

.contact-talk-copy h2 {
  color: #fff6f4;
  font-size: clamp(2.6rem, 2.6vw + 1.5rem, 4.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact-talk-intro {
  color: rgba(253, 242, 240, 0.88);
  font-size: clamp(1.02rem, 0.45vw + 0.88rem, 1.35rem);
  line-height: 1.48;
  max-width: 36ch;
}

.contact-talk-meta {
  margin-top: clamp(0.45rem, 0.9vw, 0.65rem);
  display: grid;
  gap: 0.2rem;
}

.contact-meta-label {
  color: rgba(251, 237, 235, 0.84);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-talk-meta a {
  color: #fff5f2;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  font-size: clamp(1rem, 0.25vw + 0.9rem, 1.2rem);
  line-height: 1.3;
}

.contact-talk-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 252, 0.94) 100%);
  border: 1px solid rgba(236, 239, 246, 0.95);
  border-radius: 1.15rem;
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow:
    0 1.8rem 4rem rgba(9, 4, 8, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.38) inset;
  padding: clamp(1.3rem, 2.3vw, 2.2rem);
  display: grid;
  gap: 0.72rem;
  max-width: 100%;
}

.contact-talk-form label {
  color: #2b2f39;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.34rem;
}

.contact-talk-form select,
.contact-talk-form input,
.contact-talk-form textarea {
  width: 100%;
  border: 1px solid rgba(218, 223, 231, 0.95);
  background: linear-gradient(180deg, #f8fafd 0%, #f1f4f9 100%);
  color: #252a34;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 0.82rem 0.9rem;
  border-radius: 0.52rem;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.contact-talk-form textarea {
  min-height: 8.6rem;
  resize: vertical;
}

.contact-talk-form select:focus-visible,
.contact-talk-form input:focus-visible,
.contact-talk-form textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 95, 48, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 95, 48, 0.16);
  background: #f8fafc;
}

.contact-talk-form p {
  color: #4f5665;
  font-size: 0.86rem;
  line-height: 1.55;
  margin-top: 0.4rem;
}

.contact-submit {
  margin-top: 0.45rem;
  border: 0;
  border-radius: 0.55rem;
  min-height: 3rem;
  width: 100%;
  background: linear-gradient(90deg, #ff612e, #ff4f1c);
  color: #fffaf8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0.95rem 1.6rem rgba(255, 79, 28, 0.34);
  transition: filter var(--ease), transform var(--ease), box-shadow var(--ease);
}

.contact-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 1rem 1.8rem rgba(255, 79, 28, 0.42);
}

.contact-alt {
  margin-top: 0.3rem;
  color: #5c6372;
  font-size: 0.82rem;
}

.contact-alt a {
  color: #d04a27;
  text-decoration: none;
}

.contact-alt a:hover {
  text-decoration: underline;
}

/* Partners Proof */
.partners-proof.section-pad {
  position: relative;
  background: linear-gradient(180deg, #f7f8fb 0%, #f1f4fa 100%);
  width: 100%;
  padding-inline: var(--content-inset);
  padding-top: clamp(3.2rem, 5.6vw, 5.4rem);
  padding-bottom: clamp(3.2rem, 5.6vw, 5.4rem);
  display: grid;
  justify-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.partners-proof.section-pad::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(241, 244, 250, 0) 0%, rgba(233, 238, 247, 0.82) 100%);
  pointer-events: none;
}

.partners-proof.is-dark {
  background:
    radial-gradient(circle at 80% 18%, rgba(241, 177, 96, 0.09), transparent 34%),
    radial-gradient(circle at 8% 84%, rgba(84, 122, 217, 0.08), transparent 34%),
    linear-gradient(180deg, #0a0d15 0%, #070a11 58%, #06080d 100%);
}

.partners-proof.is-dark::after {
  background: linear-gradient(180deg, rgba(8, 11, 18, 0) 0%, rgba(5, 8, 14, 0.86) 100%);
}

.partners-proof.is-dark .partners-label {
  color: rgba(213, 223, 246, 0.78);
}

.partners-proof.is-dark h2 {
  color: #f2f6ff;
}

.partners-proof.is-dark .partner-logo {
  border-color: rgba(228, 236, 250, 0.92);
  box-shadow: 0 0.8rem 1.6rem rgba(1, 3, 10, 0.46);
}

.partners-label {
  color: #5f6783;
  font-size: clamp(0.92rem, 0.26vw + 0.82rem, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partners-proof h2 {
  color: #171f33;
  font-size: clamp(2.25rem, 1.7vw + 1.55rem, 3.55rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-align: center;
}

.partners-grid {
  width: min(100%, 1180px);
  margin: clamp(0.65rem, 1vw, 0.95rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.25rem);
}

.partner-logo {
  min-height: clamp(4.5rem, 5vw, 5.6rem);
  border-radius: 0.8rem;
  border: 1px solid rgba(213, 222, 238, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
  box-shadow: 0 0.55rem 1.2rem rgba(18, 26, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 0.95vw, 0.78rem);
  overflow: hidden;
}

.partner-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(3.05rem, 3.6vw, 4.3rem);
  object-fit: contain;
}

.partner-logo-boost img {
  transform: scale(1.28);
  transform-origin: center;
}

.partner-logo-equiton img {
  transform: scale(1.56);
}

.partner-logo-greenwin img {
  transform: scale(1.5);
}

.partner-logo-minto img {
  transform: scale(1.22);
}

.partner-logo-sorbara img {
  transform: scale(0.82);
}

.partner-ahrefs {
  color: #3152c6;
}

.partner-microsoft {
  color: #5e6777;
}

.partner-helpscout {
  color: #1b7ea9;
}

.partner-jotform {
  color: #202a56;
}

.partner-amazon {
  color: #202734;
}

.partner-notion {
  color: #1a1d23;
}

.partner-linkedin {
  color: #0b66c2;
}

.partner-circle {
  color: #4f4fb1;
}

.partner-slack {
  color: #3f1f59;
}

.partner-hubspot {
  color: #ff653d;
}

.partner-stripe {
  color: #655dff;
}

.partner-shopify {
  color: #2d9140;
}

.partner-atlassian {
  color: #0152cc;
}

.partner-dropbox {
  color: #0063ff;
}

.partner-asana {
  color: #ee6a6a;
}

.partner-adobe {
  color: #fa0f00;
}

/* Climate Highlight */
.climate-highlight.section-pad {
  background: #0a0c13;
  width: 100%;
  padding-inline: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.climate-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 18%, rgba(242, 176, 104, 0.09), transparent 42%),
    radial-gradient(circle at 4% 96%, rgba(242, 176, 104, 0.08), transparent 32%),
    linear-gradient(164deg, #0a0c13 0%, #080a10 58%, #06070c 100%);
  border-top: 1px solid rgba(227, 236, 252, 0.08);
  border-bottom: 1px solid rgba(227, 236, 252, 0.08);
  min-height: clamp(26.5rem, 40vw, 36rem);
  padding-inline: var(--content-inset);
  padding-top: clamp(1.85rem, 2.6vw, 2.6rem);
  padding-bottom: clamp(1.85rem, 2.6vw, 2.6rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(0.95rem, 1.8vw, 1.65rem);
}

.climate-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 10, 0) 48%, rgba(3, 5, 10, 0.45) 74%, rgba(3, 5, 10, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.climate-header,
.climate-map,
.climate-content-row {
  position: relative;
  z-index: 2;
}

.climate-header {
  display: block;
}

.climate-header h2 {
  color: #f1f5ff;
  font-size: clamp(2rem, 1.45vw + 1.28rem, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: none;
  display: grid;
  gap: 0.06em;
  justify-items: start;
}

.climate-title-line {
  display: block;
}

.climate-map {
  position: relative;
  align-self: end;
  justify-self: stretch;
  height: clamp(130px, 16vw, 190px);
  pointer-events: none;
  opacity: 0.76;
}

.continent {
  position: absolute;
  background-image: radial-gradient(circle, rgba(234, 183, 117, 0.34) 1.15px, transparent 1.5px);
  background-size: 7px 7px;
}

.continent-west {
  width: 36%;
  height: 84%;
  left: 2%;
  bottom: 0;
  clip-path: polygon(10% 46%, 24% 21%, 49% 14%, 70% 27%, 78% 49%, 66% 73%, 42% 82%, 22% 71%);
}

.continent-east {
  width: 54%;
  height: 88%;
  left: 38%;
  bottom: 2%;
  clip-path: polygon(6% 56%, 22% 22%, 52% 16%, 68% 28%, 83% 27%, 95% 45%, 78% 72%, 49% 79%, 24% 71%);
}

.climate-content-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  align-items: end;
}

.climate-btn {
  justify-self: start;
  background: #fafcff;
  color: #101729;
  border-color: #fafcff;
  box-shadow: 0 0.7rem 1.6rem rgba(2, 5, 12, 0.34);
}

.climate-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.climate-btn .btn-arrow {
  background: #0f1628;
  color: #f6f9ff;
}

.climate-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 1.2vw, 1rem);
}

.climate-stat {
  display: grid;
  gap: 0.4rem;
}

.climate-value {
  color: #efb56f;
  font-size: clamp(1.95rem, 1.2vw + 1.38rem, 2.9rem);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.02em;
}

.climate-caption {
  color: rgba(220, 229, 247, 0.86);
  font-size: clamp(0.88rem, 0.14vw + 0.83rem, 0.98rem);
  line-height: 1.4;
  max-width: 32ch;
}

@media (min-width: 700px) {
  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .partner-logo {
    min-height: clamp(4.75rem, 4.4vw, 5.7rem);
  }
}

@media (min-width: 1024px) {
  .climate-card {
    min-height: clamp(27rem, 34vw, 33rem);
    padding-top: clamp(1.7rem, 2.2vw, 2.2rem);
    padding-bottom: clamp(1.7rem, 2.2vw, 2.2rem);
    gap: 0.8rem;
  }

  .climate-header h2 {
    font-size: clamp(2.25rem, 1.05vw + 1.82rem, 3.02rem);
    max-width: none;
  }

  .climate-title-line {
    white-space: nowrap;
  }

  .climate-map {
    position: absolute;
    left: 4.6%;
    right: 16%;
    bottom: clamp(5.35rem, 7vw, 6.9rem);
    height: clamp(120px, 12.5vw, 170px);
    opacity: 0.78;
  }

  .climate-content-row {
    display: block;
    min-height: clamp(150px, 18vw, 220px);
  }

  .climate-btn {
    position: absolute;
    left: var(--content-inset);
    bottom: clamp(1.55rem, 2.2vw, 2.2rem);
    z-index: 3;
  }

  .climate-stats {
    position: absolute;
    right: var(--content-inset);
    bottom: clamp(1.4rem, 2.15vw, 2.1rem);
    z-index: 3;
    width: min(100%, 690px);
    grid-template-columns: minmax(210px, 1fr) minmax(260px, 1fr);
    grid-template-areas:
      ". main"
      "secondary tertiary";
    align-items: end;
    column-gap: clamp(1.25rem, 1.9vw, 1.95rem);
    row-gap: clamp(0.72rem, 1vw, 0.95rem);
    justify-self: auto;
  }

  .climate-stat-main {
    grid-area: main;
    justify-self: end;
    align-self: end;
    text-align: left;
  }

  .climate-stat-secondary {
    grid-area: secondary;
    justify-self: start;
    text-align: left;
  }

  .climate-stat-tertiary {
    grid-area: tertiary;
    justify-self: start;
    text-align: left;
  }

  .climate-stat-main .climate-value {
    font-size: clamp(3.42rem, 1.75vw + 2rem, 4.6rem);
    line-height: 0.94;
  }

  .climate-stat-main .climate-caption {
    font-size: clamp(0.82rem, 0.12vw + 0.79rem, 0.92rem);
    max-width: 24ch;
  }

  .climate-stat-secondary .climate-value,
  .climate-stat-tertiary .climate-value {
    font-size: clamp(2.75rem, 1.05vw + 1.85rem, 3.55rem);
    line-height: 0.96;
  }

  .climate-stat-secondary .climate-caption,
  .climate-stat-tertiary .climate-caption {
    font-size: clamp(0.86rem, 0.08vw + 0.82rem, 0.95rem);
    max-width: 24ch;
  }
}

@media (min-width: 1280px) {
  .climate-card {
    min-height: clamp(29rem, 33vw, 34rem);
  }

  .climate-header h2 {
    font-size: clamp(2.45rem, 0.9vw + 2.05rem, 3.2rem);
  }

  .climate-map {
    right: 17%;
    bottom: clamp(5.35rem, 6.4vw, 6.35rem);
    height: clamp(128px, 10.4vw, 168px);
  }

  .climate-stats {
    width: min(100%, 700px);
  }
}

/* Growth CTA */
.growth-cta {
  background: linear-gradient(180deg, #f8faff, #ecf1fb);
  border-top: 0;
  border-bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding-inline: var(--content-inset);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.growth-cta h2 {
  font-size: var(--fs-section-title);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  max-width: 16ch;
}

.growth-cta p {
  max-width: 34ch;
  color: var(--ink-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.growth-cta .btn-with-arrow {
  justify-self: start;
  width: fit-content;
  border-radius: var(--radius-pill);
}

/* Footer */
.closing {
  background: linear-gradient(180deg, #0b0e15, #06070b);
  color: var(--text-strong);
  padding-inline: 0;
  padding-top: clamp(1.8rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.footer-shell {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding-top: clamp(1.2rem, 2.6vw, 2.6rem);
  padding-bottom: clamp(1.2rem, 2.6vw, 2.6rem);
  padding-inline: var(--content-inset);
  display: grid;
  gap: clamp(1.3rem, 2.5vw, 2.6rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.footer-brand-block {
  display: grid;
  gap: var(--space-3);
}

.footer-logo {
  margin: 0;
  font-size: clamp(1.35rem, 0.9vw + 1rem, 1.9rem);
  font-weight: 600;
  line-height: 1;
  color: #f4f8ff;
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: #ff5f86;
  margin-left: 0.12em;
}

.footer-blurb {
  margin: 0;
  color: rgba(231, 238, 250, 0.82);
  font-size: var(--fs-body);
  line-height: 1.38;
  max-width: 34ch;
}

.footer-subscribe {
  display: grid;
  gap: var(--space-4);
}

.footer-subscribe-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-subscribe-head p {
  margin: 0;
  color: #f2f7ff;
  font-size: clamp(1.28rem, 1vw + 0.95rem, 2rem);
  letter-spacing: -0.02em;
}

.footer-submit {
  width: clamp(2.7rem, 1.6vw + 2.1rem, 3.6rem);
  height: clamp(2.7rem, 1.6vw + 2.1rem, 3.6rem);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240, 246, 255, 0.84);
  background: #f5f8ff;
  color: #0a1020;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.55vw + 0.8rem, 1.3rem);
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease);
}

.footer-submit:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.footer-input-line {
  width: 100%;
  height: 1px;
  background: rgba(226, 235, 250, 0.52);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.footer-browse {
  display: grid;
  gap: var(--space-2);
}

.footer-heading {
  margin: 0;
  color: rgba(223, 232, 248, 0.78);
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
}

.footer-browse ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.footer-browse li {
  color: #f3f8ff;
  font-size: clamp(1.28rem, 0.72vw + 1rem, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.7rem);
}

.footer-col {
  display: grid;
  gap: var(--space-2);
  align-content: start;
}

.footer-col p,
.footer-col a {
  margin: 0;
  color: rgba(236, 242, 252, 0.86);
  font-size: var(--fs-body);
  line-height: 1.35;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col a[href^="mailto"] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (min-width: 900px) {
  .hero-nav ul {
    display: flex;
  }

  .hero-nav-btn .nav-label {
    display: inline;
  }
}

/* Tablet */
@media (min-width: 768px) {
  :root {
    --gutter: clamp(1.25rem, 2.4vw, 2.5rem);
  }

  .hero-overlay {
    padding-top: var(--space-5);
    padding-bottom: var(--space-7);
  }

  .hero-text {
    max-width: min(60rem, 90%);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-core {
    right: 12%;
    top: 17%;
  }

  .success-intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
  }

  .success-intro h2 {
    justify-self: end;
  }

  .about-purpose-grid {
    grid-template-columns: minmax(100px, 0.14fr) minmax(0, 1.86fr);
    gap: clamp(0.75rem, 1.45vw, 1.5rem);
  }

  .about-purpose-content {
    margin-left: clamp(6.8rem, 9.2vw, 12rem);
  }

  .about-purpose-subcopy {
    max-width: 63ch;
  }

  .about-purpose h2 {
    font-size: clamp(3.9rem, 4.45vw + 0.45rem, 8.4rem);
    max-width: 21ch;
  }

  .about-feature-row {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 560px);
  }

  .about-feature-row-reverse {
    grid-template-columns: minmax(460px, 560px) minmax(0, 1fr);
  }

  .about-feature-row-purpose {
    gap: clamp(1rem, 1.8vw, 1.8rem);
  }

  .contact-about-head {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: clamp(1.4rem, 2.7vw, 3.2rem);
  }

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

  .contact-talk-shell {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.9rem, 3vw, 3rem);
    padding: 0;
  }

  .contact-talk-form {
    justify-self: end;
    width: min(100%, 36rem);
  }

  .about-feature-row-reverse .about-feature-copy {
    order: 2;
  }

  .about-feature-row-reverse .about-feature-visual {
    order: 1;
  }

  .about-feature-copy h2 {
    font-size: clamp(2.4rem, 1.7vw + 1.5rem, 3.8rem);
  }

  .about-feature-row-wide-copy .about-feature-subcopy p,
  .about-feature-row-wide-copy .about-feature-list li {
    max-width: 72ch;
  }

  .about-feature-row-wide-copy .about-feature-copy h2 {
    max-width: 28ch;
  }

  .strategy-footer {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .story-card {
    min-height: clamp(520px, 74vh, 900px);
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .story-top {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .story-summary {
    justify-self: end;
    max-width: min(60ch, 58%);
  }

  .story-service {
    text-align: center;
    justify-self: center;
  }

  .story-bottom {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .growth-cta {
    grid-template-columns: minmax(340px, 1.2fr) minmax(220px, 0.9fr);
    align-items: start;
    gap: var(--space-6);
  }

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

/* Small laptop */
@media (min-width: 1024px) {
  .hero {
    min-height: max(44rem, 100svh);
  }

  .hero-nav ul {
    gap: clamp(0.8rem, 1vw, 1.35rem);
  }

  .hero-text {
    max-width: min(76rem, 78%);
    margin-bottom: clamp(2.2rem, 3.2vw, 4.2rem);
  }

  .hero-core {
    width: clamp(11rem, 15vw, 19rem);
    right: 14%;
    top: 19%;
  }

  .hero-ring {
    width: clamp(16rem, 22vw, 26rem);
  }

  .about-purpose h2 {
    font-size: clamp(4.25rem, 3.95vw + 0.35rem, 9rem);
    max-width: 22ch;
  }

  .about-purpose-subcopy {
    max-width: 62ch;
  }

  .about-purpose-content {
    margin-left: clamp(9rem, 11.6vw, 14rem);
  }

  .about-feature-row {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 640px);
    gap: clamp(2rem, 3.1vw, 3.6rem);
  }

  .about-feature-row-reverse {
    grid-template-columns: minmax(520px, 640px) minmax(0, 1fr);
  }

  .about-feature-row-purpose {
    gap: clamp(1.2rem, 2vw, 2rem);
  }

  .contact-about-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-about-head {
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: start;
  }

  .contact-about-copy h2 {
    font-size: clamp(3.7rem, 3.35vw + 1.35rem, 6.5rem);
    max-width: none;
  }

  .contact-about-copy p {
    font-size: clamp(1.9rem, 1.3vw + 1.05rem, 3rem);
    max-width: none;
    white-space: nowrap;
  }

  .contact-talk-shell {
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2.2rem, 3.2vw, 3.4rem);
    min-height: 0;
    padding: 0;
  }

  .contact-talk-form {
    width: min(100%, 40rem);
  }

  .about-feature-copy h2 {
    font-size: clamp(2.7rem, 1.9vw + 1.65rem, 4.2rem);
  }

  .about-feature-row-wide-copy .about-feature-subcopy p,
  .about-feature-row-wide-copy .about-feature-list li {
    max-width: 76ch;
  }

  .about-feature-row-wide-copy .about-feature-copy h2 {
    max-width: 30ch;
  }

  .infra-node-b {
    left: 40%;
  }

  .story-card {
    min-height: clamp(640px, 88vh, 1120px);
  }

  .story-top,
  .story-service,
  .story-bottom {
    position: absolute;
    z-index: 2;
  }

  .story-top {
    inset: 0;
    display: block;
  }

  .story-summary {
    position: absolute;
    top: clamp(1.3rem, 2vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    max-width: min(70ch, 80vw);
    text-align: center;
    white-space: normal;
  }

  .story-service {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: normal;
    max-width: min(90vw, 36ch);
    text-align: center;
    font-size: var(--fs-body-lg);
  }

  .story-bottom {
    left: var(--content-inset);
    right: var(--content-inset);
    bottom: var(--space-5);
    display: block;
    align-items: end;
  }

  .growth-cta {
    grid-template-columns: minmax(320px, 1.25fr) minmax(220px, 0.85fr) auto;
  }

  .growth-cta .btn-with-arrow {
    justify-self: end;
  }

  .value-props-wrap {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(1.3rem, 2.4vw, 2.2rem);
  }

  .value-props-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(0.95rem, 1.5vw, 1.2rem);
  }

  .footer-top {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    gap: clamp(1.4rem, 2.5vw, 2.4rem);
  }

  .footer-main {
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(1.4rem, 2.5vw, 2.4rem);
  }
}

/* Desktop */
@media (min-width: 1280px) {
  :root {
    --section-y: clamp(3.5rem, 4.8vw, 6rem);
  }

  .strategy-head,
  .offer-list,
  .strategy-footer {
    width: min(100%, var(--container-narrow));
  }
}

/* Large monitor guardrails */
@media (min-width: 1728px) {
  :root {
    --section-y: 6.1rem;
  }

  .hero h1 {
    max-width: 30ch;
  }

  .kicker,
  .story-summary,
  .growth-cta p {
    max-width: 60ch;
  }
}

/* Desktop lock: keep text at 1440 scale and stop growth on wider monitors */
@media (min-width: 1440px) {
  :root {
    --fs-h3: 2.4rem;
    --fs-h2: 3.2rem;
    --fs-h1: 4.2rem;
    --fs-display: 4.6rem;
    --fs-section-title: 3.5rem;
  }

  .brand {
    font-size: 1.08rem;
  }

  .hero-nav ul {
    font-size: 1.03rem;
  }

  .hero-nav-actions .btn {
    font-size: 0.97rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .kicker {
    font-size: 1.32rem;
  }

  .success-intro p {
    font-size: 1.24rem;
  }

  .offer-list li {
    font-size: 1.65rem;
  }

  .story-card .btn-link {
    font-size: 1.35rem;
  }
}
