:root {
  --bg: #17181C;
  --deep: #121316;
  --surface: #1F2229;
  --surface2: #20242C;
  --line: #3A3F4B;
  --line2: #4C5667;
  --text: #F5F7FA;
  --text2: #C9D1E0;
  --muted: #8B95A7;
  --blue: #4DA3FF;
  --blue2: #6DB4FF;
  --green: #3DDC97;
  --yellow: #FFBF69;
  --max: 1180px;
  --ease: cubic-bezier(.2, .75, .2, 1)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI Variable", Arial, sans-serif;
  line-height: 1.5
}

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

button {
  font: inherit
}

.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin: auto
}

.header {
  height: 76px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 24, 28, .9);
  backdrop-filter: blur(18px)
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px
}

.logo-mark {
  width: 29px;
  height: 29px;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--text2);
  font-weight: 600
}

.nav-links a:hover {
  color: var(--blue)
}

.nav-action {
  position: relative;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text2);
  text-decoration: none;
  transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Smooth animated underline */
.nav-action::after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 1px;
  background: var(--blue);
  transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1), left 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover */
.nav-action:hover {
  color: var(--blue);
}

.nav-action:hover::after {
  width: 100%;
  left: 0%;
}

.menu {
  display: none;
  border: 0;
  background: none
}

.menu i {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  margin: 6px
}

.kicker,
.section-no {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue)
}

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

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.hero h1 {
  font-size: clamp(62px, 8vw, 104px);
  line-height: .9;
  letter-spacing: -6px;
  margin: 25px 0
}

.blue {
  color: var(--blue)
}

em {
  font-style: normal;
  color: var(--blue)
}

.lead {
  max-width: 590px;
  color: var(--text2);
  font-size: 18px;
  line-height: 1.8
}

.line-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line2);
  padding-bottom: 9px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 700
}

.line-link:hover {
  color: var(--blue);
  border-color: var(--blue)
}

.hero-art {
  height: 540px;
  position: relative;
  display: grid;
  place-items: center
}

.grid-art {
  position: absolute;
  inset: 15px;
  background: linear-gradient(90deg, rgba(77, 163, 255, .1) 1px, transparent 1px), linear-gradient(rgba(77, 163, 255, .1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, #000, transparent 70%)
}

.ring {
  position: absolute;
  border: 1px solid rgba(77, 163, 255, .3);
  border-radius: 50%
}

.ring.a {
  width: 390px;
  height: 390px
}

.ring.b {
  width: 520px;
  height: 260px;
  transform: rotate(-32deg)
}

.core {
  width: 145px;
  height: 145px;
  border: 1px solid var(--blue);
  display: grid;
  place-items: center;
  background: #1f2229d9;
  box-shadow: 0 0 80px #4da3ff10
}

.core b {
  font-size: 60px;
  letter-spacing: -6px;
  color: var(--blue)
}

.art-label {
  position: absolute;
  right: 4%;
  bottom: 10%;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 1.6px;
  text-align: right
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep)
}

.band-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2.3px;
  font-weight: 700
}

.band b {
  color: var(--blue)
}

.section {
  padding: 120px 0
}

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px
}

.statement h2,
.section-title h2,
.manifesto h2,
.company h2 {
  font-size: clamp(45px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -4px;
  margin: 16px 0
}

.statement-copy {
  max-width: 450px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  padding-top: 45px
}

.dark {
  background: var(--deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section-title {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px
}

.section-title>p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8
}

.products {
  display: grid;
  gap: 12px
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--surface)
}

.product-visual {
  display: grid;
  place-items: center;
  background: #15171b;
  position: relative;
  overflow: hidden
}

.product-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.8%, #4c566725 50%, transparent 50.2%)
}

.app-window {
  width: 72%;
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line2);
  box-shadow: 0 30px 70px #0008
}

.app-top {
  height: 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--muted)
}

.app-body {
  padding: 28px
}

.app-body small {
  font-size: 9px;
  color: var(--blue);
  letter-spacing: 1.4px
}

.app-body strong {
  display: block;
  font-size: 33px;
  line-height: 1;
  margin: 20px 0;
  letter-spacing: -2px
}

.bar {
  height: 3px;
  background: #303541
}

.bar span {
  display: block;
  height: 100%;
  width: 86%;
  background: var(--blue)
}

.app-stats {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  font-size: 9px;
  color: var(--muted)
}

.app-stats b {
  color: var(--blue)
}

.product-copy {
  padding: 52px;
  position: relative
}

.product-copy .number {
  position: absolute;
  right: 28px;
  top: 28px
}

.number {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px
}

.state {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted)
}

.product-copy h3 {
  font-size: 48px;
  line-height: .9;
  letter-spacing: -3px;
  margin: 27px 0
}

.product-copy>p:not(.state) {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 440px
}

.tags {
  display: flex;
  gap: 6px;
  margin-top: 28px
}

.tags span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 8px
}

.product-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.product-card {
  border: 1px solid var(--line);
  background: var(--surface2);
  padding: 30px;
  min-height: 300px;
  position: relative
}

.product-card h3 {
  font-size: 34px;
  line-height: .95;
  letter-spacing: -2px;
  margin: 45px 0 14px
}

.product-card p {
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8
}

.coming {
  position: absolute;
  bottom: 28px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 1.5px
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line)
}

