:root {
  --black: #040507;
  --white: #fff;
  --gray: #8f98a3;
  --text-dark: #101316;
  --text-soft: #3a4450;
  --line: #d7dee8;
  --line-dark: rgba(255, 255, 255, 0.2);
  --primary-orange: #fea84c;
  --tone-data: #76e9ef;
  --tone-cloud: #93c8ff;
  --tone-ai: #ffd08a;
  --tone-ops: #c8d6ff;
  --hero-bg: radial-gradient(circle at 18% 10%, rgba(122, 208, 232, 0.12), rgba(122, 208, 232, 0) 34%),
    radial-gradient(circle at 82% 18%, rgba(244, 171, 104, 0.1), rgba(244, 171, 104, 0) 35%),
    radial-gradient(circle at 50% 8%, rgba(170, 188, 218, 0.13), rgba(170, 188, 218, 0) 40%),
    linear-gradient(180deg, #02050b 0%, #040914 52%, #02050b 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background-color: #f5f6fa;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Funnel Display", serif;
  line-height: 1.08;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

.section {
  position: relative;
  padding-top: clamp(96px, 14vh, 170px);
  padding-bottom: clamp(96px, 14vh, 170px);
}

.panel-section {
  overflow: hidden;
}

.panel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
}

.panel-section:nth-of-type(even)::before {
  background: linear-gradient(180deg, rgba(241, 245, 250, 0.96), rgba(255, 255, 255, 0.98));
}

.panel-section .container {
  position: relative;
  z-index: 1;
}

#about.panel-section::before {
  background: #fff;
}

#about.panel-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(120px, 12vh, 190px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #04070d 0%,
    #04070d 18%,
    #0f1826 18%,
    #0f1826 34%,
    #334154 34%,
    #334154 50%,
    #c9d1db 50%,
    #c9d1db 69%,
    #edf1f6 69%,
    #edf1f6 86%,
    #ffffff 86%,
    #ffffff 100%
  );
}

.section-light {
  color: var(--text-dark);
}

.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-orange);
  font-family: "Funnel Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 13px;
  font-weight: 700;
}

.subtitle.center {
  justify-content: center;
  width: 100%;
}

.subtitle-glyph {
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(45deg);
  border: 1px solid currentColor;
  background: currentColor;
}

.cta-primary,
.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  text-transform: uppercase;
  font-family: "Funnel Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.cta-primary {
  border: 1px solid var(--primary-orange);
  background-color: var(--primary-orange);
  color: #111;
}

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

.cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.cta-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-surface {
  min-height: 100vh;
  color: var(--white);
  background: var(--hero-bg);
  position: relative;
  overflow: clip;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 24%, rgba(204, 223, 247, 0.08), rgba(0, 0, 0, 0) 58%);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 14px;
  padding-bottom: 14px;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 13, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  position: relative;
}

.brand {
  justify-self: start;
  display: inline-flex;
  max-width: 210px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: inline-flex;
  justify-self: center;
  gap: 24px;
}

