:root {
  --dl-bg: #050711;
  --dl-bg-soft: #090c18;
  --dl-panel: rgba(20, 23, 36, 0.72);
  --dl-panel-strong: rgba(14, 17, 28, 0.94);
  --dl-line: rgba(218, 234, 255, 0.13);
  --dl-line-bright: rgba(169, 234, 255, 0.3);
  --dl-text: #f8f9ff;
  --dl-muted: #b9c0d4;
  --dl-muted-2: #8f97ad;
  --dl-cyan: #77e9ff;
  --dl-cyan-2: #b9f5ff;
  --dl-violet: #8d76ff;
  --dl-purple: #c675ff;
  --dl-mint: #69f2d0;
  --dl-pink: #f4a1ff;
  --dl-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  --dl-radius-xl: 38px;
  --dl-radius-lg: 28px;
  --dl-radius-md: 20px;
  --dl-shell: min(1180px, calc(100% - 40px));
  --dl-header-height: 84px;
  --dl-ease: cubic-bezier(.22, .8, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--dl-bg);
}

body {
  margin: 0;
  background: var(--dl-bg);
  color: var(--dl-text);
}

body.dl-dialog-open {
  overflow: hidden;
}

button,
a,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

.dl-site {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  color: var(--dl-text);
  background:
    radial-gradient(circle at 15% 8%, rgba(122, 76, 255, 0.11), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(69, 212, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #070916 0%, #050711 44%, #04060d 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  isolation: isolate;
}

.dl-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 100;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
}

.dl-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.dl-shell {
  width: var(--dl-shell);
  margin-inline: auto;
}

.dl-skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: #08101a;
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  transition: top .2s ease;
}

.dl-skip-link:focus {
  top: 18px;
}

.dl-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--dl-header-height);
  z-index: 80;
  background: linear-gradient(180deg, rgba(5, 7, 17, .84), rgba(5, 7, 17, .18));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.dl-header.is-scrolled {
  background: rgba(7, 9, 20, .78);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.dl-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.dl-brand {
  display: inline-flex;
  width: 178px;
  align-items: center;
  text-decoration: none;
}

.dl-brand img {
  width: 100%;
  height: auto;
}

.dl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.dl-nav a,
.dl-footer a {
  color: var(--dl-muted);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 650;
  transition: color .2s ease;
}

.dl-nav a:hover,
.dl-nav a:focus-visible,
.dl-footer a:hover,
.dl-footer a:focus-visible {
  color: #fff;
}

.dl-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dl-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--dl-line);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
}

.dl-menu-button span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.dl-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dl-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.dl-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s var(--dl-ease), box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.dl-button svg {
  width: 20px;
  height: 20px;
}

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

.dl-button:active {
  transform: translateY(0) scale(.985);
}

.dl-button:focus-visible,
.dl-menu-button:focus-visible,
.dl-demo-poster:focus-visible,
.dl-faq-item button:focus-visible,
.dl-store-badge:focus-visible {
  outline: 3px solid rgba(119, 233, 255, .42);
  outline-offset: 3px;
}

.dl-button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .9rem;
}

.dl-button--large {
  min-height: 58px;
  padding-inline: 27px;
}

.dl-button--primary {
  color: #09101b;
  background: linear-gradient(115deg, #c8fbff 0%, #9deaff 34%, #b5b6ff 68%, #efb8ff 100%);
  box-shadow: 0 14px 34px rgba(110, 218, 255, .18), inset 0 1px 0 rgba(255,255,255,.8);
}

.dl-button--primary:hover {
  box-shadow: 0 18px 45px rgba(108, 211, 255, .28), inset 0 1px 0 rgba(255,255,255,.8);
}

.dl-button--glass {
  color: #f8fbff;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dl-button--glass:hover {
  border-color: rgba(176, 235, 255, .3);
  background: rgba(255, 255, 255, .085);
}

.dl-button__play {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 12, 22, .1);
}

.dl-button__play svg {
  width: 15px;
  height: 15px;
}

.dl-hero {
  position: relative;
  min-height: 940px;
  padding: calc(var(--dl-header-height) + 94px) 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dl-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, 92vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(152, 222, 255, .28), transparent);
}

.dl-aurora {
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  border-radius: 50%;
  opacity: .48;
  will-change: transform;
}

.dl-aurora--one {
  width: 540px;
  height: 540px;
  left: -220px;
  top: 120px;
  background: rgba(125, 79, 255, .28);
}

.dl-aurora--two {
  width: 620px;
  height: 620px;
  right: -260px;
  top: 110px;
  background: rgba(55, 210, 255, .24);
}

.dl-aurora--three {
  width: 480px;
  height: 480px;
  left: 48%;
  bottom: -260px;
  background: rgba(57, 248, 200, .12);
}

.dl-stars {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    radial-gradient(circle at 12% 19%, rgba(255,255,255,.8) 0 1px, transparent 1.6px),
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.72) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 66%, rgba(172,239,255,.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 33% 73%, rgba(217,190,255,.72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 90% 78%, rgba(255,255,255,.46) 0 1px, transparent 1.8px);
}

