:root {
  --bg: #090f1f;
  --bg-alt: #0b1327;
  --text: #ecf4ff;
  --muted: #95a7c6;
  --accent: #60a5fa;
  --accent-strong: #2563eb;
  --accent-alt: #22d3ee;
  --glass-bg: rgba(11, 19, 39, 0.56);
  --glass-border: rgba(167, 190, 224, 0.22);
  --card-shadow: 0 20px 60px rgba(5, 10, 22, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  position: relative;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(85% 70% at 18% 14%, rgba(96, 165, 250, 0.13), transparent 62%),
    radial-gradient(82% 68% at 84% 20%, rgba(34, 211, 238, 0.11), transparent 64%),
    radial-gradient(70% 55% at 50% 78%, rgba(37, 99, 235, 0.08), transparent 72%),
    linear-gradient(155deg, #091126 0%, #091126 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  background: rgba(6, 11, 24, 0.2);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: opacity 220ms ease, backdrop-filter 220ms ease, -webkit-backdrop-filter 220ms ease;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: clamp(170px, 24vh, 260px);
  left: -60px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.95), rgba(59, 130, 246, 0.1));
}

.orb-b {
  width: 320px;
  height: 320px;
  right: -90px;
  top: clamp(170px, 24vh, 260px);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.95), rgba(34, 211, 238, 0.1));
  animation-duration: 19s;
}

.noise {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
}

.site-header,
main {
  position: relative;
  z-index: 4;
}

.bubble-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bubble-back {
  z-index: 1;
  display: none;
}

.bubble-front {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.bubble-front .bubble {
  opacity: 1;
}

.bubble {
  position: absolute;
  width: var(--size, 130px);
  height: auto;
  opacity: var(--opacity, 0.35);
  filter: blur(0.2px);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.bubble-a {
  top: 10%;
  left: 4%;
  --size: clamp(126px, 15vw, 235px);
  --opacity: 0.16;
}

.bubble-b {
  top: 18%;
  left: 70%;
  --size: clamp(132px, 16vw, 250px);
  --opacity: 0.16;
}

.bubble-c {
  top: 48%;
  left: 18%;
  --size: clamp(118px, 14vw, 220px);
  --opacity: 0.14;
}

.bubble-d {
  top: 34%;
  left: 42%;
  --size: clamp(124px, 15vw, 230px);
  --opacity: 0.13;
}

.bubble-f {
  top: 11%;
  left: 13%;
  --size: clamp(62px, 7.2vw, 102px);
  --opacity: 0.96;
}

.bubble-g {
  top: 4%;
  left: 34%;
  --size: clamp(64px, 7.4vw, 106px);
  --opacity: 0.96;
}

.bubble-h {
  top: 4%;
  left: 62%;
  --size: clamp(64px, 7.4vw, 106px);
  --opacity: 0.96;
}

.bubble-i {
  top: 11%;
  left: 82%;
  --size: clamp(62px, 7.2vw, 102px);
  --opacity: 0.96;
}

.bubble-j {
  top: 39%;
  left: 76%;
  --size: clamp(56px, 6.4vw, 90px);
  --opacity: 0.96;
}

.bubble-k {
  top: 44%;
  left: 50%;
  --size: clamp(54px, 6.2vw, 84px);
  --opacity: 0.96;
}

.bubble-l {
  top: 39%;
  left: 24%;
  --size: clamp(56px, 6.4vw, 90px);
  --opacity: 0.96;
}

.site-header {
  position: sticky;
  top: 12px;
  width: min(1100px, 92vw);
  margin: 24px auto 0;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--glass-border);
  background: rgba(9, 15, 31, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: var(--card-shadow);
  z-index: 24;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  height: 28px;
  width: auto;
  transform-origin: left center;
}

nav {
  display: flex;
  gap: 10px;
}

.nav-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(130, 185, 255, 0.35);
  background: rgba(10, 18, 36, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-decoration: none;
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: var(--text);
  border-color: rgba(120, 201, 255, 0.58);
  background: rgba(17, 35, 68, 0.88);
  transform: translateY(-1px);
}

.nav-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(236, 244, 255, 0.95);
  transition: transform 180ms ease, opacity 180ms ease;
}

.app-tooltip {
  position: fixed;
  z-index: 99999;
  background: rgba(6, 10, 18, 0.98);
  color: #f8fafc;
  padding: 7px 11px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease, width 0.16s ease, height 0.16s ease;
  pointer-events: none;
}

.app-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-tooltip::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(6, 10, 18, 0.98);
  transform: translate(-50%, -50%) rotate(45deg);
  left: var(--arrow-left, 50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

.app-tooltip::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: transparent;
  transform: translate(-50%, -50%) rotate(45deg);
  left: var(--arrow-left, 50%);
  z-index: -1;
  pointer-events: none;
}

.app-tooltip[data-pos="bottom"]::after {
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.app-tooltip[data-pos="bottom"]::before {
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  width: min(1100px, 92vw);
  margin: 34px auto 60px;
}

.hero {
  text-align: center;
  padding: 20px 0 32px;
  width: 100%;
  margin: 0;
  background: none;
}

.hero-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1200px, 96vw);
  margin-left: calc(50% - min(48vw, 600px));
  margin-right: calc(50% - min(48vw, 600px));
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.hero-spotlight-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(320px, 48vw, 620px);
  object-fit: cover;
  margin-top: 22px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 0;
  text-align: center;
}

