:root {
  color-scheme: dark;
  --bg: #050605;
  --ink: #f7f7f2;
  --muted: #aab5ad;
  --soft: #121713;
  --panel: rgba(12, 16, 13, 0.82);
  --line: rgba(177, 206, 188, 0.16);
  --accent: #00f082;
  --accent-deep: #00bd6a;
  --accent-soft: rgba(0, 240, 130, 0.12);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(0, 240, 130, 0.035), transparent 24%),
    var(--bg);
  color: var(--ink);
  font-family:
    "Helvetica Neue", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 300;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 18px clamp(20px, 4vw, 54px);
  background: rgba(5, 6, 5, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.action-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-group + .action-group {
  position: relative;
}

.action-group + .action-group::before {
  content: "";
  position: absolute;
  left: -13px;
  width: 1px;
  height: 26px;
  background: var(--line);
}

.social-link,
.language-toggle,
.portal-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 5, 0.28);
  color: var(--muted);
}

.social-link:hover,
.language-toggle:hover,
.portal-link:hover {
  border-color: rgba(0, 240, 130, 0.42);
  color: var(--accent);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.language-toggle {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.portal-link {
  width: auto;
  min-width: max-content;
  padding: 0 13px;
  color: #dce6df;
  font-size: 0.78rem;
  font-weight: 500;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px 15px;
  background: var(--accent);
  color: #021109;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  isolation: isolate;
  padding: 132px clamp(20px, 4vw, 54px) 42px;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 240, 130, 0.17), transparent 20%),
    radial-gradient(circle at 18% 70%, rgba(0, 240, 130, 0.1), transparent 23%),
    linear-gradient(135deg, #020302 0%, #07110b 46%, #020302 100%);
}

.data-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.42;
  background:
    linear-gradient(rgba(0, 240, 130, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 130, 0.12) 1px, transparent 1px);
  background-size: 74px 74px;
  transform: perspective(800px) rotateX(62deg) translateY(4%);
  transform-origin: center bottom;
  animation: gridDrift 18s linear infinite;
}

.summit-glow {
  position: absolute;
  width: 46vw;
  aspect-ratio: 1;
  right: 7vw;
  top: 18vh;
  border: 1px solid rgba(0, 240, 130, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 130, 0.14), transparent 64%);
  filter: blur(2px);
  animation: glowPulse 7s ease-in-out infinite;
}

.mountain-lines {
  position: absolute;
  inset: auto -4vw 0;
  width: 108vw;
  height: 68vh;
  opacity: 0.78;
}

.mountain-lines path {
  fill: none;
  stroke: rgba(0, 240, 130, 0.54);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawMountain 3.6s ease forwards, lineBreathe 6s ease-in-out infinite 3.6s;
}

.mountain-lines path:nth-child(2) {
  stroke: rgba(247, 247, 242, 0.18);
  animation-delay: 0.25s, 3.8s;
}

.mountain-lines path:nth-child(3) {
  stroke: rgba(0, 240, 130, 0.24);
  animation-delay: 0.5s, 4s;
}

.signal-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(0, 240, 130, 0.08), 0 0 32px rgba(0, 240, 130, 0.7);
  animation: nodePulse 3s ease-in-out infinite;
}

.node-a {
  right: 24vw;
  top: 30vh;
}

.node-b {
  right: 38vw;
  top: 54vh;
  animation-delay: 0.7s;
}

.node-c {
  right: 13vw;
  top: 62vh;
  animation-delay: 1.2s;
}

.node-d {
  right: 48vw;
  top: 35vh;
  animation-delay: 1.8s;
}

.node-e {
  right: 7vw;
  top: 73vh;
  animation-delay: 2.2s;
}

.metric-float {
  position: absolute;
  min-width: 58px;
  border: 1px solid rgba(0, 240, 130, 0.28);
  border-radius: var(--radius);
  padding: 9px 11px;
  background: rgba(4, 8, 5, 0.62);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: floatMetric 6s ease-in-out infinite;
}

.metric-a {
  right: 26vw;
  top: 22vh;
}

.metric-b {
  right: 10vw;
  top: 43vh;
  animation-delay: 1s;
}

.metric-c {
  right: 36vw;
  top: 71vh;
  animation-delay: 1.7s;
}

.metric-d {
  right: 45vw;
  top: 28vh;
  animation-delay: 0.45s;
}