.dl-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 66px;
}

.dl-hero__copy {
  max-width: 690px;
}

.dl-eyebrow,
.dl-kicker {
  margin: 0 0 18px;
  color: var(--dl-cyan-2);
  font-size: .78rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(156, 228, 255, .16);
  background: rgba(125, 208, 255, .055);
}

.dl-eyebrow__spark {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 16px var(--dl-cyan);
}

.dl-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 7.7rem);
  line-height: .91;
  letter-spacing: -.07em;
  font-weight: 900;
  text-wrap: balance;
}

.dl-hero__tagline {
  margin: 25px 0 0;
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 800;
}

.dl-hero__tagline span {
  color: transparent;
  background: linear-gradient(90deg, var(--dl-cyan), #c4b6ff 50%, var(--dl-pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.dl-hero__lead {
  max-width: 630px;
  margin: 24px 0 0;
  color: var(--dl-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.dl-hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.dl-hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
  color: var(--dl-muted-2);
  font-size: .9rem;
}

.dl-hero__proof strong {
  color: #fff;
}

.dl-proof-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(195, 236, 255, .4);
}

.dl-hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.dl-orbit {
  position: absolute;
  border: 1px solid rgba(146, 219, 255, .13);
  border-radius: 50%;
  pointer-events: none;
}

.dl-orbit--one {
  width: 565px;
  height: 565px;
  transform: rotate(-17deg) scaleY(.56);
}

.dl-orbit--two {
  width: 690px;
  height: 690px;
  border-color: rgba(187, 135, 255, .09);
  transform: rotate(32deg) scaleY(.52);
}

.dl-phone {
  position: relative;
  z-index: 4;
  width: 330px;
  height: 675px;
  transform: rotateY(-7deg) rotateX(2deg) rotateZ(1.5deg);
  transition: transform .35s var(--dl-ease);
}

.dl-phone__rim {
  position: absolute;
  inset: 0;
  padding: 10px;
  border-radius: 55px;
  background: linear-gradient(145deg, rgba(255,255,255,.48), rgba(255,255,255,.08) 35%, rgba(117,216,255,.34) 72%, rgba(182,122,255,.38));
  box-shadow: 0 45px 100px rgba(0,0,0,.52), 0 0 80px rgba(69, 210, 255, .12);
}

.dl-phone__rim::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 96px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050710;
  z-index: 5;
}

.dl-phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 46px;
  background: #070a14;
}

.dl-phone__status {
  position: absolute;
  inset: 0 0 auto;
  height: 55px;
  padding: 19px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  color: rgba(255,255,255,.75);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.dl-phone__world {
  position: absolute;
  inset: 0 0 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(90, 223, 255, .48), transparent 25%),
    radial-gradient(circle at 24% 44%, rgba(127, 83, 255, .52), transparent 34%),
    linear-gradient(180deg, #101633 0%, #111c42 52%, #073856 100%);
}

.dl-phone__world::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 12, .1), transparent 55%, rgba(2, 15, 28, .3));
}

.dl-phone__moon {
  position: absolute;
  width: 84px;
  height: 84px;
  top: 96px;
  right: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 8%, #d8efff 28%, #9bb9ff 68%, rgba(151, 128, 255, .55) 100%);
  box-shadow: 0 0 45px rgba(171, 221, 255, .42);
}

.dl-phone__cloud {
  position: absolute;
  height: 34px;
  border-radius: 999px;
  background: rgba(227, 243, 255, .15);
  filter: blur(.2px);
}

.dl-phone__cloud::before,
.dl-phone__cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.dl-phone__cloud::before {
  width: 44px;
  height: 44px;
  left: 18px;
}

.dl-phone__cloud::after {
  width: 54px;
  height: 54px;
  right: 20px;
}

.dl-phone__cloud--one {
  width: 130px;
  top: 190px;
  left: -24px;
}

.dl-phone__cloud--two {
  width: 110px;
  top: 245px;
  right: -26px;
  opacity: .65;
}

.dl-phone__creature {
  position: absolute;
  width: 150px;
  height: 180px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: dlFloat 5.6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(128, 220, 255, .24));
}

.dl-phone__creature .wing,
.dl-phone__creature .body {
  position: absolute;
  display: block;
}

.dl-phone__creature .wing {
  border-radius: 58% 42% 62% 38% / 50% 44% 56% 50%;
  box-shadow: inset 0 0 20px rgba(255,255,255,.14);
}

.dl-phone__creature .wing--a {
  width: 76px;
  height: 100px;
  left: 3px;
  top: 12px;
  transform: rotate(-22deg);
  background: linear-gradient(145deg, rgba(190, 166, 255, .94), rgba(108, 80, 255, .8));
}