.principle {
  padding: 28px 28px 30px 0;
  border-bottom: 1px solid var(--line)
}

.principle:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line)
}

.principle span {
  font-size: 10px;
  color: var(--blue)
}

.principle h3 {
  font-size: 18px;
  margin: 20px 0 7px
}

.principle p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 90px;
  align-items: center
}

.download-copy>p:not(.section-no) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 520px;
  margin-top: 25px
}

.release {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 23px
}

.release-head,
.release-row {
  display: flex;
  justify-content: space-between
}

.release-head {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 1.3px
}

.release-head b {
  color: var(--blue)
}

.release-row {
  padding: 22px 0
}

.release-row span:last-child {
  color: var(--yellow);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.release button {
  width: 100%;
  height: 48px;
  border: 0;
  background: var(--blue);
  color: #09111a;
  font-size: 13px;
  font-weight: 800;
  opacity: .42
}

.release small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 8px
}

.release-row[data-gevei-field="sha256"] {
  min-width: 0;
}

.release-row[data-gevei-field="sha256"]>span[data-gevei-value] {
  min-width: 0;
  max-width: 100%;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  display: block;
}


/* ================================
   MOBILE
   ================================ */

@media (max-width: 600px) {

  .release-row[data-gevei-field="sha256"] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .release-row[data-gevei-field="sha256"] strong {
    flex: 0 0 auto;
  }

  .release-row[data-gevei-field="sha256"]>span[data-gevei-value] {
    flex: 1 1 auto;
    min-width: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  border-top: 1px solid var(--line)
}

.company-copy {
  max-width: 530px
}

.company-copy p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.85
}

.site-footer {
  background: #121316;
  border-top: 1px solid var(--line)
}

.footer-top {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-top p {
  font-size: 11px;
  color: var(--muted)
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0 23px;
  display: flex;
  justify-content: space-between;
  color: #697384;
  font-size: 10px;
  letter-spacing: .7px
}

.page-hero {
  padding: 120px 0 90px;
  border-bottom: 1px solid var(--line)
}

.page-hero h1 {
  font-size: clamp(58px, 8vw, 96px);
  line-height: .9;
  letter-spacing: -5px;
  margin: 20px 0
}

.page-hero p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.feature {
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 220px;
  background: var(--surface)
}

.feature span {
  font-size: 9px;
  color: var(--blue)
}

.feature h3 {
  margin: 35px 0 8px;
  font-size: 18px
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75
}

.changelog {
  border-top: 1px solid var(--line)
}

.release-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line)
}

.release-note .version {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 1px
}

.release-note h3 {
  font-size: 22px;
  margin: 0 0 8px
}

.release-note p {
  font-size: 14px;
  color: var(--muted)
}

@media(max-width:850px) {
  .hero-art {
    display: none !important;
  }

  .wrap {
    width: min(var(--max), calc(100% - 36px))
  }

  .nav-links {
    display: none
  }

  .menu {
    display: block
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 90px 0
  }

  .hero-art {
    height: 360px
  }

  .statement,
  .section-title,
  .manifesto-grid,
  .download-grid,
  .company {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .statement-copy {
    padding: 0
  }

  .product-feature {
    grid-template-columns: 1fr
  }

  .product-visual {
    min-height: 380px
  }

  .feature-list {
    grid-template-columns: 1fr 1fr
  }

  .nav-action {
    display: none
  }
}

@media(max-width:560px) {
  .wrap {
    width: calc(100% - 28px)
  }

  .hero h1 {
    font-size: 60px;
    letter-spacing: -4px
  }

  .section {
    padding: 85px 0
  }

  .product-grid,
  .feature-list,
  .principles {
    grid-template-columns: 1fr
  }

  .principle:nth-child(even) {
    padding-left: 0;
    border-left: 0
  }

  .product-copy {
    padding: 32px
  }

  .product-copy h3 {
    font-size: 40px
  }

  .download-grid {
    gap: 35px
  }

  .page-hero {
    padding: 85px 0 65px
  }

  .release-note {
    grid-template-columns: 1fr;
    gap: 10px
  }
}

/* Separated components */
.nav.open .nav-links {
  display: flex
}

@media(max-width:850px) {
  .nav.open .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 30px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
}

.footer-top {
  align-items: flex-start !important;
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 60px
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 34px
}

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

.footer-column>span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 5px
}

.footer-column>a {
  font-size: 11px;
  color: var(--text2)
}

.footer-column>a:hover {
  color: var(--blue)
}

@media(max-width:850px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    width: 100%
  }
}

@media(max-width:560px) {
  .footer-top {
    flex-direction: column
  }

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

  .footer-column>a {
    font-size: 10px
  }
}

/* Premium trust / support */
.support-hero .line-link {
  margin-top: 28px
}

.footer-support {
  display: inline-block;
  margin-top: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px
}

.footer-support:hover {
  color: var(--blue2)
}

.feature {
  transition: border-color .2s var(--ease), transform .2s var(--ease)
}

.feature:hover {
  border-color: var(--line2);
  transform: translateY(-2px)
}

.release {
  transition: border-color .2s var(--ease)
}

.release:hover {
  border-color: var(--line2)
}

@media(max-width:560px) {
  .support-hero h1 {
    font-size: 58px
  }
}

