:root {
  --color-bg: #F6F6F8;
  --color-bg-soft: #F6F6F8;
  --color-text: #050505;
  --color-muted: #6B6B6B;
  --color-border: #DDDDD8;
  --color-primary: #0000FF;
  --color-white: #FFFFFF;
  --color-ink-soft: #242424;
  --color-line: rgba(5, 5, 5, 0.09);
  --color-primary-soft: rgba(0, 0, 255, 0.08);
  --color-bg-alt: #F0F0F1;
  --color-surface: rgba(255, 255, 255, 0.68);
  --color-surface-strong: rgba(255, 255, 255, 0.84);
  --color-text-soft: rgba(5, 5, 5, 0.62);
  --color-text-faint: rgba(5, 5, 5, 0.6);
  --color-border-soft: rgba(5, 5, 5, 0.075);
  --color-border-hover: rgba(0, 0, 255, 0.14);
  --color-blue-soft: rgba(0, 0, 255, 0.1);

  --font-sans: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-padding-desktop: 120px;
  --section-padding-mobile: 72px;
  --section-padding-system: clamp(112px, 10vw, 168px);
  --section-padding-system-lg: clamp(140px, 12vw, 220px);
  --section-header-gap: clamp(54px, 6vw, 88px);
  --grid-gap: clamp(20px, 2.4vw, 34px);
  --card-padding: clamp(38px, 4.4vw, 58px);
  --card-padding-compact: clamp(34px, 3.8vw, 50px);
  --content-gap-sm: 12px;
  --content-gap-md: 22px;
  --content-gap-lg: clamp(38px, 4.5vw, 58px);
  --radius-card: 8px;
  --radius-button: 8px;
  --radius-panel: 8px;
  --radius-card-system: 8px;

  --type-label: 0.9rem;
  --type-small: 0.84rem;
  --type-body: clamp(1rem, 1.1vw, 1.1rem);
  --type-body-sm: 0.94rem;
  --type-hero: clamp(3.2rem, 4.35vw, 4rem);
  --type-section-title: clamp(2.55rem, 4.45vw, 4.25rem);
  --type-section-title-lg: clamp(3rem, 5.3vw, 5.8rem);
  --type-card-title: clamp(1.48rem, 1.9vw, 2rem);
  --type-card-title-lg: clamp(1.7rem, 2.25vw, 2.35rem);
  --leading-display: 1.06;
  --leading-heading: 1.08;
  --leading-body: 1.68;
  --tracking-display: -0.03em;
  --tracking-label: 0.1em;
  --weight-display: 430;
  --weight-title: 520;
  --weight-body: 400;
  --weight-label: 500;

  --shadow-subtle: 0 18px 60px rgba(5, 5, 5, 0.05);
  --shadow-card-system: 0 18px 52px rgba(5, 5, 5, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  --shadow-card-hover: 0 24px 64px rgba(5, 5, 5, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-long: 520ms cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 0, 255, 0.05), transparent 28rem),
    linear-gradient(180deg, var(--color-bg), #fbfbf8 48%, var(--color-bg));
  color: var(--color-text);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius-button);
  background: var(--color-text);
  color: var(--color-white);
  padding: 10px 14px;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding-desktop);
}

.section--hero {
  padding-block: calc(var(--header-height) + 56px) 84px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 68px);
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading h2,
.connect__content h2,
.final-cta h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.connect__content p,
.final-cta p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.eyebrow,
.card-kicker {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-button);
  padding: 0 18px;
  font-size: 0.93rem;
  font-weight: 620;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button--primary {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.button--primary:hover {
  background: #0505d8;
  border-color: #0505d8;
}

.button--secondary {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.34);
  color: var(--color-text);
}

.button--secondary:hover {
  border-color: rgba(5, 5, 5, 0.22);
  background: var(--color-white);
}

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.58);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 5, 5, 0.18);
  background: var(--color-white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(247, 247, 244, 0.72);
  backdrop-filter: blur(18px);
  transition:
    border-color var(--transition),
    background-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--color-border);
  background: rgba(247, 247, 244, 0.92);
}

.header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand__mark {
  display: inline-grid;
  min-width: 54px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--color-text);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.brand__logo {
  width: min(100px, 28vw);
  height: auto;
}

.brand__logo--footer {
  /*filter: brightness(0) invert(1);*/
  opacity: 1;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.92rem;
}

.nav a,
.footer__links a,
.footer__contact a {
  transition: color var(--transition);
}

.nav a:hover,
.footer__links a:hover,
.footer__contact a:hover {
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6.5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.44);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--transition);
}

.menu-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero__grid {
  min-height: calc(100dvh - var(--header-height) - 140px);
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.hero__title {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.6rem, 7.7vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.hero__metrics div {
  padding: 22px 22px 0 0;
}

.hero__metrics div + div {
  padding-left: 22px;
  border-left: 1px solid var(--color-border);
}

.hero__metrics dt {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: 720;
}

.hero__metrics dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-visual,
.tab-visual,
.dashboard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.hero-visual {
  min-height: clamp(520px, 62vw, 760px);
  border-radius: clamp(24px, 3vw, 42px);
  box-shadow: var(--shadow-subtle);
}

.tech-grid,
.tab-visual::before,
.dashboard-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 54% 44%, #000 0 34%, transparent 74%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-visual::after,
.tab-visual::after {
  content: "";
  position: absolute;
  width: 38%;
  height: 2px;
  left: 9%;
  top: 28%;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.72;
  transform-origin: left;
  animation: lineSweep 5.8s ease-in-out infinite;
}

.energy-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.55;
}

.energy-line--one {
  inset: auto 9% 31% 28%;
  animation: lineSweep 6.8s ease-in-out infinite 900ms;
}

.energy-line--two {
  inset: 47% 22% auto 12%;
  animation: lineSweep 7.2s ease-in-out infinite 1.8s;
}

.asset-stack {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 31%;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 16px;
}

.asset-module {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.asset-module--large {
  min-height: 288px;
  grid-row: span 2;
}

.asset-module--dark {
  background: var(--color-text);
  color: var(--color-white);
}

.asset-module span,
.visual-caption span,
.interface-card span,
.dashboard-card span,
.mini-table,
.footer h2 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asset-module strong {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.asset-module--dark span {
  color: rgba(255, 255, 255, 0.58);
}

.node-map {
  position: absolute;
  right: 13%;
  bottom: 15%;
  width: 190px;
  height: 150px;
}

.node-map span,
.map-node,
.network span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-white);
}

.node-map::before,
.node-map::after,
.network::before,
.network::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(0, 0, 255, 0.34);
  transform-origin: left;
}

.node-map::before {
  width: 160px;
  left: 18px;
  top: 32px;
  transform: rotate(31deg);
}

.node-map::after {
  width: 118px;
  left: 44px;
  top: 110px;
  transform: rotate(-28deg);
}

.node-map span:nth-child(1) { left: 10px; top: 24px; }
.node-map span:nth-child(2) { right: 18px; top: 98px; }
.node-map span:nth-child(3) { left: 50px; bottom: 8px; }
.node-map span:nth-child(4) { right: 4px; top: 10px; }

.visual-caption {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 8%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.11);
  padding-top: 22px;
}

.visual-caption strong {
  max-width: 230px;
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
  line-height: 1;
  text-align: right;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.pillar-card {
  min-height: 360px;
  padding: clamp(28px, 4vw, 44px);
}

.pillar-card h3,
.bento-card h3,
.industry-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  line-height: 1.04;
}

.pillar-card p:not(.card-kicker),
.bento-card p:not(.card-kicker),
.industry-card p {
  margin: 18px 0 0;
  color: var(--color-muted);
  line-height: 1.58;
}

.icon-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.icon-mark span {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.icon-mark span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  left: 12px;
  top: 8px;
  background: var(--color-primary);
}

.operating {
  background: linear-gradient(180deg, transparent, rgba(239, 239, 237, 0.68), transparent);
}

.operating__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: 28px;
  align-items: stretch;
}