.dl-phone__creature .wing--b {
  width: 76px;
  height: 100px;
  right: 3px;
  top: 12px;
  transform: rotate(22deg) scaleX(-1);
  background: linear-gradient(145deg, rgba(115, 229, 255, .95), rgba(64, 160, 255, .82));
}

.dl-phone__creature .wing--c {
  width: 58px;
  height: 72px;
  left: 24px;
  bottom: 7px;
  transform: rotate(14deg);
  background: linear-gradient(145deg, rgba(236, 136, 255, .9), rgba(178, 76, 255, .75));
}

.dl-phone__creature .wing--d {
  width: 58px;
  height: 72px;
  right: 24px;
  bottom: 7px;
  transform: rotate(-14deg) scaleX(-1);
  background: linear-gradient(145deg, rgba(109, 255, 222, .93), rgba(53, 193, 201, .76));
}

.dl-phone__creature .body {
  width: 14px;
  height: 126px;
  left: calc(50% - 7px);
  top: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #d8e5ff);
  box-shadow: 0 0 18px rgba(255,255,255,.4);
}

.dl-phone__wave {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 130px;
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
}

.dl-phone__wave--back {
  bottom: -42px;
  background: rgba(56, 201, 255, .23);
}

.dl-phone__wave--front {
  bottom: -75px;
  background: linear-gradient(180deg, rgba(48, 180, 226, .28), rgba(5, 64, 89, .92));
  transform: rotate(3deg);
}

.dl-phone__caption {
  position: absolute;
  inset: auto 0 0;
  height: 132px;
  padding: 25px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(11, 14, 24, .82), rgba(9, 11, 20, .98));
  border-top: 1px solid rgba(255,255,255,.08);
}

.dl-phone__caption div {
  display: grid;
  gap: 4px;
}

.dl-phone__label {
  color: var(--dl-muted-2);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.dl-phone__caption strong {
  font-size: 1.2rem;
}

.dl-phone__caption button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0a111c;
  background: linear-gradient(145deg, #c4f9ff, #d9c4ff);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(107, 211, 255, .22);
}

.dl-phone__caption button svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.dl-float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  min-width: 210px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(15, 18, 30, .74);
  box-shadow: 0 18px 45px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dl-float-card--capture {
  left: 2px;
  top: 150px;
}

.dl-float-card--world {
  right: -8px;
  bottom: 175px;
}

.dl-float-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--dl-cyan-2);
  background: rgba(115, 222, 255, .1);
}

.dl-float-card__icon svg {
  width: 21px;
  height: 21px;
}

.dl-float-card span:last-child {
  display: grid;
  gap: 1px;
}

.dl-float-card small {
  color: var(--dl-muted-2);
  font-size: .7rem;
}

.dl-float-card strong {
  font-size: .84rem;
}

.dl-magic-chip {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: rgba(236, 243, 255, .82);
  background: rgba(16, 20, 34, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.dl-magic-chip--one {
  top: 66px;
  right: 55px;
}

.dl-magic-chip--two {
  bottom: 70px;
  left: 55px;
}

.dl-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--dl-muted-2);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
}

.dl-scroll-cue span {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  position: relative;
}

.dl-scroll-cue span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 50%;
  top: 8px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #fff;
  animation: dlScroll 2s ease-in-out infinite;
}

.dl-section {
  position: relative;
  padding: 120px 0;
}

.dl-section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.dl-section-heading h2,
.dl-demo-copy h2,
.dl-faq-heading h2,
.dl-download-card h2,
.dl-demo-dialog h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.1vw, 5rem);
  line-height: 1.01;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.dl-section-heading > p:last-child,
.dl-demo-copy > p,
.dl-faq-heading > p,
.dl-download-card > p {
  margin: 22px auto 0;
  color: var(--dl-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.dl-section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .65fr);
  align-items: end;
  gap: 50px;
  text-align: left;
}

.dl-section-heading--split > p {
  margin: 0 0 5px;
}

.dl-section--how {
  background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0));
}

.dl-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dl-line);
}

.dl-step {
  position: relative;
  padding: 32px 30px 20px 0;
  border-right: 1px solid var(--dl-line);
}

.dl-step:not(:first-child) {
  padding-left: 30px;
}

.dl-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.dl-step__number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(255,255,255,.13);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
}

.dl-step__icon,
.dl-feature__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--dl-cyan-2);
  border: 1px solid rgba(150, 229, 255, .14);
  background: linear-gradient(145deg, rgba(103, 218, 255, .12), rgba(145, 93, 255, .08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.dl-step__icon svg,
.dl-feature__icon svg {
  width: 25px;
  height: 25px;
}

.dl-step h3 {
  margin: 27px 0 9px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.dl-step p {
  margin: 0;
  color: var(--dl-muted);
  font-size: .95rem;
  line-height: 1.65;
}

.dl-section--demo {
  overflow: hidden;
}

.dl-section--demo::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(71, 207, 255, .1);
  filter: blur(90px);
}

.dl-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 110px;
}

.dl-demo-copy {
  max-width: 640px;
}

.dl-demo-copy h2 {
  font-size: clamp(2.75rem, 5vw, 5.2rem);
}

.dl-check-list {
  list-style: none;
  margin: 30px 0 34px;
  padding: 0;
  display: grid;
  gap: 13px;
  color: #dfe7f6;
}

.dl-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dl-check-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #07121a;
  background: var(--dl-mint);
  font-size: .75rem;
  font-weight: 900;
}