/* =========================================================
   GEVEI THEME SYSTEM
   Dark is the default brand theme.
   Light mode preserves the same premium/raw visual language.
   ========================================================= */
:root {
  --theme-transition: 180ms cubic-bezier(.2, .75, .2, 1);
}

html,
body,
.header,
.band,
.dark,
.site-footer,
.product-feature,
.product-card,
.feature,
.release,
.app-window,
.product-visual {
  transition: background-color var(--theme-transition), color var(--theme-transition), border-color var(--theme-transition), box-shadow var(--theme-transition);
}

html[data-theme="light"] {
  --bg: #F5F7FA;
  --deep: #EDEFF3;
  --surface: #FFFFFF;
  --surface2: #F0F2F5;
  --line: #D5DAE2;
  --line2: #B7C0CE;
  --text: #17181C;
  --text2: #3E4653;
  --muted: #697384;
  --blue: #1877D2;
  --blue2: #0F65B8;
  --green: #16885C;
  --yellow: #A76500;
}

html[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

html[data-theme="light"] .header {
  background: rgba(245, 247, 250, .90);
}

html[data-theme="light"] .dark,
html[data-theme="light"] .band {
  background: var(--deep);
}

html[data-theme="light"] .site-footer {
  background: #E7E9ED;
}

html[data-theme="light"] .product-visual {
  background: #E7E9ED;
}

html[data-theme="light"] .app-window,
html[data-theme="light"] .product-feature,
html[data-theme="light"] .product-card,
html[data-theme="light"] .feature,
html[data-theme="light"] .release {
  box-shadow: 0 18px 50px rgba(23, 24, 28, .08);
}

html[data-theme="light"] .core {
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 0 70px rgba(24, 119, 210, .10);
}

html[data-theme="light"] .grid-art {
  background-image:
    linear-gradient(90deg, rgba(24, 119, 210, .10) 1px, transparent 1px),
    linear-gradient(rgba(24, 119, 210, .10) 1px, transparent 1px);
}

html[data-theme="light"] .ring {
  border-color: rgba(24, 119, 210, .25);
}

html[data-theme="light"] .bar {
  background: #D7DCE4;
}

html[data-theme="light"] .app-top,
html[data-theme="light"] .release-head {
  border-color: var(--line);
}

/* Footer appearance control */
.footer-theme {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  margin-bottom: 26px;
}

.footer-theme>span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 700;
}

.theme-toggle {
  height: 34px;
  border: 1px solid var(--line);
  background: var(--surface2);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--line2);
}

.theme-icon {
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
}

.theme-track {
  width: 38px;
  height: 18px;
  border: 1px solid var(--line2);
  background: var(--bg);
  position: relative;
  display: block;
}

.theme-thumb {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--blue);
  transition: left var(--theme-transition);
}

html[data-theme="light"] .theme-thumb {
  left: 22px;
}

@media(max-width:850px) {
  .footer-theme {
    margin-left: 0;
    margin-bottom: 8px;
  }
}


/* =========================================================
   BRAND ASSETS / ACCESSIBILITY / SEO-FRIENDLY STATIC UI
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 36px
}

.logo-mark-img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain
}

.logo-wordmark-img {
  display: block;
  width: 180px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  object-position: left center
}

html[data-theme="light"] .logo-mark-img,
html[data-theme="light"] .logo-wordmark-img {
  filter: brightness(0)
}

.logo:focus-visible,
.nav-links a:focus-visible,
.nav-action:focus-visible,
.line-link:focus-visible,
.product-link:focus-visible,
.footer-column a:focus-visible,
.theme-toggle:focus-visible,
.menu:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px
}

button:disabled {
  cursor: not-allowed
}

.hero-art .core {
  overflow: hidden
}

.hero-art .core b {
  display: none
}

.hero-art .core:before {
  content: "";
  width: 78px;
  height: 78px;
  background: url('../brand/gevei-mark.png') center/contain no-repeat;
  display: block
}

html[data-theme="light"] .hero-art .core:before {
  filter: brightness(0)
}

.logo p {
  margin: 0
}

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

  .feature,
  .release,
  html,
  body,
  .header,
  .band,
  .dark,
  .site-footer,
  .product-feature,
  .product-card,
  .app-window {
    transition: none !important
  }
}

@media(max-width:560px) {
  .logo-wordmark-img {
    width: 150px;
    max-height: 30px
  }

  .logo-mark-img {
    width: 30px;
    height: 30px
  }

  .logo {
    gap: 8px
  }

  .nav-links {
    font-size: 14px
  }

  .lead {
    font-size: 17px
  }

  .hero h1 {
    font-size: 64px
  }
}

/* =========================================================
   GEVEI HERO ART — PREMIUM STATIC BUILD
   Smooth / restrained / technical / cinematic.
   Rings build once on page load, then remain perfectly still.
   ========================================================= */

.hero-art {
  isolation: isolate;
  perspective: 900px;
  overflow: visible;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.82);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, .105) 0, rgba(77, 163, 255, .045) 28%, transparent 68%);
  filter: blur(2px);
  opacity: 0;
  animation: geveiAtmosphere 1.8s cubic-bezier(.16, 1, .3, 1) .05s forwards;
  pointer-events: none;
  z-index: -2;
}