.tabs-list {
  display: grid;
  gap: 10px;
}

.tab-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  padding: 22px 22px 24px;
  text-align: left;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.5);
}

.tab-button.is-active {
  border-color: var(--color-border);
  background: var(--color-white);
}

.tab-button__title {
  display: block;
  font-size: 1.08rem;
  font-weight: 690;
}

.tab-button__text {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--color-muted);
  line-height: 1.55;
  opacity: 0;
  transition:
    max-height var(--transition-long),
    opacity var(--transition-long),
    margin-top var(--transition-long);
}

.tab-button.is-active .tab-button__text {
  max-height: 170px;
  margin-top: 12px;
  opacity: 1;
}

.tab-progress {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  height: 2px;
  background: rgba(5, 5, 5, 0.08);
}

.tab-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--color-primary);
}

.tab-button.is-active .tab-progress::after {
  animation: progressFill 6s linear forwards;
}

.tab-panels {
  min-height: 650px;
}

.tab-panel {
  height: 100%;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel.is-swapping {
  animation: panelFade 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tab-visual {
  min-height: 650px;
  height: 100%;
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 0, 255, 0.08), transparent 24rem),
    var(--color-bg-soft);
}

/*.tab-visual::before {
  content: "";
}*/

.visual-label {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 2;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 13px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.interface-card,
.blueprint-panel {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
}

.interface-card {
  right: 8%;
  bottom: 10%;
  min-width: 210px;
}

.interface-card--main {
  left: 9%;
  right: auto;
  top: 24%;
  bottom: auto;
  width: min(360px, 72%);
}

.interface-card strong,
.blueprint-panel strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.bar-chart,
.revenue-chart,
.dashboard-chart {
  display: flex;
  align-items: end;
  gap: 8px;
}

.bar-chart {
  height: 94px;
  margin-top: 24px;
}

.bar-chart i,
.revenue-chart span,
.dashboard-chart span {
  display: block;
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: var(--color-primary);
}

.bar-chart i:nth-child(1) { height: 42%; opacity: 0.25; }
.bar-chart i:nth-child(2) { height: 74%; opacity: 0.38; }
.bar-chart i:nth-child(3) { height: 58%; opacity: 0.5; }
.bar-chart i:nth-child(4) { height: 88%; opacity: 0.78; }
.bar-chart i:nth-child(5) { height: 66%; opacity: 0.44; }

.map-node--one { left: 58%; top: 30%; }
.map-node--two { left: 42%; top: 60%; }
.map-node--three { right: 18%; top: 52%; }

.module-row {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-row span {
  min-height: 240px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48)),
    repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(5, 5, 5, 0.06) 13px);
}

.blueprint-panel {
  left: 12%;
  bottom: 12%;
  width: min(330px, 76%);
}

.blueprint-panel span {
  color: var(--color-muted);
}

.network {
  position: absolute;
  inset: 18% 11% 14%;
  z-index: 2;
}

.network::before {
  left: 10%;
  top: 52%;
  width: 72%;
  transform: rotate(-9deg);
}

.network::after {
  left: 28%;
  top: 22%;
  width: 52%;
  transform: rotate(31deg);
}

.network span:nth-child(1) { left: 9%; top: 48%; }
.network span:nth-child(2) { left: 31%; top: 17%; }
.network span:nth-child(3) { left: 49%; top: 60%; }
.network span:nth-child(4) { right: 16%; top: 35%; }
.network span:nth-child(5) { right: 5%; bottom: 16%; }

.forecast-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 42%;
  z-index: 2;
  height: 150px;
  border-bottom: 2px solid var(--color-primary);
  clip-path: polygon(0 72%, 13% 58%, 24% 64%, 37% 30%, 51% 46%, 66% 18%, 82% 38%, 100% 9%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(0, 0, 255, 0.12), rgba(0, 0, 255, 0));
}

.mini-table {
  position: absolute;
  right: 9%;
  top: 16%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 28px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.revenue-chart {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  z-index: 2;
  height: 320px;
}

.revenue-chart span,
.dashboard-chart span {
  height: var(--h);
  opacity: 0.72;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.bento-card {
  min-height: 292px;
  padding: clamp(28px, 4vw, 44px);
}

.bento-card--featured {
  min-height: 420px;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.connect {
  border-block: 1px solid var(--color-border);
  background: rgba(239, 239, 237, 0.7);
}

.connect__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-ink-soft);
}

/*.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 2px;
  background: var(--color-primary);
}*/

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 16px;
    height: 16px;
    
    /* Uporaba URL-kodiranega Lucide SVG-ja */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230000ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.dashboard-card {
  min-height: 560px;
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 70% 28%, rgba(0, 0, 255, 0.08), transparent 22rem),
    var(--color-white);
  padding: clamp(24px, 4vw, 44px);
}

.dashboard-card > * {
  position: relative;
  z-index: 2;
}

.dashboard-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-card__top strong {
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-metrics div,
.dashboard-log div {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(247, 247, 244, 0.72);
  padding: 18px;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.dashboard-chart {
  height: 190px;
  margin-top: 42px;
}

.dashboard-log {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--color-muted);
}

.dashboard-log span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--color-primary);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.industry-card {
  min-height: 270px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.26);
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.7);
}

.industry-card .icon-mark {
  margin-bottom: 44px;
}

.final-cta {
  padding-top: 0;
}

.final-cta__inner {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(239, 239, 237, 0.74)),
    var(--color-bg-soft);
  padding: clamp(34px, 7vw, 92px);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-text);
  color: var(--color-white);
  padding-block: 70px 28px;
}

.footer .brand__mark {
  border-color: rgba(255, 255, 255, 0.8);
}

.footer .brand {
  width: fit-content;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(40px, 8vw, 120px);
}