.metric-e {
  right: 17vw;
  top: 76vh;
  animation-delay: 2.2s;
}

.metric-f {
  right: 5vw;
  top: 57vh;
  animation-delay: 2.8s;
}

.metric-g {
  right: 54vw;
  top: 64vh;
  animation-delay: 3.3s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 760px;
  font-weight: 300;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 300;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 400;
}

.hero-copy {
  max-width: 650px;
  color: #d8dfd9;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 18px;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #021109;
}

.btn.primary:hover {
  background: var(--accent-deep);
}

.btn.ghost {
  background: rgba(5, 6, 5, 0.4);
}

.section {
  width: min(var(--max), calc(100% - clamp(32px, 5vw, 80px)));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 88px) 0;
}

.split,
.section-heading,
.method-layout,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.split p,
.section-heading p,
.method-layout p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 14px;
}

.pillars article,
.service-core,
.service-lanes article,
.outcome-grid article,
.blog-card,
.steps article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.pillars article {
  min-height: 170px;
  padding: 22px;
}

.pillars span,
.service-core span,
.service-lanes span,
.blog-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pillars p,
.service-core p,
.service-lanes p,
.outcome-grid p,
.blog-card p,
.steps p {
  color: var(--muted);
  line-height: 1.65;
}

.solutions {
  width: min(1280px, calc(100% - clamp(32px, 5vw, 80px)));
}

.service-constellation {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  margin-top: 34px;
}

.service-core {
  min-height: 520px;
  padding: 28px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.2), rgba(5, 6, 5, 0.92)),
    radial-gradient(circle at 50% 25%, rgba(0, 240, 130, 0.2), transparent 31%),
    #080c09;
}

.service-core::before {
  content: "";
  position: absolute;
  inset: 52px 28px auto;
  height: 180px;
  clip-path: polygon(0 78%, 22% 42%, 34% 63%, 52% 18%, 67% 56%, 78% 34%, 100% 72%, 100% 100%, 0 100%);
  background: linear-gradient(135deg, rgba(0, 240, 130, 0.36), rgba(247, 247, 242, 0.08));
  border-bottom: 1px solid rgba(0, 240, 130, 0.48);
}

.service-core h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  max-width: 560px;
}

.service-lanes {
  display: grid;
  gap: 12px;
}

.service-lanes article {
  min-height: 160px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(12, 16, 13, 0.72);
}

.service-lanes b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 240, 130, 0.32);
  border-radius: var(--radius);
  color: var(--accent);
  background: var(--accent-soft);
}

.service-lanes h3 {
  margin: 8px 0;
}

.outcomes {
  padding-top: 20px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.outcome-grid article {
  min-height: 250px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(0, 240, 130, 0.06), transparent 48%),
    var(--panel);
}

.outcome-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--accent);
  font-weight: 600;
}

.outcome-grid h3 {
  margin-bottom: 12px;
}

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

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  padding: 20px;
}

.steps b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.method-proof {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(0, 240, 130, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 240, 130, 0.08), transparent 62%),
    rgba(12, 16, 13, 0.72);
}

.method-proof span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.method-proof strong {
  display: block;
  max-width: 560px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.22;
  font-weight: 300;
}

.method-proof p {
  max-width: 560px;
  margin: 14px 0 0;
}

.green-band {
  width: min(1280px, calc(100% - clamp(32px, 5vw, 80px)));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32)),
    var(--accent);
  color: #021109;
  position: relative;
  overflow: hidden;
}

.green-band::before {
  content: "";
  position: absolute;
  inset: auto -4% -2px;
  height: 55%;
  clip-path: polygon(0 82%, 13% 55%, 23% 70%, 36% 25%, 50% 66%, 62% 38%, 75% 76%, 86% 42%, 100% 68%, 100% 100%, 0 100%);
  background: rgba(2, 17, 9, 0.14);
}

.green-band > * {
  position: relative;
  z-index: 1;
}

.green-band span {
  display: block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.green-band h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: #021109;
}

.green-band p {
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

.cta-strip {
  width: min(1280px, calc(100% - clamp(32px, 5vw, 80px)));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(0, 240, 130, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 240, 130, 0.14), rgba(10, 14, 11, 0.92));
}

.cta-strip p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.14;
  font-weight: 850;
}

.blog {
  width: min(1280px, calc(100% - clamp(32px, 5vw, 80px)));
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 34px;
}

