* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #07090d;
  color: #f4f6f8;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a,
.languages a {
  color: #aeb5bf;
  font-size: 14px;
}

nav a:hover,
.languages a:hover,
.languages .active {
  color: white;
}

.languages {
  display: flex;
  gap: 12px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 70% 30%, rgba(48,90,120,.18), transparent 35%),
    radial-gradient(circle at 25% 70%, rgba(35,80,75,.12), transparent 35%);
}

.hero-content {
  max-width: 1050px;
}

.eyebrow,
.section-label {
  color: #8f9ba8;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 22px 0;
  max-width: 1000px;
  font-size: clamp(54px, 7vw, 100px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 span {
  color: #8ea0b2;
}

.hero-text {
  max-width: 760px;
  color: #adb5bf;
  font-size: 21px;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
}

.btn.primary {
  background: white;
  color: #080a0e;
}

.btn.secondary {
  color: white;
}

.origin {
  margin-top: 50px;
  color: #77818c;
  font-size: 14px;
}

.section {
  padding: 130px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.section h2 {
  max-width: 900px;
  margin: 18px 0 26px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.lead {
  max-width: 780px;
  font-size: 20px;
  color: #aeb5bf;
}

.project-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  min-height: 390px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.025);
  display: flex;
  flex-direction: column;
}

.project-card.featured {
  background:
    radial-gradient(circle at 70% 30%, rgba(63,102,132,.17), transparent 50%),
    rgba(255,255,255,.025);
}

.project-status {
  color: #83909d;
  font-size: 11px;
  letter-spacing: .18em;
}

.project-card h3 {
  margin: auto 0 16px;
  font-size: 38px;
}

.project-card p {
  color: #9da7b1;
}

.project-link {
  margin-top: 20px;
}

.statement {
  text-align: center;
}

.statement h2,
.statement .lead {
  margin-left: auto;
  margin-right: auto;
}

.contact {
  min-height: 500px;
}

footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  color: #78828d;
  font-size: 13px;
}

.footer-wrap div {
  display: flex;
  gap: 15px;
}

@media (max-width: 800px) {

  nav {
    display: none;
  }

  .container {
    width: min(100% - 30px, 1180px);
  }

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

  h1 {
    font-size: 54px;
  }

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

  .section {
    padding: 90px 0;
  }
}


/* Language dropdown */
.language-dropdown {
  position: relative;
  flex-shrink: 0;
}

.language-current {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: #f4f6f8;
  padding: 8px 11px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
}

.language-current:hover {
  border-color: rgba(255,255,255,.28);
}

.language-arrow {
  display: inline-block;
  font-size: 14px;
  color: #89939e;
  transition: transform .2s ease;
}

.language-dropdown.open .language-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 200;
  width: 190px;
  padding: 8px;
  background: rgba(12,15,20,.98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;
}

.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #c2c9d1;
  font-size: 13px;
}

.language-menu a:hover {
  background: rgba(255,255,255,.06);
  color: white;
}

.language-menu a span {
  width: 28px;
  color: #7f8994;
  font-size: 11px;
  letter-spacing: .08em;
}

.language-menu a strong {
  font-weight: 500;
}

@media (max-width: 800px) {
  .language-menu {
    width: 180px;
  }
}


/* Projects list */
.project-list {
  margin-top: 55px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.project-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 50px;
  gap: 28px;
  align-items: center;
  min-height: 190px;
  padding: 32px 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition:
    background .25s ease,
    padding-left .25s ease,
    padding-right .25s ease;
}

.project-row:hover {
  background: rgba(255,255,255,.025);
  padding-left: 20px;
  padding-right: 20px;
}

.project-number {
  align-self: start;
  padding-top: 7px;
  color: #66717d;
  font-size: 12px;
  letter-spacing: .16em;
}

.project-main h3 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.project-main p {
  max-width: 760px;
  margin: 0;
  color: #929ca7;
  font-size: 16px;
}

.project-arrow {
  justify-self: end;
  font-size: 28px;
  color: #77828e;
  transition:
    transform .25s ease,
    color .25s ease;
}

.project-row:hover .project-arrow {
  color: #fff;
  transform: translate(4px, -4px);
}

@media (max-width: 800px) {
  .project-row {
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    gap: 14px;
    min-height: 0;
    padding: 26px 0;
  }

  .project-row:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .project-main h3 {
    font-size: 29px;
  }

  .project-main p {
    font-size: 15px;
  }

  .project-arrow {
    font-size: 22px;
  }
}

/* Brand logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.brand span {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 12px;
    letter-spacing: .09em;
  }
}

.brand {
  gap: 10px;
}

.brand span {
  font-weight: 600;
  letter-spacing: .11em;
}

/* AI Hero */
.hero-ai {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 110px;
  display: block;
  background:
    radial-gradient(circle at 72% 30%, rgba(120,145,170,.10), transparent 32%),
    radial-gradient(circle at 20% 75%, rgba(255,255,255,.035), transparent 30%),
    #07090d;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(380px,.9fr);
  gap: 70px;
  align-items: center;
}

