:root {
  --ink: #07110f;
  --ink-soft: #101c19;
  --paper: #f3f1e9;
  --paper-deep: #e8e6dd;
  --lime: #c8ff45;
  --lime-dark: #9fd41e;
  --mint: #8dfbd2;
  --muted: #65706c;
  --line: rgba(7, 17, 15, 0.14);
  --white-line: rgba(255, 255, 255, 0.13);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 15, 0.82);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-flex;
  gap: 3px;
  align-items: end;
  padding: 5px;
  border: 1px solid rgba(200, 255, 69, 0.55);
  border-radius: 8px;
  transform: rotate(-4deg);
}

.brand-mark i {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: var(--lime);
}

.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 13px; }
.brand-mark i:nth-child(3) { height: 19px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover {
  color: #fff;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
}

.nav-cta span {
  font-size: 17px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 900px;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, rgba(30, 104, 83, 0.35), transparent 25%),
    linear-gradient(145deg, #07110f 0%, #0a1714 52%, #07110f 100%);
  overflow: hidden;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: 80px;
  right: -240px;
  border: 1px solid rgba(141, 251, 210, 0.22);
  box-shadow: 0 0 100px rgba(141, 251, 210, 0.06) inset;
}

.orb-two {
  width: 260px;
  height: 260px;
  bottom: 100px;
  left: -170px;
  background: rgba(200, 255, 69, 0.05);
  border: 1px solid rgba(200, 255, 69, 0.15);
}

.hero-layout {
  position: relative;
  min-height: 755px;
  padding-top: 165px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 65px;
}

.eyebrow,
.section-label {
  margin: 0 0 27px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--lime);
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  margin-bottom: 32px;
  font-size: clamp(66px, 7vw, 105px);
  font-weight: 720;
}

h1 em,
h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 57px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 40px rgba(200, 255, 69, 0.15);
}

.button-primary:hover {
  background: #d3ff69;
  box-shadow: 0 15px 50px rgba(200, 255, 69, 0.22);
}

.button span {
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(141, 251, 210, 0.14);
  border-radius: 50%;
}

.ring-one {
  width: 490px;
  height: 490px;
  animation: spin 35s linear infinite;
}

.ring-one::before,
.ring-two::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 12%;
  left: 15%;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 25px var(--lime);
}

.ring-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: spin 28s linear infinite reverse;
}

.ring-two::before {
  top: auto;
  bottom: 4%;
  left: 62%;
  background: var(--mint);
}

.ring-three {
  width: 590px;
  height: 590px;
  border-color: rgba(141, 251, 210, 0.06);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.visual-card {
  position: relative;
  z-index: 2;
  width: min(100%, 490px);
  padding: 24px;
  background: rgba(15, 31, 27, 0.88);
  border: 1px solid rgba(141, 251, 210, 0.22);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
}

.card-topline,
.metric-row,
.card-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-topline {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--mint);
  background: rgba(141, 251, 210, 0.08);
  border-radius: 999px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.75); }
}

.metric-row {
  margin-top: 26px;
}

.metric-row small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.metric-row strong {
  font-size: 39px;
  letter-spacing: -0.04em;
}

.trend {
  padding: 8px 11px;
  color: var(--lime);
  background: rgba(200, 255, 69, 0.08);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.chart {
  position: relative;
  height: 175px;
  margin-top: 8px;
}

.chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-area {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(200, 255, 69, 0.45));
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw 2.3s ease forwards 0.5s;
}

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

.chart-point {
  position: absolute;
  top: 21px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border: 3px solid #17271f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 255, 69, 0.15);
}

.card-stats {
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
}

.card-stats div {
  min-width: 30%;
}

.card-stats span,
.card-stats b {
  display: block;
}

.card-stats span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.card-stats b {
  font-size: 16px;
}

.float-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  color: var(--ink);
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 750;
}

.tag-a {
  top: 61px;
  right: -6px;
  animation: float 4.5s ease-in-out infinite;
}

.tag-a b {
  color: #569b13;
}