.hero-art::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 163, 255, 0) 10%, rgba(77, 163, 255, .55) 50%, rgba(77, 163, 255, 0) 90%, transparent);
  box-shadow: 0 0 18px rgba(77, 163, 255, .28);
  opacity: 0;
  transform: translateY(-150px) scaleX(.12);
  animation: geveiScan 1.35s cubic-bezier(.22, 1, .36, 1) .25s forwards;
  pointer-events: none;
  z-index: 5;
}

.hero-art .grid-art {
  opacity: 0;
  transform: scale(.94);
  transform-origin: center;
  animation: geveiGridIn 1.25s cubic-bezier(.16, 1, .3, 1) .05s forwards;
}

/* Rings build once and then stay completely static. */
.hero-art .ring {
  will-change: transform, opacity;
  opacity: 0;
  transform-origin: center;
  backface-visibility: hidden;
}

.hero-art .ring.a {
  animation: geveiRingA 1.55s cubic-bezier(.16, 1, .3, 1) .18s forwards;
}

.hero-art .ring.b {
  animation: geveiRingB 1.7s cubic-bezier(.16, 1, .3, 1) .30s forwards;
}

.hero-art .ring.b::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: var(--blue);
  box-shadow:
    0 0 10px rgba(77, 163, 255, .95),
    0 0 24px rgba(77, 163, 255, .48),
    0 0 42px rgba(77, 163, 255, .18);
  opacity: .9;
  offset-path: ellipse(50% 50% at 50% 50%);
  offset-distance: 50%;
  offset-rotate: 0deg;
  animation: geveiDotOrbit 34s linear 1.95s infinite;
  will-change: offset-distance;
}

.hero-art .core {
  opacity: 0;
  transform: scale(.90);
  will-change: transform, opacity, box-shadow;
  animation: geveiCoreIn 1.15s cubic-bezier(.16, 1, .3, 1) .62s forwards;
}

.hero-art .core::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(77, 163, 255, .16);
  transform: scale(.88);
  opacity: 0;
  animation: geveiInnerPulse 1.7s cubic-bezier(.16, 1, .3, 1) 1.02s forwards;
  pointer-events: none;
}

.hero-art .art-label {
  opacity: 0;
  transform: translate3d(8px, 4px, 0);
  animation: geveiLabelIn .7s cubic-bezier(.16, 1, .3, 1) 1.08s forwards;
}

.hero-art .ring.a::before,
.hero-art .ring.a::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--blue);
  background: var(--bg);
  box-shadow: 0 0 10px rgba(77, 163, 255, .35);
}

.hero-art .ring.a::before {
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-art .ring.a::after {
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes geveiAtmosphere {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.82)
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
  }
}

@keyframes geveiGridIn {
  0% {
    opacity: 0;
    transform: scale(.94);
    filter: blur(1.5px)
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0)
  }
}

@keyframes geveiScan {
  0% {
    opacity: 0;
    transform: translateY(-150px) scaleX(.12)
  }

  18% {
    opacity: .85
  }

  72% {
    opacity: .55
  }

  100% {
    opacity: 0;
    transform: translateY(150px) scaleX(1)
  }
}