.hero-ai .hero-content {
  max-width: 760px;
}

.hero-ai h1 {
  font-size: clamp(56px, 6.3vw, 94px);
}

.ai-console {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
}

.ai-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 45%, transparent 65%);
  opacity: .45;
}

.ai-console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  letter-spacing: .13em;
  color: #8e99a4;
}

.ai-console-top small {
  margin-left: auto;
  color: #d7dde3;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8edf2;
  box-shadow: 0 0 15px rgba(255,255,255,.8);
  animation: statusPulse 2s infinite;
}

.ai-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
}

.ai-signal span {
  color: #6f7a85;
  font-size: 11px;
  letter-spacing: .12em;
}

.ai-signal strong {
  color: #d9dee4;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.ai-highlight strong {
  color: #fff;
  text-shadow: 0 0 16px rgba(255,255,255,.22);
}

.ai-line {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.ai-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  animation: signalMove 3.2s linear infinite;
}

.ai-console-metrics {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.ai-console-metrics div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-console-metrics span {
  color: #5f6973;
  font-size: 9px;
  letter-spacing: .14em;
}

.ai-console-metrics strong {
  color: #b8c0c9;
  font-size: 12px;
  font-weight: 500;
}

.hero-flow {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: 85px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #68737e;
  font-size: 10px;
  letter-spacing: .13em;
}

.hero-flow div:nth-of-type(3) {
  color: #fff;
}

.hero-flow span {
  color: #454e58;
}

.hero-data-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

@keyframes signalMove {
  from { left: -35%; }
  to { left: 100%; }
}

@keyframes statusPulse {
  0%,100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ai-console {
    max-width: 650px;
  }
}

@media (max-width: 700px) {
  .hero-ai {
    padding-top: 135px;
  }

  .hero-ai h1 {
    font-size: 50px;
  }

  .ai-console {
    padding: 16px;
    border-radius: 18px;
  }

  .ai-console-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero-flow {
    width: min(100% - 30px, 1180px);
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    padding-bottom: 8px;
  }
}

/* Experience -> AI */
.experience-ai {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 35%),
    #07090d;
}

.experience-pipeline {
  margin-top: 65px;
  display: grid;
  grid-template-columns:
    minmax(120px,1fr) auto
    minmax(120px,1fr) auto
    minmax(120px,1fr) auto
    minmax(120px,1fr) auto
    minmax(120px,1fr) auto
    minmax(120px,1fr);
  gap: 10px;
  align-items: center;
}

.experience-node {
  min-height: 135px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.018);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.experience-node:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
}

.experience-node span {
  color: #5e6974;
  font-size: 10px;
  letter-spacing: .15em;
}

.experience-node strong {
  color: #e8ecf0;
  font-size: 13px;
  letter-spacing: .07em;
}

.experience-node small {
  color: #727d88;
  font-size: 11px;
}

.experience-node-ai {
  border-color: rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.06), transparent 60%),
    rgba(255,255,255,.025);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 35px rgba(255,255,255,.025);
}

.experience-node-ai strong {
  color: #fff;
  font-size: 18px;
}

.experience-connector {
  color: #414a53;
  font-size: 17px;
}

.experience-columns {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.09);
  border-left: 1px solid rgba(255,255,255,.09);
}

.experience-columns article {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .25s ease;
}

.experience-columns article:hover {
  background: rgba(255,255,255,.022);
}

.experience-columns article > span {
  color: #606b76;
  font-size: 10px;
  letter-spacing: .15em;
}

.experience-columns h3 {
  margin: 60px 0 15px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.experience-columns p {
  max-width: 500px;
  margin: 0;
  color: #929ca7;
}

@media (max-width: 1150px) {
  .experience-pipeline {
    grid-template-columns: 1fr;
  }

  .experience-connector {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 800px) {
  .experience-columns {
    grid-template-columns: 1fr;
  }

  .experience-columns article {
    min-height: 230px;
  }
}

/* NAȘE TAXI proof */
.product-proof {
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(85,110,160,.10), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(255,255,255,.03), transparent 30%),
    #07090d;
}

.product-proof-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: end;
}

.proof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-meta span,
.proof-capabilities span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #aab3bc;
  font-size: 12px;
  letter-spacing: .08em;
  background: rgba(255,255,255,.02);
}