.nav-link {
  text-transform: uppercase;
  font-family: "Funnel Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--white);
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(194, 211, 229, 0.26);
  background: rgba(10, 16, 27, 0.74);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(236, 243, 255, 0.72);
  min-width: 38px;
  padding: 7px 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-button:hover {
  color: #fff;
}

.lang-button.is-active {
  background: rgba(254, 168, 76, 0.23);
  color: #ffe3c2;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 999px;
  padding: 9px 15px;
  font-family: "Funnel Sans", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.hero {
  position: relative;
  padding-top: clamp(56px, 9vh, 120px);
  padding-bottom: 64px;
  z-index: 1;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(56px, 8vh, 104px);
}

.hero-copy {
  width: min(1040px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

.hero-eyebrow .subtitle-glyph {
  display: none;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(52px, 8.8vw, 128px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 11ch;
}

.hero-copy p {
  max-width: 620px;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.44);
}

.hero .cta-primary {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #101316;
}

.hero .cta-outline {
  background: rgba(254, 168, 76, 0.12);
  border-color: rgba(254, 168, 76, 0.58);
  color: #ffdcb6;
}

.hero .cta-outline:hover {
  border-color: rgba(254, 168, 76, 0.82);
  background: rgba(254, 168, 76, 0.2);
}

.hero-story {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: start;
}

.story-stage-wrap {
  min-height: 292vh;
}

.story-stage {
  position: sticky;
  top: 104px;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  transform: translateY(calc(var(--story-drift, 0px) * -1));
  transition: background 0.44s ease;
  box-shadow: none;
}

.story-stage[data-tone="data"] {
  border-color: rgba(118, 233, 239, 0.38);
}

.story-stage[data-tone="cloud"] {
  border-color: rgba(147, 200, 255, 0.38);
}

.story-stage[data-tone="ai"] {
  border-color: rgba(255, 208, 138, 0.44);
}

.story-stage[data-tone="ops"] {
  border-color: rgba(200, 214, 255, 0.4);
}

.story-ambient {
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(141, 229, 238, 0.14), rgba(141, 229, 238, 0));
  animation: ambientShift 12s ease-in-out infinite alternate;
}

.story-stage[data-tone="data"] .story-ambient {
  background: radial-gradient(circle, rgba(141, 229, 238, 0.16), rgba(141, 229, 238, 0));
}

.story-stage[data-tone="cloud"] .story-ambient {
  background: radial-gradient(circle, rgba(170, 207, 255, 0.16), rgba(170, 207, 255, 0));
}

.story-stage[data-tone="ai"] .story-ambient {
  background: radial-gradient(circle, rgba(255, 214, 155, 0.16), rgba(255, 214, 155, 0));
}

.story-stage[data-tone="ops"] .story-ambient {
  background: radial-gradient(circle, rgba(210, 221, 255, 0.16), rgba(210, 221, 255, 0));
}

.core-visual {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin: 0 auto;
  z-index: 2;
  transition: transform 0.25s ease;
  transform: scale(calc(0.92 + var(--story-progress, 0) * 0.12));
}

.cube-core-visual {
  width: min(780px, 100%);
}

.cube-pyramid-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-cube-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.story-narrative {
  position: relative;
}

.story-copy-panel {
  position: sticky;
  top: 118px;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding-left: 24px;
  transition: color 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-copy-panel span {
  font-family: "Funnel Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-copy-panel h3 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: rgba(247, 249, 253, 0.98);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-copy-panel p {
  max-width: 30ch;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.45;
  color: rgba(232, 239, 250, 0.73);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-copy-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: min(44vh, 360px);
  background: rgba(255, 255, 255, 0.2);
  transition: background-color 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-copy-panel.is-swapping span,
.story-copy-panel.is-swapping h3,
.story-copy-panel.is-swapping p {
  opacity: 0;
  transform: translateY(10px);
}

.story-copy-panel[data-tone="data"]::before {
  background: rgba(156, 238, 243, 0.72);
}

.story-copy-panel[data-tone="cloud"]::before {
  background: rgba(170, 207, 255, 0.72);
}

.story-copy-panel[data-tone="ai"]::before {
  background: rgba(255, 214, 155, 0.72);
}

.story-copy-panel[data-tone="ops"]::before {
  background: rgba(210, 221, 255, 0.72);
}

.capability-core {
  position: relative;
  width: 100%;
  height: 100%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.22s ease-out;
}

.capability-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.lane {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  opacity: 0.6;
  transition: opacity 0.3s ease, stroke-width 0.3s ease;
}

.lane-data {
  stroke: url(#lane-data-gradient);
}

.lane-ai {
  stroke: url(#lane-ai-gradient);
}

.lane-ops {
  stroke: url(#lane-ops-gradient);
}

.story-stage[data-tone="data"] .lane-data,
.story-stage[data-tone="cloud"] .lane-ops,
.story-stage[data-tone="cloud"] .lane-data,
.story-stage[data-tone="ai"] .lane-ai,
.story-stage[data-tone="ops"] .lane-ops {
  opacity: 1;
  stroke-width: 3;
}

.lane-anchor {
  filter: drop-shadow(0 0 8px currentColor);
}

.anchor-data {
  color: #8aeef3;
  fill: #8aeef3;
}

.anchor-ai {
  color: #fec480;
  fill: #fec480;
}

.anchor-ops {
  color: #c7d4ff;
  fill: #c7d4ff;
}

.stack-blueprint {
  position: absolute;
  inset: 52px 28px 52px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr minmax(164px, 190px) 1fr;
  gap: 12px;
  align-items: center;
}

.blueprint-column {
  border: 1px solid rgba(206, 223, 245, 0.34);
  border-radius: 16px;
  padding: 14px 12px;
  background: rgba(8, 16, 26, 0.64);
  backdrop-filter: blur(4px);
  min-height: 204px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.blueprint-column h4 {
  font-family: "Funnel Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(245, 250, 255, 0.94);
}

.blueprint-column p {
  font-size: 12px;
  color: rgba(227, 237, 251, 0.72);
}

.blueprint-column.is-datacenter {
  border-color: rgba(118, 233, 239, 0.34);
  background: linear-gradient(180deg, rgba(14, 31, 42, 0.82), rgba(8, 18, 28, 0.7));
}

.blueprint-column.is-value {
  border-color: rgba(200, 214, 255, 0.34);
  background: linear-gradient(180deg, rgba(15, 24, 40, 0.82), rgba(8, 14, 24, 0.7));
}

.blueprint-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blueprint-tags span {
  border-radius: 999px;
  border: 1px solid rgba(210, 224, 243, 0.42);
  background: rgba(8, 16, 26, 0.7);
  color: rgba(233, 242, 253, 0.9);
  font-family: "Funnel Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.blueprint-column ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blueprint-column li {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  color: rgba(230, 238, 251, 0.83);
}

.blueprint-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #9deef4;
}

.blueprint-core {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(194, 211, 229, 0.58);
  background: radial-gradient(circle at 50% 42%, #2d4f6f, #0d1928);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 16px 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.blueprint-core strong {
  font-family: "Funnel Display", serif;
  font-size: 24px;
  line-height: 1;
  color: #eef6ff;
  letter-spacing: 0.01em;
}

.blueprint-core span,
.blueprint-core small {
  font-family: "Funnel Sans", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blueprint-core span {
  font-size: 9px;
  color: rgba(235, 244, 255, 0.86);
}

.blueprint-core small {
  font-size: 8px;
  color: rgba(235, 244, 255, 0.58);
}

.story-stage[data-tone="data"] .blueprint-column.is-datacenter,
.story-stage[data-tone="cloud"] .blueprint-column.is-datacenter {
  border-color: rgba(125, 237, 243, 0.68);
  box-shadow: 0 16px 34px rgba(9, 35, 42, 0.38);
  transform: translateY(-2px);
}

.story-stage[data-tone="ai"] .blueprint-core {
  border-color: rgba(255, 208, 138, 0.68);
  box-shadow: 0 22px 56px rgba(48, 26, 6, 0.38);
  transform: scale(1.02);
}

.story-stage[data-tone="ops"] .blueprint-column.is-value {
  border-color: rgba(203, 216, 255, 0.66);
  box-shadow: 0 16px 34px rgba(13, 23, 46, 0.4);
  transform: translateY(-2px);
}

.story-status {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(6, 10, 16, 0.7);
  position: relative;
  z-index: 2;
}

.story-status span {
  font-family: "Funnel Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.story-status p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.73);
}

.story-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 14px;
}

.story-step {
  min-height: 70vh;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  opacity: 0;
  transform: none;
  transition: none;
  pointer-events: none;
}

.story-step.is-active {
  opacity: 0;
  transform: none;
}

.story-step[data-tone="data"].is-active {
  border-color: rgba(118, 233, 239, 0.52);
}

.story-step[data-tone="cloud"].is-active {
  border-color: rgba(147, 200, 255, 0.52);
}

.story-step[data-tone="ai"].is-active {
  border-color: rgba(255, 208, 138, 0.56);
}

.story-step[data-tone="ops"].is-active {
  border-color: rgba(200, 214, 255, 0.56);
}

.story-step span {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.story-step h3 {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.story-step p {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.logos-strip {
  width: 100%;
  overflow: hidden;
  border: 0;
  background: transparent;
  margin-top: 18px;
  border-radius: 0;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 38s linear infinite;
}

.logos-track img {
  height: 30px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(1) brightness(1.9);
}

.metrics-layout,
.impact-layout,
.values-layout,
.projects-layout,
.reliability-layout,
.testimonial-layout {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.metrics-copy,
.impact-copy,
.reliability-copy,
.testimonial-copy,
.projects-copy,
.values-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 980px;
}

.metrics-copy h2,
.impact-copy h2,
.projects-copy h2,
.reliability-copy h2,
.testimonial-copy h2,
.values-head h2,
.contact-card h2 {
  font-size: clamp(36px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.metric-card,
.impact-card,
.value-card,
.reliability-item,
.testimonial-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(16, 20, 28, 0.06);
}

.metrics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-height: 220px;
}

.metric-card h3 {
  font-family: "Funnel Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #505d6d;
  font-weight: 700;
}

.metric-card p {
  font-family: "Funnel Display", serif;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: none;
  min-height: 3.6em;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.metric-card p.is-swapping {
  opacity: 0;
  transform: translateY(10px);
}

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

.impact-card {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  min-height: 300px;
}

.impact-card h3 {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 500;
  margin-bottom: 14px;
}

.impact-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.impact-card li {
  position: relative;
  padding-left: 16px;
  font-size: 17px;
  color: #26313f;
}

.impact-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary-orange);
}

.impact-card img {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  padding: 6px;
  align-self: end;
}

.impact-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.impact-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 168, 76, 0.55);
  box-shadow: 0 30px 70px rgba(16, 20, 28, 0.14);
}

.impact-card-link h3,
.impact-card-link li {
  color: inherit;
}

.impact-card-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d96d24;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.impact-card-cta::after {
  content: ">";
  transition: transform 0.2s ease;
}

.impact-card-link:hover .impact-card-cta::after {
  transform: translateX(4px);
}

.values-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 28px;
  align-items: center;
}

.values-intro > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(254, 168, 76, 0.72);
  background: rgba(255, 255, 255, 0.9);
  --parallax-shift: 0px;
  transform: translateY(var(--parallax-shift));
  box-shadow:
    0 0 0 1px rgba(254, 168, 76, 0.18),
    0 24px 60px rgba(16, 20, 28, 0.06),
    0 10px 28px rgba(254, 168, 76, 0.12);
}

.values-intro > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.values-intro p {
  color: #2b3340;
  font-size: 19px;
}

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

.value-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-card h3 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
}

.value-card p {
  font-size: 16px;
  color: #2a313d;
}

.projects-copy {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.projects-copy p {
  max-width: 980px;
  color: #2b3340;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 390px;
  border: 1px solid rgba(10, 12, 18, 0.85);
  background: #0a0d13;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.03) brightness(0.8);
  --parallax-shift: 0px;
  transform: translateY(var(--parallax-shift)) scale(1.03);
  transition: transform 0.45s ease;
}

.project-card:hover img {
  transform: translateY(var(--parallax-shift)) scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 24px 24px;
  background:
    linear-gradient(180deg, rgba(2, 7, 16, 0.08) 0%, rgba(2, 7, 16, 0.58) 48%, rgba(2, 7, 16, 0.92) 100%),
    radial-gradient(circle at top right, rgba(255, 181, 78, 0.14), transparent 36%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-overlay h3 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
}

.project-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.reliability-copy p {
  max-width: 980px;
  color: #2b3340;
}

.reliability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reliability-item {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reliability-item span {
  color: #7a8696;
  font-family: "Funnel Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reliability-item h3 {
  font-size: clamp(30px, 2.9vw, 42px);
  font-weight: 500;
}

.reliability-item p {
  color: #2d3643;
  font-size: 16px;
}

.testimonial-strip {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: marquee 72s linear infinite;
}

.testimonial-card {
  width: min(420px, calc(100vw - 96px));
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card h3 {
  font-size: clamp(30px, 2.8vw, 42px);
}

.testimonial-card p {
  font-size: 17px;
  color: #2d3643;
}

.testimonial-person {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-person strong {
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
}

.testimonial-person span {
  color: #6b7685;
}

.contact-layout {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  padding: 60px 34px;
  background: radial-gradient(circle at 50% 16%, rgba(118, 233, 239, 0.2), rgba(255, 255, 255, 0.97) 58%);
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  text-align: center;
}

.contact-orb {
  width: 178px;
  height: 178px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: "Funnel Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-footer {
  background: #05070c;
  color: var(--white);
  padding-top: 72px;
  padding-bottom: 28px;
}

.footer-layout {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-main {
  border: 1px solid rgba(194, 211, 229, 0.24);
  border-radius: 20px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  max-width: 210px;
  filter: brightness(0) invert(1);
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-company p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Funnel Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
}

.footer-cta {
  align-self: start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom div {
  display: inline-flex;
  gap: 14px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes ambientShift {
  from {
    transform: translate(-8%, -4%) scale(0.95);
  }

  to {
    transform: translate(7%, 4%) scale(1.07);
  }
}

@media (max-width: 1280px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-story {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  }

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

  .impact-grid,
  .projects-grid,
  .values-grid,
  .reliability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-cta {
    grid-column: span 2;
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .hero {
    padding-top: 50px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 72px);
    max-width: 12ch;
  }

  .hero-story {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-stage-wrap {
    min-height: 190vh;
  }

  .story-stage {
    position: relative;
    top: auto;
  }

  .story-copy-panel {
    position: relative;
    top: auto;
    min-height: 0;
    margin-top: 10px;
    gap: 12px;
    padding-left: 16px;
  }

  .story-copy-panel h3 {
    font-size: clamp(32px, 8.4vw, 50px);
  }

  .story-copy-panel p {
    font-size: clamp(18px, 4.3vw, 22px);
    max-width: none;
  }

  .stack-blueprint {
    inset: 42px 24px 44px;
    grid-template-columns: 1fr minmax(150px, 170px) 1fr;
  }

  .blueprint-column {
    min-height: 188px;
    padding: 12px 10px;
  }

  .blueprint-column h4 {
    font-size: 12px;
  }

  .blueprint-column p,
  .blueprint-column li {
    font-size: 11px;
  }

  .blueprint-tags span {
    font-size: 9px;
    padding: 3px 7px;
  }

  .blueprint-core strong {
    font-size: 20px;
  }

  .story-step {
    min-height: 44vh;
    padding: 0;
    opacity: 0;
    transform: none;
  }

  .values-intro,
  .impact-card {
    grid-template-columns: 1fr;
  }

  .impact-card img {
    width: min(280px, 90%);
    justify-self: end;
  }

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

  .footer-cta {
    grid-column: auto;
    display: inline-flex;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(194, 211, 229, 0.22);
    background: rgba(9, 12, 20, 0.96);
    backdrop-filter: blur(8px);
    z-index: 20;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-actions .cta-outline,
  .nav-actions .cta-primary {
    display: none;
  }

  .hero-actions .cta-outline {
    display: inline-flex;
  }

  .lang-switch {
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  .metrics-grid,
  .impact-grid,
  .projects-grid,
  .values-grid,
  .reliability-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 310px;
  }

  .values-intro > img {
    aspect-ratio: 1;
  }

  .stack-blueprint {
    inset: 36px 18px 36px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blueprint-column {
    min-height: 0;
  }

  .blueprint-core {
    width: min(220px, 100%);
    justify-self: center;
  }
}

@media (max-width: 540px) {
  .top-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-copy {
    gap: 20px;
  }

  .story-stage {
    padding: 0;
    border-radius: 0;
  }

  .core-visual {
    width: min(430px, 100%);
  }

  .stack-blueprint {
    inset: 32px 14px 32px;
    gap: 8px;
  }

  .blueprint-column {
    padding: 10px 9px;
    gap: 6px;
  }

  .blueprint-column h4 {
    font-size: 11px;
  }

  .blueprint-column p,
  .blueprint-column li {
    font-size: 10px;
  }

  .blueprint-tags span {
    font-size: 8px;
    padding: 3px 6px;
  }

  .blueprint-core {
    width: min(176px, 100%);
    padding: 13px 12px;
  }

  .blueprint-core strong {
    font-size: 17px;
  }

  .blueprint-core span,
  .blueprint-core small {
    font-size: 8px;
  }

  .story-step h3,
  .project-overlay h3,
  .reliability-item h3,
  .testimonial-card h3 {
    font-size: 30px;
  }

  .contact-orb {
    width: 142px;
    height: 142px;
    font-size: 14px;
  }

  .footer-main {
    padding: 24px;
  }

  .lang-button {
    min-width: 34px;
    padding: 6px 9px;
  }
}

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

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