.footer__brand p {
  max-width: 450px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer h2 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.footer__bottom {
  margin-top: 68px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.9rem;
}

.footer__bottom p {
  margin: 0;
}

.reveal,
.reveal-item,
.reveal-visual {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visual {
  transform: translateY(18px) scale(0.985);
}

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

.reveal-group.is-visible .reveal-item:nth-child(2) { transition-delay: 80ms; }
.reveal-group.is-visible .reveal-item:nth-child(3) { transition-delay: 150ms; }
.reveal-group.is-visible .reveal-item:nth-child(4) { transition-delay: 220ms; }
.reveal-group.is-visible .reveal-item:nth-child(5) { transition-delay: 290ms; }

@keyframes lineSweep {
  0%, 100% {
    transform: scaleX(0.22);
    opacity: 0.22;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.74;
  }
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium refinement layer: structure and content stay intact. */
:root {
  --color-surface-raised: var(--color-surface-strong);
  --shadow-panel: var(--shadow-card-hover);
  --shadow-card: var(--shadow-card-system);
}

body {
  background:
    radial-gradient(circle at 86% 5%, rgba(0, 0, 255, 0.045), transparent 30rem),
    linear-gradient(180deg, var(--color-bg), #fbfbf8 42%, var(--color-bg-alt));
}

main > section {
  position: relative;
}

main > section:nth-of-type(1) {
  background:
    radial-gradient(circle at 84% 24%, rgba(0, 0, 255, 0.035), transparent 32rem),
    var(--color-bg);
}

main > section:nth-of-type(2),
main > section:nth-of-type(3),
main > section:nth-of-type(7) {
  background: var(--color-white);
}

main > section:nth-of-type(5),
main > section:nth-of-type(8) {
  background: var(--color-bg-alt);
}

main > section:nth-of-type(4),
main > section:nth-of-type(6) {
  background: var(--color-bg-soft);
}

.section {
  padding-block: clamp(96px, 9vw, 152px);
}

.section--hero {
  padding-block: calc(var(--header-height) + 72px) 108px;
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(48px, 6.4vw, 86px);
}

.section-heading h2,
.connect__content h2,
.final-cta h2 {
  line-height: 0.91;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.connect__content p,
.final-cta p {
  max-width: 730px;
  color: rgba(5, 5, 5, 0.62);
  line-height: 1.62;
}

.hero__title {
  line-height: 0.86;
  color: var(--color-text);
  font-weight: 690;
  text-wrap: balance;
}

.hero__text {
  max-width: 690px;
  color: rgba(5, 5, 5, 0.64);
}

.card,
.industry-card,
.tab-button,
.dashboard-card,
.hero-visual,
.final-cta__inner {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.card {
  background: rgba(255, 255, 255, 0.7);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 255, 0.2);
  box-shadow: var(--shadow-card);
}

.hero-visual {
  isolation: isolate;
  min-height: clamp(560px, 62vw, 790px);
  border-color: rgba(5, 5, 5, 0.1);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.86), transparent 22rem),
    radial-gradient(circle at 20% 78%, rgba(0, 0, 255, 0.07), transparent 24rem),
    var(--color-bg-soft);
  box-shadow: var(--shadow-panel);
}

.hero-visual::before {
  inset: 8%;
  z-index: 1;
  border-color: rgba(5, 5, 5, 0.075);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-visual::after {
  z-index: 5;
  width: 50%;
  top: 24%;
  animation: energyDrift 7.8s ease-in-out infinite;
}

.tech-grid {
  z-index: 0;
  opacity: 0.95;
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, #000 0 58%, transparent 86%);
}

.tech-grid::before,
.tech-grid::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(24px);
}

.tech-grid::before {
  width: 44%;
  height: 24%;
  right: 6%;
  top: 12%;
}

.tech-grid::after {
  width: 34%;
  height: 28%;
  left: 8%;
  bottom: 8%;
  background: rgba(0, 0, 255, 0.05);
}

.asset-stack,
.node-map,
.visual-caption,
.energy-line {
  z-index: 3;
}

.asset-stack {
  left: 9%;
  right: 9%;
  top: 27%;
  gap: 18px;
  perspective: 1200px;
}

.asset-module {
  position: relative;
  border-color: rgba(5, 5, 5, 0.11);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: 0 22px 64px rgba(29, 29, 24, 0.075);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color var(--transition);
}

.asset-module::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  right: 22px;
  top: 24px;
  opacity: 0.72;
}

.asset-module--large {
  transform: translate3d(0, calc(var(--hero-scroll, 0px) * -0.16), 0) rotateX(1deg);
}

.asset-module:not(.asset-module--large):nth-child(2) {
  transform: translate3d(0, calc(var(--hero-scroll, 0px) * 0.1), 0);
}

.asset-module--dark {
  background:
    linear-gradient(180deg, rgba(36, 36, 36, 0.96), rgba(5, 5, 5, 0.96)),
    var(--color-text);
  transform: translate3d(0, calc(var(--hero-scroll, 0px) * -0.08), 0);
}

.energy-line {
  z-index: 4;
  height: 1px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 255, 0.24));
}

.energy-line--one {
  inset: auto 10% 34% 18%;
  animation: energyDrift 9s ease-in-out infinite 700ms;
}

.energy-line--two {
  inset: 50% 18% auto 10%;
  animation: energyDrift 8.2s ease-in-out infinite 1.6s;
}

.node-map span,
.map-node,
.network span {
  width: 10px;
  height: 10px;
  border-width: 1.5px;
  box-shadow: 0 0 0 5px rgba(0, 0, 255, 0.06);
  animation: nodePulse 3.8s ease-in-out infinite;
}

.visual-caption {
  bottom: 7%;
  border-color: rgba(5, 5, 5, 0.1);
}

.hero__metrics dt,
.dashboard-metrics strong,
.asset-module strong {
  font-variant-numeric: tabular-nums;
}

.hero__metrics {
  border-top-color: rgba(5, 5, 5, 0.1);
}

.hero__metrics dt {
  line-height: 1;
}

.hero__metrics dd {
  color: rgba(5, 5, 5, 0.52);
  font-size: 0.8rem;
}

.pillar-grid {
  gap: 22px;
}

.pillar-card,
.bento-card {
  position: relative;
  padding: clamp(38px, 4.8vw, 58px);
}

/*.pillar-card::before,
.bento-card::before {
  content: "";
  position: absolute;
  left: clamp(34px, 4.4vw, 54px);
  top: clamp(30px, 4vw, 46px);
  width: 34px;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.82;
}*/

.pillar-card .icon-mark {
  margin-top: 34px;
}

.icon-mark {
  width: 52px;
  height: 52px;
  border-color: rgba(5, 5, 5, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.icon-mark span {
  width: 22px;
  height: 22px;
  border-width: 1px;
}

.icon-mark span::after {
  height: 1px;
  left: 12px;
  top: 9px;
}

/* What We Do refinement: quieter product-system cards. */
#solutions {
  padding-block: clamp(126px, 10vw, 176px);
}

#solutions .section-heading {
  max-width: 800px;
  margin-bottom: clamp(62px, 7vw, 96px);
}

#solutions .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.5vw, 4.25rem);
  font-weight: 450;
  line-height: 1.03;
}

#solutions .section-heading p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(5, 5, 5, 0.56);
}

#solutions .pillar-grid {
  grid-template-columns: 1.05fr 0.975fr 0.975fr;
  gap: clamp(22px, 2.6vw, 36px);
}

#solutions .pillar-card {
  min-height: 360px;
  border-color: rgba(5, 5, 5, 0.095);
  background: rgba(255, 255, 255, 0.48);
  padding: clamp(44px, 5.2vw, 66px);
  box-shadow: none;
}

#solutions .pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 255, 0.16);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

#solutions .pillar-card .icon-mark {
  margin-top: 0;
  margin-bottom: clamp(48px, 7vw, 36px);
}

#solutions .pillar-card h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 470;
  line-height: 1.08;
}

#solutions .pillar-card p:not(.card-kicker) {
  max-width: 32ch;
  color: rgba(5, 5, 5, 0.54);
  line-height: 1.66;
}

#solutions .card-kicker {
  color: rgba(5, 5, 5, 0.42);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

#solutions .icon-mark {
  width: 40px;
  height: 40px;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0000ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

@media (max-width: 1080px) {
  #solutions .pillar-grid {
    grid-template-columns: 1fr;
  }

  #solutions .pillar-card {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  #solutions {
    padding-block: 86px;
  }

  #solutions .pillar-card {
    padding: 34px;
  }

  #solutions .pillar-card .icon-mark {
    margin-bottom: 48px;
  }
}

.operating {
  background:
    linear-gradient(180deg, var(--color-bg-soft), #f1f1ee 54%, var(--color-bg-soft));
}

.operating__grid {
  gap: clamp(30px, 4vw, 48px);
}

.tabs-list {
  align-content: start;
  gap: 12px;
}

.tab-button {
  border-radius: 16px;
  padding: 24px 24px 28px 28px;
  background: rgba(255, 255, 255, 0.18);
}

.tab-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  opacity: 0;
  transform: scaleY(0.4);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.56);
  transform: translateY(-1px);
}

