:root {
  --bg: #080b10;
  --bg2: #0d1017;
  --surface: #111620;
  --surface2: #161d2c;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --lime: #c8f53a;
  --lime2: #a8d424;
  --lime-dim: rgba(200, 245, 58, 0.1);
  --lime-glow: rgba(200, 245, 58, 0.22);
  --text: #f0ede8;
  --text2: rgba(240, 237, 232, 0.55);
  --text3: rgba(240, 237, 232, 0.28);
  --blue: #3b82f6;
  --green: #22c55e;
  --orange: #f97316;
  --red: #ef4444;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Cabinet Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none
}

/* main {
  max-width: 1400px;
  margin: 0 auto;
} */

#cursor {
  width: 11px;
  height: 11px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: transform .15s
}

#cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(200, 245, 58, .35);
  border-radius: 50%;
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  transition: opacity .2s
}

body:has(a:hover, button:hover) #cursor {
  transform: scale(3)
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(200, 245, 58, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 245, 58, .022) 1px, transparent 1px);
  background-size: 56px 56px
}

.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200, 245, 58, .05) 0%, transparent 65%)
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 16, .88);
  backdrop-filter: blur(20px)
}

.logo {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.03em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px
}

.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lime);
  animation: blink 2.5s ease infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px
}

nav ul a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: color .2s
}

nav ul a:hover {
  color: var(--text)
}

.nav-cta {
  background: var(--lime) !important;
  color: var(--bg) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: box-shadow .2s !important
}

.nav-cta:hover {
  box-shadow: 0 0 24px var(--lime-glow) !important
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 150px 48px 80px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden
}

.hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px
}

.hero-eye::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--lime)
}

h1.hero-h {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(4rem, 10.5vw, 10rem);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -.045em;
  overflow: hidden
}

.hero-h .ln {
  display: block;
  overflow: hidden
}

.hero-h .w {
  display: inline-block;
  animation: wup .8s cubic-bezier(.16, 1, .3, 1) both
}

.hero-h .w2 {
  animation-delay: .08s
}

.hero-h .w3 {
  animation-delay: .16s
}

.hero-h .w4 {
  animation-delay: .24s
}

.hero-h .outline {
  -webkit-text-stroke: 1.5px rgba(240, 237, 232, .18);
  color: transparent
}

@keyframes wup {
  from {
    transform: translateY(110%);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

.hero-bot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 48px;
  gap: 32px;
  flex-wrap: wrap
}

.hero-desc {
  max-width: 420px;
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.78;
  font-weight: 300
}

.hero-acts {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn-l {
  background: var(--lime);
  color: var(--bg);
  padding: 13px 30px;
  border-radius: 8px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  letter-spacing: .02em
}

.btn-l:hover {
  box-shadow: 0 0 36px var(--lime-glow);
  transform: translateY(-2px)
}

.btn-g {
  background: transparent;
  color: var(--text2);
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: border-color .2s, color .2s
}

.btn-g:hover {
  border-color: var(--lime);
  color: var(--lime)
}

.hero-card-float {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(2.5deg);
  width: 330px;
  z-index: 2;
  animation: flt 6s ease-in-out infinite
}

@keyframes flt {

  0%,
  100% {
    transform: translateY(-50%) rotate(2.5deg)
  }

  50% {
    transform: translateY(calc(-50% - 14px)) rotate(1.2deg)
  }
}

.ui-c {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 50px rgba(200, 245, 58, .04)
}

.ui-hdr {
  background: var(--surface2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border)
}

.ui-dots {
  display: flex;
  gap: 5px
}

.ui-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%
}

.ui-ttl {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: .05em;
  text-transform: uppercase
}

.ui-bdy {
  padding: 18px
}

.ui-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px
}

.ui-st {
  background: var(--bg2);
  border-radius: 10px;
  padding: 12px 10px;
  border: 1px solid var(--border);
  text-align: center
}

.ui-sn {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.3rem;
  font-weight: 600
}

.ui-sl {
  font-size: .58rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px
}

.ui-sd {
  font-size: .6rem;
  color: var(--lime);
  margin-top: 2px
}

.ui-sec {
  font-size: .62rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 9px
}

.ui-lead {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  background: var(--bg2);
  border-radius: 9px;
  margin-bottom: 6px;
  border: 1px solid var(--border)
}

.ui-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 700;
  color: #fff
}

.ui-ln {
  font-size: .68rem;
  font-weight: 500;
  flex: 1
}

.ui-lc {
  font-size: .55rem;
  color: var(--text3)
}

