:root {
  --coral: #ff6a00;
  --coral-deep: #e85a00;
  --coral-soft: #ff8c42;
  --teal: #2dd4c8;
  --teal-deep: #14b8a6;
  --teal-bright: #40e0d0;
  --ink: #163032;
  --paper: #fff7f0;
  --paper2: #e8fffb;
  --peach: #ffe8dc;
  --aqua: #d9faf5;
  --dim: #5a6d6e;
  --line: rgba(22, 48, 50, 0.08);
  --card: rgba(255, 255, 255, 0.86);
  --ok: #12b981;
  --warn: #ef4444;
  --shadow: 0 10px 28px rgba(255, 106, 0, 0.1), 0 4px 14px rgba(20, 184, 166, 0.08);
  --max: 440px;
  --pad: 14px;
  --brand: linear-gradient(135deg, #ff6a00 0%, #ff8c42 42%, #2dd4c8 100%);
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(920px 560px at -8% -6%, rgba(64, 224, 208, 0.42), transparent 58%),
    radial-gradient(820px 500px at 108% 4%, rgba(255, 106, 0, 0.34), transparent 54%),
    radial-gradient(680px 420px at 88% 108%, rgba(45, 212, 200, 0.22), transparent 52%),
    radial-gradient(540px 320px at 8% 92%, rgba(255, 140, 66, 0.16), transparent 48%),
    linear-gradient(180deg, #fff8f2 0%, #f4fffc 42%, #fff3ea 100%);
  color: var(--ink);
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 100vw;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 18% auto auto -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 200, 0.2), transparent 68%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sprocket {
  height: 3px;
  width: 52px;
  margin: 8px auto;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.22);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px var(--pad);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(255, 106, 0, 0.28);
}

.nav-logo span {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-logo span b {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.nav-dl {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.28);
}

.hero {
  position: relative;
  min-height: min(42vh, 320px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(22, 48, 50, 0.1) 0%,
      rgba(22, 48, 50, 0.22) 32%,
      rgba(255, 247, 240, 0.86) 72%,
      var(--paper) 100%
    ),
    linear-gradient(125deg, rgba(45, 212, 200, 0.38) 0%, transparent 46%, rgba(255, 106, 0, 0.32) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad) 16px;
  text-align: center;
  animation: heroRise 0.7s ease both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.32),
    0 10px 24px rgba(255, 106, 0, 0.28),
    0 0 28px rgba(45, 212, 200, 0.32);
  animation: logoGlow 4.4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.32),
      0 10px 24px rgba(255, 106, 0, 0.28),
      0 0 28px rgba(45, 212, 200, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.42),
      0 12px 28px rgba(255, 106, 0, 0.34),
      0 0 36px rgba(64, 224, 208, 0.42);
  }
}

.brand {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(26px, 7vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand .tv {
  color: inherit;
}

.hero h1 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}

.hero-sub {
  font-size: 12px;
  color: var(--dim);
  margin: 0 auto 12px;
  max-width: 32ch;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 106, 0, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-dl:active {
  transform: scale(0.96);
}

.btn-dl svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-dl.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.32);
}

.cat-section,
.highlights,
.compare,
.install-section,
.cta-banner,
.app-info,
.faq-section,
.footer {
  position: relative;
  z-index: 1;
}

.cat-section {
  padding: 10px 0 2px;
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 var(--pad);
  margin-bottom: 6px;
  gap: 8px;
}

.cat-header h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cat-header .see-all {
  font-size: 11px;
  color: var(--teal-deep);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cat-lead {
  padding: 0 var(--pad);
  font-size: 12px;
  color: var(--dim);
  margin: 0 0 8px;
}

.cat-scroll {
  overflow: hidden;
  padding: 0 0 6px var(--pad);
  touch-action: pan-y;
  direction: ltr;
  user-select: none;
  -webkit-user-select: none;
}

.scroll-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.scroll-set {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-inline-end: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .cat-scroll[data-marquee] .scroll-track {
    transform: none !important;
  }
  .hero-media img,
  .hero-mark {
    animation: none;
  }
}

.content-card {
  flex-shrink: 0;
  width: 104px;
  cursor: pointer;
  transition: transform 0.2s;
}

.content-card:active {
  transform: scale(0.96);
}

.content-card .thumb {
  width: 104px;
  height: 146px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--paper2);
  box-shadow: var(--shadow);
}