.tab-button.is-active {
  border-color: rgba(5, 5, 5, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(29, 29, 24, 0.055);
}

.tab-button.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.tab-button__title {
  letter-spacing: 0;
}

.tab-button__text {
  color: rgba(5, 5, 5, 0.58);
}

.tab-progress {
  left: 28px;
  right: 24px;
  background: rgba(5, 5, 5, 0.075);
}

.tab-panels,
.tab-visual {
  min-height: 700px;
}

.tab-visual {
  isolation: isolate;
  border-color: rgba(5, 5, 5, 0.1);
  background:
    radial-gradient(circle at 73% 16%, rgba(255, 255, 255, 0.86), transparent 18rem),
    radial-gradient(circle at 21% 84%, rgba(0, 0, 255, 0.055), transparent 24rem),
    #f2f2ef;
  box-shadow: var(--shadow-panel);
}

.tab-visual::before {
  opacity: 0.82;
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, #000 0 64%, transparent 92%);
}

.tab-visual::after {
  z-index: 3;
  width: 62%;
  left: 18%;
  top: 49%;
  height: 1px;
  animation: connectionFlash 6s ease-in-out infinite;
}

.tab-panel.is-swapping .tab-visual::after,
.tab-panel.is-swapping .network::before,
.tab-panel.is-swapping .network::after {
  animation: connectionFlash 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.visual-label {
  z-index: 5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.visual-label::after {
  content: " / BESS Module / Grid / Market / AI Control";
  color: rgba(5, 5, 5, 0.34);
}

.module-row {
  z-index: 2;
}

.module-row span,
.visual-development .interface-card--main,
.visual-grid .interface-card,
.visual-ai .interface-card--main,
.visual-market .interface-card {
  box-shadow: 0 22px 64px rgba(29, 29, 24, 0.07);
}

.module-row span {
  position: relative;
  min-height: 280px;
  border-color: rgba(5, 5, 5, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5)),
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(5, 5, 5, 0.045) 19px);
}

.module-row span::before {
  content: "BESS";
  position: absolute;
  left: 14px;
  top: 14px;
  color: rgba(5, 5, 5, 0.42);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.module-row span::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.7;
}

.interface-card,
.blueprint-panel,
.mini-table {
  border-color: rgba(5, 5, 5, 0.105);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.network::before,
.network::after,
.node-map::before,
.node-map::after {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 255, 0), rgba(0, 0, 255, 0.58), rgba(0, 0, 255, 0));
}

.network span:nth-child(1)::after { content: "AI Control"; }
.network span:nth-child(2)::after { content: "BESS Module"; }
.network span:nth-child(3)::after { content: "Grid"; }
.network span:nth-child(4)::after { content: "Market"; }

.network span::after,
.map-node::after {
  position: absolute;
  left: 16px;
  top: -4px;
  white-space: nowrap;
  color: rgba(5, 5, 5, 0.48);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bar-chart i,
.revenue-chart span,
.dashboard-chart span {
  background:
    linear-gradient(180deg, rgba(0, 0, 255, 0.9), rgba(0, 0, 255, 0.34));
}

.forecast-line {
  border-bottom-width: 1px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 255, 0.12));
}

.bento-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(270px, auto);
  gap: 20px;
}

.bento-card {
  min-height: auto;
}

.bento-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}

.bento-card:not(.bento-card--featured) {
  grid-column: span 2;
}

.bento-card .card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.bento-card .card-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* Strategic value section: balanced 2x2 grid. */
.investment {
  padding-block: clamp(136px, 11vw, 190px);
}

.investment .section-heading {
  max-width: 820px;
  margin-bottom: clamp(68px, 7vw, 104px);
}

.investment .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  font-weight: 450;
  line-height: 1.04;
}

.investment .section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(5, 5, 5, 0.55);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(24px, 2.8vw, 38px);
}

.bento-card,
.bento-card--featured,
.bento-card:not(.bento-card--featured) {
  grid-column: auto;
  grid-row: auto;
  min-height: clamp(300px, 26vw, 340px);
}

.bento-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-color: rgba(5, 5, 5, 0.082);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.4));
  padding: clamp(46px, 5vw, 68px);
  box-shadow: none;
}

.bento-card > :not(.bento-system) {
  position: relative;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: 0 18px 54px rgba(29, 29, 24, 0.045);
}

.bento-card::before {
  left: clamp(46px, 5vw, 68px);
  top: clamp(36px, 4vw, 52px);
  width: 34px;
  height: 1px;
  opacity: 0.54;
}

/*.bento-card:nth-child(2) {
  border-color: rgba(0, 0, 255, 0.14);
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 0, 255, 0.052), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
}*/

.bento-card .card-kicker {
  margin-top: 24px;
  margin-bottom: 28px;
  color: rgba(5, 5, 5, 0.44);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.bento-card .card-kicker::before {
  width: 5px;
  height: 5px;
  opacity: 0.82;
}

.bento-card h3 {
  max-width: 16ch;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 470;
  line-height: 1.08;
}

.bento-card p:not(.card-kicker) {
  max-width: 38ch;
  color: rgba(5, 5, 5, 0.54);
  line-height: 1.66;
}

.bento-system {
  position: absolute;
  right: clamp(28px, 3.8vw, 52px);
  bottom: clamp(24px, 3.4vw, 44px);
  z-index: 0;
  width: min(42%, 220px);
  color: rgba(0, 0, 255, 0.22);
  pointer-events: none;
}

.bento-system path {
  stroke: currentColor;
  opacity: 0.45;
}

.bento-system circle {
  fill: var(--color-white);
  stroke: currentColor;
  opacity: 0.72;
  animation: bentoNodePulse 4.8s ease-in-out infinite;
}

.bento-system--cost {
  right: 34px;
  bottom: 32px;
  color: rgba(0, 0, 255, 0.18);
}

.bento-system--revenue {
  right: 28px;
  bottom: 30px;
  color: rgba(0, 0, 255, 0.24);
}

.bento-system--grid {
  right: 30px;
  bottom: 26px;
  color: rgba(0, 0, 255, 0.2);
}

@keyframes bentoNodePulse {
  0%, 100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.82;
  }
}

@media (max-width: 720px) {
  .investment {
    padding-block: 86px;
  }

  .bento-card {
    padding: 34px;
  }
}

.connect {
  border-block-color: rgba(5, 5, 5, 0.08);
  padding-block: clamp(116px, 12vw, 172px);
}

.connect__grid {
  gap: clamp(64px, 8vw, 124px);
}

.connect__content {
  max-width: 560px;
}

.connect__content .eyebrow {
  margin-bottom: 24px;
  opacity: 0.72;
}

.connect__content h2 {
  font-size: clamp(2.55rem, 4.35vw, 4rem);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.connect__content p {
  max-width: 540px;
  margin-top: 28px;
  color: rgba(5, 5, 5, 0.62);
}

.connect .feature-list {
  gap: 18px;
  margin: 42px 0 44px;
  max-width: 540px;
}

.connect .feature-list li {
  padding-left: 28px;
  color: rgba(5, 5, 5, 0.72);
}

/*.connect .feature-list li::before {
  top: 0.75em;
  width: 16px;
  height: 1px;
  opacity: 0.85;
}*/

.connect .feature-list li::before {
    /* Prilagoditev pozicije in velikosti za ikono */
    top: 0.30em;         /* Malce premaknjeno navzdol za boljšo poravnavo s tekstom */
    width: 16px;         /* Širina ikone */
    height: 16px;        /* Višina ikone */
    opacity: 0.85;
}

.connect-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 74% 22%, rgba(0, 0, 255, 0.055), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 240, 236, 0.82)),
    var(--color-white);
  box-shadow:
    0 30px 72px rgba(5, 5, 5, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  isolation: isolate;
}

.connect-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.connect-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(5, 5, 5, 0.075);
  border-radius: calc(var(--radius-panel) - 10px);
  pointer-events: none;
}

.connect-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: calc(var(--radius-panel) - 1px);
}

.connect-visual__halo {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 0, 255, 0.045);
  filter: blur(18px);
  opacity: 0.52;
}

.connect-module,
.connect-node,
.connect-status {
  position: absolute;
  z-index: 2;
}

.connect-module {
  width: clamp(164px, 18vw, 220px);
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 20px 20px;
  backdrop-filter: blur(2px);
  box-shadow:
    0 18px 42px rgba(5, 5, 5, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.connect-module::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--color-primary);
  opacity: 0.86;
}

.connect-module span,
.connect-module small,
.connect-node small,
.connect-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connect-module span,
.connect-module small,
.connect-node small {
  color: rgba(5, 5, 5, 0.48);
}