.kicker {
  color: var(--accent-alt);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.06;
  text-wrap: balance;
}

h1 span {
  display: block;
  background: linear-gradient(120deg, var(--accent), var(--accent-alt));
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 4px;
  color: transparent;
}

.subtext {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(223, 235, 255, 0.86);
  line-height: 1.65;
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 32px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero .kicker,
.hero h1,
.hero .subtext,
.hero .hero-actions,
.hero .hero-spotlight-image {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.hero .kicker {
  transform: translate3d(0, 24px, 0) scale(0.98);
}

.hero h1 {
  transform: translate3d(0, 30px, 0) scale(0.98);
  filter: blur(6px);
}

.hero .subtext {
  transform: translate3d(0, 28px, 0);
  filter: blur(4px);
}

.hero .hero-actions {
  transform: translate3d(0, 24px, 0);
}

.hero .hero-spotlight-image {
  transform: translate3d(0, 34px, 0) scale(0.965);
  filter: blur(8px);
}

.hero.show .kicker {
  animation: heroRiseIn 650ms cubic-bezier(0.2, 0.7, 0.2, 1) 80ms forwards;
}

.hero.show h1 {
  animation: heroRiseInSharp 760ms cubic-bezier(0.16, 0.84, 0.22, 1) 180ms forwards;
}

.hero.show .subtext {
  animation: heroRiseInSoft 720ms cubic-bezier(0.2, 0.7, 0.2, 1) 300ms forwards;
}

.hero.show .hero-actions {
  animation: heroRiseIn 680ms cubic-bezier(0.2, 0.7, 0.2, 1) 430ms forwards;
}

.hero.show .hero-spotlight-image {
  animation: heroImageIn 900ms cubic-bezier(0.16, 0.84, 0.22, 1) 300ms forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  min-height: 44px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-actions .btn {
  min-width: 184px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  position: relative;
  overflow: hidden;
  border-color: rgba(189, 219, 255, 0.28);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.34);
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
}

.btn.ghost {
  border-color: rgba(130, 185, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(14, 23, 45, 0.72), rgba(9, 15, 31, 0.92)),
    rgba(10, 17, 34, 0.4);
  box-shadow: inset 0 0 0 1px rgba(166, 200, 255, 0.08);
}

.btn.ghost:hover {
  border-color: rgba(120, 201, 255, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(166, 200, 255, 0.18),
    0 10px 24px rgba(24, 112, 255, 0.16);
}

.glass {
  background-color: #0a0a0b;
  border: 1px solid rgba(0, 0, 0, 0.65);
  box-shadow: inset 0 0 32px 0 rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
}

.stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dbf-feature-grid {
  width: 100%;
  max-width: 1200px;
}

.dbf-feature-grid-title {
  margin: 0 0 2.25rem;
  padding: 0 1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.dbf-feature-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dbf-feature-card {
  background-color: #0a0a0b;
  border: 1px solid rgba(0, 0, 0, 0.65);
  box-shadow: inset 0 0 32px 0 rgba(255, 255, 255, 0.02);
  border-radius: 0.8rem;
  overflow: hidden;
}

.dbf-feature-grid .dbf-feature-card.mobile-fly-in {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  filter: blur(8px);
  transition:
    transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 560ms ease,
    filter 560ms ease;
  will-change: transform, opacity;
}

.dbf-feature-grid .dbf-feature-card.mobile-fly-in[data-fly-in-from="left"] {
  transform: translate3d(-52px, 0, 0);
}

.dbf-feature-grid .dbf-feature-card.mobile-fly-in[data-fly-in-from="right"] {
  transform: translate3d(52px, 0, 0);
}

.dbf-feature-grid .dbf-feature-card.mobile-fly-in[data-fly-in-from="bottom"] {
  transform: translate3d(0, 56px, 0);
}

.dbf-feature-grid .dbf-feature-card.mobile-fly-in.mobile-fly-in-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.dbf-feature-card img {
  width: 100%;
  display: block;
  height: 13rem;
  object-fit: cover;
  object-position: top;
}

.dbf-feature-card__copy {
  padding: 1.25rem 1rem;
  text-align: left;
}

.dbf-feature-card__copy h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.dbf-feature-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.55;
}

.dbf-feature-card--wide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 1rem;
}

.dbf-feature-card--wide .dbf-feature-card__copy,
.dbf-feature-card--wide .dbf-feature-card__media {
  flex: 1;
}

.dbf-feature-card--wide .dbf-feature-card__media {
  padding: 1rem;
}

.dbf-feature-card--wide img {
  height: auto;
  object-fit: contain;
}

.dbf-feature-card--cta {
  position: relative;
  min-height: 200px;
  padding: 0;
  text-align: center;
  background: #09090b;
  border-radius: 0.8rem;
  overflow: hidden;
  isolation: isolate;
}

.dbf-feature-card--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.8rem;
  border: 1.5px dashed transparent;
  background: linear-gradient(90deg, #0086ff, #4cffe1) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.dbf-feature-card--cta-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.crt-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #09090b;
  z-index: 0;
}

.crt-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.8rem;
  filter: drop-shadow(0 0 16px #355cb4cc) blur(0.5px);
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.scanlines {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  z-index: 1;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}

.vignette {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  z-index: 2;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.dbf-feature-card--cta h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  pointer-events: none;
}

.dbf-feature-card--cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30ch;
  pointer-events: none;
}

.dbf-feature-login-btn {
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 40px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(162, 206, 255, 0.35);
  border-radius: 0.6rem;
  padding: 0.55rem 1rem;
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dbf-feature-login-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(148, 226, 255, 0.55);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.24);
}

.stat {
  border-radius: 0.8rem;
  padding: 1.25rem 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.stat h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.55;
}

.feature-strip {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  padding: 1.25rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.65);
  background: #0a0a0b;
  box-shadow: inset 0 0 32px 0 rgba(255, 255, 255, 0.02);
}