.proof-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.proof-shot {
  margin: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.proof-shot-large {
  grid-row: span 2;
}

.proof-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-bottom {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.proof-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-text p {
  margin: 0;
  color: #95a0ab;
  font-size: 17px;
  line-height: 1.7;
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.store-link:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .product-proof-head,
  .proof-bottom {
    grid-template-columns: 1fr;
  }

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

  .proof-shot-large {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-shot-large {
    grid-column: auto;
  }
}

/* NAȘE TAXI page */
.nase-hero {
  min-height: 100vh;
  padding: 155px 0 110px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(55,90,145,.13), transparent 30%),
    radial-gradient(circle at 20% 75%, rgba(255,255,255,.03), transparent 30%),
    #07090d;
}

.nase-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.nase-hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(74px, 9vw, 145px);
  line-height: .9;
  letter-spacing: -.065em;
}

.nase-hero h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #9aa8b7;
}

.nase-phone-stack {
  position: relative;
  min-height: 620px;
}

.nase-phone-stack img {
  position: absolute;
  width: 48%;
  max-width: 260px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.nase-phone-stack img:nth-child(1) {
  left: 0;
  top: 80px;
  transform: rotate(-5deg);
}

.nase-phone-stack img:nth-child(2) {
  left: 29%;
  top: 0;
  z-index: 3;
}

.nase-phone-stack img:nth-child(3) {
  right: 0;
  top: 105px;
  transform: rotate(5deg);
}

.nase-cap-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.09);
  border-left: 1px solid rgba(255,255,255,.09);
}

.nase-cap-card {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.nase-cap-card > span {
  color: #5f6973;
  font-size: 10px;
  letter-spacing: .14em;
}

.nase-cap-card h3 {
  margin: 60px 0 14px;
  font-size: 27px;
  letter-spacing: -.025em;
}

.nase-cap-card p {
  margin: 0;
  color: #929ca7;
}

.nase-flow {
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.nase-flow-step {
  flex: 0 0 auto;
  min-width: 130px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dce2e7;
  font-size: 12px;
  letter-spacing: .08em;
  background: rgba(255,255,255,.02);
}

.nase-flow-arrow {
  color: #48515a;
}

.nase-gallery {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.nase-gallery figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

.nase-gallery img {
  width: 100%;
  display: block;
}

.nase-experience {
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.04), transparent 30%),
    #07090d;
}

.nase-back {
  margin-top: 35px;
}

@media (max-width: 1000px) {
  .nase-hero-grid {
    grid-template-columns: 1fr;
  }

  .nase-phone-stack {
    min-height: 540px;
    max-width: 650px;
  }

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

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

@media (max-width: 700px) {
  .nase-hero {
    padding-top: 135px;
  }

  .nase-hero h1 {
    font-size: 72px;
  }

  .nase-phone-stack {
    min-height: 410px;
  }

  .nase-phone-stack img {
    width: 46%;
    border-radius: 20px;
  }

  .nase-cap-grid {
    grid-template-columns: 1fr;
  }

  .nase-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* =========================================================
   VV SOFT METER
   ========================================================= */

.sm-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 78% 26%, rgba(255,255,255,.055), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(80,100,130,.08), transparent 32%),
    #06080b;
}

.sm-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 90%);
}

.sm-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.sm-hero-copy h1 {
  margin: 20px 0 28px;
  max-width: 920px;
  font-size: clamp(72px, 8.4vw, 142px);
  line-height: .88;
  letter-spacing: -.07em;
}

.sm-hero-copy h1 span {
  display: block;
  color: #7f8a96;
}

.sm-hero-lead {
  max-width: 760px;
  margin: 0;
  font-size: clamp(23px, 2.4vw, 35px);
  line-height: 1.28;
  letter-spacing: -.025em;
  color: #d8dde2;
}

.sm-hero-small {
  max-width: 710px;
  margin: 28px 0 0;
  color: #7f8993;
  font-size: 16px;
  line-height: 1.75;
}

.sm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.sm-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .12em;
  color: #aab3bb;
  background: rgba(255,255,255,.02);
}

.sm-tech-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    rgba(9,12,16,.84);
  box-shadow:
    0 50px 120px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.sm-tech-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.03);
  pointer-events: none;
}

.sm-tech-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 10px;
  letter-spacing: .13em;
  color: #8c97a1;
}

.sm-tech-top small {
  margin-left: auto;
  color: #545d66;
}

.sm-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9dfe4;
  box-shadow: 0 0 0 5px rgba(255,255,255,.04);
}

.sm-tech-flow {
  position: relative;
  z-index: 2;
  padding: 12px 0 0;
}

.sm-tech-flow > div {
  padding: 22px 10px;
}

.sm-tech-flow > div small {
  display: block;
  margin-bottom: 6px;
  color: #4d5660;
  font-size: 9px;
}

.sm-tech-flow > div span {
  display: block;
  color: #87919b;
  font-size: 10px;
  letter-spacing: .12em;
}