.blog-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(0, 240, 130, 0.08), transparent 44%),
    var(--panel);
}

.blog-card.large {
  min-height: 380px;
}

.blog-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.blog-card a {
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
}

.blog-page {
  padding-top: 150px;
}

.blog-page h1 {
  max-width: 980px;
}

.article-body {
  max-width: 760px;
  margin: 42px 0;
  color: #dce6df;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body h2 {
  margin: 38px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0 0 24px;
}

.article-body a {
  color: var(--accent);
  font-weight: 600;
}

.article-date {
  margin: -4px 0 22px;
  color: var(--muted);
}

.contact {
  padding-bottom: 72px;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: #dfe8e1;
  font-weight: 400;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: #dce6df;
  font-size: 0.9rem;
  font-weight: 400;
}

.bot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.bot-field input {
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
}

.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080b09;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 240, 130, 0.12);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-weight: 400;
}

.form-note.error {
  color: #ffb4ab;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(54px) scale(0.975);
  transition:
    opacity 0.9s ease,
    filter 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.pillars article.reveal-on-scroll,
.service-lanes article.reveal-on-scroll,
.outcome-grid article.reveal-on-scroll,
.blog-card.reveal-on-scroll,
.steps article.reveal-on-scroll {
  transform: translateY(42px) scale(0.96);
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 5, 0.8);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.menu-open .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 16px 20px 96px;
    background: rgba(5, 6, 5, 0.98);
    border-bottom: 0;
  }

  body.menu-open .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .header-actions {
    position: fixed;
    z-index: 21;
    inset: 382px 20px auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 5, 0.98);
    overflow-x: auto;
  }

  body.menu-open .header-actions .header-cta,
  body.menu-open .header-actions .portal-link {
    display: inline-flex;
  }

  body.menu-open .action-group {
    flex: 0 0 auto;
    gap: 6px;
    justify-content: flex-start;
  }

  body.menu-open .action-group::before {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 42px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .split,
  .section-heading,
  .method-layout,
  .contact,
  .service-constellation,
  .outcome-grid,
  .blog-grid,
  .green-band,
  .pillars {
    grid-template-columns: 1fr;
  }

  .service-core {
    min-height: 420px;
  }

  .metric-f,
  .metric-g,
  .node-d,
  .node-e {
    display: none;
  }
}

@media (max-width: 720px) {
  .brand img,
  .site-footer img {
    width: 138px;
  }

  .site-header {
    min-height: 70px;
    padding: 14px 18px;
  }

  body.menu-open .site-nav {
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    padding-bottom: 112px;
  }

  .hero {
    padding: 108px 18px 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .hero-actions,
  .cta-strip,
  .green-band,
  .site-footer {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  body.menu-open .header-actions {
    inset: 364px 14px auto;
  }

  body.menu-open .portal-link,
  body.menu-open .header-cta,
  body.menu-open .language-toggle,
  body.menu-open .social-link {
    width: auto;
    min-width: max-content;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  body.menu-open .social-link,
  body.menu-open .language-toggle {
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  .service-lanes article,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-core,
  .blog-card,
  .blog-card.large {
    min-height: 320px;
  }

  .service-core::before {
    inset: 42px 20px auto;
    height: 145px;
  }

  .outcome-grid article,
  .pillars article,
  .blog-card,
  .steps article,
  .method-proof,
  .contact-form {
    padding: 20px;
  }

  .green-band,
  .cta-strip {
    padding: 28px 22px;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .section,
  .solutions,
  .green-band,
  .cta-strip,
  .blog {
    width: calc(100% - 28px);
  }

  .hero-copy,
  .split p,
  .section-heading p,
  .method-layout p,
  .contact-copy p {
    font-size: 0.98rem;
  }

  .metric-float {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 124px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section,
  .solutions,
  .green-band,
  .cta-strip,
  .blog {
    width: calc(100% - 24px);
  }
}

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

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 74px 74px;
  }
}

@keyframes drawMountain {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes lineBreathe {
  50% {
    opacity: 0.62;
    transform: translateY(-8px);
  }
}

@keyframes glowPulse {
  50% {
    opacity: 0.58;
    transform: scale(1.08);
  }
}

@keyframes nodePulse {
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 0 18px rgba(0, 240, 130, 0.04), 0 0 44px rgba(0, 240, 130, 0.9);
  }
}

@keyframes floatMetric {
  50% {
    transform: translateY(-14px);
  }
}
