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

:root {
  --ink: #080c14;
  --ink-2: #0d1320;
  --ink-3: #121a2a;
  --paper: #f1efe9;
  --paper-2: #fbfaf7;
  --btn: #3560e0;
  --btn-ink: #ffffff;
  --brand-grad: linear-gradient(96deg, #5b8bff 0%, #2be38b 100%);
  --btn-grad: linear-gradient(96deg, #3560e0 0%, #0d8355 100%);
  --font-display: 'Lato', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-flip: cubic-bezier(0.76, 0, 0.24, 1);
  --check-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.4 5.2l2.4 2.4L8.6 2.6' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.t-dark {
  --bg: var(--ink);
  --bg-2: var(--ink-2);
  --card: var(--ink-2);
  --card-2: var(--ink-3);
  --text: #f1f5fb;
  --text-2: #9aa8bf;
  --muted: #75849c;
  --line: rgba(241, 245, 251, 0.08);
  --line-strong: rgba(241, 245, 251, 0.16);
  --accent: #2be38b;
  --accent-soft: rgba(43, 227, 139, 0.1);
  --accent-line: rgba(43, 227, 139, 0.28);
  --glow: rgba(43, 227, 139, 0.35);
  --action: #5b8bff;
  --action-soft: rgba(91, 139, 255, 0.1);
  --action-line: rgba(91, 139, 255, 0.3);
  --danger: #ff7b7b;
  --danger-soft: rgba(255, 123, 123, 0.1);
  --danger-line: rgba(255, 123, 123, 0.34);
  --silver: #b8c4d9;
  background: var(--bg);
  color: var(--text);
}
.t-light {
  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --card: var(--paper-2);
  --card-2: #ffffff;
  --text: #10161f;
  --text-2: #4d5866;
  --muted: #656f7d;
  --line: rgba(16, 22, 31, 0.12);
  --line-strong: rgba(16, 22, 31, 0.22);
  --accent: #0b7b50;
  --accent-soft: rgba(11, 123, 80, 0.08);
  --accent-line: rgba(11, 123, 80, 0.3);
  --glow: rgba(11, 123, 80, 0.25);
  --action: #2f56c9;
  --action-soft: rgba(47, 86, 201, 0.08);
  --action-line: rgba(47, 86, 201, 0.32);
  --danger: #b3261e;
  --danger-soft: rgba(179, 38, 30, 0.07);
  --danger-line: rgba(179, 38, 30, 0.3);
  --silver: #565f6e;
  background: var(--bg);
  color: var(--text);
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
html:not(.js-anim) {
  scroll-behavior: smooth;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: #f1f5fb;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
::selection {
  background: #19d97f;
  color: #07130c;
}

.shine-text {
  color: var(--silver);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .shine-text {
    background: linear-gradient(
      100deg,
      var(--silver) 0%,
      var(--silver) 42%,
      #ffffff 50%,
      var(--silver) 58%,
      var(--silver) 100%
    );
    background-size: 250% 100%;
    background-position: 130% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shineSweep 6s linear infinite;
  }
}
@keyframes shineSweep {
  0% {
    background-position: 130% 0;
  }
  55%,
  100% {
    background-position: -30% 0;
  }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