.content-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card .thumb .badge,
.content-card .thumb .badge2 {
  position: absolute;
  top: 6px;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.content-card .thumb .badge {
  left: 6px;
  background: var(--coral);
  color: #fff;
}

.content-card .thumb .badge2 {
  right: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-deep);
}

.content-card .thumb .badge.live {
  background: var(--warn);
}

.content-card .thumb .badge.hd {
  background: var(--teal-deep);
  color: #fff;
}

.content-card .title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: start;
}

.content-card .meta {
  font-size: 10px;
  color: var(--dim);
  margin-top: 2px;
  text-align: start;
}

.wide-card {
  flex-shrink: 0;
  width: 210px;
  cursor: pointer;
}

.wide-card .thumb {
  width: 210px;
  height: 118px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--paper2);
  box-shadow: var(--shadow);
}

.wide-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-card .thumb .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 48, 50, 0.78) 0%, transparent 62%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}

.wide-card .thumb .overlay .tag {
  font-size: 10px;
  font-weight: 800;
  color: #ffc8a8;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wide-card .thumb .overlay .tag .livedot {
  width: 6px;
  height: 6px;
  background: var(--warn);
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.wide-card .thumb .overlay h3 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: start;
}

.wide-card .thumb .overlay p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
  text-align: start;
}

.highlights {
  padding: 14px var(--pad) 4px;
}

.section-title {
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.section-sub {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 10px;
}

.hl-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.hl-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-bottom: none;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(22, 48, 50, 0.05);
  backdrop-filter: blur(10px);
}

.hl-row:last-child {
  border-bottom: none;
}

.hl-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  background: linear-gradient(145deg, rgba(45, 212, 200, 0.22), rgba(255, 106, 0, 0.16));
  color: var(--ink);
}

