@import "https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap";
/* [project]/app/public-styles.css [app-client] (css) */
:root {
  --bg: #04070b;
  --line: #ffffff14;
  --line-hi: #ffffff2e;
  --text: #edf2f8;
  --muted: #edf2f88f;
  --dim: #edf2f852;
  --blue: #7fb8f0cc;
  --blue-dim: #7fb8f059;
  --fd: "Encode Sans Condensed",sans-serif;
  --fb: "Encode Sans Condensed",sans-serif;
  --fm: "JetBrains Mono",monospace;
}

.public-page-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.public-page-wrapper {
  font-family: var(--fb);
  color: var(--text);
  background: var(--bg);
}

.public-page-wrapper a {
  color: inherit;
  text-decoration: none;
}

.hero {
  flex-direction: column;
  justify-content: flex-end;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-video {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.hero-video video {
  object-fit: cover;
  filter: brightness(.44) saturate(.75);
  width: 100%;
  height: 100%;
}

.hero-grad {
  z-index: 1;
  background: linear-gradient(to top, #04070bf5 0%, #04070b59 35%, #04070b14 65%, #0000 100%);
  position: absolute;
  inset: 0;
}

.hero-body {
  z-index: 3;
  padding: 0 60px 56px 80px;
  position: relative;
}

.hero-tag {
  font-family: var(--fm);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 9px;
  display: flex;
}

.hero-tag:before {
  content: "";
  background: var(--blue-dim);
  width: 28px;
  height: 1px;
}

.hero h1 {
  font-family: var(--fd);
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  white-space: pre-line;
  margin-bottom: 32px;
  font-size: clamp(42px, 5.8vw, 88px);
  font-weight: 600;
  line-height: .9;
}

.hero-bottom {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  display: flex;
}

.hero-desc-block {
  max-width: 520px;
}

.hero-sub {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  flex-shrink: 0;
  gap: 10px;
  display: flex;
}

.btn {
  color: #fff;
  height: 48px;
  font-family: var(--fd);
  letter-spacing: .16em;
  text-transform: uppercase;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%);
  background: #ffffff0f;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 600;
  transition: background .22s, border-color .22s, transform .18s;
  display: inline-flex;
  box-shadow: inset 0 0 0 1px #ffffff2e;
}

.btn:hover {
  background: #ffffff1f;
  transform: translateY(-1px);
}

.btn.primary {
  color: #04070b;
  background: #fff;
  border-color: #fff;
}

.btn.primary:hover {
  background: #ffffffdb;
}

.btn-wrap {
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%);
  position: relative;
}

.btn-wrap:after {
  content: "";
  background: var(--line-hi);
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%);
  z-index: 0;
  transition: background .22s;
  position: absolute;
  inset: 0;
}

.btn-wrap:hover:after {
  background: #ffffff61;
}

.btn-wrap .btn {
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0% 100%);
  margin: 1px;
  position: relative;
  box-shadow: none !important;
}

.hero-metrics {
  border-top: 1px solid var(--line);
  z-index: 3;
  background: #04070be6;
  justify-content: center;
  gap: 12px;
  padding: 12px 40px;
  display: flex;
  position: relative;
}

@media (min-width: 1400px) {
  .hero-metrics {
    gap: 16px;
    padding: 12px 60px;
  }
}

@media (min-width: 1800px) {
  .hero-metrics {
    gap: 20px;
  }
}

.metric-wrap {
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%);
  flex: 1 1 0;
  min-width: 160px;
  position: relative;
}

.metric-wrap:after {
  content: "";
  background: var(--line-hi);
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0% 100%);
  z-index: 0;
  position: absolute;
  inset: 0;
}

.metric-wrap:hover:after {
  background: #7fb8f066;
}

.metric {
  z-index: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 23px), calc(100% - 23px) 100%, 0% 100%);
  background: #0a0f16bf;
  flex-direction: column;
  justify-content: flex-end;
  margin: 1px;
  padding: 20px 28px 18px;
  transition: background .25s;
  display: flex;
  position: relative;
}

.metric:before {
  content: "";
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  opacity: .6;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.metric:after {
  content: "";
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  opacity: .6;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.metric-bg {
  z-index: 0;
  opacity: .35;
  pointer-events: none;
  filter: saturate(.6) brightness(.55);
  background-position: center;
  background-size: cover;
  transition: filter .55s, transform .6s, opacity .55s;
  position: absolute;
  inset: 0;
}

.metric-wrap:hover .metric-bg {
  filter: saturate() brightness();
  opacity: .55;
  transform: scale(1.05);
}

.metric-id {
  font-family: var(--fm);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7fb8f099;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 8px;
  display: flex;
}

.metric-id:before {
  content: "";
  background: #7fb8f059;
  flex-shrink: 0;
  width: 14px;
  height: 1px;
}

.metric-val {
  font-family: var(--fd);
  color: #fff;
  letter-spacing: -.01em;
  white-space: nowrap;
  margin-bottom: 6px;
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 700;
  line-height: .92;
}

.metric-val sup {
  color: var(--blue);
  vertical-align: super;
  margin-left: 1px;
  font-size: .46em;
}

.metric-lbl {
  font-family: var(--fm);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  align-items: center;
  gap: 6px;
  font-size: 8px;
  display: flex;
}

.metric-lbl:before {
  content: "";
  background: #edf2f880;
  flex-shrink: 0;
  width: 3px;
  height: 3px;
}

.metric-hud {
  pointer-events: none;
  z-index: 1;
  opacity: .55;
  width: 55%;
  transition: opacity .35s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.metric-wrap:hover .metric-hud {
  opacity: .9;
}

.metric-hud canvas {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.metric-val, .metric-lbl, .metric-id {
  z-index: 5;
  position: relative;
}

html, body {
  background: var(--bg);
  margin: 0;
  padding: 0;
}

.topbar {
  z-index: 300;
  background: none;
  border-bottom: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 40px;
  transition: background .4s, border-color .4s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.topbar.solid {
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--line);
  background: #04070be6;
}

.brand {
  font-family: var(--fd);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.nav {
  gap: 36px;
  display: flex;
}

.nav a {
  font-family: var(--fd);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff8c;
  font-size: 12px;
  font-weight: 500;
  transition: color .2s;
}

.nav a:hover {
  color: #fff;
}

.topbar-right {
  align-items: center;
  gap: 24px;
  display: flex;
  position: relative;
}

.search-wrap {
  align-items: center;
  display: flex;
}

.search-input {
  color: #fff;
  width: 180px;
  height: 34px;
  font-family: var(--fd);
  letter-spacing: .08em;
  background: #ffffff12;
  border: 1px solid #fff3;
  outline: none;
  padding: 0 14px;
  font-size: 12px;
}

.search-input::placeholder {
  color: #fff6;
}

.hero-line {
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(#0000, #7fb8f04d 30% 70%, #0000);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
}

.topbar.hidden {
  transform: translateY(-100%);
}

/*# sourceMappingURL=app_public-styles_0w2kb_-.css.map*/