.ui-b {
  font-size: .52rem;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600
}

.b-n {
  background: rgba(59, 130, 246, .15);
  color: #60a5fa
}

.b-i {
  background: rgba(34, 197, 94, .15);
  color: #4ade80
}

.b-cv {
  background: rgba(200, 245, 58, .12);
  color: var(--lime)
}

.b-cl {
  background: rgba(249, 115, 22, .15);
  color: #fb923c
}

.hero-kpis {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 64px;
  animation: fadeIn 1s .4s both
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.hero-kpi {
  flex: 1;
  padding: 26px 32px;
  border-right: 1px solid var(--border)
}

.hero-kpi:last-child {
  border-right: none
}

.hkn {
  font-family: 'Clash Display', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.03em
}

.hkl {
  font-size: .8rem;
  color: var(--text2);
  margin-top: 4px
}

.scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  color: var(--text3);
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both
}

.scroll-l {
  width: 38px;
  height: 1px;
  background: var(--border2);
  position: relative;
  overflow: hidden
}

.scroll-l::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--lime);
  animation: scan 2s ease infinite
}

@keyframes scan {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

/* SECTIONS */
section {
  padding: 110px 48px;
  position: relative;
  z-index: 1
}

.sn {
  font-family: 'Clash Display', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px
}

.sn::after {
  content: '';
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: var(--lime)
}

.st {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.07;
  margin-bottom: 18px
}

.ss {
  font-size: .97rem;
  color: var(--text2);
  line-height: 1.78;
  max-width: 500px;
  font-weight: 300
}

/* REVEAL */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.r.on {
  opacity: 1;
  transform: none
}

.r.d1 {
  transition-delay: .1s
}

.r.d2 {
  transition-delay: .2s
}

.r.d3 {
  transition-delay: .3s
}

/* FEATURES */
#features {
  background: var(--bg)
}

.fi {
  max-width: 680px;
  margin-bottom: 72px
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px
}

.fc {
  background: var(--surface);
  padding: 38px;
  border: 1px solid var(--border);
  transition: background .25s, border-color .25s;
  position: relative;
  overflow: hidden
}

.fc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 245, 58, .03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s
}

.fc:hover {
  background: var(--surface2);
  border-color: var(--border2)
}

.fc:hover::after {
  opacity: 1
}

.fc:hover .fic {
  transform: scale(1.08)
}

.fc.big {
  grid-column: 1;
  grid-row: 1/3;
  background: var(--surface2);
  border-color: var(--border2)
}

.fic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 26px;
  transition: transform .2s
}

.ft {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.fd {
  font-size: .87rem;
  color: var(--text2);
  line-height: 1.7
}

.ftag {
  display: inline-block;
  margin-top: 18px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 4px 11px;
  border: 1px solid var(--lime-dim);
  border-radius: 4px
}

.fbig {
  font-family: 'Clash Display', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -.05em;
  line-height: 1;
  margin-top: 32px;
  opacity: .85
}

/* ROLES */
#roles {
  background: var(--bg2)
}

.rl {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px
}

.rtabs {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.rtab {
  padding: 18px 20px;
  border-radius: 11px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .22s;
  display: flex;
  align-items: center;
  gap: 14px
}

.rtab:hover {
  background: var(--surface)
}

.rtab.active {
  background: var(--surface2);
  border-color: var(--border2)
}

.rtab.active .rtn {
  color: var(--lime)
}

.rtic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.rtn {
  font-family: 'Clash Display', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s
}

.rts {
  font-size: .75rem;
  color: var(--text3);
  margin-top: 1px
}

.rpanel {
  display: none
}

.rpanel.active {
  display: block
}

.rpc {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 18px;
  overflow: hidden
}

.rph {
  padding: 32px 36px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border)
}

.rpb2 {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 4px 11px;
  border-radius: 4px;
  margin-bottom: 14px
}

.rpt {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px
}

.rpd {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.72
}

.rpbdy {
  padding: 28px 36px
}

.rpst {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px
}

.rpp {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 15px;
  background: var(--bg2);
  border-radius: 9px;
  border: 1px solid var(--border);
  margin-bottom: 9px
}

.rpck {
  width: 19px;
  height: 19px;
  border-radius: 5px;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 245, 58, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 1px
}

.rppt {
  font-size: .83rem;
  color: var(--text2);
  line-height: 1.55
}

/* COMM */
#comm {
  background: var(--bg)
}

.cl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 72px
}

.chs {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.chc {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .22s, background .22s;
  position: relative;
  overflow: hidden
}

.chc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transition: transform .25s;
  transform-origin: bottom
}