.sm-tech-flow > div strong {
  display: block;
  margin-top: 5px;
  color: #e5eaee;
  font-size: 20px;
  letter-spacing: -.02em;
}

.sm-tech-flow i {
  display: block;
  width: 1px;
  height: 23px;
  margin-left: 13px;
  background: linear-gradient(to bottom, rgba(255,255,255,.14), transparent);
}


/* INTERNATIONAL FOUNDATION */

.sm-international {
  background: #090b0f;
}

.sm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.sm-two-col h2,
.sm-evolution h2,
.sm-innovation h2,
.sm-engine h2,
.sm-stage h2,
.sm-final h2 {
  margin-top: 18px;
  font-size: clamp(43px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.sm-copy {
  color: #919ca6;
  font-size: 18px;
  line-height: 1.75;
}

.sm-copy p:first-child {
  margin-top: 0;
}

.sm-copy strong {
  color: #dce1e5;
  font-weight: 500;
}

.sm-report-card {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.sm-report-id {
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.sm-report-id span {
  display: block;
  font-size: 43px;
  line-height: 1;
  letter-spacing: -.05em;
}

.sm-report-id small {
  display: block;
  margin-top: 10px;
  color: #66717c;
  font-size: 9px;
  letter-spacing: .14em;
}

.sm-report-main p {
  margin: 0 0 7px;
  color: #59636d;
  font-size: 9px;
  letter-spacing: .16em;
}

.sm-report-main h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.03em;
}

.sm-report-main h4 {
  max-width: 650px;
  margin: 8px 0 0;
  color: #7f8993;
  font-weight: 400;
  line-height: 1.45;
}

.sm-report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  color: #dce2e7;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  transition: .2s ease;
}

.sm-report-button:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
}

.sm-source-note {
  max-width: 950px;
  margin: 20px 0 0;
  color: #525c65;
  font-size: 12px;
  line-height: 1.65;
}


/* EVOLUTION */

.sm-evolution {
  background: #06080b;
}

.sm-evolution-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  align-items: stretch;
}

.sm-evolution-grid article {
  position: relative;
  min-height: 330px;
  padding: 31px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.015);
}

.sm-evolution-grid article > span {
  color: #525c65;
  font-size: 11px;
}

.sm-evolution-grid article > small {
  position: absolute;
  top: 31px;
  right: 31px;
  color: #4f5861;
  font-size: 9px;
  letter-spacing: .15em;
}

.sm-evolution-grid article h3 {
  margin: 105px 0 15px;
  font-size: 30px;
  letter-spacing: -.035em;
}

.sm-evolution-grid article p {
  color: #7e8993;
  line-height: 1.65;
}

.sm-evo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #46505a;
}

.sm-evolution-active {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.065), transparent 30%),
    rgba(255,255,255,.028) !important;
  border-color: rgba(255,255,255,.17) !important;
}


/* INNOVATION CAPABILITIES */

.sm-innovation {
  background: #090b0f;
}

.sm-innovation h2 span,
.sm-final h2 span {
  display: block;
  color: #697580;
}

.sm-innovation > .container > .lead {
  max-width: 850px;
}

.sm-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 65px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.08);
}

.sm-cap-grid article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sm-cap-grid article > span {
  color: #4f5963;
  font-size: 10px;
}

.sm-cap-grid h3 {
  margin: 82px 0 14px;
  font-size: 26px;
  letter-spacing: -.025em;
}

.sm-cap-grid p {
  margin: 0;
  color: #818c96;
  line-height: 1.65;
}


/* ENGINE PIPELINE */

.sm-engine {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.035), transparent 35%),
    #06080b;
}

.sm-engine-flow {
  margin-top: 65px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.sm-engine-flow > div {
  flex: 1 0 145px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.016);
}

.sm-engine-flow > div strong {
  display: block;
  margin-bottom: 35px;
  font-size: 16px;
  letter-spacing: .025em;
}

.sm-engine-flow > div small {
  color: #65707a;
}

.sm-engine-flow > span {
  flex: 0 0 auto;
  color: #3e4851;
}

.sm-engine-flow > div.active {
  border-color: rgba(255,255,255,.19);
  background: rgba(255,255,255,.035);
}


/* SECURITY */

.sm-security {
  background: #090b0f;
}

.sm-security-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.sm-security-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: #89939c;
  font-size: 9px;
  letter-spacing: .11em;
}


/* PROJECT STAGE */

.sm-stage {
  background: #06080b;
}

.sm-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.sm-stage-grid article {
  min-height: 230px;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 19px;
  background: rgba(255,255,255,.015);
}

.sm-stage-grid article strong {
  color: #4f5962;
  font-size: 11px;
}

.sm-stage-grid article h3 {
  margin: 68px 0 12px;
  font-size: 25px;
  letter-spacing: -.025em;
}

