:root {
  --drowp-950: #021B1D;
  --drowp-900: #052A2C;
  --drowp-800: #083C3D;
  --drowp-700: #0E4A49;
  --drowp-500: #1E7A72;
  --drowp-300: #58C7B8;
  --drowp-surface: #F4F2EC;
  --drowp-paper: #FAF8F3;
  --drowp-line: #D8DDD8;
  --drowp-ink: #0D2F31;
  --critical: #E76F6F;
  --priority: #F2A84A;
  --solid: #6CCB91;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #021B1D;
  color: #0D2F31;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #58C7B8;
  color: #021B1D;
}

.text-balance { text-wrap: balance; }

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.bg-grid-dark {
  background-image:
    linear-gradient(to right, rgba(88, 199, 184, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(88, 199, 184, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.bg-grid-light {
  background-image:
    linear-gradient(to right, rgba(13, 47, 49, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13, 47, 49, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.network {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='520' viewBox='0 0 900 520' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.75'%3E%3Cpath d='M36 170L146 92L260 135L380 72L512 142L654 80L840 168' stroke='%2358C7B8' stroke-opacity='.33'/%3E%3Cpath d='M98 390L230 310L348 358L492 265L646 332L812 244' stroke='%2358C7B8' stroke-opacity='.20'/%3E%3Cpath d='M146 92L230 310M260 135L348 358M512 142L492 265M654 80L646 332' stroke='%2358C7B8' stroke-opacity='.14'/%3E%3Ccircle cx='36' cy='170' r='4' fill='%2358C7B8' fill-opacity='.45'/%3E%3Ccircle cx='146' cy='92' r='4' fill='%2358C7B8' fill-opacity='.55'/%3E%3Ccircle cx='260' cy='135' r='4' fill='%2358C7B8' fill-opacity='.45'/%3E%3Ccircle cx='380' cy='72' r='4' fill='%2358C7B8' fill-opacity='.55'/%3E%3Ccircle cx='512' cy='142' r='4' fill='%2358C7B8' fill-opacity='.40'/%3E%3Ccircle cx='654' cy='80' r='4' fill='%2358C7B8' fill-opacity='.50'/%3E%3Ccircle cx='840' cy='168' r='4' fill='%2358C7B8' fill-opacity='.40'/%3E%3Ccircle cx='98' cy='390' r='4' fill='%2358C7B8' fill-opacity='.30'/%3E%3Ccircle cx='230' cy='310' r='4' fill='%2358C7B8' fill-opacity='.42'/%3E%3Ccircle cx='348' cy='358' r='4' fill='%2358C7B8' fill-opacity='.30'/%3E%3Ccircle cx='492' cy='265' r='4' fill='%2358C7B8' fill-opacity='.42'/%3E%3Ccircle cx='646' cy='332' r='4' fill='%2358C7B8' fill-opacity='.30'/%3E%3Ccircle cx='812' cy='244' r='4' fill='%2358C7B8' fill-opacity='.42'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 70%;
}

.glass-dark {
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  border: 1px solid rgba(152, 224, 214, .24);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.glass-light {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(13, 47, 49, .10);
  box-shadow: 0 18px 60px rgba(2, 27, 29, .10);
  backdrop-filter: blur(14px);
}

.line-gradient {
  background: linear-gradient(90deg, transparent, rgba(88,199,184,.9), transparent);
}

.shine {
  background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.14), rgba(255,255,255,.0));
  background-size: 200% 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.text-reveal-wrapper {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}

.text-reveal-content {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1), opacity 1.1s ease;
}

.reveal-active .text-reveal-content {
  transform: translateY(0);
  opacity: 1;
}

.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-500 { transition-delay: .5s; }
.delay-700 { transition-delay: .7s; }

.btn-drowp {
  position: relative;
  overflow: hidden;
}
.btn-drowp::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.btn-drowp:hover::after { transform: translateX(120%); }

.flashlight-card {
  position: relative;
  overflow: hidden;
}
.flashlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(88,199,184,.20), transparent 42%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
  z-index: 1;
}
.flashlight-card:hover::before { opacity: 1; }
.flashlight-card > * { position: relative; z-index: 2; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #021B1D; }
::-webkit-scrollbar-thumb { background: #0E4A49; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #58C7B8; }