/* Ring A — smooth radial construction with a very subtle settle. */
@keyframes geveiRingA {
  0% {
    opacity: 0;
    transform: scale(.04)
  }

  58% {
    opacity: .58;
    transform: scale(.78)
  }

  82% {
    opacity: .88;
    transform: scale(1.018)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

/* Ring B — slightly delayed for layered construction. */
@keyframes geveiRingB {
  0% {
    opacity: 0;
    transform: rotate(-32deg) scale(.035)
  }

  58% {
    opacity: .50;
    transform: rotate(-32deg) scale(.74)
  }

  83% {
    opacity: .78;
    transform: rotate(-32deg) scale(1.015)
  }

  100% {
    opacity: 1;
    transform: rotate(-32deg) scale(1)
  }
}

@keyframes geveiCoreIn {
  0% {
    opacity: 0;
    transform: scale(.90);
    box-shadow: 0 0 0 rgba(77, 163, 255, 0)
  }

  72% {
    opacity: 1;
    transform: scale(1.018);
    box-shadow: 0 0 88px rgba(77, 163, 255, .13)
  }

  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 80px rgba(77, 163, 255, .075)
  }
}

@keyframes geveiInnerPulse {
  0% {
    opacity: 0;
    transform: scale(.88)
  }

  32% {
    opacity: .8;
    transform: scale(1)
  }

  100% {
    opacity: 0;
    transform: scale(1.08)
  }
}

@keyframes geveiLabelIn {
  0% {
    opacity: 0;
    transform: translate3d(8px, 4px, 0);
    letter-spacing: 2px
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    letter-spacing: 1.6px
  }
}

/* The ellipse remains static; only the small signal dot moves. */
@keyframes geveiDotOrbit {
  from {
    offset-distance: 50%
  }

  to {
    offset-distance: 150%
  }
}

html[data-theme="light"] .hero-art::before {
  background: radial-gradient(circle, rgba(24, 119, 210, .10) 0, rgba(24, 119, 210, .035) 28%, transparent 68%);
}

html[data-theme="light"] .hero-art::after {
  background: linear-gradient(90deg, transparent, rgba(24, 119, 210, 0) 10%, rgba(24, 119, 210, .42) 50%, rgba(24, 119, 210, 0) 90%, transparent);
  box-shadow: 0 0 18px rgba(24, 119, 210, .18);
}

html[data-theme="light"] .hero-art .ring.a::before,
html[data-theme="light"] .hero-art .ring.a::after {
  background: var(--bg);
}

@media(prefers-reduced-motion:reduce) {

  .hero-art::before,
  .hero-art::after,
  .hero-art .grid-art,
  .hero-art .ring,
  .hero-art .core,
  .hero-art .art-label {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .hero-art::before {
    transform: translate(-50%, -50%) !important
  }

  .hero-art .ring.a {
    transform: none !important
  }

  .hero-art .ring.b {
    transform: rotate(-32deg) !important
  }

  .hero-art .core {
    transform: none !important
  }
}




/* Mobile: technology band changes from horizontal row to vertical column. */
@media(max-width:850px) {
  .band {
    display: block !important;
  }

  .band-inner {
    height: auto !important;
    min-height: 0 !important;
    padding: 22px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center;
  }

  .band-inner span {
    display: block;
    line-height: 1.3;
  }

  .band-inner b {
    line-height: 1;
    font-size: 10px;
  }
}


/* =========================================================
   GEVEI FOOTER — RESPONSIVE PRODUCTION FIX
   Keeps the existing visual language, but prevents:
   - footer-column overflow
   - squeezed appearance control
   - awkward mobile stacking
   - long legal-link wrapping issues
   - footer-bottom overflow
   ========================================================= */

.site-footer {
  width: 100%;
  overflow: hidden;
}

.footer-top {
  min-width: 0;
  display: grid !important;
  grid-template-columns: minmax(220px, 1.15fr) minmax(130px, .55fr) minmax(0, 2.85fr);
  align-items: start !important;
  gap: 56px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.footer-top>div:first-child {
  min-width: 0;
}

.footer-top>div:first-child .logo {
  max-width: 100%;
}

.footer-top>div:first-child>p {
  max-width: 260px;
  margin: 13px 0 0;
  line-height: 1.65;
}

.footer-support {
  overflow-wrap: anywhere;
}

.footer-theme {
  min-width: 0;
  margin: 0 !important;
  align-self: start;
  justify-self: start;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-theme>span {
  white-space: nowrap;
}

.theme-toggle {
  flex-shrink: 0;
}

.footer-columns {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 34px;
  align-items: start;
}

.footer-column {
  min-width: 0;
  gap: 9px;
}

.footer-column>span {
  display: block;
  white-space: nowrap;
}

.footer-column>a {
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-bottom {
  min-width: 0;
  gap: 18px 30px;
  flex-wrap: wrap;
}

.footer-bottom>span {
  min-width: 0;
}

@media (max-width: 1050px) {
  .footer-top {
    grid-template-columns: minmax(190px, .9fr) minmax(120px, .45fr) minmax(0, 2.65fr);
    gap: 38px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 28px;
  }
}

@media (max-width: 850px) {
  .footer-top {
    grid-template-columns: minmax(190px, .9fr) minmax(130px, .6fr);
    gap: 42px 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-top>div:first-child {
    grid-column: 1;
  }

  .footer-theme {
    grid-column: 2;
    justify-self: end;
  }

  .footer-columns {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 36px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-top>div:first-child,
  .footer-theme,
  .footer-columns {
    grid-column: 1;
  }

  .footer-theme {
    justify-self: start;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

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

  .footer-column>span {
    font-size: 9px;
    letter-spacing: 1.25px;
  }

  .footer-column>a {
    font-size: 11px;
    line-height: 1.5;
  }

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

  .footer-bottom>span {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-theme {
    flex-wrap: wrap;
  }
}

/* =========================================================
   GEVEI FLOW PRODUCT / RELEASE UI
   ========================================================= */

.flow-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.flow-brand-lockup img {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.flow-brand-lockup strong {
  display: block;
  font-size: 16px;
  letter-spacing: 1.5px;
}

.flow-brand-lockup span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

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

.flow-release-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 11px;
  color: var(--text2);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.flow-release-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: block;
}

.flow-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.flow-product-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 50px;
  background: #101216;
}

.flow-product-visual img {
  width: min(280px, 72%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, .42));
}

.flow-product-details {
  padding: 48px;
}

.flow-product-details h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: .92;
  letter-spacing: -3px;
  margin: 16px 0 22px;
}

.flow-product-details p {
  color: var(--text2);
  line-height: 1.8;
}

.flow-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.flow-meta span {
  border: 1px solid var(--line);
  padding: 7px 9px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.flow-download-button,
.button.flow-download-button {
  min-height: 50px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  /* SOLID NATURAL GREEN */
  background: #20af0d;

  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .4px;

  border: 1px solid rgba(255, 255, 255, .10);

  cursor: pointer;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, .14),
    inset 0 1px 0 rgba(255, 255, 255, .10);

  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .25s ease;
}


/* =================================
   SOFT NATURAL LIGHT SWEEP
   ================================= */

.flow-download-button::before {
  content: "";

  position: absolute;

  top: -100%;
  left: -45%;

  width: 20%;
  height: 300%;

  background: rgba(255, 255, 255, .20);

  transform: rotate(18deg);

  opacity: 0;

  pointer-events: none;

  animation: downloadNaturalShine 5.5s ease-in-out infinite;
}


/* =================================
   VERY SUBTLE INNER HIGHLIGHT
   ================================= */

.flow-download-button::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08);

  pointer-events: none;
}


/* =================================
   SLOW SHINE
   ================================= */

@keyframes downloadNaturalShine {

  0%,
  20% {
    left: -45%;
    opacity: 0;
  }

  28% {
    opacity: .55;
  }

  43% {
    left: 125%;
    opacity: .12;
  }

  44%,
  100% {
    left: 125%;
    opacity: 0;
  }
}


/* =================================
   HOVER
   ================================= */

.flow-download-button:hover {
  /* background: #11c077; */

  transform: translateY(-1px);

  box-shadow:
    0 6px 15px rgba(0, 0, 0, .16),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}


/* =================================
   CLICK
   ================================= */

.flow-download-button:active {
  transform: translateY(0);
}

.flow-download-button.is-disabled,
.flow-download-button[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
}

.flow-download-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.system-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 30px;
}

.system-card h3 {
  margin: 0 0 24px;
  font-size: 18px;
}

.system-list {
  display: grid;
  gap: 0;
}

.system-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.system-item:first-child {
  border-top: 0;
}

.system-item b {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.system-item span {
  color: var(--text2);
  font-size: 13px;
  line-height: 1.6;
}

.release-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.release-proof span {
  border: 1px solid var(--line);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.release-proof .ok {
  color: var(--green);
}

.direct-download-banner {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px;
  margin-top: 18px;
}

.direct-download-banner strong {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}

.direct-download-banner span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

@media(max-width:850px) {

  .flow-product-card,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .flow-product-visual {
    min-height: 340px;
  }

  .system-item {
    grid-template-columns: 125px 1fr;
  }
}

@media(max-width:560px) {
  .flow-product-details {
    padding: 30px;
  }

  .flow-product-visual {
    padding: 35px;
    min-height: 280px;
  }

  .system-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .flow-brand-lockup img {
    width: 58px;
    height: 58px;
  }
}


/* =========================================================
   HOMEPAGE — GEVEI FLOW FIRST PRODUCT SPOTLIGHT
   ========================================================= */

.flow-home-spotlight {
  position: relative;
  overflow: hidden;
  margin: 0%;
  padding: 0%;
  width: 100%;
}

.flow-home-spotlight .wrap {
  margin: 0%;
  padding: 0%;
  width: 100%;
}

.flow-home-card {
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 50%, rgba(151, 72, 255, .12), transparent 34%),
    radial-gradient(circle at 94% 16%, rgba(53, 111, 255, .10), transparent 28%),
    #0d0f12;
  overflow: hidden;
}

.flow-home-copy {
  position: relative;
  z-index: 3;
  padding: clamp(38px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-home-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.flow-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(92, 224, 155, .65);
}

.flow-home-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0 24px;
}

.flow-home-icon {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 21px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .42));
}

.flow-home-overline {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.6px;
}

.flow-home-title-row h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .82;
  letter-spacing: -5px;
}

.flow-home-lead {
  max-width: 610px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.flow-home-description {
  max-width: 650px;
  margin: 0;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.8;
}

.flow-home-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 26px;
}

.flow-home-tags span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.flow-home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.flow-home-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  color: var(--text2);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.flow-home-secondary:hover {
  color: var(--text);
  border-color: var(--text2);
}

.flow-home-download-status {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 9px;
}

.flow-home-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.flow-home-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 67, 255, .26) 0%, rgba(72, 73, 255, .12) 38%, transparent 70%);
  filter: blur(7px);
}