.chc:hover {
  border-color: var(--border2);
  background: var(--surface2)
}

.chc:hover::before {
  transform: scaleY(1)
}

.chic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.cht {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px
}

.chd {
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.65
}

.che {
  margin-top: 7px;
  font-size: .74rem;
  color: var(--lime)
}

.md {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 18px;
  overflow: hidden
}

.mdhdr {
  background: var(--surface2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border)
}

.mdav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  color: #fff
}

.mdcn {
  font-size: .86rem;
  font-weight: 600
}

.mdcnr {
  font-size: .7rem;
  color: var(--text3)
}

.mda {
  margin-left: auto;
  display: flex;
  gap: 7px
}

.mdbtn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: opacity .2s
}

.mdbtn:hover {
  opacity: .8
}

.mdbdy {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 220px
}

.bub {
  padding: 11px 15px;
  border-radius: 13px;
  max-width: 78%;
  font-size: .8rem;
  line-height: 1.55;
  color: var(--text)
}

.bi {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start
}

.bo {
  background: var(--blue);
  align-self: flex-end;
  border-bottom-right-radius: 4px
}

.bw {
  background: #128c7e;
  align-self: flex-start;
  border-bottom-left-radius: 4px
}

.bs {
  background: var(--lime-dim);
  color: var(--lime);
  border: 1px solid rgba(200, 245, 58, .18);
  align-self: center;
  text-align: center;
  font-size: .7rem;
  border-radius: 20px;
  padding: 6px 15px
}

.btime {
  font-size: .56rem;
  color: rgba(255, 255, 255, .3);
  margin-top: 3px
}

.tplrow {
  padding: 13px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.tpl {
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity .2s
}

.tpl:hover {
  opacity: .75
}

/* STATUS */
#status-sec {
  background: var(--bg2)
}

.sl2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px
}

.pipe {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.pcon {
  width: 2px;
  background: var(--border);
  height: 28px;
  margin-left: 21px
}

.pnode {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  flex: 1;
  cursor: pointer;
  transition: border-color .2s, background .2s
}

.pnode:hover,
.pnode.active {
  background: var(--surface2);
  border-color: var(--border2)
}

.pdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid currentColor
}

.pnode.active .pdot {
  background: currentColor
}

.pname {
  font-size: .86rem;
  font-weight: 500;
  flex: 1
}

.pcount {
  font-family: 'Clash Display', sans-serif;
  font-size: .88rem;
  font-weight: 600
}

.pfree {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--lime-dim);
  border: 1px dashed rgba(200, 245, 58, .28);
  border-radius: 9px;
  margin-top: 7px
}

.pfree input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: .83rem;
  color: var(--lime);
  flex: 1
}

.pfree input::placeholder {
  color: rgba(200, 245, 58, .38)
}

.sfs {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.sf2 {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  display: flex;
  gap: 16px;
  transition: border-color .2s
}

.sf2:hover {
  border-color: var(--border2)
}

.sfic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem
}

.sft {
  font-family: 'Clash Display', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  margin-bottom: 5px
}

.sfd {
  font-size: .83rem;
  color: var(--text2);
  line-height: 1.65
}

/* DASHBOARD */
#dash-sec {
  background: var(--bg)
}

.dmock {
  margin-top: 60px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0, 0, 0, .5)
}

.dmtop {
  background: var(--surface2);
  padding: 15px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border)
}

.dmtdots {
  display: flex;
  gap: 6px
}

.dmtdots span {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.dmtitle {
  font-size: .76rem;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: .05em;
  margin-left: 6px
}

.dmdate {
  margin-left: auto;
  font-size: .7rem;
  color: var(--text3)
}

.dmbody {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px
}

.dmsb {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 20px 14px
}

.dmni {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .78rem;
  color: var(--text3);
  cursor: pointer;
  margin-bottom: 3px;
  transition: background .2s, color .2s
}

.dmni:hover {
  background: var(--surface);
  color: var(--text2)
}

.dmni.active {
  background: var(--lime-dim);
  color: var(--lime)
}

.dmni span {
  font-size: .88rem
}

.dmmain {
  padding: 24px
}

.dmkpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px
}

.dmkpi {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px
}

.dmkn {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.7rem;
  font-weight: 700
}

.dmkl {
  font-size: .66rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px
}

.dmkc {
  font-size: .63rem;
  margin-top: 5px
}

.dmku {
  color: var(--lime)
}

.dmkd {
  color: var(--red)
}