.sm-stage-grid article p {
  margin: 0;
  color: #7f8993;
  line-height: 1.6;
}


/* REGULATORY */

.sm-regulatory {
  position: relative;
  background:
    linear-gradient(180deg, #090b0f, #07090c);
}

.sm-regulatory::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}


/* FINAL */

.sm-final {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(255,255,255,.055), transparent 25%),
    #05070a;
}

.sm-final::after {
  content: "VV";
  position: absolute;
  right: -1vw;
  bottom: -11vw;
  font-size: min(33vw, 480px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.12em;
  color: rgba(255,255,255,.018);
  pointer-events: none;
}

.sm-final .container {
  position: relative;
  z-index: 2;
}

.sm-final .lead {
  max-width: 780px;
}

.sm-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .sm-hero-grid,
  .sm-two-col {
    grid-template-columns: 1fr;
  }

  .sm-tech-panel {
    max-width: 720px;
  }

  .sm-report-card {
    grid-template-columns: 130px 1fr;
  }

  .sm-report-card > div:last-child {
    grid-column: 2;
  }

  .sm-evolution-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sm-evo-arrow {
    min-height: 30px;
    transform: rotate(90deg);
  }

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

}


@media (max-width: 700px) {

  .sm-hero {
    padding-top: 135px;
  }

  .sm-hero-copy h1 {
    font-size: 66px;
  }

  .sm-hero-lead {
    font-size: 22px;
  }

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

  .sm-report-id {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .sm-report-card > div:last-child {
    grid-column: auto;
  }

  .sm-cap-grid,
  .sm-stage-grid {
    grid-template-columns: 1fr;
  }

  .sm-cap-grid article {
    min-height: 245px;
  }

  .sm-cap-grid h3 {
    margin-top: 55px;
  }

  .sm-engine-flow {
    gap: 8px;
  }

  .sm-engine-flow > div {
    flex-basis: 128px;
  }

  .sm-final {
    min-height: 520px;
  }

}


/* =========================================================
   VV SOFT METER — INSTITUTIONAL CONTEXT
   ========================================================= */

.sm-institutional {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 5%, rgba(255,255,255,.035), transparent 28%),
    #090b0f;
}

.sm-institutional::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.13),
      transparent
    );
}

.sm-institution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.sm-institution-grid article {
  position: relative;
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.025),
      rgba(255,255,255,.008)
    );
}

.sm-inst-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.sm-inst-head span {
  color: #4f5963;
  font-size: 10px;
}

.sm-inst-head small {
  color: #6e7882;
  font-size: 9px;
  letter-spacing: .12em;
  text-align: right;
}

.sm-institution-grid h3 {
  margin: 78px 0 18px;
  max-width: 370px;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.sm-institution-grid p {
  margin: 0;
  color: #808b95;
  line-height: 1.68;
}

.sm-inst-status {
  position: absolute;
  left: 30px;
  bottom: 29px;
  color: #59646e;
  font-size: 9px;
  letter-spacing: .12em;
}

.sm-inst-link {
  position: absolute;
  left: 30px;
  bottom: 27px;
  color: #bcc4cb;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .06em;
  transition: .2s ease;
}

.sm-inst-link:hover {
  color: #fff;
}

.sm-institution-note {
  margin-top: 55px;
  max-width: 1000px;
}

.sm-note-line {
  width: 54px;
  height: 1px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.24);
}

.sm-institution-note p {
  margin: 0;
  color: #68737d;
  font-size: 13px;
  line-height: 1.75;
}

.sm-institution-note strong {
  color: #aab3bb;
  font-weight: 500;
}

@media (max-width: 1000px) {
  .sm-institution-grid {
    grid-template-columns: 1fr;
  }

  .sm-institution-grid article {
    min-height: 315px;
  }
}


/* =========================================================
   VV KIOSK
   ========================================================= */

.dm-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.055), transparent 25%),
    #06080b;
}

.dm-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.dm-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: center;
}

.dm-hero h1 {
  margin: 20px 0 28px;
  font-size: clamp(68px, 7.7vw, 132px);
  line-height: .9;
  letter-spacing: -.065em;
}

.dm-hero h1 span {
  display: block;
  color: #747f89;
}

.dm-lead {
  max-width: 780px;
  margin: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.3;
  letter-spacing: -.025em;
  color: #d9dee3;
}

.dm-small {
  max-width: 720px;
  margin-top: 27px;
  color: #7d8892;
  line-height: 1.75;
}


/* DEVICE MOCKUP */

.dm-device-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.018);
  box-shadow: 0 50px 110px rgba(0,0,0,.42);
}

.dm-device-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #88939d;
  font-size: 10px;
  letter-spacing: .12em;
}

.dm-device-head small {
  margin-left: auto;
  color: #515b64;
}