.dl-demo-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.dl-demo-stage::before,
.dl-demo-stage::after {
  content: "";
  position: absolute;
  inset: 7% -10%;
  border: 1px solid rgba(158, 229, 255, .12);
  border-radius: 50%;
  transform: rotate(-13deg) scaleY(.47);
}

.dl-demo-stage::after {
  transform: rotate(27deg) scaleY(.42);
  border-color: rgba(192, 129, 255, .1);
}

.dl-demo-poster {
  position: relative;
  z-index: 2;
  width: min(390px, 88vw);
  padding: 0;
  border: 1px solid rgba(207, 237, 255, .25);
  border-radius: 48px;
  overflow: hidden;
  background: #080b16;
  cursor: pointer;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 80px rgba(87, 202, 255, .12);
  transition: transform .35s var(--dl-ease), box-shadow .35s ease;
}

.dl-demo-poster:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 55px 120px rgba(0,0,0,.58), 0 0 100px rgba(87, 202, 255, .18);
}

.dl-demo-poster img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.dl-demo-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 5, 12, .46));
  pointer-events: none;
}

.dl-demo-poster__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #08101b;
  background: rgba(240, 251, 255, .95);
  box-shadow: 0 0 0 12px rgba(255,255,255,.08), 0 20px 45px rgba(0,0,0,.35);
}

.dl-demo-poster__play svg {
  width: 31px;
  height: 31px;
  margin-left: 4px;
}

.dl-demo-poster__label {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  transform: translateX(-50%);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}

.dl-demo-stage__glow {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: rgba(85, 214, 255, .19);
  filter: blur(75px);
}

.dl-section--worlds {
  padding-top: 140px;
}

.dl-world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dl-world-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--dl-radius-xl);
  background: rgba(11, 14, 25, .78);
  box-shadow: 0 26px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .32s var(--dl-ease), border-color .32s ease;
}

.dl-world-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 229, 255, .25);
}

.dl-world-card__art {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.dl-world-card__copy {
  position: relative;
  z-index: 3;
  padding: 31px 30px 34px;
}

.dl-world-card__number {
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.dl-world-card h3 {
  margin: 8px 0 13px;
  font-size: 2rem;
  letter-spacing: -.045em;
}

.dl-world-card p {
  margin: 0;
  min-height: 78px;
  color: var(--dl-muted);
  line-height: 1.65;
}

.dl-world-card__tag {
  display: inline-flex;
  margin-top: 25px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: rgba(234, 242, 255, .84);
  background: rgba(255,255,255,.045);
  font-size: .72rem;
  font-weight: 700;
}

.dl-world-card--ocean .dl-world-card__art {
  background:
    radial-gradient(circle at 70% 22%, rgba(124, 228, 255, .46), transparent 24%),
    radial-gradient(circle at 18% 25%, rgba(123, 86, 255, .35), transparent 35%),
    linear-gradient(180deg, #16224a 0%, #073d60 68%, #052a42 100%);
}

.dl-world-water {
  position: absolute;
  left: -18%;
  width: 136%;
  height: 130px;
  border-radius: 50%;
}

.dl-world-water--one {
  bottom: -50px;
  background: rgba(66, 220, 255, .22);
  transform: rotate(-4deg);
}

.dl-world-water--two {
  bottom: -82px;
  background: rgba(19, 117, 160, .58);
  transform: rotate(4deg);
}

.dl-world-fish {
  position: absolute;
  width: 92px;
  height: 44px;
  border-radius: 55% 45% 48% 52%;
  background: linear-gradient(145deg, rgba(188, 159, 255, .92), rgba(71, 202, 255, .85));
  box-shadow: 0 0 26px rgba(87, 214, 255, .2);
}

.dl-world-fish::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 5px;
  width: 36px;
  height: 36px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background: rgba(104, 167, 255, .86);
}

.dl-world-fish::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.dl-world-fish--one {
  left: 67px;
  top: 120px;
  transform: rotate(-8deg);
}

.dl-world-fish--two {
  width: 63px;
  height: 31px;
  right: 52px;
  top: 212px;
  transform: scaleX(-1) rotate(-4deg);
  opacity: .65;
}

.dl-world-bubble {
  position: absolute;
  border: 1px solid rgba(219, 248, 255, .42);
  border-radius: 50%;
}

.dl-world-bubble--one { width: 18px; height: 18px; left: 28%; top: 55px; }
.dl-world-bubble--two { width: 9px; height: 9px; right: 19%; top: 95px; }
.dl-world-bubble--three { width: 13px; height: 13px; left: 53%; top: 205px; }

.dl-world-card--jungle .dl-world-card__art {
  background:
    radial-gradient(circle at 50% 20%, rgba(151, 255, 185, .26), transparent 33%),
    linear-gradient(145deg, #102c2e 0%, #133429 50%, #0d1c23 100%);
}

.dl-leaf {
  position: absolute;
  width: 150px;
  height: 250px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(145deg, rgba(72, 225, 159, .72), rgba(28, 107, 91, .45));
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.25));
}

.dl-leaf::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5%;
  width: 1px;
  height: 90%;
  background: rgba(224, 255, 239, .35);
  transform: rotate(-34deg);
}