.dmcharts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px
}

.dmch {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px
}

.dmcht {
  font-size: .63rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text3);
  margin-bottom: 14px
}

.bgrp {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.biti {
  display: flex;
  align-items: center;
  gap: 9px
}

.bitn {
  font-size: .68rem;
  color: var(--text2);
  width: 76px;
  flex-shrink: 0
}

.bitbg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .05);
  border-radius: 3px;
  overflow: hidden
}

.bitp {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(.16, 1, .3, 1)
}

.bitv {
  font-size: .63rem;
  color: var(--text3);
  width: 24px;
  text-align: right
}

.agl {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.agr {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: var(--bg2);
  border-radius: 8px;
  border: 1px solid var(--border)
}

.agav {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .56rem;
  font-weight: 700;
  color: #fff
}

.agname {
  font-size: .7rem;
  flex: 1;
  color: var(--text2)
}

.agn {
  font-size: .63rem;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 2px 8px;
  border-radius: 20px
}

/* CONTACT */
#contact {
  background: var(--bg);
  border-top: 1px solid var(--border)
}

.cw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 56px;
  align-items: start
}

.cleft h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.15
}

.cleft p {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.78;
  margin-bottom: 36px;
  font-weight: 300
}

.cis {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ci2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  transition: border-color .2s
}

.ci2:hover {
  border-color: var(--border2)
}

.ciic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--lime-dim);
  border: 1px solid rgba(200, 245, 58, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem
}

.cilbl {
  font-size: .68rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em
}

.cival {
  font-size: .86rem;
  font-weight: 500;
  margin-top: 2px
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cfr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.cfg {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.cfg label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em
}

.cfg input,
.cfg select,
.cfg textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 12px 15px;
  border-radius: 9px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none
}

.cfg input::placeholder,
.cfg textarea::placeholder {
  color: var(--text3)
}

.cfg input:focus,
.cfg select:focus,
.cfg textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200, 245, 58, .07)
}

.cfg select option {
  background: #111620
}

.cfg textarea {
  resize: vertical;
  min-height: 110px
}

.cfsub {
  background: var(--lime);
  color: var(--bg);
  padding: 14px 34px;
  border-radius: 9px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: box-shadow .2s, transform .15s;
  letter-spacing: .02em
}

.cfsub:hover {
  box-shadow: 0 0 36px var(--lime-glow);
  transform: translateY(-2px)
}

.cfsub:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none
}

.cfmsg {
  padding: 12px 15px;
  border-radius: 9px;
  font-size: .83rem;
  display: none
}

.cfmsg.ok {
  background: rgba(34, 197, 94, .1);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, .18);
  display: block
}

.cfmsg.err {
  background: rgba(239, 68, 68, .1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, .18);
  display: block
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  z-index: 1;
  position: relative
}

.flnks {
  display: flex;
  gap: 26px
}

.flnks a {
  font-size: .8rem;
  color: var(--text3);
  text-decoration: none;
  transition: color .2s
}

.flnks a:hover {
  color: var(--lime)
}

footer p {
  font-size: .76rem;
  color: var(--text3)
}

/* RESPONSIVE */
@media(max-width:1100px) {
  nav {
    padding: 18px 24px
  }

  .hero {
    padding: 136px 24px 60px
  }

  .hero-card-float {
    display: none
  }

  section {
    padding: 80px 24px
  }

  .fg {
    grid-template-columns: 1fr 1fr
  }

  .fc.big {
    grid-column: span 2
  }

  .rl {
    grid-template-columns: 1fr
  }

  .cl {
    grid-template-columns: 1fr
  }

  .sl2 {
    grid-template-columns: 1fr
  }

  .dmbody {
    grid-template-columns: 1fr
  }

  .dmsb {
    display: none
  }

  .dmkpis {
    grid-template-columns: 1fr 1fr
  }

  .dmcharts {
    grid-template-columns: 1fr
  }

  .cw {
    grid-template-columns: 1fr;
    gap: 44px
  }

  nav ul {
    display: none
  }

  footer {
    flex-direction: column;
    align-items: flex-start
  }
}

@media(max-width:600px) {
  h1.hero-h {
    font-size: clamp(3.2rem, 17vw, 5.5rem)
  }

  .fg {
    grid-template-columns: 1fr
  }

  .fc.big {
    grid-column: span 1
  }

  .cfr {
    grid-template-columns: 1fr
  }

  .hero-kpis {
    flex-wrap: wrap
  }

  .hero-kpi {
    flex: 1 1 45%
  }
}