:root {
  --bg: #07110f;
  --bg-deep: #040a09;
  --surface: #0b1714;
  --surface-soft: #101e1a;
  --line: rgba(208, 237, 221, 0.13);
  --line-strong: rgba(208, 237, 221, 0.24);
  --text: #f2f7f4;
  --muted: #9eaea7;
  --muted-bright: #c6d0cb;
  --accent: #b8f25b;
  --accent-bright: #d6ff8f;
  --accent-dark: #72a826;
  --cyan: #5edfc8;
  --shell: min(1200px, calc(100vw - 48px));
  --radius: 28px;
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--bg-deep);
  background: var(--accent);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  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='.8'/%3E%3C/svg%3E");
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1240px, calc(100vw - 32px));
  min-height: 70px;
  padding: 0 18px 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    top 300ms ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(6, 15, 13, 0.82);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  width: 31px;
  height: 31px;
  color: var(--text);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark .brand-mark-accent {
  fill: var(--accent);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: var(--muted-bright);
  font-size: 14px;
  transition: color 180ms ease;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  gap: 12px;
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184, 242, 91, 0.06);
}

.button-primary {
  color: #071009;
  background: var(--accent);
  box-shadow: 0 0 0 rgba(184, 242, 91, 0);
}

.button-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 12px 35px rgba(184, 242, 91, 0.16);
}

.button-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 16, 9, 0.22);
  border-radius: 50%;
  transition: transform 220ms ease;
}

.button:hover .button-icon {
  transform: translate(2px, -2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 190px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 66px;
}

.hero::before {
  position: absolute;
  z-index: -3;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  content: "";
  transform: translateX(-50%);
  background:
    linear-gradient(rgba(143, 191, 160, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 191, 160, 0.038) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 5%, transparent 95%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  content: "";
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 10% 18%, rgba(25, 101, 82, 0.22), transparent 33%),
    linear-gradient(180deg, rgba(4, 10, 9, 0.24), var(--bg));
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
}

.hero-glow-one {
  top: 12%;
  right: 4%;
  width: 480px;
  height: 480px;
  background: #1e755f;
}

.hero-glow-two {
  bottom: 7%;
  left: -13%;
  width: 300px;
  height: 300px;
  background: #89b842;
  opacity: 0.1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(184, 242, 91, 0.5);
  border-radius: 50%;
  content: "";
  animation: statusPulse 2.2s ease-out infinite;
}

.hero h1,
.section-heading h2,
.platform-copy h2,
.impact-heading h2,
.about-copy h2,
.contact-copy h2,
.intro-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(68px, 7.4vw, 116px);
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(96deg, var(--accent) 0%, #71e8c8 84%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 580px;
  margin: 32px 0 34px;
  color: var(--muted-bright);
  font-size: 18px;
  line-height: 1.65;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-bright);
  font-size: 14px;
  transition: color 180ms ease;
}

.text-link span {
  color: var(--accent);
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--text);
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-trust {
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: #7f9189;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-trust span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--accent-dark);
}

.market-console-wrap {
  position: relative;
  perspective: 1600px;
}

.market-console {
  position: relative;
  z-index: 2;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(181, 224, 203, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(17, 36, 31, 0.94), rgba(6, 15, 13, 0.98)),
    var(--surface);
  box-shadow:
    0 60px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.market-console-wrap:hover .market-console {
  transform: rotateY(-1deg) rotateX(0);
}

.market-console::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.035) 50%, transparent 75%);
  transform: translateX(-120%);
  animation: consoleShine 7s ease-in-out infinite;
  pointer-events: none;
}

.console-topbar {
  padding: 0 2px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.console-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-bright);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.console-logo {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  border-radius: 5px;
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.live-pill span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 9px var(--accent);
}

.market-metrics {
  padding: 22px 2px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.market-metrics > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
}

.market-metrics span,
.market-metrics small,
.floating-card small {
  color: #7f938a;
  font-size: 10px;
}