.feature h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  font-size: 0.94rem;
}

.social-links {
  margin-top: 54px;
}

.social-links-header {
  text-align: center;
  margin-bottom: 16px;
}

.social-links-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  color: #fff;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 1.25rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(120, 170, 245, 0.24);
  background:
    linear-gradient(145deg, rgba(16, 27, 53, 0.85), rgba(10, 18, 36, 0.92)),
    #0a0a0b;
  box-shadow:
    inset 0 0 20px 0 rgba(255, 255, 255, 0.03),
    0 2px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 201, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(21, 37, 71, 0.9), rgba(11, 21, 43, 0.94)),
    #0a0a0b;
  box-shadow:
    inset 0 0 32px 0 rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(18, 90, 209, 0.28);
}

.social-link-card:active {
  transform: translateY(0);
}

.social-link-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.social-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(136, 186, 255, 0.3);
  background: rgba(14, 30, 60, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.social-link-icon svg {
  width: 20px;
  height: 20px;
  fill: rgba(225, 239, 255, 0.95);
}

.social-link-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.55;
}

.social-link-cta {
  margin-top: 0.95rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 187, 255, 0.42);
  background: rgba(15, 31, 62, 0.76);
  color: rgba(231, 242, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-link-cta::after {
  content: "↗";
  font-size: 0.88rem;
  line-height: 1;
}

.social-link-card:hover .social-link-cta {
  border-color: rgba(120, 201, 255, 0.68);
  background: rgba(18, 43, 88, 0.9);
}

.launch {
  margin-top: 54px;
}

.launch-card {
  border-radius: 0.8rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.launch-card .btn {
  min-width: 184px;
  margin-left: auto;
  margin-right: auto;
}

.launch h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-wrap: balance;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(7px);
  transition: opacity 640ms ease, transform 640ms ease, filter 640ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero.reveal {
  filter: none;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -28px, 0) scale(1.08);
  }
}