.connect-module strong {
  display: block;
  margin: 10px 0 9px;
  font-family: var(--font-mono);
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.connect-module--asset {
  left: 8%;
  top: 19%;
}

.connect-module--control {
  right: 8%;
  top: 31%;
  width: clamp(184px, 19vw, 242px);
  border-color: rgba(0, 0, 255, 0.24);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 24px 58px rgba(0, 0, 255, 0.075),
    0 18px 42px rgba(5, 5, 5, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.connect-module--control::before {
  width: 28px;
  opacity: 1;
}

.connect-module--market {
  left: 37%;
  bottom: 17%;
}

.connect-node--grid {
  right: 13%;
  bottom: 17%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.connect-node span,
.connect-status span {
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(0, 0, 255, 0.42);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0 0 5px rgba(0, 0, 255, 0.055);
  animation: connectNodePulse 7.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.connect-flow {
  position: absolute;
  inset: 10% 5%;
  z-index: 1;
  width: 90%;
  height: 80%;
  color: var(--color-primary);
  opacity: 0.58;
}

.connect-flow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 12 24;
  animation: connectFlow 18s linear infinite;
}

.connect-flow path:nth-child(2) {
  animation-duration: 22s;
  opacity: 0.5;
}

.connect-flow path:nth-child(3) {
  animation-duration: 26s;
  opacity: 0.38;
}

.connect-flow circle {
  fill: var(--color-white);
  stroke: currentColor;
  stroke-width: 1.4;
  animation: connectNodePulse 7.2s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.connect-status {
  left: 8%;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(5, 5, 5, 0.56);
}

@keyframes connectFlow {
  to {
    stroke-dashoffset: -104;
  }
}

@keyframes connectNodePulse {
  0%, 100% {
    opacity: 0.48;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.16);
  }
}

.dashboard-card {
  min-height: 600px;
  border-color: rgba(5, 5, 5, 0.1);
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 0, 255, 0.06), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 244, 0.72)),
    var(--color-white);
  box-shadow: var(--shadow-panel);
}

.dashboard-card::before {
  opacity: 0.74;
  background-size: 32px 32px;
}

.dashboard-metrics {
  gap: 12px;
}

.dashboard-metrics div,
.dashboard-log div {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.dashboard-chart {
  position: relative;
  height: 220px;
  padding-top: 40px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.dashboard-chart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 255, 0), rgba(0, 0, 255, 0.36), rgba(0, 0, 255, 0));
}

.dashboard-log div {
  padding: 16px 18px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.48);
}

.industry-card:hover {
  transform: translateY(-3px);
  background: var(--color-white);
}

.final-cta {
  background: var(--color-bg-alt);
}

.final-cta__inner {
  text-align: center;
  border-color: rgba(5, 5, 5, 0.11);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 0, 255, 0.08), transparent 26rem),
    linear-gradient(135deg, #e9e9e5, #f9f9f6 62%, #ecece8);
  padding: clamp(58px, 8vw, 118px);
  box-shadow: var(--shadow-panel);
}

.final-cta__inner p,
.final-cta__inner h2 {
  margin-inline: auto;
}

.final-cta__actions {
  justify-content: center;
}

@keyframes energyDrift {
  0%, 100% {
    transform: translateX(-3%) scaleX(0.42);
    opacity: 0.28;
  }
  50% {
    transform: translateX(5%) scaleX(1);
    opacity: 0.78;
  }
}

@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(0, 0, 255, 0.045);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(0, 0, 255, 0.09);
  }
}

@keyframes connectionFlash {
  0% {
    transform: translateX(-3%) scaleX(0.35);
    opacity: 0.18;
  }
  52% {
    transform: translateX(1%) scaleX(1);
    opacity: 0.78;
  }
  100% {
    transform: translateX(4%) scaleX(0.55);
    opacity: 0.3;
  }
}

@media (max-width: 1080px) {
  .nav,
  .header__cta {
    display: none;
  }

  .header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) var(--gutter) auto;
    display: grid;
    gap: 4px;
    transform: translateY(-12px);
    pointer-events: none;
    opacity: 0;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px;
    box-shadow: var(--shadow-subtle);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

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

  .mobile-nav a {
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--color-text);
  }

  .mobile-nav a:not(.button):hover {
    background: var(--color-bg-soft);
  }

  .hero__grid,
  .connect__grid,
  .operating__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

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

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

  .pillar-card {
    min-height: 280px;
  }

  .tab-panels,
  .tab-visual {
    min-height: 560px;
  }

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

  .bento-card--featured {
    grid-row: auto;
  }

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

@media (max-width: 720px) {
  :root {
    --section-padding-desktop: var(--section-padding-mobile);
    --header-height: 68px;
  }

  .section--hero {
    padding-block: calc(var(--header-height) + 44px) 62px;
  }

  .section {
    padding-block: var(--section-padding-mobile);
  }

  .hero__title {
    max-width: 7.4ch;
    font-size: clamp(3rem, 14vw, 4.15rem);
    line-height: 0.92;
    text-wrap: wrap;
  }

  .hero__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__metrics,
  .dashboard-metrics,
  .industry-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__metrics div + div {
    border-left: 0;
  }

  .hero__metrics div + div {
    border-top: 1px solid var(--color-border);
  }

  .hero__metrics div {
    padding: 18px 0 0;
  }

  .hero__metrics div + div {
    padding-left: 0;
  }

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

  .asset-stack {
    left: 7%;
    right: 7%;
    grid-template-columns: 1fr;
  }

  .asset-module,
  .asset-module--large {
    min-height: 112px;
    grid-row: auto;
  }

  .node-map {
    display: none;
  }

  .visual-caption {
    left: 7%;
    right: 7%;
    align-items: start;
    flex-direction: column;
  }

  .visual-caption strong {
    max-width: 100%;
    text-align: left;
  }

  .tab-button {
    padding: 18px 18px 22px;
  }

  .tab-progress {
    left: 18px;
    right: 18px;
  }

  .tab-panels,
  .tab-visual,
  .dashboard-card {
    min-height: 500px;
  }

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

  .module-row span {
    min-height: 128px;
  }

  .visual-label::after,
  .network span::after,
  .map-node::after {
    display: none;
  }

  .interface-card--main {
    left: 7%;
    width: 74%;
  }

  .interface-card {
    right: 7%;
    min-width: 0;
    width: 62%;
  }

  .mini-table {
    left: 7%;
    right: 7%;
  }

  .revenue-chart {
    height: 260px;
  }

  .footer__grid {
    gap: 36px;
  }
}

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

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

/* Home hero redesign: full-screen abstract industrial background. */
.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  animation: headerFade 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    background-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(27, 28, 26, 0.58);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 72px;
}

.site-header .brand__logo {
  width: min(92px, 24vw);
  /*filter: brightness(0) invert(1);
  opacity: 0.9;*/
}

.nav {
  gap: clamp(24px, 2.6vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 430;
  letter-spacing: 0.018em;
}

.nav a {
  position: relative;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.56);
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header__cta {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 560;
}

.menu-toggle {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.menu-toggle span {
  background: rgba(255, 255, 255, 0.9);
}

@keyframes headerFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero.section--hero {
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  margin-left: calc(50% - 50vw);
  padding-block: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #1f211f;
}

.hero.section--hero::before,
.hero.section--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero.section--hero::before {
  background:
    linear-gradient(90deg, rgba(14, 16, 16, 0.68) 0%, rgba(14, 16, 16, 0.5) 38%, rgba(14, 16, 16, 0.18) 72%, rgba(14, 16, 16, 0.04) 100%),
    linear-gradient(180deg, rgba(14, 16, 16, 0.2) 0%, rgba(14, 16, 16, 0.03) 42%, rgba(14, 16, 16, 0.38) 100%);
}

.hero.section--hero::after {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.52) 44%, transparent 82%);
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    url("assets/egs_grad.jpg") center / cover no-repeat,
    #2c2d2a;
  filter: saturate(0.82) contrast(1.04) brightness(0.6);
  transform: scale(1.01);
}

.hero-bg-media::before,
.hero-bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg-media::before {
  opacity: 0.2;
  background:
    linear-gradient(118deg, transparent 0 32%, rgba(255, 255, 255, 0.065) 32.2% 32.6%, transparent 32.8%),
    linear-gradient(118deg, transparent 0 58%, rgba(255, 255, 255, 0.052) 58.2% 58.6%, transparent 58.8%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 16%, rgba(0, 0, 0, 0.1) 74%);
}