.market-metrics > div > span {
  grid-column: 1 / -1;
  margin-bottom: 3px;
}

.market-metrics strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.market-metrics strong small {
  color: var(--muted-bright);
  font-size: 10px;
}

.market-metrics > div > small {
  justify-self: end;
}

.positive {
  color: var(--accent) !important;
}

.chart-panel {
  position: relative;
  padding: 15px 14px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 10, 8, 0.52);
}

.chart-header,
.chart-value {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-header {
  color: #8ca097;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.chart-header div {
  display: flex;
  gap: 4px;
}

.chart-range {
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  color: #70847b;
  background: transparent;
  font-size: 8px;
  cursor: pointer;
}

.chart-range.active {
  color: var(--accent);
  background: rgba(184, 242, 91, 0.1);
}

.chart-value {
  margin-top: 12px;
  justify-content: flex-start;
  gap: 6px;
}

.chart-value strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.chart-value span {
  color: #82958c;
  font-size: 9px;
}

.market-chart {
  width: 100%;
  height: 184px;
  margin-top: -26px;
  overflow: visible;
}

.chart-grid path {
  fill: none;
  stroke: rgba(178, 220, 200, 0.075);
  stroke-width: 1;
}

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

.chart-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.2;
  filter: url("#chartGlow");
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawChart 2.2s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.chart-focus line {
  stroke: rgba(184, 242, 91, 0.19);
  stroke-dasharray: 4 4;
}

.chart-focus circle:first-of-type {
  fill: var(--accent);
}

.chart-focus circle:last-of-type {
  fill: none;
  stroke: rgba(184, 242, 91, 0.35);
  animation: chartPoint 2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.chart-labels {
  margin-top: -8px;
  display: flex;
  justify-content: space-between;
  color: #576a62;
  font-size: 7px;
}

.console-bottom {
  padding: 16px 3px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dispatch-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 242, 91, 0.18);
  border-radius: 7px;
  background: rgba(184, 242, 91, 0.07);
}

.status-icon svg {
  width: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
}

.dispatch-status div {
  display: flex;
  flex-direction: column;
}

.dispatch-status div span {
  color: #70847b;
  font-size: 8px;
}

.dispatch-status div strong {
  color: var(--muted-bright);
  font-size: 10px;
  font-weight: 600;
}

.energy-flow {
  height: 23px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.energy-flow span {
  width: 3px;
  border-radius: 2px;
  background: var(--cyan);
  animation: energyBars 1.2s ease-in-out infinite alternate;
}

.energy-flow span:nth-child(1) {
  height: 7px;
}

.energy-flow span:nth-child(2) {
  height: 13px;
  animation-delay: -0.3s;
}

.energy-flow span:nth-child(3) {
  height: 20px;
  animation-delay: -0.6s;
}

.energy-flow span:nth-child(4) {
  height: 11px;
  animation-delay: -0.15s;
}

.energy-flow span:nth-child(5) {
  height: 16px;
  animation-delay: -0.45s;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 205px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(196, 229, 213, 0.17);
  border-radius: 11px;
  background: rgba(10, 25, 21, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.floating-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.floating-card strong {
  color: var(--muted-bright);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.floating-card > span:last-child {
  font-size: 10px;
}

.flexibility-card {
  right: -25px;
  bottom: 48px;
  animation: floatingCard 5s ease-in-out infinite;
}

.floating-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--accent);
  background: rgba(184, 242, 91, 0.09);
}

.floating-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.algo-card {
  top: 112px;
  left: -44px;
  animation: floatingCard 5s -2.5s ease-in-out infinite;
}

.algo-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(94, 223, 200, 0.09), 0 0 16px rgba(94, 223, 200, 0.4);
}

.check-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(184, 242, 91, 0.08);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(184, 242, 91, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -65px -30px;
}

.orbit-two {
  inset: -120px -85px;
  border-style: dashed;
  animation: orbitSpin 50s linear infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #697d74;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(-6px);
  transform-origin: left bottom;
}

.scroll-cue i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--accent);
  animation: scrollLine 2.3s ease-in-out infinite;
}

