
html, body {
  margin: 0;
  padding: 0;
  background: transparent;
  overflow-x: hidden;
}

#dlw-root, #dlw-root * {
  box-sizing: border-box;
}

#dlw-root {
  --bg-1: #050811;
  --bg-2: #0f1630;
  --bg-3: #1a1030;
  --panel: rgba(255,255,255,.07);
  --stroke: rgba(255,255,255,.12);
  --text: #f7f9ff;
  --muted: rgba(235,240,255,.76);
  --shadow: none;
  --cardGlow: rgba(59,89,152,.30);
  width: 100%;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
}

#dlw-root .dlw-wrap {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(300px, 448px) minmax(336px, 1fr);
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(79,115,255,.22), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255,58,123,.16), transparent 28%),
    radial-gradient(circle at 70% 84%, rgba(82,255,226,.08), transparent 22%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 56%, var(--bg-3) 100%);
  box-shadow: var(--shadow);
}

#dlw-root .dlw-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 34px);
  opacity: .55;
  pointer-events: none;
}

#dlw-root .dlw-wrap::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255,255,255,.10);
  pointer-events: none;
}

#dlw-root .dlw-left-panel {
  position: relative;
  z-index: 2;
}

#dlw-root .dlw-heading {
  margin-bottom: 18px;
}

#dlw-root .dlw-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #dbe4ff;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

#dlw-root h2 {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

#dlw-root .dlw-heading p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42ch;
}

#dlw-root .social-grid {
  display: grid;
  gap: 11px;
}

#dlw-root .social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 13px 15px;
  border-radius: 19px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.11);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 22px rgba(0,0,0,.20);
  cursor: pointer;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

#dlw-root .social-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 10% 50%, var(--cardGlow), transparent 44%);
  opacity: .72;
  pointer-events: none;
}

#dlw-root .social-card::after {
  content: "";
  position: absolute;
  top: -90%;
  left: -20%;
  width: 42%;
  height: 280%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .28s ease, transform .6s ease;
  pointer-events: none;
}

#dlw-root .social-card:hover,
#dlw-root .social-card.active {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(255,255,255,.20);
  box-shadow:
    0 14px 32px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 24px color-mix(in srgb, var(--cardGlow) 45%, transparent);
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}

#dlw-root .social-card:hover::after,
#dlw-root .social-card.active::after {
  opacity: 1;
  transform: translateX(92px) rotate(18deg);
}

#dlw-root .social-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

#dlw-root .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 18px rgba(0,0,0,.18);
  flex: 0 0 auto;
}

#dlw-root .icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

#dlw-root .social-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

#dlw-root .social-meta strong {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -.015em;
}

#dlw-root .social-meta span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

#dlw-root .arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.13);
  font-size: 16px;
  flex: 0 0 auto;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
}

#dlw-root .right-panel {
  position: relative;
  min-height: 632px;
  display: grid;
  place-items: center;
  z-index: 1;
  overflow: hidden;
}

#dlw-root .scene-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.28) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.18) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.12) 0 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px, 240px 240px;
  background-position: 0 0, 40px 50px, 80px 20px;
  opacity: .22;
  mask-image: radial-gradient(circle at 50% 50%, #000 35%, transparent 88%);
  pointer-events: none;
}

#dlw-root .scene-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .9;
  animation: dlwFloat 10s ease-in-out infinite;
}

#dlw-root .scene-orb-a {
  width: 464px;
  height: 464px;
  background: radial-gradient(circle at 50% 50%, rgba(95,132,255,.20), rgba(95,132,255,.08) 36%, transparent 70%);
}

#dlw-root .scene-orb-b {
  width: 272px;
  height: 272px;
  top: 8%;
  right: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(255,69,140,.18), rgba(255,69,140,.06) 46%, transparent 74%);
  animation-duration: 13s;
}

#dlw-root .scene-orb-c {
  width: 208px;
  height: 208px;
  bottom: 12%;
  left: 14%;
  background: radial-gradient(circle at 50% 50%, rgba(70,255,230,.12), rgba(70,255,230,.04) 44%, transparent 74%);
  animation-duration: 15s;
}

#dlw-root .phone-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 632px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

#dlw-root .phone-halo {
  position: absolute;
  width: 368px;
  height: 368px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,89,152,.36) 0%, rgba(59,89,152,.14) 38%, transparent 72%);
  filter: blur(24px);
  transition: background .4s ease, transform .4s ease;
  animation: dlwPulse 5s ease-in-out infinite;
}

#dlw-root .phone-ring,
#dlw-root .phone-ring-two,
#dlw-root .phone-ring-three {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
}

#dlw-root .phone-ring {
  width: 432px;
  height: 432px;
  opacity: .32;
}

#dlw-root .phone-ring-two {
  width: 512px;
  height: 512px;
  opacity: .14;
}

#dlw-root .phone-ring-three {
  width: 592px;
  height: 592px;
  opacity: .06;
}