.dm-phone {
  width: min(72%, 310px);
  margin: 45px auto 25px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background: #080a0d;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.025);
}

.dm-phone::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 5px auto 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}

.dm-phone-screen {
  min-height: 480px;
  padding: 30px 22px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 70% 15%, rgba(255,255,255,.045), transparent 25%),
    #0b0e12;
}

.dm-phone-screen > small {
  display: block;
  color: #56616b;
  font-size: 9px;
  letter-spacing: .15em;
}

.dm-phone-screen > strong {
  display: block;
  margin: 9px 0 75px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.dm-status-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 9px;
  letter-spacing: .08em;
}

.dm-status-row span {
  color: #66717b;
}

.dm-status-row b {
  color: #bcc4ca;
  font-weight: 500;
}


/* SECTIONS */

.dm-problem,
.dm-use,
.dm-security {
  background: #090b0f;
}

.dm-evolution,
.dm-control,
.dm-pipeline {
  background: #06080b;
}

.dm-problem h2,
.dm-evolution h2,
.dm-use h2,
.dm-control h2,
.dm-pipeline h2,
.dm-security h2,
.dm-final h2 {
  margin-top: 18px;
  font-size: clamp(43px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}


/* CONTROL FLOW */

.dm-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 65px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.dm-flow > div {
  flex: 1 0 155px;
  min-height: 125px;
  padding: 21px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.016);
}

.dm-flow strong {
  display: block;
  margin-bottom: 38px;
  font-size: 15px;
}

.dm-flow small {
  color: #65707a;
}

.dm-flow > span {
  color: #414a53;
}

.dm-flow .active {
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.035);
}


/* FINAL */

.dm-final {
  position: relative;
  overflow: hidden;
  min-height: 630px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 50%, rgba(255,255,255,.055), transparent 25%),
    #05070a;
}

.dm-final::after {
  content: "DM";
  position: absolute;
  right: -2vw;
  bottom: -10vw;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: min(31vw, 450px);
  letter-spacing: -.12em;
  color: rgba(255,255,255,.018);
  pointer-events: none;
}

.dm-final .container {
  position: relative;
  z-index: 2;
}

.dm-final h2 span {
  display: block;
  color: #6c7781;
}

.dm-final .lead {
  max-width: 800px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
  .dm-hero-grid {
    grid-template-columns: 1fr;
  }

  .dm-device-panel {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .dm-hero {
    padding-top: 135px;
  }

  .dm-hero h1 {
    font-size: 61px;
  }

  .dm-phone {
    width: 86%;
  }

  .dm-phone-screen {
    min-height: 430px;
  }

  .dm-final {
    min-height: 520px;
  }
}


/* =========================================================
   VV FLOW
   ========================================================= */

.flow-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 160px 0 110px;
  background:
    radial-gradient(circle at 76% 27%, rgba(255,255,255,.055), transparent 25%),
    radial-gradient(circle at 20% 82%, rgba(80,100,130,.06), transparent 30%),
    #06080b;
}

.flow-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.flow-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.flow-hero h1 {
  margin: 20px 0 28px;
  font-size: clamp(68px, 8vw, 135px);
  line-height: .89;
  letter-spacing: -.065em;
}

.flow-hero h1 span {
  display: block;
  color: #727e89;
}

.flow-hero-lead {
  max-width: 780px;
  margin: 0;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -.025em;
  color: #d9dee3;
}

.flow-hero-small {
  max-width: 700px;
  margin-top: 27px;
  color: #7d8892;
  line-height: 1.75;
}


/* HERO SYSTEM */

.flow-system-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    #090c10;
  box-shadow: 0 50px 120px rgba(0,0,0,.42);
}

.flow-system-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #89949e;
  font-size: 10px;
  letter-spacing: .12em;
}

.flow-system-top small {
  margin-left: auto;
  color: #535d66;
}

.flow-system {
  padding-top: 10px;
}

.flow-system-node {
  padding: 20px 11px;
}

.flow-system-node small {
  display: block;
  color: #4e5962;
  font-size: 8px;
  letter-spacing: .14em;
}

.flow-system-node strong {
  display: block;
  margin-top: 5px;
  color: #e0e5e9;
  font-size: 21px;
}

.flow-system-node span {
  display: block;
  margin-top: 5px;
  color: #6f7a84;
  font-size: 11px;
}

.flow-system i {
  display: block;
  width: 1px;
  height: 22px;
  margin-left: 12px;
  background: rgba(255,255,255,.10);
}


/* SECTION BACKGROUNDS */

.flow-problem,
.flow-ecosystem,
.flow-industries,
.flow-ai {
  background: #090b0f;
}

.flow-transformation,
.flow-core,
.flow-model,
.flow-architecture {
  background: #06080b;
}