.flow-home-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.flow-home-orbit-a {
  width: 460px;
  height: 250px;
}

.flow-home-orbit-b {
  width: 330px;
  height: 180px;
  transform: rotate(31deg);
  border-color: rgba(169, 77, 255, .18);
}

.flow-home-icon-stage {
  position: relative;
  z-index: 2;
  width: min(390px, 72%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(7, 8, 10, .56);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, .55),
    inset 0 0 60px rgba(255, 255, 255, .025);
  backdrop-filter: blur(10px);
}

.flow-home-icon-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 55px rgba(117, 45, 255, .32));
}

.flow-home-version {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 9, 11, .75);
  padding: 12px 14px;
  backdrop-filter: blur(12px);
}

.flow-home-version strong {
  display: block;
  color: var(--text);
  font-size: 13px;
}

.flow-home-version span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.1px;
}

@media(max-width:900px) {
  .flow-home-card {
    grid-template-columns: 1fr;
  }

  .flow-home-visual {
    min-height: 440px;
  }

  .flow-home-copy {
    padding-bottom: 35px;
  }
}

@media(max-width:560px) {
  .flow-home-spotlight {
    padding-bottom: 60px;
  }

  .flow-home-copy {
    padding: 30px 24px;
  }

  .flow-home-title-row {
    gap: 14px;
  }

  .flow-home-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .flow-home-title-row h2 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  .flow-home-lead {
    font-size: 25px;
  }

  .flow-home-visual {
    min-height: 350px;
  }

  .flow-home-icon-stage {
    width: 72%;
    padding: 24px;
  }

  .flow-home-orbit-a {
    width: 360px;
    height: 190px;
  }
}


/* =========================================================
   GEVEI FLOW HOMEPAGE SPOTLIGHT — LIGHT / DARK THEME FIX
   Uses the existing html[data-theme] system.
   No new toggle or JS required.
   ========================================================= */