.tag-b {
  bottom: 54px;
  left: -14px;
  animation: float 5s ease-in-out infinite reverse;
}

.tag-b i {
  width: 8px;
  height: 8px;
  background: #51c99b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(81, 201, 155, 0.14);
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

.trust-line {
  position: relative;
  padding: 34px 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--white-line);
}

.trust-line > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.trust-line div {
  display: flex;
  gap: clamp(20px, 3vw, 46px);
}

.trust-line b {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section {
  padding: 130px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 60px;
}

.section-label {
  color: #68736e;
}

h2 {
  margin-bottom: 42px;
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 700;
}

h2 em {
  color: #5e8121;
}

.large-copy {
  max-width: 750px;
  margin-bottom: 0;
  color: #4b5752;
  font-size: 21px;
  line-height: 1.65;
}

.stat-strip {
  margin-top: 95px;
  padding-top: 37px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.stat-strip div {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.stat-strip div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stat-strip strong {
  font-size: clamp(42px, 5vw, 65px);
  letter-spacing: -0.06em;
}

.stat-strip sup {
  color: #6d902d;
  font-size: 21px;
  font-weight: 800;
}

.stat-strip span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.solutions {
  color: #fff;
  background: var(--ink);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.solutions .section-label,
.technology .section-label {
  color: var(--lime);
}

.solutions h2,
.technology h2 {
  margin-bottom: 0;
}

.solutions h2 em,
.technology h2 em {
  color: var(--lime);
}

.section-summary {
  max-width: 390px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

.solution-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.solution-card {
  min-height: 495px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #111f1b;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 255, 69, 0.4);
  background: #142520;
}

.solution-card.featured {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.solution-card.featured:hover {
  background: #d2ff65;
}

.card-number {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 800;
}

.featured .card-number {
  color: rgba(7, 17, 15, 0.45);
}

.solution-icon {
  width: 74px;
  height: 74px;
  margin: 25px 0 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-line);
  border-radius: 18px;
}

.featured .solution-icon {
  background: rgba(7, 17, 15, 0.06);
  border-color: rgba(7, 17, 15, 0.14);
}

.solution-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.solution-card h3 {
  margin-bottom: 14px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.65;
}

.featured p {
  color: rgba(7, 17, 15, 0.65);
}

.solution-card ul {
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--white-line);
}

.featured ul {
  border-color: rgba(7, 17, 15, 0.15);
}

.solution-card li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.featured li {
  color: rgba(7, 17, 15, 0.7);
}

.solution-card li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--lime);
}

.featured li::before {
  color: var(--ink);
}

.technology {
  color: #fff;
  background:
    radial-gradient(circle at 77% 40%, rgba(42, 112, 89, 0.28), transparent 25%),
    #0a1512;
}

.technology-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.tech-copy .large-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 17px;
}

.tech-points {
  margin-top: 50px;
  border-top: 1px solid var(--white-line);
}

.tech-points > div {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  border-bottom: 1px solid var(--white-line);
}

.tech-points span {
  padding-top: 4px;
  color: var(--lime);
  font-size: 10px;
}

.tech-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.tech-points b {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.tech-console {
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(141, 251, 210, 0.18);
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.33);
}

.console-head {
  height: 47px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-head > span {
  display: flex;
  gap: 5px;
}

.console-head i {
  width: 7px;
  height: 7px;
  display: block;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.console-head i:first-child {
  background: var(--lime);
}

.console-head small {
  color: rgba(255, 255, 255, 0.33);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.console-body {
  padding: 28px;
  background: #0c1916;
  border-radius: 17px;
}

.flow-row {
  padding: 18px;
  display: grid;
  grid-template-columns: 47px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--white-line);
  border-radius: 12px;
}

.flow-row.active {
  background: rgba(200, 255, 69, 0.055);
  border-color: rgba(200, 255, 69, 0.35);
}

.flow-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: rgba(200, 255, 69, 0.08);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
}

.flow-row b,
.flow-row small {
  display: block;
}

.flow-row b {
  margin-bottom: 5px;
  font-size: 14px;
}

.flow-row small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.flow-row em {
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.flow-row.active em {
  color: var(--lime);
}

.flow-line {
  width: 1px;
  height: 27px;
  margin-left: 38px;
  position: relative;
  background: rgba(255, 255, 255, 0.14);
}

.flow-line i {
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 8px;
  background: var(--lime);
  border-radius: 4px;
  animation: flow 2.3s ease-in-out infinite;
}

@keyframes flow {
  to { transform: translateY(20px); opacity: 0.1; }
}

.console-output {
  margin-top: 24px;
  padding: 19px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 12px;
}

.console-output span {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.console-output strong {
  font-size: 14px;
}

.console-output i {
  font-size: 20px;
  font-style: normal;
}

.process {
  background: var(--paper-deep);
}

.process-grid {
  position: relative;
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.process-grid article {
  position: relative;
}

.process-grid article > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 28px 0 32px;
  background: var(--paper-deep);
  border: 4px solid #789d32;
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--paper-deep);
}

.process-grid h3 {
  margin-bottom: 13px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.process-grid p {
  max-width: 245px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: var(--lime);
  overflow: hidden;
}

.contact-grid {
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(7, 17, 15, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 15, 0.18) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.contact-inner {
  position: relative;
}

.contact .section-label {
  color: rgba(7, 17, 15, 0.55);
}

.contact h2 {
  margin-bottom: 25px;
  font-size: clamp(50px, 6.8vw, 92px);
}

.contact h2 em {
  color: var(--ink);
}

.contact p:not(.section-label) {
  margin-bottom: 34px;
  color: rgba(7, 17, 15, 0.62);
  font-size: 17px;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: #15231f;
  box-shadow: 0 15px 40px rgba(7, 17, 15, 0.2);
}

.site-footer {
  padding: 75px 0 25px;
  color: #fff;
  background: var(--ink);
}

.footer-top {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.5fr;
  gap: 60px;
}

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

.footer-address span {
  display: block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: flex;
  gap: 9px;
}

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

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

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 150px 0 85px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .trust-line {
    display: block;
  }

  .trust-line > span {
    display: block;
    margin-bottom: 20px;
  }

  .technology-layout {
    grid-template-columns: 1fr;
  }

  .tech-copy {
    max-width: 760px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    height: 74px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: #fff;
    transition: transform 0.25s ease;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    padding: 120px 28px 45px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 18px 0;
    color: #fff;
    border-bottom: 1px solid var(--white-line);
    font-size: 24px;
  }

  .nav-cta {
    margin-top: 35px;
    align-self: flex-start;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 135px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .ring-one { width: 400px; height: 400px; }
  .ring-two { width: 315px; height: 315px; }
  .ring-three { display: none; }

  .visual-card {
    padding: 19px;
  }

  .float-tag {
    display: none;
  }

  .trust-line div {
    flex-wrap: wrap;
  }

  .section {
    padding: 85px 0;
  }

  .split-heading,
  .section-head {
    display: block;
  }

  h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .large-copy {
    font-size: 17px;
  }

  .stat-strip {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .stat-strip div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .section-summary {
    margin-top: 25px;
  }

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

  .solution-card {
    min-height: 440px;
  }

  .technology-layout {
    gap: 60px;
  }

  .console-body {
    padding: 16px;
  }

  .flow-row {
    padding: 14px;
    grid-template-columns: 40px 1fr;
  }

  .flow-row em {
    display: none;
  }

  .flow-icon {
    width: 36px;
    height: 36px;
  }

  .console-output {
    grid-template-columns: auto 1fr;
  }

  .console-output i {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .process-grid::before {
    display: none;
  }

  .process-dot {
    margin: 16px 0 22px;
  }

  .contact {
    padding: 90px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .metric-row strong {
    font-size: 32px;
  }

  .chart {
    height: 140px;
  }

  .card-stats span {
    font-size: 9px;
  }

  .stat-strip strong {
    font-size: 42px;
  }

  .stat-strip span {
    max-width: 120px;
    font-size: 9px;
  }

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

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
}

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

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

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