.dl-leaf--one { left: -62px; bottom: -80px; transform: rotate(-22deg); }
.dl-leaf--two { right: -54px; bottom: -66px; transform: rotate(118deg) scale(.92); }
.dl-leaf--three { left: 42%; top: -130px; transform: rotate(42deg) scale(.72); opacity: .5; }

.dl-jungle-butterfly {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 118px;
  height: 100px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 25px rgba(152, 218, 255, .24));
}

.dl-jungle-butterfly::before,
.dl-jungle-butterfly::after,
.dl-jungle-butterfly i,
.dl-jungle-butterfly b {
  content: "";
  position: absolute;
  display: block;
  border-radius: 58% 42% 58% 42%;
}

.dl-jungle-butterfly::before { width: 56px; height: 74px; left: 3px; top: 4px; transform: rotate(-22deg); background: linear-gradient(135deg,#c2b3ff,#7668ff); }
.dl-jungle-butterfly::after { width: 56px; height: 74px; right: 3px; top: 4px; transform: rotate(22deg) scaleX(-1); background: linear-gradient(135deg,#a5efff,#50c8f4); }
.dl-jungle-butterfly i { width: 39px; height: 49px; left: 21px; bottom: 1px; transform: rotate(12deg); background: linear-gradient(135deg,#efabff,#be6dff); }
.dl-jungle-butterfly b { width: 39px; height: 49px; right: 21px; bottom: 1px; transform: rotate(-12deg) scaleX(-1); background: linear-gradient(135deg,#7df1d2,#43c7b3); }

.dl-jungle-firefly {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7fff3;
  box-shadow: 0 0 18px 7px rgba(111, 255, 213, .3);
}

.dl-jungle-firefly--one { left: 26%; top: 25%; }
.dl-jungle-firefly--two { right: 20%; bottom: 25%; }

.dl-world-card--galaxy .dl-world-card__art {
  background:
    radial-gradient(circle at 23% 22%, rgba(102, 85, 255, .5), transparent 28%),
    radial-gradient(circle at 76% 42%, rgba(240, 114, 255, .28), transparent 24%),
    linear-gradient(145deg, #15102f, #101b40 60%, #111126);
}

.dl-planet {
  position: absolute;
  width: 145px;
  height: 145px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffdafc 0 6%, #d886ff 25%, #7466ff 66%, #3544a5 100%);
  box-shadow: 0 0 55px rgba(173, 92, 255, .3);
}

.dl-ring {
  position: absolute;
  width: 240px;
  height: 76px;
  left: 50%;
  top: 52%;
  border: 11px solid rgba(152, 232, 255, .72);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  box-shadow: 0 0 24px rgba(78, 214, 255, .2);
}

.dl-ring::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 5px solid rgba(239, 145, 255, .35);
  border-radius: 50%;
}

.dl-star {
  position: absolute;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,.55);
}

.dl-star--one { left: 17%; top: 20%; font-size: 24px; }
.dl-star--two { right: 15%; top: 28%; font-size: 18px; color: #ffc0fb; }
.dl-star--three { left: 25%; bottom: 20%; font-size: 25px; color: #7ae8ff; }

.dl-comet {
  position: absolute;
  width: 70px;
  height: 4px;
  right: 38px;
  bottom: 70px;
  border-radius: 999px;
  transform: rotate(-31deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85));
}

.dl-comet::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,.65);
}

.dl-section--features {
  padding-top: 150px;
}

.dl-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.dl-feature {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dl-radius-lg);
  background: linear-gradient(145deg, rgba(24, 27, 43, .8), rgba(11, 14, 24, .9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 24px 60px rgba(0,0,0,.22);
}

.dl-feature::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(92, 205, 255, .08);
  filter: blur(45px);
}

.dl-feature--large {
  grid-column: span 7;
  min-height: 430px;
}

.dl-feature--screen,
.dl-feature--helpers {
  grid-column: span 5;
}

.dl-feature--wide {
  grid-column: span 8;
  min-height: 360px;
}

.dl-feature--safe {
  grid-column: span 4;
  min-height: 360px;
}

.dl-feature__icon {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}

.dl-feature__eyebrow {
  margin: 0 0 10px;
  color: var(--dl-cyan-2);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.dl-feature h3 {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.07;
  letter-spacing: -.045em;
}

.dl-feature p:not(.dl-feature__eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 15px 0 0;
  color: var(--dl-muted);
  line-height: 1.7;
}

.dl-feature--library {
  background:
    radial-gradient(circle at 85% 16%, rgba(91, 213, 255, .15), transparent 32%),
    radial-gradient(circle at 72% 95%, rgba(166, 92, 255, .15), transparent 33%),
    linear-gradient(145deg, rgba(25, 30, 50, .92), rgba(10, 13, 24, .96));
}

.dl-library-preview {
  position: absolute;
  right: 28px;
  bottom: 30px;
  width: 315px;
  height: 205px;
}

.dl-creature-tile {
  position: absolute;
  width: 138px;
  height: 172px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 25px;
  background: rgba(5, 8, 16, .74);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dl-creature-tile i {
  width: 75px;
  height: 95px;
  border-radius: 50% 50% 46% 54%;
  background: linear-gradient(145deg, #9cdfff, #8b72ff 55%, #d978ff);
  box-shadow: 0 0 28px rgba(98, 203, 255, .22);
  transform: rotate(8deg);
}

.dl-creature-tile--one { left: 0; bottom: 0; transform: rotate(-8deg); }
.dl-creature-tile--two { left: 90px; top: 0; z-index: 2; }
.dl-creature-tile--two i { border-radius: 45% 55% 56% 44%; background: linear-gradient(145deg,#74f1d1,#55bfff 60%,#8d73ff); }
.dl-creature-tile--three { right: 0; bottom: 4px; transform: rotate(8deg); }
.dl-creature-tile--three i { border-radius: 58% 42% 50% 50%; background: linear-gradient(145deg,#f3acff,#a472ff 55%,#67d6ff); }

.dl-profile-stack {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
}

.dl-profile {
  width: 108px;
  height: 108px;
  margin-left: -16px;
  border: 5px solid #131624;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0b111a;
  background: linear-gradient(145deg, #c7f7ff, #c4b5ff, #f2bcff);
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
  font-size: .78rem;
  font-weight: 900;
}

.dl-profile--two { background: linear-gradient(145deg,#a5f7d9,#79c8ff); transform: translateY(-20px); }
.dl-profile--three { background: linear-gradient(145deg,#ffc0f5,#a78cff); }

.dl-section--quote {
  padding-block: 80px 145px;
}

.dl-quote {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  padding: 64px 70px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--dl-radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 90, 255, .12), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(66, 225, 211, .1), transparent 30%),
    rgba(13, 16, 28, .78);
  box-shadow: var(--dl-shadow);
}

.dl-quote__mark {
  display: block;
  height: 50px;
  color: var(--dl-cyan-2);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: .8;
  opacity: .85;
}

.dl-quote blockquote {
  margin: 18px auto 0;
  max-width: 840px;
  font-size: clamp(2rem, 4.1vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 780;
  text-wrap: balance;
}

.dl-quote p {
  margin: 22px 0 0;
  color: var(--dl-muted);
}

.dl-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

.dl-faq-heading {
  position: sticky;
  top: calc(var(--dl-header-height) + 40px);
}

.dl-faq-heading h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.4rem);
}

.dl-faq-heading a {
  color: var(--dl-cyan-2);
}

.dl-accordion {
  border-top: 1px solid var(--dl-line);
}

.dl-faq-item {
  border-bottom: 1px solid var(--dl-line);
}

.dl-faq-item h3 {
  margin: 0;
}

.dl-faq-item button {
  width: 100%;
  padding: 26px 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 800;
}

.dl-faq-item button i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}

.dl-faq-item button i::before,
.dl-faq-item button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  background: #fff;
  transition: transform .22s ease;
}

.dl-faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.dl-faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.dl-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--dl-ease);
}

.dl-faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--dl-muted);
  line-height: 1.7;
}

.dl-faq-item.is-open .dl-faq-answer {
  grid-template-rows: 1fr;
}

.dl-faq-item.is-open .dl-faq-answer > p {
  padding: 0 54px 27px 0;
}

.dl-section--download {
  padding-top: 150px;
}

.dl-download-card {
  position: relative;
  overflow: hidden;
  padding: 82px 70px;
  text-align: center;
  border: 1px solid rgba(198, 236, 255, .18);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(26, 30, 50, .94), rgba(8, 11, 20, .96));
  box-shadow: 0 40px 100px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
}

.dl-download-card__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.dl-download-card__orb--one {
  width: 430px;
  height: 430px;
  left: -160px;
  top: -210px;
  background: rgba(122, 83, 255, .28);
}

.dl-download-card__orb--two {
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -250px;
  background: rgba(59, 224, 228, .2);
}

.dl-download-card__logo {
  position: relative;
  z-index: 2;
  width: min(360px, 72vw);
  margin: 0 auto 24px;
}

.dl-download-card .dl-kicker {
  position: relative;
  z-index: 2;
}

.dl-download-card h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-inline: auto;
}

.dl-download-card > p {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.dl-store-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.dl-store-badge {
  min-width: 205px;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  color: #fff;
  background: rgba(4, 6, 13, .78);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s var(--dl-ease), border-color .2s ease;
}

.dl-store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 237, 255, .3);
}

.dl-store-badge svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.dl-store-badge span {
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.dl-store-badge small {
  color: var(--dl-muted);
  font-size: .65rem;
}

.dl-store-badge strong {
  margin-top: 4px;
  font-size: 1.08rem;
  letter-spacing: -.025em;
}

.dl-launch-form {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 38px auto 0;
  text-align: left;
}

.dl-launch-form > label {
  display: block;
  margin: 0 0 10px 4px;
  color: #e8effc;
  font-size: .84rem;
  font-weight: 800;
}

.dl-launch-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(5, 8, 16, .64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.dl-launch-form input {
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
}

.dl-launch-form input::placeholder {
  color: #7f879c;
}

.dl-launch-form__row:focus-within {
  border-color: rgba(120, 229, 255, .45);
  box-shadow: 0 0 0 4px rgba(84, 214, 255, .08), inset 0 1px 0 rgba(255,255,255,.04);
}

.dl-launch-form .dl-button {
  min-height: 52px;
}

.dl-form-message {
  min-height: 22px;
  margin: 10px 0 0 4px;
  color: var(--dl-muted-2);
  font-size: .75rem;
}

.dl-form-message.is-success {
  color: var(--dl-mint);
}

.dl-form-message.is-error {
  color: #ffb6c5;
}

.dl-footer {
  padding: 70px 0 34px;
}

.dl-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  padding-top: 38px;
  border-top: 1px solid var(--dl-line);
}

.dl-footer__brand img {
  width: 190px;
}

.dl-footer__brand p {
  margin: 14px 0 0;
  color: var(--dl-muted-2);
}

.dl-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 60px;
}

.dl-footer__links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.dl-footer__links strong {
  margin-bottom: 2px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dl-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--dl-muted-2);
  font-size: .78rem;
}

.dl-demo-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 34px;
  color: #fff;
  background: transparent;
  overflow: visible;
}

.dl-demo-dialog::backdrop {
  background: rgba(2, 3, 8, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dl-demo-dialog__panel {
  position: relative;
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 10%, rgba(83, 218, 255, .12), transparent 30%),
    linear-gradient(145deg, #151827, #090b14);
  box-shadow: 0 45px 140px rgba(0,0,0,.7);
}

.dl-demo-dialog__close {
  position: sticky;
  float: right;
  top: 0;
  z-index: 3;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.dl-demo-dialog__copy {
  padding: 14px 60px 26px 2px;
}

.dl-demo-dialog h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.dl-demo-dialog__video-wrap {
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 26px;
  background: #03040a;
}

.dl-demo-dialog video {
  width: auto;
  max-width: 100%;
  max-height: 68vh;
  border-radius: 20px;
  background: #000;
}

.dl-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #eef7ff;
  background: rgba(12, 15, 27, .92);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--dl-ease);
  font-size: .83rem;
  font-weight: 700;
}

.dl-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-dl-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s var(--dl-ease), transform .72s var(--dl-ease);
  transition-delay: var(--dl-reveal-delay, 0ms);
}

[data-dl-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dlFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(-1deg); }
  50% { transform: translate(-50%, -50%) translateY(-15px) rotate(1deg); }
}

@keyframes dlScroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 13px); }
}