.hl-row h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hl-row p {
  font-size: 10px;
  color: var(--dim);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compare .section-title,
.install-section .section-title,
.faq-section .section-title {
  margin-bottom: 8px !important;
}

.compare {
  padding: 14px var(--pad);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 11px;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.compare-table th {
  background: linear-gradient(90deg, rgba(255, 232, 220, 0.9), rgba(217, 250, 245, 0.9));
  padding: 8px 8px;
  text-align: start;
  font-weight: 700;
  color: var(--dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table th:nth-child(2),
.compare-table th:nth-child(3) {
  text-align: center;
}

.compare-table th.brand-col {
  color: var(--coral-deep);
}

.compare-table td {
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
  text-align: center;
  font-weight: 600;
}

.check { color: var(--ok); }
.cross { color: var(--warn); }

.install-section {
  padding: 4px var(--pad) 14px;
}

.step-cards {
  display: grid;
  gap: 6px;
  counter-reset: step;
}

.step-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: start;
  padding: 10px 12px;
  border-bottom: none;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(22, 48, 50, 0.05);
}

.step-card:last-child {
  border-bottom: none;
}

.step-card .snum {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(255, 106, 0, 0.22);
}

.step-card .stxt h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1px;
}

.step-card .stxt p {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.4;
}

.cta-banner {
  margin: 8px var(--pad) 14px;
  padding: 16px 14px;
  text-align: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #ff6a00 0%, #ff8c42 38%, #2dd4c8 100%);
  color: #fff;
  box-shadow: 0 22px 44px rgba(255, 106, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -28%;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 10px solid rgba(255, 255, 255, 0.16);
  transform: rotate(18deg);
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: auto -36px -48px auto;
  width: 110px;
  height: 110px;
  border-radius: 26px;
  border: 10px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-banner p {
  font-size: 12px;
  opacity: 0.92;
  margin-bottom: 10px;
}

.cta-banner .btn-dl {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.app-info {
  padding: 0 var(--pad) 12px;
}

.app-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.app-info td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  text-align: start;
}

.app-info tr:last-child td {
  border-bottom: none;
}

.app-info td:first-child {
  color: var(--dim);
  font-weight: 500;
  width: 40%;
}

.app-info td:last-child {
  color: var(--ink);
  font-weight: 700;
}

.faq-section {
  padding: 8px var(--pad) 14px;
}

.faq-item {
  border-bottom: none;
  overflow: hidden;
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 6px;
  padding: 0 12px;
  box-shadow: 0 6px 14px rgba(22, 48, 50, 0.04);
}

.faq-q {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 2px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.faq-q::after {
  content: "+";
  font-size: 16px;
  color: var(--teal-deep);
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 12px;
  color: var(--dim);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  padding: 0 2px;
  line-height: 1.45;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 2px 10px;
}

.footer {
  text-align: center;
  padding: 10px 14px calc(78px + env(safe-area-inset-bottom, 0px));
  font-size: 10px;
  color: var(--dim);
}

.footer a {
  color: var(--teal-deep);
  margin: 0 6px;
}

.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  z-index: 90;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.float-cta button {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.3);
}

.float-cta button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.float-cta .sub {
  text-align: center;
  font-size: 9px;
  color: var(--dim);
  margin-top: 3px;
}

.dl-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}

.dl-sheet.show { display: flex; }

.dl-sheet__mask {
  position: absolute;
  inset: 0;
  background: rgba(22, 48, 50, 0.48);
  backdrop-filter: blur(8px);
}

.dl-sheet__panel {
  position: relative;
  width: 100%;
  max-width: var(--max);
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(45, 212, 200, 0.16), transparent 60%),
    radial-gradient(380px 160px at 0% 0%, rgba(255, 106, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  padding: 8px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -16px 40px rgba(255, 106, 0, 0.14);
  animation: dlSheetUp 0.28s ease;
}

@keyframes dlSheetUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.dl-sheet__handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  margin: 0 auto 10px;
}

.dl-sheet__title {
  font-family: "Fredoka", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 4px;
}

.dl-sheet__desc {
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.5;
}

a.dl-opt { text-decoration: none; color: inherit; }

.dl-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 6px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  transition: transform 0.12s, background 0.12s;
}

.dl-opt:active {
  transform: scale(0.98);
  background: rgba(45, 212, 200, 0.1);
}

.dl-opt__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.dl-opt__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.dl-opt__icon.sys { background: #e8f1ff; }
.dl-opt__icon.chrome,
.dl-opt__icon.firefox { background: #fff; }
.dl-opt__icon.samsung {
  background: transparent;
  border-color: transparent;
}
.dl-opt__icon.samsung img {
  width: 40px;
  height: 40px;
}

.dl-opt__text { flex: 1; min-width: 0; }

.dl-opt__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dl-opt__hint {
  font-size: 11px;
  color: var(--dim);
  margin-top: 1px;
}

.dl-opt__arrow {
  color: rgba(22, 48, 50, 0.28);
  font-size: 18px;
}

.dl-sheet__close {
  width: 100%;
  margin-top: 6px;
  background: none;
  border: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
}

.dl-step { display: none; }
.dl-step.is-active { display: block; }

.dl-help__status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.dl-help__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(45, 212, 200, 0.14);
  border: 1px solid rgba(45, 212, 200, 0.38);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-help__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  animation: dlSpin 1s linear infinite;
}

@keyframes dlSpin {
  to { transform: rotate(360deg); }
}

.dl-help__status h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.dl-help__status p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.45;
  margin: 0;
}

.dl-help__hint {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.26);
  color: var(--coral-deep);
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 14px;
  text-align: left;
}

.dl-help__steps-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--dim);
  margin-bottom: 8px;
  text-align: left;
  letter-spacing: 0.02em;
}

.dl-help__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.dl-help__step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: left;
}

.dl-help__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dl-help__step strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 2px;
}

.dl-help__step p {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.45;
  margin: 0;
}

.dl-help__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dl-help__btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 13px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.dl-help__btn.primary {
  background: var(--brand);
  color: #fff;
}

.dl-help__btn.ghost {
  background: none;
  border: 1px solid var(--line);
  color: var(--dim);
  font-weight: 600;
}

body.dl-open { overflow: hidden; }

::selection {
  background: rgba(45, 212, 200, 0.28);
  color: var(--ink);
}

html[dir="rtl"] .dl-help__status,
html[dir="rtl"] .dl-help__hint,
html[dir="rtl"] .dl-help__steps-title,
html[dir="rtl"] .dl-help__step,
html[dir="rtl"] .dl-opt {
  text-align: right;
}