.intro-band {
  padding: 120px 0 130px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #081310;
}

.intro-band-inner {
  text-align: center;
}

.intro-band h2 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(44px, 5.8vw, 80px);
  line-height: 1.07;
}

.intro-band h2 span {
  display: block;
  color: #677a72;
}

.solutions {
  padding-top: 150px;
  padding-bottom: 160px;
}

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.platform-copy h2,
.impact-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 1.03;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}

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

.solution-card {
  position: relative;
  min-height: 510px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 40%),
    var(--surface);
  transition:
    border-color 300ms ease,
    transform 300ms ease,
    background 300ms ease;
}

.solution-card:hover {
  border-color: rgba(184, 242, 91, 0.35);
  background-color: #0e1d19;
  transform: translateY(-7px);
}

.solution-card-featured {
  background:
    radial-gradient(circle at 20% 5%, rgba(184, 242, 91, 0.09), transparent 38%),
    var(--surface);
}

.card-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #50635a;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.solution-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 242, 91, 0.2);
  border-radius: 10px;
  color: var(--accent);
  background: rgba(184, 242, 91, 0.055);
}

.solution-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.solution-card h3 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: 31px;
  letter-spacing: -0.035em;
}

.solution-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.solution-card ul {
  margin: 26px 0 34px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.solution-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #afbeb7;
  font-size: 12px;
}

.solution-card li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 7px rgba(184, 242, 91, 0.4);
}

.solution-card > a {
  margin-top: auto;
  padding-top: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted-bright);
  font-size: 12px;
  transition: color 180ms ease;
}

.solution-card > a span {
  color: var(--accent);
  font-size: 18px;
  transition: transform 180ms ease;
}

.solution-card > a:hover {
  color: var(--accent);
}

.solution-card > a:hover span {
  transform: translate(3px, -3px);
}

.card-scan {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 40%;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(184, 242, 91, 0.035), transparent);
  transition: opacity 300ms;
}

.solution-card:hover .card-scan {
  opacity: 1;
  animation: cardScan 2.8s linear infinite;
}

.platform-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.platform-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background:
    linear-gradient(rgba(142, 186, 165, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 186, 165, 0.038) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 72% 50%, black, transparent 65%);
}

.platform-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.platform-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 30px 0 42px;
  color: var(--muted);
}

.platform-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.platform-points > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.platform-points > div > span {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.platform-points p {
  margin: 0;
  display: flex;
  flex-direction: column;
  color: #70847b;
  font-size: 11px;
}

.platform-points strong {
  color: var(--muted-bright);
  font-size: 13px;
  font-weight: 600;
}

.system-map {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.system-map::before {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  content: "";
  background: rgba(88, 203, 172, 0.055);
  filter: blur(30px);
}

.system-orbit {
  position: absolute;
  border: 1px solid rgba(167, 210, 190, 0.13);
  border-radius: 50%;
}

.system-orbit-outer {
  inset: 5%;
  animation: orbitSpin 80s linear infinite;
}

.system-orbit-outer::before,
.system-orbit-inner::before {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.system-orbit-outer::before {
  top: 13%;
  left: 15%;
}

.system-orbit-inner {
  inset: 23%;
  border-style: dashed;
  animation: orbitSpin 35s linear infinite reverse;
}

.system-orbit-inner::before {
  right: 9%;
  bottom: 21%;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(184, 242, 91, 0.31);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184, 242, 91, 0.11), transparent 70%),
    rgba(7, 20, 16, 0.94);
  box-shadow:
    0 0 0 15px rgba(184, 242, 91, 0.018),
    0 0 70px rgba(99, 198, 155, 0.09),
    inset 0 0 30px rgba(184, 242, 91, 0.04);
  transform: translate(-50%, -50%);
}

.system-core > span {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--bg-deep);
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
}