:root {
  --flow-card-bg:
    radial-gradient(circle at 78% 50%, rgba(151, 72, 255, .12), transparent 34%),
    radial-gradient(circle at 94% 16%, rgba(53, 111, 255, .10), transparent 28%),
    #0d0f12;
  --flow-visual-bg: #0b0d11;
  --flow-stage-bg: rgba(7, 8, 10, .56);
  --flow-stage-border: rgba(255, 255, 255, .13);
  --flow-stage-shadow: 0 35px 100px rgba(0, 0, 0, .55), inset 0 0 60px rgba(255, 255, 255, .025);
  --flow-orbit: rgba(255, 255, 255, .10);
  --flow-orbit-accent: rgba(169, 77, 255, .18);
  --flow-glow:
    radial-gradient(circle,
      rgba(168, 67, 255, .26) 0%,
      rgba(72, 73, 255, .12) 38%,
      transparent 70%);
  --flow-version-bg: rgba(8, 9, 11, .75);
  --flow-version-border: rgba(255, 255, 255, .12);
  --flow-tag-bg: rgba(255, 255, 255, .02);
  --flow-icon-shadow: drop-shadow(0 28px 55px rgba(117, 45, 255, .32));
  --flow-main-icon-shadow: drop-shadow(0 14px 28px rgba(0, 0, 0, .42));
}

html[data-theme="light"] {
  --flow-card-bg:
    radial-gradient(circle at 78% 50%, rgba(125, 73, 220, .10), transparent 34%),
    radial-gradient(circle at 94% 16%, rgba(24, 119, 210, .09), transparent 28%),
    #ffffff;
  --flow-visual-bg: #eef1f6;
  --flow-stage-bg: rgba(255, 255, 255, .72);
  --flow-stage-border: rgba(55, 65, 81, .16);
  --flow-stage-shadow: 0 30px 75px rgba(23, 24, 28, .14), inset 0 0 60px rgba(255, 255, 255, .55);
  --flow-orbit: rgba(55, 65, 81, .16);
  --flow-orbit-accent: rgba(125, 73, 220, .22);
  --flow-glow:
    radial-gradient(circle,
      rgba(135, 82, 220, .18) 0%,
      rgba(24, 119, 210, .09) 38%,
      transparent 70%);
  --flow-version-bg: rgba(255, 255, 255, .78);
  --flow-version-border: rgba(55, 65, 81, .16);
  --flow-tag-bg: rgba(23, 24, 28, .025);
  --flow-icon-shadow: drop-shadow(0 24px 48px rgba(75, 50, 150, .18));
  --flow-main-icon-shadow: drop-shadow(0 14px 28px rgba(23, 24, 28, .16));
}

/* Spotlight surfaces */
.flow-home-card {
  background: var(--flow-card-bg);
  transition:
    background-color var(--theme-transition),
    border-color var(--theme-transition),
    color var(--theme-transition),
    box-shadow var(--theme-transition);
}

.flow-home-visual {
  background: var(--flow-visual-bg);
  transition:
    background-color var(--theme-transition),
    border-color var(--theme-transition);
}

.flow-home-icon {
  filter: var(--flow-main-icon-shadow);
}

.flow-home-tags span {
  background: var(--flow-tag-bg);
  transition:
    background-color var(--theme-transition),
    border-color var(--theme-transition),
    color var(--theme-transition);
}

.flow-home-glow {
  background: var(--flow-glow);
}

.flow-home-orbit {
  border-color: var(--flow-orbit);
  transition: border-color var(--theme-transition);
}

.flow-home-orbit-b {
  border-color: var(--flow-orbit-accent);
}

.flow-home-icon-stage {
  background: var(--flow-stage-bg);
  border-color: var(--flow-stage-border);
  box-shadow: var(--flow-stage-shadow);
  transition:
    background-color var(--theme-transition),
    border-color var(--theme-transition),
    box-shadow var(--theme-transition);
}

.flow-home-icon-stage img {
  filter: var(--flow-icon-shadow);
}

.flow-home-version {
  background: var(--flow-version-bg);
  border-color: var(--flow-version-border);
  transition:
    background-color var(--theme-transition),
    border-color var(--theme-transition),
    color var(--theme-transition);
}

/* Keep text fully controlled by the existing theme tokens. */
.flow-home-copy,
.flow-home-title-row h2,
.flow-home-lead,
.flow-home-description,
.flow-home-version strong,
.flow-home-version span,
.flow-home-secondary,
.flow-home-download-status,
.flow-home-tags span {
  transition: color var(--theme-transition);
}

/* Light mode: make the spotlight separation clear without changing layout. */
html[data-theme="light"] .flow-home-card {
  box-shadow: 0 22px 60px rgba(23, 24, 28, .07);
}

html[data-theme="light"] .flow-home-visual {
  border-left: 1px solid var(--line);
}

html[data-theme="light"] .flow-home-secondary:hover {
  color: var(--text);
  border-color: var(--line2);
}

/* Dark mode keeps the original GEVEI cinematic look. */
html:not([data-theme="light"]) .flow-home-card {
  box-shadow: 0 22px 70px rgba(0, 0, 0, .20);
}