.hero-bg-media::after {
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.42) 1px, transparent 0);
  background-size: 18px 18px;
  mix-blend-mode: screen;
}

.hero .hero__grid {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--gutter) * 2), var(--container));
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(104px, 12vh, 152px);
  padding-bottom: clamp(78px, 10vh, 124px);
}

.hero .hero__content {
  width: min(100%, 680px);
  padding-top: clamp(90px, 14vh, 154px);
}

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

.hero .eyebrow {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.hero .hero__title {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(3.2rem, 4.35vw, 4rem);
  font-weight: 410;
  line-height: 1.06;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.hero .hero__text {
  max-width: 580px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.78;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.hero .hero__actions {
  margin-top: 50px;
  gap: 12px;
}

.hero .button {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.86rem;
  font-weight: 560;
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
}

.hero .button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.86);
}

.hero .hero__metrics {
  max-width: 660px;
  margin-top: 82px;
  border-top-color: rgba(255, 255, 255, 0.13);
}

.hero .hero__metrics div + div {
  border-left-color: rgba(255, 255, 255, 0.13);
}

.hero .hero__metrics dt {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.22vw, 1.22rem);
  font-weight: 520;
  letter-spacing: 0.01em;
  line-height: 1;
}

.hero .hero__metrics dd {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero .hero__grid {
    display: flex;
  }

  .hero .hero__content {
    width: min(100%, 720px);
  }
}

@media (max-width: 720px) {
  .hero.section--hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero.section--hero::before {
    background:
      linear-gradient(90deg, rgba(14, 16, 16, 0.74) 0%, rgba(14, 16, 16, 0.48) 70%, rgba(14, 16, 16, 0.18) 100%),
      linear-gradient(180deg, rgba(14, 16, 16, 0.18) 0%, rgba(14, 16, 16, 0.05) 42%, rgba(14, 16, 16, 0.44) 100%);
  }

  .hero-bg-media {
    background-position: 58% 50%;
  }

  .hero .hero__grid {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 78px;
    padding-bottom: 32px;
  }

  .hero .hero__content {
    width: min(100%, 340px);
    padding-top: 7vh;
  }

  .hero .hero__title {
    max-width: 10.4ch;
    font-size: clamp(2.34rem, 9.35vw, 2.82rem);
    font-weight: 410;
    line-height: 1.04;
  }

  .hero .hero__text {
    max-width: 31ch;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.62;
  }

  .hero .hero__actions {
    margin-top: 34px;
  }

  .hero .hero__metrics {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .hero .hero__metrics div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0;
  }

  .hero .hero__metrics div {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: baseline;
    justify-content: start;
    gap: 16px;
    padding: 9px 0;
  }

  .hero .hero__metrics dt {
    font-size: 1rem;
    white-space: nowrap;
  }

  .hero .hero__metrics dd {
    max-width: none;
    font-size: 0.7rem;
    line-height: 1.25;
    text-align: left;
  }
}

/* How EGS Works redesign: abstract live energy system. */
.operating {
  padding-block: clamp(132px, 11vw, 190px);
  background:
    linear-gradient(180deg, #efefed 0%, #f5f5f2 54%, #efefed 100%);
}

.operating .section-heading {
  max-width: 840px;
  margin-bottom: clamp(66px, 7.5vw, 112px);
}

.operating .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  font-weight: 460;
  line-height: 1.02;
}

.operating .section-heading p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(5, 5, 5, 0.54);
}

.operating__grid {
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(56px, 7vw, 112px);
}

.operating .tabs-list {
  gap: 12px;
  align-content: start;
  border-top: 0;
}

.operating .tab-button {
  border: 0;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  opacity: 0.52;
  padding: 28px 20px 30px;
  transition:
    opacity 320ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.operating .tab-button::before {
  content: none;
}

.operating .tab-button:hover {
  background: rgba(255, 255, 255, 0.24);
  opacity: 0.82;
  transform: none;
}

.operating .tab-button.is-active {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
  opacity: 1;
}

.operating .tab-button.is-active::before {
  content: none;
}

.operating .tab-button__title {
  font-size: 1rem;
  font-weight: 520;
  letter-spacing: 0;
}

.operating .tab-button.is-active .tab-button__title {
  color: rgba(5, 5, 5, 0.88);
  font-weight: 590;
}

.operating .tab-button__text {
  color: rgba(5, 5, 5, 0.54);
  font-size: 0.94rem;
}

.operating .tab-progress {
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
}

.operating .tab-progress::after {
  background: var(--color-primary);
  opacity: 0.75;
}

.operating .tab-panels,
.operating .tab-visual {
  min-height: clamp(680px, 66vw, 820px);
}

.operating .tab-visual {
  border-radius: 8;
  border-color: rgba(5, 5, 5, 0.09);
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.58), transparent 25rem),
    radial-gradient(circle at 28% 78%, rgba(0, 0, 255, 0.035), transparent 27rem),
    #f0f0ed;
  box-shadow: none;
}

.operating .tab-visual::before {
  opacity: 0.62;
  background-size: 44px 44px;
  mask-image: linear-gradient(115deg, #000 0 72%, transparent 96%);
}

.operating .tab-visual::after {
  display: none;
}

.operating .tab-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.operating .visual-label {
  left: 32px;
  top: 30px;
  z-index: 3;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: rgba(5, 5, 5, 0.44);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.operating .visual-label::after {
  content: none;
}

.system-canvas {
  position: absolute;
  inset: 12% 9% 11%;
  z-index: 2;
  overflow: hidden;
}

.system-canvas::before,
.system-canvas::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.system-canvas::before {
  left: 6%;
  right: 7%;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.04), rgba(0, 0, 255, 0.44), rgba(5, 5, 5, 0.04));
  animation: systemLinePulse 5.8s ease-in-out infinite;
}

.system-canvas::after {
  left: 50%;
  top: 10%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 255, 0.28), transparent);
  animation: systemLinePulse 6.4s ease-in-out infinite 1.1s;
}

.system-module,
.system-node,
.system-core,
.system-flow {
  position: absolute;
}

.system-module {
  bottom: 18%;
  width: clamp(58px, 7vw, 84px);
  height: clamp(250px, 28vw, 350px);
  border: 1px solid rgba(5, 5, 5, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(0deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.04) 1px, transparent 1px, transparent 28px);
  transform: translateY(0);
  animation: moduleBreathe 7.2s ease-in-out infinite;
}

.system-module span,
.system-node span,
.system-core span {
  position: absolute;
  left: 0;
  top: -28px;
  white-space: nowrap;
  color: rgba(5, 5, 5, 0.46);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-module i {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(0, 0, 255, 0.5);
}

.system-module i:nth-child(2) { bottom: 28%; opacity: 0.42; }
.system-module i:nth-child(3) { bottom: 49%; opacity: 0.7; }
.system-module i:nth-child(4) { bottom: 70%; opacity: 0.3; }

.system-module--one { left: 7%; animation-delay: 0ms; }
.system-module--two { left: 20%; height: clamp(285px, 31vw, 390px); animation-delay: 500ms; }
.system-module--three { left: 33%; animation-delay: 1000ms; }
.system-module--four { left: 46%; height: clamp(245px, 26vw, 330px); animation-delay: 1500ms; }

.system-node {
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 6px rgba(0, 0, 255, 0.055);
  animation: nodeBlink 3.6s ease-in-out infinite;
}

.system-node--grid {
  right: 15%;
  top: 37%;
}

.system-node--market {
  right: 7%;
  bottom: 26%;
  animation-delay: 900ms;
}

.system-core {
  right: 28%;
  top: 44%;
  width: clamp(74px, 8vw, 106px);
  height: clamp(74px, 8vw, 106px);
  border: 1px solid rgba(0, 0, 255, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 255, 0.16), rgba(255, 255, 255, 0.22) 62%, transparent);
  animation: corePulse 4.8s ease-in-out infinite;
}

.system-core span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(5, 5, 5, 0.58);
}