.system-core strong {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.system-core small {
  margin-top: 2px;
  color: var(--accent);
  font-size: 7px;
  letter-spacing: 0.28em;
}

.system-node {
  position: absolute;
  min-width: 74px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted-bright);
  background: rgba(9, 22, 18, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: center;
  animation: orbitSpin 80s linear infinite reverse;
}

.node-market {
  top: -16px;
  left: calc(50% - 38px);
}

.node-assets {
  top: calc(50% - 17px);
  right: -28px;
}

.node-data {
  bottom: -16px;
  left: calc(50% - 38px);
}

.node-grid {
  top: calc(50% - 17px);
  left: -22px;
}

.system-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.system-connections path {
  fill: none;
  stroke: url("#beam");
  stroke-width: 1;
  stroke-dasharray: 8 14;
  animation: dataFlow 4s linear infinite;
}

.impact {
  padding-top: 150px;
  padding-bottom: 160px;
}

.impact-heading {
  margin-bottom: 75px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.impact-heading h2 span,
.contact-copy h2 span {
  color: #63766e;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}

.impact-item {
  min-height: 220px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.impact-item:first-child {
  padding-left: 0;
}

.impact-item:last-child {
  border-right: 0;
}

.impact-item strong,
.impact-item i {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.impact-item i {
  color: var(--accent);
  font-size: clamp(28px, 3vw, 42px);
}

.impact-item p {
  max-width: 200px;
  margin: 70px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.about {
  padding-bottom: 160px;
}

.about-card {
  position: relative;
  min-height: 520px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 100px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 50%, rgba(184, 242, 91, 0.085), transparent 29%),
    linear-gradient(135deg, #0b1915, #08110f);
}

.about-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(161, 204, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 204, 184, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.about-symbol {
  position: relative;
  height: 290px;
  display: grid;
  place-items: center;
}

.about-symbol::before,
.about-symbol::after {
  position: absolute;
  border: 1px solid rgba(184, 242, 91, 0.14);
  border-radius: 50%;
  content: "";
}

.about-symbol::before {
  width: 270px;
  height: 270px;
}

.about-symbol::after {
  width: 200px;
  height: 200px;
  border-style: dashed;
  animation: orbitSpin 30s linear infinite;
}

.about-symbol span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 60px rgba(184, 242, 91, 0.14);
}

.about-copy {
  position: relative;
}

.about-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted-bright);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #06100d;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(155, 199, 178, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 199, 178, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 65%, transparent);
}

.contact-light {
  position: absolute;
  top: -250px;
  right: -50px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(55, 170, 135, 0.12);
  filter: blur(100px);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 490px;
  margin: 30px 0 60px;
  color: var(--muted);
}

.contact-company {
  display: flex;
  flex-direction: column;
}

.contact-company span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.contact-company small {
  color: #687b72;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.contact-form {
  position: relative;
  padding: 36px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 28, 23, 0.72);
  backdrop-filter: blur(18px);
}

.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #8ba097;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  color: var(--text);
  background: rgba(4, 12, 10, 0.67);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.contact-form input {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #50635a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(184, 242, 91, 0.55);
  box-shadow: 0 0 0 3px rgba(184, 242, 91, 0.055);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note,
.form-status {
  margin: -5px 0 0;
  color: #61746b;
  font-size: 9px;
  text-align: center;
}

.form-status {
  display: none;
  color: var(--accent);
  font-size: 11px;
}

.form-status.visible {
  display: block;
}

.form-status.error {
  color: #ff8e82;
}

.site-footer {
  padding: 75px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 16px 0 44px;
  color: #60736a;
  font-size: 12px;
}

.footer-links {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  gap: 32px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #52655c;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes statusPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.65);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

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

@keyframes chartPoint {
  0% {
    opacity: 0.9;
    transform: scale(0.6);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes consoleShine {
  0%,
  45% {
    transform: translateX(-120%);
  }
  60%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes energyBars {
  to {
    height: 5px;
    opacity: 0.55;
  }
}

@keyframes floatingCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

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

@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes cardScan {
  to {
    transform: translateY(340%);
  }
}

@keyframes dataFlow {
  to {
    stroke-dashoffset: -44;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding-top: 170px;
    padding-bottom: 150px;
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(72px, 11vw, 112px);
  }

  .market-console-wrap {
    width: min(740px, 92%);
    margin: 20px auto 0;
  }

  .scroll-cue {
    display: none;
  }

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

  .solution-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .platform-inner {
    gap: 35px;
  }

  .about-card {
    padding: 55px 45px;
    gap: 45px;
  }

  .contact-inner {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--text);
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    padding: 20px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(6, 15, 13, 0.97);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--muted-bright);
    font-size: 14px;
  }

  .mobile-menu a:last-child {
    color: var(--accent);
    border-bottom: 0;
  }

  .hero {
    padding-top: 150px;
    gap: 80px;
  }

  .hero h1 {
    font-size: clamp(63px, 15vw, 100px);
  }

  .market-console-wrap {
    width: 100%;
  }

  .market-console {
    transform: none;
  }

  .floating-card {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 500px;
  }

  .platform-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .system-map {
    width: min(100%, 520px);
  }

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

  .impact-item:nth-child(2) {
    border-right: 0;
  }

  .impact-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .impact-item:nth-child(3) {
    padding-left: 0;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-symbol {
    height: 230px;
  }

  .about-symbol::before {
    width: 220px;
    height: 220px;
  }

  .about-symbol::after {
    width: 165px;
    height: 165px;
  }

  .about-symbol span {
    font-size: 135px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 62px;
    padding-inline: 14px 10px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 100px;
    gap: 65px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 78px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .text-link {
    justify-content: center;
  }

  .hero-trust {
    margin-top: 42px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero-trust span::after {
    display: none;
  }

  .market-console {
    padding: 14px;
    border-radius: 14px;
  }

  .market-console-wrap > .orbit {
    display: none;
  }

  .market-metrics {
    gap: 8px;
  }

  .market-metrics strong {
    font-size: 17px;
  }

  .market-metrics > div > small {
    display: none;
  }

  .chart-panel {
    padding-inline: 9px;
  }

  .market-chart {
    height: 150px;
  }

  .intro-band {
    padding: 90px 0;
  }

  .intro-band h2,
  .section-heading h2,
  .platform-copy h2,
  .impact-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(41px, 12.5vw, 58px);
  }

  .solutions,
  .impact {
    padding-top: 110px;
    padding-bottom: 110px;
  }

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

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

  .platform-section,
  .contact-section {
    padding: 110px 0;
  }

  .platform-inner {
    gap: 70px;
  }

  .system-map {
    width: 110%;
    margin-left: -5%;
  }

  .system-core {
    width: 135px;
    height: 135px;
  }

  .system-core > span {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .system-node {
    min-width: 64px;
    padding-inline: 9px;
    font-size: 7px;
  }

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

  .impact-item,
  .impact-item:nth-child(3) {
    min-height: 190px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-item:last-child {
    border-bottom: 0;
  }

  .impact-item p {
    margin-top: 44px;
  }

  .about {
    padding-bottom: 110px;
  }

  .about-card {
    padding: 50px 24px;
    gap: 35px;
    border-radius: 18px;
  }

  .about-symbol {
    height: 190px;
  }

  .about-symbol::before {
    width: 185px;
    height: 185px;
  }

  .about-symbol::after {
    width: 140px;
    height: 140px;
  }

  .about-symbol span {
    font-size: 110px;
  }

  .contact-inner {
    gap: 55px;
  }

  .contact-copy > p:not(.section-kicker) {
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-row: auto;
    grid-column: 1;
    flex-wrap: wrap;
    gap: 18px 25px;
  }

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