/* Mobile: the visual becomes a separate stacked surface in both themes. */
@media (max-width: 900px) {
  html[data-theme="light"] .flow-home-visual {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
/* =========================================================
   GEVEI FLOW REAL PRODUCT SCREENSHOTS
   ========================================================= */
.flow-landing-hero,
.flow-download-hero {
  position: relative;
}

.flow-landing-hero > p:not(.kicker) {
  max-width: 760px;
}

.flow-hero-actions,
.flow-download-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.flow-hero-actions .flow-download-button,
.flow-download-hero-actions .flow-download-button {
  min-width: 220px;
}

.flow-hero-shot {
  margin-top: 70px;
  position: relative;
  border: 1px solid var(--line);
  background: #0b0d11;
  box-shadow: 0 35px 90px rgba(0,0,0,.30);
  overflow: hidden;
}

.flow-shot-bar {
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #252a32;
  color: #8f99a8;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: #15171c;
}

.flow-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  background: #080a0d;
}

.flow-shot-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(70,145,255,.45);
  background: rgba(8,12,18,.88);
  color: #72adff;
  padding: 9px 11px;
  font-size: 9px;
  letter-spacing: 1.2px;
  font-weight: 800;
}

.flow-two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.flow-showcase-card,
.flow-process-card {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.flow-showcase-media,
.flow-process-media {
  background: #0a0c10;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.flow-showcase-media img,
.flow-process-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s ease;
}

.flow-showcase-card:hover .flow-showcase-media img,
.flow-process-card:hover .flow-process-media img {
  transform: scale(1.015);
}

.flow-showcase-copy {
  padding: 28px 30px 32px;
}

.flow-showcase-copy > span,
.flow-process-card > div:last-child > span,
.flow-publish-points b {
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 1.4px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-showcase-copy h3 {
  margin: 14px 0 8px;
  font-size: 23px;
  letter-spacing: -.5px;
}

.flow-showcase-copy p,
.flow-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.flow-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.flow-process-wide {
  grid-column: 1 / -1;
}

.flow-process-wide .flow-process-media img {
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

.flow-process-card > div:last-child {
  padding: 24px 26px 27px;
}

.flow-process-card h3 {
  margin: 11px 0 7px;
  font-size: 20px;
}

.flow-publish-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: center;
}

.flow-publish-shot {
  border: 1px solid var(--line);
  background: #0a0c10;
  overflow: hidden;
}

.flow-publish-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-publish-copy {
  padding: 12px 0 12px 28px;
}

.flow-publish-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.flow-publish-points div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.flow-publish-points b {
  color: var(--text);
  font-size: 10px;
  letter-spacing: 1px;
}

.flow-publish-points span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.flow-final-cta {
  align-items: center;
}

.flow-final-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flow-final-copy .statement-copy {
  padding-top: 0;
  margin-bottom: 28px;
}

/* Download page */
.flow-download-hero {
  padding-bottom: 78px;
}

.flow-download-hero h1 {
  margin-bottom: 16px;
}

.flow-download-hero > p:not(.kicker) {
  max-width: 680px;
}

.flow-download-hero-actions .flow-download-button {
  min-width: 245px;
}

.flow-download-visual {
  position: relative;
  overflow: hidden;
}

.flow-download-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(47, 130, 255, .10);
  filter: blur(55px);
  pointer-events: none;
}

.flow-download-visual img {
  position: relative;
  z-index: 1;
}

.flow-download-visual > span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  color: #778294;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.flow-download-showcase .section-title {
  margin-bottom: 42px;
}

.flow-download-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.flow-gallery-card {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.flow-gallery-featured {
  grid-column: 1 / -1;
}

.flow-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #090b0f;
}

.flow-gallery-featured img {
  max-height: 640px;
  object-fit: contain;
}

.flow-gallery-card figcaption {
  display: grid;
  gap: 7px;
  padding: 20px 22px 22px;
}

.flow-gallery-card figcaption span {
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 1.3px;
  font-weight: 800;
}

.flow-gallery-card figcaption strong {
  font-size: 17px;
}

.flow-gallery-card figcaption small {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 850px) {
  .flow-two-up,
  .flow-publish-grid,
  .flow-download-gallery {
    grid-template-columns: 1fr;
  }

  .flow-gallery-featured {
    grid-column: auto;
  }

  .flow-publish-copy {
    padding: 12px 0 0;
  }

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

  .flow-process-wide {
    grid-column: auto;
  }

  .flow-hero-shot {
    margin-top: 50px;
  }

  .flow-shot-badge {
    position: static;
    border: 0;
    border-top: 1px solid #252a32;
    background: #11141a;
    padding: 11px 14px;
  }
}

@media (max-width: 560px) {
  .flow-hero-actions,
  .flow-download-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .flow-hero-actions .flow-download-button,
  .flow-download-hero-actions .flow-download-button {
    width: 100%;
  }

  .flow-hero-actions .line-link,
  .flow-download-hero-actions .line-link {
    padding: 6px 0;
  }

  .flow-shot-bar {
    height: auto;
    min-height: 42px;
    gap: 8px;
    padding: 9px 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-hero-shot {
    margin-top: 38px;
  }

  .flow-showcase-copy {
    padding: 24px;
  }

  .flow-publish-points div {
    grid-template-columns: 88px 1fr;
    gap: 10px;
  }

  .flow-gallery-card figcaption {
    padding: 17px 18px 19px;
  }

  .flow-download-visual {
    min-height: 300px;
  }

  .flow-download-visual img {
    width: min(220px, 70%);
  }
}