@media (max-width: 1120px) {
  .dl-hero__grid {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 28px;
  }

  .dl-float-card--capture {
    left: -35px;
  }

  .dl-float-card--world {
    right: -20px;
  }

  .dl-demo-grid {
    gap: 60px;
  }

  .dl-library-preview {
    opacity: .72;
    transform: scale(.86);
    transform-origin: bottom right;
  }

  .dl-profile-stack {
    transform: scale(.82);
    transform-origin: bottom right;
  }
}

@media (max-width: 960px) {
  :root {
    --dl-header-height: 76px;
  }

  .dl-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .dl-brand {
    width: 158px;
  }

  .dl-nav {
    position: fixed;
    top: calc(var(--dl-header-height) + 8px);
    left: 20px;
    right: 20px;
    padding: 14px;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(8, 11, 20, .94);
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s var(--dl-ease);
  }

  .dl-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .dl-nav a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .dl-nav a:hover {
    background: rgba(255,255,255,.05);
  }

  .dl-menu-button {
    display: flex;
  }

  .dl-header__actions .dl-button--glass {
    display: none;
  }

  .dl-hero {
    min-height: auto;
    padding-top: calc(var(--dl-header-height) + 75px);
  }

  .dl-hero__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .dl-hero__copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .dl-eyebrow {
    margin-inline: auto;
  }

  .dl-hero__lead {
    margin-inline: auto;
  }

  .dl-hero__buttons,
  .dl-hero__proof {
    justify-content: center;
  }

  .dl-hero-visual {
    min-height: 700px;
  }

  .dl-float-card--capture {
    left: calc(50% - 300px);
  }

  .dl-float-card--world {
    right: calc(50% - 300px);
  }

  .dl-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dl-step:nth-child(2) {
    border-right: 0;
  }

  .dl-step:nth-child(n+3) {
    border-top: 1px solid var(--dl-line);
  }

  .dl-step:nth-child(3) {
    padding-left: 0;
  }

  .dl-demo-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dl-demo-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .dl-check-list {
    max-width: 480px;
    margin-inline: auto;
    text-align: left;
  }

  .dl-world-grid {
    grid-template-columns: 1fr;
  }

  .dl-world-card {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  }

  .dl-world-card__art {
    height: 100%;
    min-height: 430px;
  }

  .dl-world-card__copy {
    align-self: center;
    padding: 40px;
  }

  .dl-world-card p {
    min-height: 0;
  }

  .dl-feature--large,
  .dl-feature--screen,
  .dl-feature--helpers,
  .dl-feature--wide,
  .dl-feature--safe {
    grid-column: span 12;
  }

  .dl-feature--screen,
  .dl-feature--helpers,
  .dl-feature--safe {
    min-height: 280px;
  }

  .dl-faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .dl-faq-heading {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  :root {
    --dl-shell: min(100% - 28px, 1180px);
    --dl-radius-xl: 28px;
    --dl-radius-lg: 24px;
  }

  .dl-header__actions > .dl-button {
    display: none;
  }

  .dl-brand {
    width: 142px;
  }

  .dl-hero {
    padding-top: calc(var(--dl-header-height) + 54px);
    padding-bottom: 90px;
  }

  .dl-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .dl-hero__tagline {
    font-size: 1.25rem;
  }

  .dl-hero__lead {
    font-size: 1rem;
  }

  .dl-hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dl-hero__buttons .dl-button {
    width: 100%;
  }

  .dl-hero__proof {
    gap: 9px;
    font-size: .77rem;
  }

  .dl-hero-visual {
    min-height: 600px;
    transform: scale(.91);
    margin: -25px -10px -20px;
  }

  .dl-phone {
    width: 290px;
    height: 593px;
  }

  .dl-float-card {
    min-width: 0;
    width: 190px;
  }

  .dl-float-card--capture {
    left: calc(50% - 220px);
    top: 160px;
  }

  .dl-float-card--world {
    right: calc(50% - 218px);
    bottom: 150px;
  }

  .dl-magic-chip {
    display: none;
  }

  .dl-scroll-cue {
    display: none;
  }

  .dl-section {
    padding: 86px 0;
  }

  .dl-section-heading {
    margin-bottom: 38px;
  }

  .dl-section-heading h2,
  .dl-demo-copy h2,
  .dl-faq-heading h2,
  .dl-download-card h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .dl-section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dl-steps {
    grid-template-columns: 1fr;
  }

  .dl-step,
  .dl-step:not(:first-child),
  .dl-step:nth-child(3) {
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid var(--dl-line);
  }

  .dl-step:first-child {
    border-top: 0;
  }

  .dl-demo-poster {
    width: min(330px, 86vw);
    border-radius: 38px;
  }

  .dl-world-card {
    display: block;
  }

  .dl-world-card__art {
    height: 300px;
    min-height: 0;
  }

  .dl-world-card__copy {
    padding: 30px 25px 34px;
  }

  .dl-feature {
    min-height: 0;
    padding: 25px;
  }

  .dl-feature--large {
    padding-bottom: 255px;
  }

  .dl-library-preview {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(.82);
    transform-origin: bottom center;
  }

  .dl-feature--profiles {
    padding-bottom: 180px;
  }

  .dl-profile-stack {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(.76);
    transform-origin: bottom center;
  }

  .dl-quote {
    padding: 48px 24px;
  }

  .dl-quote blockquote {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
  }

  .dl-faq-item button {
    font-size: 1rem;
  }

  .dl-download-card {
    padding: 58px 20px;
    border-radius: 30px;
  }

  .dl-store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dl-store-badge {
    width: 100%;
    justify-content: center;
  }

  .dl-launch-form__row {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .dl-launch-form input {
    text-align: center;
  }

  .dl-launch-form .dl-button {
    width: 100%;
  }

  .dl-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .dl-footer__links {
    gap: 30px;
  }

  .dl-footer__bottom {
    display: grid;
    gap: 8px;
  }

  .dl-demo-dialog__panel {
    padding: 18px;
    border-radius: 25px;
  }

  .dl-demo-dialog__copy {
    padding: 10px 44px 20px 2px;
  }

  .dl-demo-dialog h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .dl-eyebrow {
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .dl-hero-visual {
    transform: scale(.82);
    margin: -58px -45px -65px;
  }

  .dl-float-card--capture {
    left: calc(50% - 212px);
  }

  .dl-float-card--world {
    right: calc(50% - 210px);
  }

  .dl-world-card__art {
    height: 275px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  [data-dl-reveal] {
    opacity: 1;
    transform: none;
  }
}