.flow-problem h2,
.flow-transformation h2,
.flow-ecosystem h2,
.flow-core h2,
.flow-model h2,
.flow-industries h2,
.flow-ai h2,
.flow-architecture h2,
.flow-final h2 {
  margin-top: 18px;
  font-size: clamp(43px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.flow-ecosystem h2 span {
  display: block;
  color: #6f7b85;
}


/* ECOSYSTEM */

.flow-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 65px;
}

.flow-ecosystem-grid article {
  min-height: 500px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.015);
}

.flow-ecosystem-grid article > span {
  color: #4f5963;
  font-size: 10px;
}

.flow-product-tag {
  margin-top: 50px;
  color: #69747e;
  font-size: 9px;
  letter-spacing: .14em;
}

.flow-ecosystem-grid h3 {
  margin: 14px 0 18px;
  font-size: 29px;
  letter-spacing: -.035em;
}

.flow-ecosystem-grid p {
  color: #7e8993;
  line-height: 1.65;
}

.flow-ecosystem-grid ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.07);
}

.flow-ecosystem-grid li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #68737d;
  font-size: 12px;
}


/* PIPELINE */

.flow-pipeline {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 65px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.flow-pipeline > div {
  flex: 1 0 145px;
  min-height: 122px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.016);
}

.flow-pipeline strong {
  display: block;
  margin-bottom: 37px;
  font-size: 14px;
  letter-spacing: .02em;
}

.flow-pipeline small {
  color: #65707a;
}

.flow-pipeline > span {
  color: #414a53;
}

.flow-pipeline .active {
  border-color: rgba(255,255,255,.19);
  background: rgba(255,255,255,.035);
}


/* INDUSTRIES */

.flow-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 65px;
}

.flow-industry-grid article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.015);
}

.flow-industry-grid span {
  display: block;
  margin-bottom: 52px;
  color: #a3adb5;
  font-size: 10px;
  letter-spacing: .12em;
}

.flow-industry-grid p {
  margin: 0;
  color: #77828c;
  line-height: 1.6;
}


/* ARCHITECTURE */

.flow-architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 65px;
}

.flow-architecture-grid article {
  min-height: 210px;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.015);
}

.flow-architecture-grid small {
  color: #525c65;
  font-size: 9px;
  letter-spacing: .13em;
}

.flow-architecture-grid h3 {
  margin: 65px 0 11px;
  font-size: 24px;
}

.flow-architecture-grid p {
  margin: 0;
  color: #75808a;
  line-height: 1.55;
}


/* FINAL */

.flow-final {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 48%, rgba(255,255,255,.055), transparent 25%),
    #05070a;
}

.flow-final::after {
  content: "FLOW";
  position: absolute;
  right: -4vw;
  bottom: -7vw;
  font-size: min(21vw, 330px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.11em;
  color: rgba(255,255,255,.018);
  pointer-events: none;
}

.flow-final .container {
  position: relative;
  z-index: 2;
}

.flow-final h2 span {
  display: block;
  color: #6d7882;
}

.flow-final .lead {
  max-width: 850px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .flow-hero-grid {
    grid-template-columns: 1fr;
  }

  .flow-system-panel {
    max-width: 720px;
  }

  .flow-ecosystem-grid,
  .flow-industry-grid,
  .flow-architecture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .flow-hero {
    padding-top: 135px;
  }

  .flow-hero h1 {
    font-size: 60px;
  }

  .flow-ecosystem-grid,
  .flow-industry-grid,
  .flow-architecture-grid {
    grid-template-columns: 1fr;
  }

  .flow-ecosystem-grid article {
    min-height: auto;
  }

  .flow-final {
    min-height: 520px;
  }

}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 78% 35%, rgba(255,255,255,.05), transparent 26%),
    #06080b;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.contact-hero h1 {
  margin: 18px 0 30px;
  font-size: clamp(68px, 8vw, 128px);
  line-height: .9;
  letter-spacing: -.065em;
}

.contact-hero h1 span,
.contact-form-section h2 span,
.contact-final h2 span {
  display: block;
  color: #707b85;
}

.contact-hero-lead {
  max-width: 760px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.35;
  color: #cfd5da;
}

.contact-hero-panel {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.018);
}

.contact-hero-panel small {
  display: block;
  margin: 0 0 10px;
  color: #59636c;
  font-size: 9px;
  letter-spacing: .14em;
}

.contact-hero-panel a {
  display: block;
  margin-bottom: 34px;
  color: #e3e7ea;
  font-size: clamp(20px, 2vw, 28px);
  text-decoration: none;
}

.contact-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #6f7a83;
  font-size: 12px;
}

.contact-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8c0c6;
}


/* CARDS */

.contact-details {
  background: #090b0f;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.contact-cards article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.015);
}

.contact-cards article > span {
  color: #4f5962;
  font-size: 10px;
}