#dlw-root .phone-pedestal {
  position: absolute;
  bottom: 66px;
  width: 272px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,0,0,.55), rgba(0,0,0,0));
  filter: blur(18px);
}

#dlw-root .phone-frame {
  position: relative;
  width: 275px;
  height: 557px;
  border-radius: 37px;
  background:
    linear-gradient(180deg, #6f747d 0%, #20242a 12%, #080b11 56%, #1a1d23 100%);
  border: 2px solid rgba(255,255,255,.18);
  box-shadow:
    0 30px 68px rgba(0,0,0,.46),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 12px 16px rgba(255,255,255,.05) inset;
  transform: rotateY(-16deg) rotateX(9deg);
  transition: transform .4s ease, box-shadow .4s ease;
  animation: dlwPhoneIdle 6.5s ease-in-out infinite;
  will-change: transform;
}

#dlw-root .phone-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,0));
  pointer-events: none;
}

#dlw-root .phone-frame::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 93px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 15px 15px;
  background: #05070a;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  z-index: 5;
}

#dlw-root .phone-stage:hover .phone-frame {
  transform: rotateY(-9deg) rotateX(4deg) translateY(-6px) scale(1.01);
}

#dlw-root .phone-reflection {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.15), rgba(255,255,255,0) 34%, rgba(255,255,255,.05) 48%, rgba(255,255,255,0) 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 4;
}

#dlw-root .phone-screen {
  position: absolute;
  inset: 11px;
  border-radius: 26px;
  overflow: hidden;
  background: #020202;
}

#dlw-root .phone-screen a,
#dlw-root .phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
}

#dlw-root .phone-screen img {
  object-fit: cover;
  object-position: top center;
  transition: opacity .3s ease, transform .4s ease, filter .4s ease;
  filter: saturate(1.02) contrast(1.02);
}

#dlw-root .screen-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.12), rgba(255,255,255,0) 24%, rgba(255,255,255,.04) 34%, rgba(255,255,255,0) 52%);
  pointer-events: none;
  animation: dlwSweep 7.5s linear infinite;
}

#dlw-root .screen-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 13px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8,10,18,.44), rgba(8,10,18,.84));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(0,0,0,.34);
}

#dlw-root .screen-label strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

#dlw-root .screen-label span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.3;
}

#dlw-root .side-button,
#dlw-root .side-button-right {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4a4f56, #16191f);
  box-shadow: 0 1px 2px rgba(255,255,255,.08) inset;
}

#dlw-root .side-button.action {
  left: -4px;
  top: 120px;
  height: 44px;
}

#dlw-root .side-button.vol-up {
  left: -4px;
  top: 186px;
  height: 70px;
}

#dlw-root .side-button.vol-down {
  left: -4px;
  top: 264px;
  height: 70px;
}

#dlw-root .side-button-right {
  right: -4px;
  top: 200px;
  height: 100px;
}

@keyframes dlwFloat {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-14px,0); }
}

@keyframes dlwPulse {
  0%, 100% { transform: scale(1); opacity: .92; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes dlwPhoneIdle {
  0%, 100% { transform: rotateY(-16deg) rotateX(9deg) translateY(0); }
  50% { transform: rotateY(-13deg) rotateX(7deg) translateY(-6px); }
}

@keyframes dlwSweep {
  0% { transform: translateX(-30%); opacity: .75; }
  50% { opacity: .45; }
  100% { transform: translateX(30%); opacity: .75; }
}

@media (prefers-reduced-motion: reduce) {
  #dlw-root .scene-orb,
  #dlw-root .phone-halo,
  #dlw-root .phone-frame,
  #dlw-root .screen-sheen {
    animation: none;
  }
}

@media (max-width: 1100px) {
  #dlw-root .dlw-wrap {
    grid-template-columns: 1fr;
    width: min(920px, 100%);
    padding: 20px;
    gap: 20px;
  }

  #dlw-root .dlw-heading {
    margin-bottom: 14px;
  }

  #dlw-root .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #dlw-root .social-card {
    min-height: 68px;
  }

  #dlw-root .social-meta span {
    display: none;
  }

  #dlw-root .right-panel {
    min-height: 500px;
  }

  #dlw-root .phone-stage {
    min-height: 500px;
  }

  #dlw-root .phone-frame {
    animation: none;
    transform: rotateY(-10deg) rotateX(5deg) scale(.92);
  }
}