.system-flow {
  --r: 0deg;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 255, 0.68), transparent);
  transform-origin: left center;
  animation: flowTrace 5.8s ease-in-out infinite;
}

.system-flow--one {
  left: 14%;
  right: 29%;
  top: 48%;
}

.system-flow--two {
  left: 43%;
  right: 12%;
  top: 53%;
  --r: 14deg;
  animation-delay: 900ms;
}

.system-flow--three {
  left: 30%;
  right: 21%;
  top: 39%;
  --r: -18deg;
  animation-delay: 1.8s;
}

.visual-development .system-module--three,
.visual-development .system-node--grid,
.visual-engineering .system-module,
.visual-grid .system-node--grid,
.visual-ai .system-core,
.visual-market .system-node--market {
  border-color: rgba(0, 0, 255, 0.42);
}

.visual-development .system-flow--three,
.visual-engineering .system-flow--one,
.visual-grid .system-flow--two,
.visual-ai .system-flow--one,
.visual-market .system-flow--three {
  opacity: 1;
  animation-duration: 4.8s;
}

.tab-panel.is-swapping .system-module,
.tab-panel.is-swapping .system-node,
.tab-panel.is-swapping .system-core {
  animation-name: systemEnter;
  animation-duration: 520ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-iteration-count: 1;
}

.tab-panel.is-swapping .system-flow {
  animation: flowTrace 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes moduleBreathe {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(-8px); opacity: 1; }
}

@keyframes nodeBlink {
  0%, 100% { opacity: 0.54; box-shadow: 0 0 0 5px rgba(0, 0, 255, 0.045); }
  50% { opacity: 1; box-shadow: 0 0 0 10px rgba(0, 0, 255, 0.09); }
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.76; }
  50% { transform: scale(1.035); opacity: 1; }
}

@keyframes systemLinePulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.64; }
}

@keyframes flowTrace {
  0%, 100% { opacity: 0.18; transform: rotate(var(--r)) translateX(-8px) scaleX(0.58); }
  50% { opacity: 0.86; transform: rotate(var(--r)) translateX(8px) scaleX(1); }
}

@keyframes systemEnter {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .operating__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .operating .tab-panels,
  .operating .tab-visual {
    min-height: 620px;
  }

  .system-canvas {
    inset: 12% 7% 8%;
  }
}

@media (max-width: 720px) {
  .operating {
    padding-block: 86px;
  }

  .operating .tab-button {
    padding: 20px 14px 22px;
  }

  .operating .tab-progress {
    left: 0;
  }

  .operating .tab-panels,
  .operating .tab-visual {
    min-height: 360px;
  }

  .system-canvas {
    inset: 17% 6% 9%;
  }

  .system-module {
    width: 42px;
    height: 220px;
  }

  .system-module--one { left: 7%; }
  .system-module--two { left: 22%; height: 250px; }
  .system-module--three { left: 37%; }
  .system-module--four { display: none; }

  .system-node span,
  .system-module span {
    font-size: 0.56rem;
  }

  .system-core {
    right: 22%;
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 1080px) {
  .connect__content {
    max-width: 720px;
  }

  .connect-visual {
    min-height: 580px;
  }
}

@media (max-width: 720px) {
  .connect {
    padding-block: 90px;
  }

  .connect__content h2 {
    font-size: clamp(2.3rem, 10vw, 3.15rem);
  }

  .connect-visual {
    min-height: 360px;
  }

  .connect-module {
    width: 166px;
    padding: 18px;
  }

  .connect-module--asset {
    left: 7%;
    top: 13%;
  }

  .connect-module--control {
    right: 7%;
    top: 34%;
  }

  .connect-module--market {
    left: 10%;
    bottom: 17%;
  }

  .connect-node--grid {
    right: 8%;
    bottom: 12%;
  }

  .connect-flow {
    inset: 8% 2%;
    width: 96%;
    height: 82%;
  }
}

/* Industries redesign: clean 3 + 3 market structure. */
#industries {
  padding-block: clamp(120px, 10vw, 176px);
  background: var(--color-bg);
}

#industries .section-heading {
  max-width: 780px;
  margin-bottom: clamp(60px, 7vw, 92px);
}

#industries .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.45vw, 4.15rem);
  font-weight: 420;
  line-height: 1.08;
}

#industries .industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 26px);
  row-gap: clamp(28px, 3vw, 40px);
  border: 0;
}

#industries .industry-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.045);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    var(--color-bg);
  padding: clamp(38px, 3.8vw, 54px);
  box-shadow:
    0 18px 48px rgba(5, 5, 5, 0.032),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    border-color 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

#industries .industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: left center;
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

#industries .industry-card::after {
  content: none;
}

#industries .industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    var(--color-bg);
  box-shadow:
    0 24px 58px rgba(5, 5, 5, 0.048),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

#industries .industry-card:hover::before {
  opacity: 0.74;
  transform: scaleX(1);
}

#industries .industry-card--primary {
  min-height: 318px;
  padding: clamp(42px, 4vw, 58px);
}

#industries .industry-card--secondary {
  min-height: 300px;
}

#industries .industry-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: clamp(18px, 2vw, 22px);
  color: #0000ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

#industries .industry-card--primary .industry-icon {
  width: 40px;
  height: 40px;
  color: #0000ff;
}

#industries .industry-card--secondary .industry-icon {
  color: #0000ff;
}

#industries .industry-card h3 {
  max-width: 14ch;
  margin-top: 0;
  color: rgba(5, 5, 5, 0.9);
  font-size: clamp(1.62rem, 2vw, 2.18rem);
  font-weight: 520;
  line-height: 1.09;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

#industries .industry-card--primary h3 {
  font-size: clamp(1.78rem, 2.35vw, 2.48rem);
  font-weight: 520;
}

#industries .industry-card--secondary h3 {
  color: rgba(5, 5, 5, 0.82);
}

#industries .industry-card p {
  max-width: 35ch;
  margin-top: 12px;
  color: rgba(5, 5, 5, 0.44);
  line-height: 1.68;
}

#industries .industry-card--primary p {
  color: rgba(5, 5, 5, 0.48);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

#industries .industry-card--secondary p {
  color: rgba(5, 5, 5, 0.4);
}

@media (max-width: 1080px) {
  #industries .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #industries {
    padding-block: 86px;
  }

  #industries .industry-grid {
    grid-template-columns: 1fr;
  }

  #industries .industry-card,
  #industries .industry-card--primary,
  #industries .industry-card--secondary {
    min-height: 250px;
    padding: 36px 34px;
  }

  #industries .industry-icon,
  #industries .industry-card--primary .industry-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
}

/* Final CTA redesign: open closing statement. */
.final-cta {
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(164px, 14vw, 244px);
  background: var(--color-bg-alt);
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(86vw, 1040px);
  height: min(56vw, 680px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0%, rgba(0, 0, 255, 0.026) 34%, transparent 72%);
  transform: translate(-50%, -46%);
  pointer-events: none;
}

.final-cta__inner {
  max-width: var(--container);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  text-align: center;
}

.final-cta__inner p,
.final-cta__inner h2 {
  margin-inline: auto;
}

.final-cta .eyebrow {
  margin-bottom: 28px;
  color: rgba(5, 5, 5, 0.5);
}

.final-cta h2 {
  max-width: 880px;
  color: rgba(5, 5, 5, 0.86);
  font-size: clamp(2.9rem, 5.4vw, 6rem);
  font-weight: 420;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 34px;
  color: rgba(5, 5, 5, 0.58);
  line-height: 1.7;
}