.contact-cards small {
  display: block;
  margin-top: 44px;
  color: #59636c;
  font-size: 9px;
  letter-spacing: .14em;
}

.contact-cards h3 {
  margin: 12px 0 16px;
  font-size: 27px;
  letter-spacing: -.03em;
}

.contact-cards p {
  color: #78838c;
  line-height: 1.65;
}

.contact-cards a {
  display: inline-block;
  margin-top: 24px;
  color: #c6cdd2;
  text-decoration: none;
}


/* FORM */

.contact-form-section {
  background: #06080b;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-form-section h2 {
  margin-top: 18px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.015);
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  color: #858f97;
  font-size: 11px;
  letter-spacing: .04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 11px;
  background: #0b0e12;
  color: #e1e5e8;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.22);
}

.contact-form-note {
  margin-top: 16px;
  color: #59636c;
  font-size: 11px;
  line-height: 1.5;
}


/* FINAL */

.contact-final {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 45%, rgba(255,255,255,.05), transparent 26%),
    #05070a;
}

.contact-final h2 {
  margin-top: 18px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .95;
  letter-spacing: -.06em;
}

.contact-final .lead {
  max-width: 800px;
}


/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-hero {
    padding-top: 135px;
  }

  .contact-hero h1 {
    font-size: 58px;
  }

  .contact-hero-panel {
    padding: 24px;
  }
}

/* =========================================================
   NAȘE TAXI - APP STORE LINKS
   ========================================================= */

.nase-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.nase-store-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 225px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: #eef1f3;
  text-decoration: none;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.nase-store-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
}

.nase-store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 9px;
  color: #b5bdc4;
  font-size: 13px;
}

.nase-store-btn small {
  display: block;
  margin-bottom: 4px;
  color: #5f6972;
  font-size: 8px;
  letter-spacing: .12em;
}

.nase-store-btn strong {
  display: block;
  color: #dde2e6;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .nase-store-links {
    flex-direction: column;
  }

  .nase-store-btn {
    width: 100%;
  }
}


/* VV FLOW LIVE PLATFORM LINK */

.flow-live-link {
  margin-top: 30px;
  margin-bottom: 24px;
}

.flow-live-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* ===== VV HOLDING HOME REDESIGN ===== */

.top-kiosk-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #f4f6f8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  background: rgba(255,255,255,.045);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.top-kiosk-link:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.32);
  transform: translateY(-1px);
}

.footer-wrap {
  align-items: center;
  gap: 24px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-products {
  display: flex;
  gap: 12px !important;
  flex-wrap: wrap;
}

.footer-products a {
  color: #626b75;
  font-size: 11px;
  opacity: .72;
}

.footer-products a:hover {
  color: #aeb5bf;
  opacity: 1;
}

.footer-languages {
  display: flex;
  gap: 10px !important;
  flex-wrap: wrap;
}

.footer-languages a {
  color: #78828d;
  font-size: 11px;
}

.footer-languages a:hover {
  color: #d7dbe0;
}

@media (max-width: 800px) {
  .nav-wrap {
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .top-kiosk-link {
    margin-left: auto;
    padding: 7px 10px;
    font-size: 11px;
  }

  .footer-wrap,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    gap: 14px;
  }
}

/* ===== VV HOLDING PRODUCTS DROPDOWN ===== */

.products-dropdown {
  position: relative;
  flex-shrink: 0;
}

.products-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #f5f7fa;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.products-button::after {
  content: "▾";
  font-size: 12px;
  opacity: .75;
}

.products-button:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.products-dropdown:hover .products-menu,
.products-dropdown:focus-within .products-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.products-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(6,10,18,.96);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 200;
}

.products-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #f3f6fb;
  font-size: 14px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.products-menu a:hover {
  background: rgba(255,255,255,.07);
  color: #ffffff;
}

.footer-wrap {
  justify-content: flex-start !important;
}

.footer-meta,
.footer-products,
.footer-languages {
  display: none !important;
}

@media (max-width: 980px) {
  .products-menu {
    right: 0;
    min-width: 220px;
  }
}

@media (max-width: 800px) {
  .nav-wrap {
    gap: 10px;
  }

  .products-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .products-menu {
    min-width: 210px;
  }
}

/* ===== VV HOLDING TOPBAR BALANCE ===== */
@media (min-width: 801px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto minmax(90px, 1fr);
    align-items: center;
    column-gap: 28px;
  }

  .brand {
    justify-self: start;
  }

  .nav-center {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 28px;
  }

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

  .language-dropdown {
    justify-self: end;
  }

  .products-dropdown {
    margin: 0;
  }
}

@media (max-width: 800px) {
  .nav-center {
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .nav-center nav {
    display: none;
  }

  .language-dropdown {
    margin-left: 0;
  }
}