@media (max-width: 767px) {
  html, body {
    overflow: hidden;
  }

  #dlw-root .dlw-wrap {
    width: 100%;
    min-height: min(100dvh, 700px);
    padding: 14px;
    gap: 14px;
    border-radius: 22px;
    grid-template-columns: minmax(0, 1fr) 172px;
    align-items: stretch;
  }

  #dlw-root .dlw-wrap::after {
    border-radius: 21px;
  }

  #dlw-root .dlw-left-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
  }

  #dlw-root .dlw-heading {
    margin-bottom: 10px;
  }

  #dlw-root .dlw-kicker {
    padding: 6px 10px;
    font-size: 10px;
    margin-bottom: 9px;
  }

  #dlw-root h2 {
    font-size: clamp(22px, 7vw, 30px);
    margin-bottom: 8px;
  }

  #dlw-root .dlw-heading p {
    font-size: 12px;
    line-height: 1.35;
    max-width: none;
  }

  #dlw-root .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
  }

  #dlw-root .social-card {
    min-height: 72px;
    padding: 10px 8px;
    border-radius: 16px;
    justify-content: center;
  }

  #dlw-root .social-left {
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  #dlw-root .icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  #dlw-root .icon-wrap svg {
    width: 16px;
    height: 16px;
  }

  #dlw-root .social-meta {
    gap: 2px;
  }

  #dlw-root .social-meta strong {
    font-size: 12px;
  }

  #dlw-root .social-meta span {
    display: none;
  }

  #dlw-root .arrow {
    display: none;
  }

  #dlw-root .right-panel {
    min-height: auto;
    height: 100%;
    border-radius: 18px;
  }

  #dlw-root .scene-orb-a {
    width: 220px;
    height: 220px;
  }

  #dlw-root .scene-orb-b {
    width: 130px;
    height: 130px;
    top: 10%;
    right: 8%;
  }

  #dlw-root .scene-orb-c {
    width: 110px;
    height: 110px;
    bottom: 14%;
    left: 10%;
  }

  #dlw-root .phone-stage {
    min-height: 100%;
    height: 100%;
    width: 100%;
  }

  #dlw-root .phone-halo {
    width: 190px;
    height: 190px;
    filter: blur(18px);
  }

  #dlw-root .phone-ring {
    width: 210px;
    height: 210px;
  }

  #dlw-root .phone-ring-two {
    width: 250px;
    height: 250px;
  }

  #dlw-root .phone-ring-three {
    width: 290px;
    height: 290px;
  }

  #dlw-root .phone-pedestal {
    bottom: 34px;
    width: 120px;
    height: 20px;
    filter: blur(12px);
  }

  #dlw-root .phone-frame {
    width: 146px;
    height: 298px;
    border-radius: 22px;
    transform: none;
    animation: none;
    box-shadow:
      0 18px 42px rgba(0,0,0,.40),
      0 0 0 1px rgba(255,255,255,.06) inset,
      0 8px 12px rgba(255,255,255,.05) inset;
  }

  #dlw-root .phone-frame::before {
    inset: 5px;
    border-radius: 16px;
  }

  #dlw-root .phone-frame::after {
    top: 9px;
    width: 52px;
    height: 12px;
    border-radius: 0 0 10px 10px;
  }

  #dlw-root .phone-screen {
    inset: 6px;
    border-radius: 15px;
  }

  #dlw-root .screen-label {
    left: 7px;
    right: 7px;
    bottom: 7px;
    padding: 7px 8px;
    border-radius: 11px;
    box-shadow: 0 6px 14px rgba(0,0,0,.26);
  }

  #dlw-root .screen-label strong {
    font-size: 10px;
    margin-bottom: 2px;
  }

  #dlw-root .screen-label span {
    font-size: 9px;
    line-height: 1.18;
  }

  #dlw-root .side-button,
  #dlw-root .side-button-right {
    width: 2px;
  }

  #dlw-root .side-button.action {
    top: 64px;
    height: 23px;
    left: -2px;
  }

  #dlw-root .side-button.vol-up {
    top: 100px;
    height: 38px;
    left: -2px;
  }

  #dlw-root .side-button.vol-down {
    top: 143px;
    height: 38px;
    left: -2px;
  }

  #dlw-root .side-button-right {
    top: 108px;
    height: 54px;
    right: -2px;
  }
}

@media (max-width: 430px) {
  #dlw-root .dlw-wrap {
    grid-template-columns: minmax(0, 1fr) 154px;
    min-height: min(100dvh, 650px);
    padding: 12px;
    gap: 12px;
  }

  #dlw-root h2 {
    font-size: 21px;
  }

  #dlw-root .dlw-heading p {
    font-size: 11px;
  }

  #dlw-root .social-grid {
    gap: 8px;
  }

  #dlw-root .social-card {
    min-height: 64px;
    padding: 8px 6px;
  }

  #dlw-root .icon-wrap {
    width: 30px;
    height: 30px;
  }

  #dlw-root .social-meta strong {
    font-size: 11px;
  }

  #dlw-root .phone-frame {
    width: 132px;
    height: 270px;
  }

  #dlw-root .phone-ring {
    width: 188px;
    height: 188px;
  }

  #dlw-root .phone-ring-two {
    width: 222px;
    height: 222px;
  }

  #dlw-root .phone-ring-three {
    width: 260px;
    height: 260px;
  }

  #dlw-root .phone-halo {
    width: 170px;
    height: 170px;
  }
}