.final-cta .final-cta__trust {
  margin-top: 26px;
  color: rgba(5, 5, 5, 0.46);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.final-cta__actions {
  justify-content: center;
  gap: 14px;
  margin-top: clamp(58px, 5.6vw, 78px);
}

.final-cta .button {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 0.95rem;
}

.final-cta .button--primary {
  box-shadow: 0 18px 42px rgba(0, 0, 255, 0.18);
}

.final-cta .button--primary:hover {
  box-shadow: 0 20px 48px rgba(5, 5, 216, 0.22);
}

.final-cta .button--secondary {
  border-color: rgba(5, 5, 5, 0.1);
  background: transparent;
  color: rgba(5, 5, 5, 0.52);
}

.final-cta .button--secondary:hover {
  border-color: rgba(5, 5, 5, 0.16);
  background: rgba(255, 255, 255, 0.24);
  color: rgba(5, 5, 5, 0.68);
}

@media (max-width: 720px) {
  .final-cta {
    padding-block: 118px;
  }

  .final-cta h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .final-cta p:not(.eyebrow) {
    margin-top: 26px;
  }

  .final-cta .final-cta__trust {
    margin-top: 22px;
    font-size: 0.68rem;
  }
}

/* Footer refinement: compact, intentional close. */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.06), transparent 30rem),
    linear-gradient(180deg, #080808, var(--color-text));
  padding-block: clamp(76px, 7vw, 108px) 30px;
  isolation: isolate;
}

/*.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.footer__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.32fr) minmax(220px, 0.46fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
}*/

.footer__brand {
  max-width: 620px;
}

.footer__brand p {
  max-width: 540px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.footer__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 270px));
  gap: 18px;
  margin: 38px 0 0;
}

.footer__metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__metrics dt {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 1.08rem;
  line-height: 1;
}

.footer__metrics dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

.footer h2 {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
}

.footer__links,
.footer__contact {
  gap: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.footer__links a,
.footer__contact a {
  width: fit-content;
  color: inherit;
  transition:
    color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: rgba(255, 255, 255, 0.96);
  transform: translateX(2px);
}

.footer__contact a:first-child {
  color: rgba(255, 255, 255, 0.82);
}

.footer__bottom {
  position: relative;
  margin-top: clamp(58px, 6vw, 84px);
  border-top: 0;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.38);
}

.footer__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
  /*background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);*/
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr);
  }

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

@media (max-width: 720px) {
  .footer {
    padding-block: 64px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer__metrics {
    grid-template-columns: 1fr 1fr;
    max-width: 330px;
  }
}

/* Design system consolidation: canonical visible-page tokens. */
body {
  color: var(--color-text);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
}

.eyebrow,
.card-kicker,
.visual-label,
.footer h2,
.final-cta__trust,
.connect-module span,
.connect-module small,
.connect-node small,
.connect-status,
.footer__metrics dt,
.hero__metrics dt {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
}

.tab-button__title {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
}

.eyebrow,
.card-kicker,
.visual-label,
.footer h2,
.final-cta__trust {
  color: var(--color-text-faint);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-label);
  line-height: 1.2;
  text-transform: uppercase;
}

.section:not(.section--hero),
#solutions,
.operating,
.investment,
.connect,
#industries {
  padding-block: var(--section-padding-system);
}

.section-heading,
#solutions .section-heading,
.operating .section-heading,
.investment .section-heading,
#industries .section-heading {
  max-width: 820px;
  margin-bottom: var(--section-header-gap);
}

.section-heading h2,
#solutions .section-heading h2,
.operating .section-heading h2,
.investment .section-heading h2,
#industries .section-heading h2,
.connect__content h2 {
  max-width: 800px;
  color: var(--color-text);
  font-size: var(--type-section-title);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-heading);
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
#solutions .section-heading p:not(.eyebrow),
.operating .section-heading p:not(.eyebrow),
.investment .section-heading p:not(.eyebrow),
.connect__content p,
.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-top: var(--content-gap-md);
  color: var(--color-text-soft);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
}

.hero .hero__title {
  max-width: 690px;
  font-size: var(--type-hero);
  font-weight: 410;
  letter-spacing: -0.025em;
  line-height: var(--leading-display);
}

.hero .hero__text {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
}

.button,
.hero .button,
.final-cta .button {
  min-height: 48px;
  border-radius: var(--radius-button);
  padding-inline: 20px;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: 0;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button--primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.button--primary:hover {
  border-color: #0505d8;
  background: #0505d8;
}

.button--secondary {
  border-color: var(--color-border-soft);
  background: transparent;
  color: var(--color-text-soft);
}

.button--secondary:hover {
  border-color: rgba(5, 5, 5, 0.16);
  background: rgba(255, 255, 255, 0.44);
  color: var(--color-text);
}

.hero .button--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.68);
}

.hero .button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .button {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 0.95rem;
}

.final-cta .button--secondary {
  color: rgba(5, 5, 5, 0.52);
}

.card,
#solutions .pillar-card,
.bento-card,
#industries .industry-card {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-card-system);
  background:
    linear-gradient(180deg, var(--color-surface-strong), var(--color-surface)),
    var(--color-bg);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card-system);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.card:hover,
#solutions .pillar-card:hover,
.bento-card:hover,
#industries .industry-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-hover);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--color-bg);
  box-shadow: var(--shadow-card-hover);
}

.pillar-grid,
#solutions .pillar-grid,
.bento-grid,
#industries .industry-grid {
  gap: var(--grid-gap);
}

.pillar-card h3,
#solutions .pillar-card h3,
.bento-card h3,
#industries .industry-card h3,
.industry-card h3 {
  color: var(--color-text);
  font-size: var(--type-card-title);
  font-weight: var(--weight-title);
  letter-spacing: -0.018em;
  line-height: var(--leading-heading);
  text-wrap: balance;
}

#industries .industry-card--primary h3 {
  font-size: var(--type-card-title-lg);
}

.pillar-card p:not(.card-kicker),
#solutions .pillar-card p:not(.card-kicker),
.bento-card p:not(.card-kicker),
#industries .industry-card p,
.industry-card p,
.feature-list li,
.tab-button__text {
  color: var(--color-text-soft);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
}

.card-kicker,
#solutions .card-kicker,
.bento-card .card-kicker {
  margin-bottom: var(--content-gap-md);
}

.tab-button__title {
  color: var(--color-text);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-title);
  letter-spacing: 0;
  text-transform: none;
}

.tab-button__text {
  max-width: 54ch;
}

.operating .tab-button {
  padding: 24px 20px 28px;
}

.connect__grid {
  gap: clamp(64px, 7vw, 112px);
}

.connect .feature-list {
  gap: 16px;
  margin: var(--content-gap-lg) 0;
}

.connect-module strong,
.hero__metrics dt,
.footer__metrics dt {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.final-cta {
  padding-block: var(--section-padding-system-lg);
}

.final-cta h2 {
  max-width: 880px;
  color: rgba(5, 5, 5, 0.88);
  font-size: var(--type-section-title);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
}

.final-cta__actions {
  margin-top: var(--content-gap-lg);
}

.footer__brand p,
.footer__links,
.footer__contact,
.footer__metrics dd,
.footer__bottom {
  font-size: var(--type-small);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .section:not(.section--hero),
  #solutions,
  .operating,
  .investment,
  .connect,
  #industries {
    padding-block: clamp(92px, 11vw, 132px);
  }

  .section-heading,
  #solutions .section-heading,
  .operating .section-heading,
  .investment .section-heading,
  #industries .section-heading {
    margin-bottom: clamp(46px, 7vw, 72px);
  }
}

@media (max-width: 720px) {
  :root {
    --section-padding-system: 86px;
    --section-padding-system-lg: 112px;
    --grid-gap: 22px;
    --card-padding: 34px;
    --type-section-title: clamp(2.35rem, 10vw, 3.25rem);
    --type-section-title-lg: clamp(2.65rem, 12vw, 3.75rem);
    --type-card-title: clamp(1.45rem, 7vw, 1.95rem);
  }

  .section-heading h2,
  #solutions .section-heading h2,
  .operating .section-heading h2,
  .investment .section-heading h2,
  #industries .section-heading h2,
  .connect__content h2 {
    line-height: 1.08;
  }

  .hero .hero__text,
  .section-heading p:not(.eyebrow),
  .connect__content p,
  .final-cta p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button,
  .hero .button,
  .final-cta .button {
    width: 100%;
  }
}