@keyframes heroRiseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroRiseInSharp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroRiseInSoft {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.965);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .bubble-front {
    display: block;
  }

  .bubble-front .bubble {
    --size: clamp(48px, 9vw, 72px);
    opacity: 0.55;
  }

  .bubble-f {
    display: none;
  }

  .bubble-g {
    top: -1.5%;
    left: 14%;
  }

  .bubble-h {
    top: -1.5%;
    left: 80%;
  }

  .bubble-i {
    display: none;
  }

  .stats,
  .feature-strip,
  .social-links-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  nav {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: #091126;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    z-index: 42;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 0s linear 220ms;
  }

  .nav-link {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: none;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
    transform: none;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link + .nav-link {
    border-top: 1px solid rgba(167, 190, 224, 0.18);
  }

  .nav-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .bubble {
    --size: clamp(60px, 16vw, 110px);
    opacity: calc(var(--opacity, 0.35) * 0.8);
  }

  .bubble-front .bubble {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .kicker,
  .hero h1,
  .hero .subtext,
  .hero .hero-actions,
  .hero .hero-spotlight-image {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .dbf-feature-grid .dbf-feature-card.mobile-fly-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 10px 0 24px;
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
    line-height: 1.12;
  }

  .hero-spotlight-image {
    margin-top: 14px;
    min-height: 0;
    object-fit: contain;
  }

  .dbf-feature-grid-title,
  .social-links-header {
    text-align: left;
  }

  .site-header {
    width: min(1100px, 94vw);
    padding: 10px 12px;
  }

  .brand img {
    height: 24px;
  }

  main {
    width: min(1100px, 94vw);
    margin-top: 18px;
    margin-bottom: 44px;
  }

  .hero-copy {
    padding: 8px 6px 0;
    align-items: center;
  }

  .subtext {
    margin-top: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .dbf-feature-grid-title {
    padding: 0;
    margin-bottom: 1.25rem;
  }

  .dbf-feature-card img {
    height: 12rem;
  }

  .dbf-feature-card--wide .dbf-feature-card__media {
    padding: 0.75rem;
  }

  .launch-card {
    padding: 1.5rem 1rem;
  }
}

@media (min-width: 640px) {
  .dbf-feature-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .dbf-feature-card img {
    height: 14rem;
  }
}

@media (min-width: 1024px) {
  .dbf-feature-grid {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
  }

  .dbf-feature-grid-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbf-feature-card--tall {
    grid-row: span 2;
  }

  .dbf-feature-card--tall img {
    height: 18rem;
  }

  .dbf-feature-card--wide {
    flex-direction: row;
    align-items: center;
  }

  .dbf-feature-card--wide .dbf-feature-card__copy {
    padding: 2rem;
  }

  .dbf-feature-card--wide .dbf-feature-card__media {
    padding: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .dbf-feature-grid {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
