/* ==========================================================================
   Dream Taken · 新官网设计系统
   Design tokens + layout primitives + 移植自首页 Hero 的特效样式
   ========================================================================== */

:root {
  --dl-cream: #f0e0bc;
  --dl-gold: #d4b87a;
  --dl-gold-bright: #e8d4a8;
  --dl-violet: #b8a0e8;
  --dl-void: #030303;
  --dl-panel: rgba(232, 212, 168, 0.03);
  --color-text-primary: rgba(240, 224, 188, 0.96);
  --color-text-secondary: rgba(232, 212, 168, 0.6);
  --color-text-tertiary: rgba(232, 212, 168, 0.38);
  --color-primary: var(--dl-gold-bright);
  --color-primary-deep: var(--dl-gold);
  --color-accent: var(--dl-violet);
  --bg-page: var(--dl-void);
  --header-bar-h: 4.5rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --header-h: calc(var(--header-bar-h) + var(--safe-top));
  --banner-h: 0px;
  --max-w: 76rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dl-void);
  color: var(--color-text-primary);
  font-family: Inter, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.dl-grad {
  background: linear-gradient(90deg, var(--dl-cream), var(--dl-gold-bright), var(--dl-violet));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------------------------------------- */
/* Global ambient background                                              */
/* ---------------------------------------------------------------------- */
.dl-bg {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.dl-bg__flow {
  animation: dl-flow-rotate 60s linear infinite;
  background: conic-gradient(
    transparent 0deg,
    rgba(212, 184, 122, 0.06) 60deg,
    transparent 120deg,
    rgba(184, 160, 232, 0.05) 180deg,
    transparent 240deg,
    rgba(212, 184, 122, 0.04) 300deg,
    transparent 360deg
  );
  inset: -50%;
  position: absolute;
}

@keyframes dl-flow-rotate {
  to { transform: rotate(360deg); }
}

.dl-bg__orb {
  animation: dl-orb-float 25s ease-in-out infinite;
  border-radius: 50%;
  filter: blur(7rem);
  position: absolute;
}

.dl-bg__orb--1 {
  background: radial-gradient(circle, rgba(212, 184, 122, 0.16) 0%, transparent 70%);
  height: 54rem;
  right: -20%;
  top: -30%;
  width: 54rem;
}

.dl-bg__orb--2 {
  animation-delay: -8s;
  background: radial-gradient(circle, rgba(184, 160, 232, 0.12) 0%, transparent 70%);
  bottom: -25%;
  height: 48rem;
  left: -15%;
  width: 48rem;
}

.dl-bg__orb--3 {
  animation-delay: -16s;
  background: radial-gradient(circle, rgba(212, 184, 122, 0.08) 0%, transparent 70%);
  height: 30rem;
  left: 25%;
  top: 40%;
  width: 30rem;
}

@keyframes dl-orb-float {
  0%, 100% { transform: translate(0) scale(1); }
  25% { transform: translate(4.8rem, -3rem) scale(1.15); }
  50% { transform: translate(-3rem, 4.8rem) scale(0.9); }
  75% { transform: translate(-4.8rem, -1.8rem) scale(1.1); }
}

.dl-bg__grid {
  animation: dl-grid-pulse 10s ease-in-out infinite;
  background-image:
    linear-gradient(rgba(212, 184, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 184, 122, 0.04) 1px, transparent 1px);
  background-size: 3.6rem 3.6rem;
  inset: 0;
  position: absolute;
}

@keyframes dl-grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.dl-bg__particles {
  inset: 0;
  position: absolute;
}

@keyframes dl-particle-drift {
  0%, 100% { opacity: 0; transform: translate(0); }
  10%, 90% { opacity: 1; }
  100% { opacity: 0; transform: translate(2.98rem, -7.14rem); }
}

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.dl-header {
  backdrop-filter: blur(0.85rem);
  background: rgba(3, 3, 3, 0.94);
  border-bottom: 1px solid rgba(212, 184, 122, 0.1);
  box-shadow: 0 0.35rem 1.5rem rgba(0, 0, 0, 0.42);
  height: var(--header-h);
  left: 0;
  padding-top: var(--safe-top);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
}

.dl-header__inner {
  align-items: center;
  display: flex;
  height: var(--header-bar-h);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 90rem;
  padding: 0 1.5rem;
}

.dl-header__actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 0.45rem;
}

.dl-brand {
  align-items: center;
  display: inline-flex;
  gap: 0.6rem;
  text-decoration: none;
}

.dl-brand__mark {
  flex-shrink: 0;
  height: 1.9rem;
  width: 1.9rem;
}

.dl-brand__cn {
  color: var(--dl-cream);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.dl-brand__sep {
  color: rgba(240, 224, 188, 0.35);
  margin: 0 0.05rem;
}

.dl-contact__email {
  display: inline-flex;
  margin-top: 1.25rem;
  width: auto;
}

.dl-contact__email-copy {
  color: rgba(232, 212, 168, 0.45);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  margin-top: 0.85rem;
  text-align: center;
}
.dl-nav .dl-lang {
  margin-left: 0.25rem;
  margin-right: 0.15rem;
}

.dl-lang__track {
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 184, 122, 0.22);
  border-radius: 99rem;
  display: inline-flex;
  gap: 0;
  height: 2rem;
  isolation: isolate;
  padding: 0 0.2rem 0 0.45rem;
  position: relative;
}

.dl-lang__indicator {
  background: rgba(212, 184, 122, 0.16);
  border: 1px solid rgba(212, 184, 122, 0.32);
  border-radius: 99rem;
  bottom: 0.14rem;
  box-shadow: 0 0 12px rgba(212, 184, 122, 0.12);
  left: 1.65rem;
  pointer-events: none;
  position: absolute;
  top: 0.14rem;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  width: 2rem;
  z-index: 0;
}

.dl-lang__track[data-active="en"] .dl-lang__indicator {
  transform: translateX(2rem);
}

.dl-lang__icon {
  align-items: center;
  color: rgba(212, 184, 122, 0.55);
  display: inline-flex;
  flex-shrink: 0;
  height: 0.95rem;
  margin-right: 0.35rem;
  width: 0.95rem;
  z-index: 1;
}

.dl-lang__icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

.dl-lang__opt {
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
  border: none;
  border-radius: 99rem;
  color: rgba(232, 212, 168, 0.38);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  min-width: 2rem;
  padding: 0.45rem 0.5rem;
  position: relative;
  transition: color 0.2s ease;
  z-index: 1;
}

.dl-lang__opt:hover {
  color: rgba(240, 224, 188, 0.72);
}

.dl-lang__opt.is-active {
  color: var(--dl-gold-bright);
  text-shadow: 0 0 14px rgba(212, 184, 122, 0.35);
}

.dl-lang--mobile {
  display: none;
}

.dl-lang--header {
  display: none;
}

@media (max-width: 48rem) {
  .dl-nav .dl-lang { display: none; }
  .dl-lang--header { display: flex; }
}

.dl-brand__en {
  color: rgba(240, 224, 188, 0.55);
  font-size: 1.05rem;
  font-weight: 600;
}

.dl-nav {
  align-items: center;
  display: flex;
  gap: 2.1rem;
}

.dl-nav__link {
  align-items: baseline;
  display: inline-flex;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.82;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

.dl-nav__link:hover,
.dl-nav__link.is-active {
  color: var(--color-primary);
  opacity: 1;
}

.dl-nav__hint {
  color: var(--color-text-tertiary);
  font-size: 0.72rem;
  font-weight: 500;
}

.dl-nav__cta {
  align-items: center;
  background: rgba(232, 212, 168, 0.06);
  border: 1px solid rgba(212, 184, 122, 0.22);
  border-radius: 99rem;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  transition: 0.25s;
}

.dl-nav__cta:hover {
  background: rgba(212, 184, 122, 0.14);
  border-color: rgba(212, 184, 122, 0.42);
  color: var(--color-primary);
}

.dl-nav__toggle {
  background: none;
  border: 1px solid rgba(232, 212, 168, 0.18);
  border-radius: 0.6rem;
  color: var(--dl-cream);
  cursor: pointer;
  display: none;
  height: 2.4rem;
  width: 2.4rem;
}

@media (max-width: 56rem) {
  .dl-nav { display: none; }
  .dl-nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
}

.dl-mnav {
  background: rgba(3, 3, 3, 0.98);
  border-top: 1px solid rgba(232, 212, 168, 0.1);
  bottom: 0;
  display: none;
  left: 0;
  overflow-y: auto;
  padding: 0.85rem 1rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  position: fixed;
  right: 0;
  top: calc(var(--header-h) + var(--banner-h, 0px));
  z-index: 195;
  -webkit-overflow-scrolling: touch;
}

.dl-mnav.is-open { display: block; }

.dl-mnav-backdrop {
  background: rgba(0, 0, 0, 0.62);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease;
  z-index: 194;
}

.dl-mnav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dl-mnav__link {
  border-bottom: 1px solid rgba(232, 212, 168, 0.08);
  color: var(--color-text-primary);
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: space-between;
  padding: 0.9rem 0;
  text-decoration: none;
}

/* ---------------------------------------------------------------------- */
/* Hero — 移植自首页特效（保留 orbit / spotlight / typing 机制）              */
/* ---------------------------------------------------------------------- */
.dl-hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--header-h);
  position: relative;
  z-index: 1;
}

.dl-hero::before {
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.72) 45%, transparent 100%);
  content: "";
  height: min(12rem, 28vh);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.dl-hero__inner {
  align-items: center;
  display: flex;
  flex: 1 1 0%;
  justify-content: center;
  margin: 0 auto;
  max-width: 90rem;
  padding: 0 1.5rem;
  position: relative;
  width: 100%;
  z-index: 3;
}

.dl-hero__center {
  max-width: 52rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.dl-orbit {
  --orbit-r: 24rem;
  height: 0;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(50% + 3rem);
  transform: scale(0) rotate(-360deg);
  width: 0;
  z-index: -1;
}

.dl-orbit--go {
  animation: dl-orbit-entrance 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dl-orbit-entrance {
  0% { opacity: 0; transform: scale(0) rotate(-360deg); }
  15% { opacity: 1; }
  100% { opacity: 1; transform: scale(1.08) rotate(0deg); }
}

.dl-orbit__spin {
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  will-change: transform;
}

.dl-orbit--go .dl-orbit__spin {
  animation: dl-orbit-rotate 80s linear infinite;
}

@keyframes dl-orbit-rotate {
  to { transform: rotate(360deg); }
}

.dl-orbit__item {
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(var(--angle)) translateY(calc(var(--orbit-r) * -1));
  width: 0;
}

.dl-orbit__icon-wrap {
  align-items: center;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  pointer-events: auto;
  transform: rotate(calc(var(--angle) * -1)) translateX(-50%);
  transition: opacity 1.5s;
  width: 3.9rem;
}

.dl-orbit--go .dl-orbit__icon-wrap {
  animation: dl-orbit-counter 80s linear infinite;
  opacity: 0.55;
}

.dl-orbit__icon-wrap:hover {
  opacity: 1 !important;
  transition: opacity 0.3s;
}

@keyframes dl-orbit-counter {
  to { transform: rotate(calc(var(--angle) * -1 - 360deg)) translateX(-50%); }
}

.dl-orbit__item--dim .dl-orbit__icon-wrap {
  opacity: 0 !important;
  transition: opacity 0.3s !important;
}

.dl-orbit__icon {
  background: rgb(18, 16, 14);
  border: 1px solid rgba(232, 212, 168, 0.14);
  border-radius: 0.6rem;
  filter: drop-shadow(rgba(212, 184, 122, 0.12) 0 0 0.48rem);
  flex-shrink: 0;
  height: 2.7rem;
  object-fit: cover;
  transition: filter 0.3s, border-color 0.3s;
  width: 2.7rem;
}

.dl-orbit__icon-wrap:hover .dl-orbit__icon {
  background: rgba(212, 184, 122, 0.12);
  border-color: rgba(212, 184, 122, 0.35);
  filter: drop-shadow(rgba(212, 184, 122, 0.3) 0 0 0.71rem);
}

.dl-orbit__name {
  color: rgba(232, 212, 168, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  max-width: 4rem;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  transition: color 0.3s;
  white-space: nowrap;
}

.dl-orbit__icon-wrap:hover .dl-orbit__name {
  color: rgba(232, 212, 168, 0.85);
}

.dl-hero__chip {
  align-items: center;
  background: rgba(212, 184, 122, 0.06);
  border: 1px solid rgba(212, 184, 122, 0.16);
  border-radius: 99rem;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  padding: 0.35rem 1.1rem;
}

.dl-hero__chip-pulse {
  animation: dl-chip-pulse 2s ease-in-out infinite;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0.48rem var(--color-primary);
  height: 0.36rem;
  width: 0.36rem;
}

@keyframes dl-chip-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.dl-hero__h1 {
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 1.4rem 0 1.5rem;
}

.dl-hero__line1,
.dl-hero__line2 {
  display: block;
}

.dl-hero__typing {
  animation: dl-gradient-shift 5s ease-in-out infinite;
  background: linear-gradient(90deg, var(--dl-cream), var(--dl-gold-bright), var(--dl-violet), var(--dl-gold));
  background-clip: text;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes dl-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.dl-hero__cursor {
  animation: dl-blink 1s step-end infinite;
  color: var(--color-primary);
  font-weight: 300;
}

@keyframes dl-blink {
  50% { opacity: 0; }
}

.dl-hero__sub {
  color: var(--color-text-secondary);
  font-size: clamp(0.92rem, 2.2vw, 1.1rem);
  line-height: 1.75;
  margin: 0 auto 2.5rem;
  max-width: 38rem;
}

.dl-hero__engines {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0 0 1.8rem;
}

.dl-hero__engines-label {
  color: var(--color-text-tertiary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: 0.15rem;
}

.dl-hero__engine-badge {
  align-items: center;
  background: rgba(240, 224, 188, 0.94);
  border-radius: 99rem;
  color: #17140f;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 0.4rem;
  padding: 0.32rem 0.8rem 0.32rem 0.55rem;
}

.dl-hero__engine-badge img { flex-shrink: 0; height: 0.9rem; width: 0.9rem; }

.dl-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.dl-cta-main {
  align-items: center;
  background: linear-gradient(135deg, var(--dl-gold-bright), var(--dl-gold));
  border: none;
  border-radius: 99rem;
  box-shadow: rgba(212, 184, 122, 0.35) 0 0 1.79rem, rgba(212, 184, 122, 0.2) 0 0.24rem 1.19rem;
  color: var(--dl-void);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  transition: 0.3s;
}

.dl-cta-main:hover {
  box-shadow: rgba(212, 184, 122, 0.5) 0 0 2.98rem, rgba(212, 184, 122, 0.3) 0 0.48rem 1.79rem;
  transform: translateY(-0.12rem);
}

.dl-cta-main svg { flex-shrink: 0; height: 0.8rem; width: 0.8rem; transition: transform 0.2s; }
.dl-cta-main:hover svg { transform: translateX(0.18rem); }

.dl-cta-sub {
  align-items: center;
  background: rgba(232, 212, 168, 0.04);
  border: 1px solid rgba(232, 212, 168, 0.12);
  border-radius: 99rem;
  color: var(--color-text-primary);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  transition: 0.3s;
}

.dl-cta-sub:hover {
  background: rgba(212, 184, 122, 0.06);
  border-color: rgba(212, 184, 122, 0.3);
  color: var(--color-primary);
}

.dl-hero__nums {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.dl-num-block { text-align: center; }

.dl-num-val {
  background: linear-gradient(var(--dl-cream) 30%, rgba(212, 184, 122, 0.65)) text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.dl-num-label {
  color: var(--color-text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

.dl-num-sep {
  background: linear-gradient(transparent, rgba(212, 184, 122, 0.22), transparent);
  height: 2rem;
  width: 1px;
}

/* Spotlight — 轨道飞出 → 侧边展示打字 → 飞回 */
.dl-spotlight {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -50%) scale(0.3);
  visibility: hidden;
  will-change: left, top, transform, opacity;
  z-index: 10;
}

.dl-spotlight.is-active { visibility: visible; }

.dl-spotlight.is-settled .dl-spotlight__card {
  animation: dl-spotlight-settle 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dl-spotlight.is-settled .dl-spotlight__img {
  animation: dl-spotlight-glow 2.2s ease-in-out infinite;
}

@keyframes dl-spotlight-settle {
  0% { transform: scale(0.94); }
  100% { transform: scale(1); }
}

@keyframes dl-spotlight-glow {
  0%, 100% { filter: drop-shadow(rgba(212, 184, 122, 0.32) 0 0 0.75rem); }
  50% { filter: drop-shadow(rgba(212, 184, 122, 0.58) 0 0 1.35rem); }
}

.dl-spotlight__card {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 14rem;
  min-width: 8rem;
}

.dl-spotlight__img {
  background: rgb(18, 16, 14);
  border: 1px solid rgba(232, 212, 168, 0.14);
  border-radius: 0.7rem;
  filter: drop-shadow(rgba(212, 184, 122, 0.3) 0 0 0.8rem);
  flex-shrink: 0;
  height: 3.6rem;
  margin-bottom: 0.5rem;
  object-fit: cover;
  width: 3.6rem;
}

.dl-spotlight__name {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

.dl-spotlight__desc {
  color: rgba(232, 212, 168, 0.72);
  font-size: 0.72rem;
  line-height: 1.6;
  margin: 0;
  min-height: 1.15rem;
  text-align: center;
}

.dl-spotlight__cursor {
  animation: dl-blink 1s step-end infinite;
  color: var(--color-primary);
  font-weight: 300;
}

/* ---------------------------------------------------------------------- */
/* Platform support — 滑动展示条 + 全平台网格                                */
/* ---------------------------------------------------------------------- */
.dl-platstrip {
  border-bottom: 1px solid rgba(232, 212, 168, 0.07);
  border-top: 1px solid rgba(232, 212, 168, 0.07);
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.dl-platstrip::before,
.dl-platstrip::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 6rem;
  z-index: 2;
}

.dl-platstrip::before {
  background: linear-gradient(90deg, var(--dl-void), transparent);
  left: 0;
}

.dl-platstrip::after {
  background: linear-gradient(270deg, var(--dl-void), transparent);
  right: 0;
}

.dl-platstrip__head {
  align-items: center;
  color: var(--color-text-tertiary);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.dl-platstrip__head svg { color: var(--color-primary); flex-shrink: 0; height: 0.85rem; width: 0.85rem; }

.dl-platstrip__track {
  animation: dl-plat-scroll 32s linear infinite;
  display: flex;
  gap: 3.2rem;
  width: max-content;
}

.dl-platstrip:hover .dl-platstrip__track { animation-play-state: paused; }

@keyframes dl-plat-scroll {
  to { transform: translateX(-50%); }
}

.dl-plat {
  align-items: center;
  color: var(--color-text-tertiary);
  display: inline-flex;
  flex-shrink: 0;
  gap: 0.55rem;
  transition: color 0.3s, opacity 0.3s;
}

.dl-plat__icon {
  background-color: var(--color-text-secondary);
  display: inline-block;
  flex-shrink: 0;
  height: 1.35rem;
  transition: background-color 0.3s;
  width: 1.35rem;
}

.dl-plat__name {
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.dl-plat:hover { color: var(--color-primary); }
.dl-plat:hover .dl-plat__icon { background-color: var(--color-primary); }

@media (max-width: 48rem) {
  .dl-platstrip__track { animation-duration: 22s; gap: 2.2rem; }
  .dl-plat__name { font-size: 0.8rem; }
}

/* Full platform grid (footer-style, 参考魔方 AI) */
.dl-platgrid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 40rem) {
  .dl-platgrid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 60rem) {
  .dl-platgrid { grid-template-columns: repeat(6, 1fr); }
}

.dl-platgrid .dl-plat {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 0.8rem;
  justify-content: center;
  padding: 1rem 0.8rem;
  transition: border-color 0.3s, transform 0.3s, color 0.3s;
}

.dl-platgrid .dl-plat:hover {
  border-color: rgba(212, 184, 122, 0.32);
  transform: translateY(-0.15rem);
}

/* ---------------------------------------------------------------------- */
/* Sections + shared components                                           */
/* ---------------------------------------------------------------------- */
.dl-sec {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.dl-sec--tight { padding: 3.5rem 0; }

.dl-sec__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 2rem;
}

.dl-sec__head {
  margin-bottom: 3.5rem;
  text-align: center;
}

.dl-sec__head--left { text-align: left; margin-bottom: 2.5rem; }

.dl-sec__chip {
  background: rgba(212, 184, 122, 0.06);
  border: 1px solid rgba(212, 184, 122, 0.12);
  border-radius: 99rem;
  color: var(--color-primary);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  padding: 0.3rem 1rem;
  text-transform: uppercase;
}

.dl-sec__h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.dl-sec__p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 42rem;
}

.dl-sec__head--left .dl-sec__p { margin: 0; max-width: 46rem; }

.dl-divider {
  border: none;
  border-top: 1px solid rgba(232, 212, 168, 0.08);
  margin: 0;
}

/* Capability / feature grid */
.dl-cap-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .dl-cap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 72rem) {
  .dl-cap-grid { grid-template-columns: repeat(4, 1fr); }
  .dl-cap-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.dl-cap-card {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 1rem;
  color: inherit;
  display: block;
  overflow: hidden;
  padding: 2rem 1.5rem;
  position: relative;
  text-decoration: none;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.dl-cap-card::before {
  background: radial-gradient(circle at 50% 0, rgba(212, 184, 122, 0.08), transparent 70%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.35s;
}

.dl-cap-card:hover {
  border-color: rgba(212, 184, 122, 0.25);
  box-shadow: rgba(0, 0, 0, 0.3) 0 1.19rem 2.38rem, rgba(212, 184, 122, 0.08) 0 0 1.79rem;
  transform: translateY(-0.36rem);
}

.dl-cap-card:hover::before { opacity: 1; }

.dl-cap-icon {
  align-items: center;
  background: rgba(212, 184, 122, 0.08);
  border: 1px solid rgba(212, 184, 122, 0.14);
  border-radius: 0.7rem;
  color: var(--color-primary);
  display: flex;
  font-size: 1.15rem;
  height: 2.8rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s, box-shadow 0.3s;
  width: 2.8rem;
}

.dl-cap-card:hover .dl-cap-icon {
  background: rgba(212, 184, 122, 0.15);
  box-shadow: rgba(212, 184, 122, 0.2) 0 0 0.95rem;
}

.dl-cap-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  position: relative;
}

.dl-cap-desc {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  position: relative;
}

.dl-cap-go {
  align-items: center;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 0.4rem;
  position: relative;
  transition: gap 0.2s;
  white-space: nowrap;
}

.dl-cap-card:hover .dl-cap-go { gap: 0.65rem; }
.dl-cap-go svg { flex-shrink: 0; height: 0.7rem; width: 0.7rem; transition: transform 0.2s; }
.dl-cap-card:hover .dl-cap-go svg { transform: translateX(0.18rem); }

/* Pricing cards */
.dl-price-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 60rem) {
  .dl-price-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .dl-price-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

.dl-price-card {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.1);
  border-radius: 1.2rem;
  cursor: pointer;
  outline: none;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.dl-price-card:hover {
  border-color: rgba(212, 184, 122, 0.3);
  box-shadow: rgba(0, 0, 0, 0.3) 0 1.2rem 2.4rem;
  transform: translateY(-0.3rem);
}

.dl-price-card:focus-visible {
  box-shadow: rgba(212, 184, 122, 0.5) 0 0 0 0.15rem;
}

.dl-price-card--featured {
  background: linear-gradient(160deg, rgba(212, 184, 122, 0.1), rgba(184, 160, 232, 0.04));
  border-color: rgba(212, 184, 122, 0.35);
}

.dl-price-badge {
  background: linear-gradient(135deg, var(--dl-gold-bright), var(--dl-gold));
  border-radius: 99rem;
  color: var(--dl-void);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.85rem;
  position: absolute;
  right: 1.6rem;
  top: -0.8rem;
}

.dl-price-name {
  color: var(--color-text-tertiary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dl-price-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0.5rem 0 0.3rem;
}

.dl-price-value {
  align-items: baseline;
  display: flex;
  gap: 0.35rem;
  margin: 1rem 0 1.4rem;
}

.dl-price-num {
  font-size: 2.2rem;
  font-weight: 900;
}

.dl-price-unit {
  color: var(--color-text-tertiary);
  font-size: 0.85rem;
}

.dl-price-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}

.dl-price-list li {
  align-items: flex-start;
  color: var(--color-text-secondary);
  display: flex;
  font-size: 0.85rem;
  gap: 0.55rem;
  line-height: 1.5;
}

.dl-price-list li::before {
  color: var(--color-primary);
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
}

.dl-price-note {
  color: var(--color-text-tertiary);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Track divider — visually separates AI Agent self-serve pricing from expert-led services */
.dl-track-divider {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  margin: 0 auto;
  max-width: 60rem;
  padding: 2.6rem 1.5rem;
}

.dl-track-divider::before,
.dl-track-divider::after {
  background: linear-gradient(90deg, transparent, rgba(232, 212, 168, 0.18), transparent);
  content: "";
  flex: 1 1 auto;
  height: 1px;
}

.dl-track-divider__label {
  align-items: center;
  color: var(--color-text-tertiary);
  display: flex;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dl-track-divider__label svg { color: var(--color-primary); flex-shrink: 0; height: 0.85rem; width: 0.85rem; }

@media (max-width: 40rem) {
  .dl-track-divider__label { font-size: 0.72rem; white-space: normal; }
}

/* Tier -> expert selector — whole card is the trigger, no separate button */
.dl-price-card.is-selected {
  background: linear-gradient(160deg, rgba(212, 184, 122, 0.08), rgba(184, 160, 232, 0.03));
  border-color: rgba(212, 184, 122, 0.6);
  box-shadow: rgba(212, 184, 122, 0.18) 0 0 0 0.08rem inset, rgba(212, 184, 122, 0.12) 0 0 2.4rem, rgba(0, 0, 0, 0.3) 0 1.2rem 2.4rem;
  transform: translateY(-0.3rem);
}

.dl-price-card.is-selected::after {
  align-items: center;
  animation: dl-modal-fade-up 0.35s ease both;
  background: linear-gradient(135deg, var(--dl-gold-bright), var(--dl-gold));
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0 0.3rem 0.7rem;
  color: var(--dl-void);
  content: "✓";
  display: flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 1.6rem;
  justify-content: center;
  left: -0.7rem;
  position: absolute;
  top: -0.7rem;
  width: 1.6rem;
  z-index: 2;
}

.dl-price-hint {
  align-items: center;
  border-top: 1px solid rgba(232, 212, 168, 0.1);
  color: var(--color-text-tertiary);
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.35rem;
  justify-content: space-between;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  transition: color 0.25s;
}

.dl-price-card:hover .dl-price-hint,
.dl-price-card.is-selected .dl-price-hint { color: var(--color-primary); }

.dl-price-hint svg { flex-shrink: 0; height: 0.7rem; transition: transform 0.3s; width: 0.7rem; }

.dl-price-card.is-selected .dl-price-hint svg { transform: rotate(180deg); }

.dl-expert-reveal {
  background: rgba(212, 184, 122, 0.03);
  border: 1px solid rgba(212, 184, 122, 0.14);
  border-radius: 1.2rem;
  margin-top: 1.8rem;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  position: relative;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s, padding 0.5s, margin-top 0.5s;
}

.dl-expert-reveal::before {
  background: rgb(15, 13, 11);
  border-left: 1px solid rgba(212, 184, 122, 0.14);
  border-top: 1px solid rgba(212, 184, 122, 0.14);
  content: "";
  height: 0.9rem;
  left: 50%;
  position: absolute;
  top: -0.46rem;
  transform: translateX(-50%) rotate(45deg);
  width: 0.9rem;
}

.dl-expert-reveal:not(.is-open) { margin-top: 0; }

.dl-expert-reveal.is-open {
  opacity: 1;
  padding: 1.6rem;
  max-height: 40rem;
}

.dl-tier-reveal--cases.is-open {
  max-height: 120rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 184, 122, 0.07), transparent 55%),
    linear-gradient(165deg, rgba(212, 184, 122, 0.04), rgba(8, 8, 8, 0.35));
  border-color: rgba(212, 184, 122, 0.22);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
}

.dl-tier-reveal--cases .dl-showcase-grid {
  gap: 1.1rem;
}

.dl-tier-reveal--cases .dl-showcase-card {
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(212, 184, 122, 0.16);
}

.dl-tier-reveal--cases .dl-showcase-card--hero {
  border-color: rgba(212, 184, 122, 0.28);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.4);
}

.dl-tier-reveal--services.is-open {
  max-height: 24rem;
}

/* Tier DNA strip on price cards */
.dl-price-card__dna {
  border-radius: 0.85rem;
  height: 4.6rem;
  margin: -0.4rem 0 1.2rem;
  overflow: hidden;
  position: relative;
}

.dl-price-card__dna::after {
  background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.85));
  content: "";
  inset: 0;
  position: absolute;
}

.dl-price-card__dna-label {
  bottom: 0.55rem;
  color: var(--dl-cream);
  font-size: 0.68rem;
  font-weight: 800;
  left: 0.75rem;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.dl-price-card__dna--essential {
  background:
    linear-gradient(135deg, rgba(212, 184, 122, 0.18), rgba(120, 120, 120, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
}

.dl-price-card__dna--premium {
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 184, 122, 0.35), transparent 55%),
    linear-gradient(120deg, rgba(40, 20, 60, 0.5), rgba(212, 184, 122, 0.12));
}

.dl-price-card__dna--premium::before {
  animation: dl-video-pulse 2.8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99rem;
  content: "▶";
  font-size: 0.55rem;
  height: 1.4rem;
  left: 50%;
  line-height: 1.4rem;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  z-index: 1;
}

.dl-price-card__dna--luxury {
  background:
    radial-gradient(circle at 30% 70%, rgba(184, 160, 232, 0.25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 184, 122, 0.2), transparent 45%),
    linear-gradient(160deg, rgba(20, 16, 32, 0.8), rgba(8, 8, 8, 0.4));
  perspective: 400px;
}

.dl-price-card__dna--luxury .dl-price-card__dna-cube {
  animation: dl-cube-spin 8s linear infinite;
  border: 1px solid rgba(212, 184, 122, 0.35);
  height: 1.6rem;
  left: 50%;
  position: absolute;
  top: 42%;
  transform: translate(-50%, -50%) rotateX(18deg) rotateY(24deg);
  transform-style: preserve-3d;
  width: 1.6rem;
  z-index: 1;
}

@keyframes dl-video-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 184, 122, 0.35); }
  50% { box-shadow: 0 0 0 0.45rem rgba(212, 184, 122, 0.08); }
}

@keyframes dl-cube-spin {
  from { transform: translate(-50%, -50%) rotateX(18deg) rotateY(0deg); }
  to { transform: translate(-50%, -50%) rotateX(18deg) rotateY(360deg); }
}

/* Tier case showcase */
.dl-tier-banner {
  align-items: flex-start;
  border: 1px solid rgba(212, 184, 122, 0.14);
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
}

.dl-tier-banner--essential { background: rgba(120, 120, 120, 0.06); }
.dl-tier-banner--premium { background: linear-gradient(135deg, rgba(212, 184, 122, 0.1), rgba(80, 40, 120, 0.06)); }
.dl-tier-banner--luxury { background: linear-gradient(135deg, rgba(184, 160, 232, 0.08), rgba(212, 184, 122, 0.06)); }

.dl-tier-banner__tag {
  color: var(--dl-gold-bright);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.dl-tier-banner__pitch {
  color: rgba(240, 224, 188, 0.72);
  font-size: 0.88rem;
  margin: 0;
  max-width: 28rem;
}

.dl-tier-banner__features {
  color: rgba(232, 212, 168, 0.55);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  gap: 0.45rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dl-tier-banner__features li::before {
  color: var(--dl-gold);
  content: "◆ ";
  font-size: 0.55rem;
}

.dl-tier-reveal__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dl-showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .dl-showcase-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .dl-showcase-card--hero {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}

.dl-showcase-card {
  animation: dl-case-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(212, 184, 122, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.dl-showcase-card:hover {
  border-color: rgba(212, 184, 122, 0.32);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
  transform: translateY(-0.2rem);
}

@keyframes dl-case-in {
  from { opacity: 0; transform: translateY(0.65rem); }
  to { opacity: 1; transform: translateY(0); }
}

.dl-showcase-card__frame {
  aspect-ratio: 16 / 10;
  background: hsl(calc(var(--case-hue, 42) * 1deg), 28%, 12%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.dl-showcase-card--hero .dl-showcase-card__frame { aspect-ratio: 4 / 5; }

.dl-showcase-card__frame--essential { box-shadow: inset 0 -2rem 3rem rgba(0, 0, 0, 0.35); }
.dl-showcase-card__frame--premium { box-shadow: inset 0 0 3rem rgba(212, 184, 122, 0.08); }
.dl-showcase-card__frame--luxury { box-shadow: inset 0 0 4rem rgba(184, 160, 232, 0.12); }

.dl-showcase-card__chrome {
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
}

.dl-showcase-card__chrome span {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99rem;
  height: 0.45rem;
  width: 0.45rem;
}

.dl-showcase-card__chrome span:first-child { background: rgba(255, 100, 100, 0.45); }
.dl-showcase-card__chrome span:nth-child(2) { background: rgba(255, 200, 80, 0.45); }
.dl-showcase-card__chrome span:nth-child(3) { background: rgba(100, 200, 120, 0.45); }

.dl-showcase-card__host {
  color: rgba(232, 212, 168, 0.42);
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  margin-left: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dl-showcase-card__screen {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.dl-showcase-card__screen--video::after {
  animation: dl-scan 3.5s linear infinite;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.dl-showcase-card__screen--3d::before {
  animation: dl-aurora 6s ease-in-out infinite alternate;
  background: radial-gradient(circle at 30% 40%, rgba(184, 160, 232, 0.35), transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

@keyframes dl-scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

@keyframes dl-aurora {
  from { opacity: 0.45; transform: scale(1); }
  to { opacity: 0.85; transform: scale(1.08); }
}

.dl-showcase-card__img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.dl-showcase-card:hover .dl-showcase-card__img {
  transform: scale(1.03);
}

.dl-showcase-card__overlay {
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 100%);
  display: flex;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  padding: 0.75rem;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.28s ease;
  z-index: 2;
}

.dl-showcase-card:hover .dl-showcase-card__overlay,
.dl-showcase-card:focus-within .dl-showcase-card__overlay {
  opacity: 1;
  pointer-events: auto;
}

.dl-showcase-card__visit,
.dl-showcase-card__link {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(212, 184, 122, 0.92);
  border-radius: 99rem;
  color: #1a1208;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  pointer-events: auto;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.dl-showcase-card__visit svg,
.dl-showcase-card__link svg {
  flex-shrink: 0;
  height: 0.72rem;
  width: 0.72rem;
}

.dl-showcase-card__visit:hover,
.dl-showcase-card__link:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.dl-showcase-card[data-url] {
  cursor: pointer;
}

.dl-showcase-card__fallback {
  align-items: center;
  background: linear-gradient(145deg, hsl(calc(var(--case-hue, 42) * 1deg), 42%, 28%), hsl(calc(var(--case-hue, 42) * 1deg), 32%, 12%));
  color: rgba(255, 255, 255, 0.85);
  display: none;
  font-size: 2.4rem;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  letter-spacing: -0.04em;
  width: 100%;
}

.dl-showcase-card__fallback.is-visible { display: flex; }

.dl-showcase-card__motion {
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99rem;
  bottom: 0.65rem;
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  position: absolute;
  right: 0.65rem;
  width: 2rem;
  z-index: 2;
}

.dl-showcase-card__motion svg { height: 0.95rem; width: 0.95rem; }
.dl-showcase-card__motion--video { color: var(--dl-gold-bright); }
.dl-showcase-card__motion--3d { color: rgba(184, 160, 232, 0.95); }

.dl-showcase-card__body { padding: 0.95rem 1rem 1.1rem; }

.dl-showcase-card__meta {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.dl-showcase-card__tag {
  background: rgba(212, 184, 122, 0.12);
  border: 1px solid rgba(212, 184, 122, 0.22);
  border-radius: 99rem;
  color: var(--dl-gold-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  text-transform: uppercase;
}

.dl-showcase-card__metric {
  color: rgba(232, 212, 168, 0.45);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
}

.dl-showcase-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.dl-showcase-card__desc {
  color: rgba(232, 212, 168, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}

/* Growth service cards (no experts) */
.dl-service-card {
  animation: dl-case-in 0.45s ease both;
  background: rgba(212, 184, 122, 0.04);
  border: 1px solid rgba(212, 184, 122, 0.14);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
}

.dl-service-card__icon { display: block; font-size: 1.6rem; margin-bottom: 0.65rem; }

.dl-service-card__title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
}

.dl-service-card__desc {
  color: rgba(232, 212, 168, 0.58);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.dl-expert-reveal__head {
  align-items: baseline;
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.dl-expert-reveal__title {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.dl-expert-reveal__title span { color: var(--color-primary); }

.dl-expert-reveal__hint {
  color: rgba(232, 212, 168, 0.45);
  font-size: 0.82rem;
  line-height: 1.5;
}

.dl-expert-reveal__more {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dl-expert-reveal__more:hover {
  text-decoration: underline;
}

.dl-tier-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
  .dl-tier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 72rem) {
  .dl-tier-grid { grid-template-columns: repeat(3, 1fr); }
}

.dl-tier-expert {
  align-items: center;
  animation: dl-modal-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  background: rgba(3, 3, 3, 0.3);
  border: 1px solid rgba(232, 212, 168, 0.1);
  border-radius: 0.9rem;
  color: inherit;
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.dl-tier-expert:hover {
  box-shadow: rgba(212, 184, 122, 0.14) 0 0.6rem 1.6rem;
}

.dl-tier-expert:hover {
  background: rgba(212, 184, 122, 0.06);
  border-color: rgba(212, 184, 122, 0.4);
  transform: translateY(-0.15rem);
}

.dl-tier-expert__avatar {
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.28), rgba(184, 160, 232, 0.2));
  border: 1px solid rgba(212, 184, 122, 0.35);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.dl-tier-expert__body { flex: 1 1 auto; min-width: 0; }

.dl-tier-expert__name {
  align-items: center;
  display: flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.4rem;
}

.dl-tier-expert__rating {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.dl-tier-expert__orders {
  color: var(--color-text-tertiary);
  font-size: 0.72rem;
  white-space: nowrap;
}

.dl-tier-expert__case {
  color: var(--color-text-secondary);
  display: block;
  font-size: 0.76rem;
  margin-top: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dl-tier-expert__case::before {
  color: var(--color-primary);
  content: "▸ ";
}

.dl-tier-expert__go {
  color: var(--color-text-tertiary);
  flex-shrink: 0;
  height: 0.75rem;
  transition: transform 0.25s, color 0.25s;
  width: 0.75rem;
}

.dl-tier-expert:hover .dl-tier-expert__go { color: var(--color-primary); transform: translateX(0.2rem); }

/* Quick pricing row (compact chips) */
.dl-quickrow {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

@media (min-width: 48rem) {
  .dl-quickrow { grid-template-columns: repeat(4, 1fr); }
}

.dl-quickrow__item {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 0.9rem;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  padding: 1rem 1.1rem 0.85rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
}

.dl-quickrow__item:hover {
  border-color: rgba(212, 184, 122, 0.3);
  box-shadow: rgba(0, 0, 0, 0.25) 0 0.9rem 1.8rem;
  transform: translateY(-0.2rem);
}

.dl-quickrow__item.is-selected {
  background: linear-gradient(160deg, rgba(212, 184, 122, 0.14), rgba(184, 160, 232, 0.04));
  border-color: rgba(212, 184, 122, 0.55);
}

.dl-quickrow__chevron {
  color: var(--color-text-tertiary);
  height: 0.68rem;
  position: absolute;
  right: 1.1rem;
  top: 1.15rem;
  transition: color 0.25s, transform 0.3s;
  width: 0.68rem;
}

.dl-quickrow__item:hover .dl-quickrow__chevron,
.dl-quickrow__item.is-selected .dl-quickrow__chevron { color: var(--color-primary); }

.dl-quickrow__item.is-selected .dl-quickrow__chevron { transform: rotate(180deg); }

.dl-quickrow__item--link:hover .dl-quickrow__chevron { transform: translateX(0.15rem); }

.dl-quickrow__label {
  color: var(--color-text-tertiary);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.dl-quickrow__val {
  color: var(--color-text-primary);
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.dl-quickrow__note {
  color: var(--color-text-tertiary);
  display: block;
  font-size: 0.74rem;
  margin-top: 0.15rem;
}

/* Merged "how it works" steps, folded into each pillar */
.dl-pillar__steps {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}

.dl-pillar__steps li {
  align-items: flex-start;
  color: var(--color-text-secondary);
  display: flex;
  font-size: 0.92rem;
  gap: 0.7rem;
  line-height: 1.5;
}

.dl-pillar__stepnum {
  align-items: center;
  background: linear-gradient(135deg, var(--dl-gold-bright), var(--dl-gold));
  border-radius: 50%;
  color: var(--dl-void);
  display: flex;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 900;
  height: 1.5rem;
  justify-content: center;
  margin-top: 0.05rem;
  width: 1.5rem;
}

.dl-pillar__stepnum--check {
  background: rgba(232, 212, 168, 0.1);
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* Two pillars: AI Agent + 专家网络 */
.dl-pillars {
  align-items: center;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 60rem) {
  .dl-pillars { grid-template-columns: 1fr auto 1fr; }
}

.dl-pillar {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 1.3rem;
  padding: 2.2rem 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.dl-pillar:hover {
  border-color: rgba(212, 184, 122, 0.28);
  box-shadow: rgba(0, 0, 0, 0.3) 0 1.2rem 2.4rem;
  transform: translateY(-0.3rem);
}

.dl-pillar__icon {
  align-items: center;
  background: rgba(212, 184, 122, 0.08);
  border: 1px solid rgba(212, 184, 122, 0.14);
  border-radius: 0.8rem;
  color: var(--color-primary);
  display: flex;
  font-size: 1.3rem;
  height: 3.2rem;
  justify-content: center;
  margin-bottom: 1.3rem;
  width: 3.2rem;
}

.dl-pillar__title {
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 0.3rem;
}

.dl-pillar__tag {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 1.3rem;
  text-transform: uppercase;
}

.dl-pillar__list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}

.dl-pillar__list li {
  align-items: flex-start;
  color: var(--color-text-secondary);
  display: flex;
  font-size: 0.88rem;
  gap: 0.55rem;
  line-height: 1.55;
}

.dl-pillar__list li::before {
  color: var(--color-primary);
  content: "✓";
  flex-shrink: 0;
  font-weight: 700;
}

.dl-pillar__link {
  align-items: center;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.4rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.dl-pillar__link:hover { gap: 0.65rem; }
.dl-pillar__link svg { flex-shrink: 0; height: 0.75rem; width: 0.75rem; }

.dl-pillars__join {
  align-items: center;
  color: var(--color-text-tertiary);
  display: none;
  font-size: 1.6rem;
  font-weight: 900;
  justify-content: center;
}

@media (min-width: 60rem) {
  .dl-pillars__join { display: flex; }
}

/* Weighted variant: AI primary / expert fallback hierarchy */
@media (min-width: 60rem) {
  .dl-pillars--weighted { grid-template-columns: 1.3fr auto 1fr; }
}

.dl-pillar__rank {
  background: rgba(212, 184, 122, 0.14);
  border-radius: 0.4rem;
  color: var(--color-primary);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding: 0.2rem 0.6rem;
}

.dl-pillar__rank--alt {
  background: rgba(232, 212, 168, 0.06);
  color: var(--color-text-tertiary);
}

.dl-pillar--primary {
  background: linear-gradient(160deg, rgba(212, 184, 122, 0.08), rgba(184, 160, 232, 0.03));
  border-color: rgba(212, 184, 122, 0.28);
}

.dl-pillar--fallback {
  opacity: 0.92;
  padding: 1.8rem 1.7rem;
}

.dl-pillar--fallback .dl-pillar__icon {
  height: 2.7rem;
  width: 2.7rem;
}

.dl-pillar--fallback .dl-pillar__title { font-size: 1.15rem; }

/* Compact strip banner */
.dl-strip {
  align-items: center;
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
}

.dl-strip__text { flex: 1 1 20rem; }

.dl-strip__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
}

.dl-strip__desc {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Build-service path blocks */
.dl-path-block { margin-bottom: 3rem; }
.dl-path-block:last-child { margin-bottom: 0; }

.dl-path-block__head { margin-bottom: 1.6rem; }

.dl-path-tag {
  background: rgba(212, 184, 122, 0.1);
  border-radius: 0.4rem;
  color: var(--color-primary);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
  padding: 0.2rem 0.6rem;
}

.dl-path-tag--alt {
  background: rgba(184, 160, 232, 0.12);
  color: var(--dl-violet);
}

.dl-path-block__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.dl-path-block__desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  max-width: 46rem;
}

/* Real brand showcase grid */
.dl-brand-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 48rem) {
  .dl-brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 72rem) {
  .dl-brand-grid { grid-template-columns: repeat(4, 1fr); }
}

.dl-brand-card {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 0.9rem;
  color: inherit;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.dl-brand-card:hover {
  border-color: rgba(212, 184, 122, 0.3);
  box-shadow: rgba(0, 0, 0, 0.3) 0 1rem 2rem;
  transform: translateY(-0.3rem);
}

.dl-brand-card__img {
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  width: 100%;
}

.dl-brand-card__body { padding: 0.9rem 1rem 1.1rem; }

.dl-brand-card__name {
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
}

.dl-brand-card__desc {
  color: var(--color-text-tertiary);
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0;
}

.dl-brand-card__badge {
  background: rgba(200, 245, 66, 0.14);
  border-radius: 99rem;
  color: #c8f542;
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  padding: 0.16rem 0.55rem;
}

/* Buttons */
.dl-btn {
  align-items: center;
  border-radius: 99rem;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  transition: 0.25s;
  width: 100%;
}

.dl-btn--gold {
  background: linear-gradient(135deg, var(--dl-gold-bright), var(--dl-gold));
  border: none;
  color: var(--dl-void);
  box-shadow: rgba(212, 184, 122, 0.25) 0 0 1.4rem;
}

.dl-btn--gold:hover { box-shadow: rgba(212, 184, 122, 0.4) 0 0 2rem; transform: translateY(-0.08rem); }

.dl-btn--outline {
  background: rgba(232, 212, 168, 0.03);
  border: 1px solid rgba(232, 212, 168, 0.16);
  color: var(--color-text-primary);
}

.dl-btn--outline:hover { border-color: rgba(212, 184, 122, 0.4); color: var(--color-primary); }

/* Expert cards */
.dl-expert-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 42rem) {
  .dl-expert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 72rem) {
  .dl-expert-grid { grid-template-columns: repeat(3, 1fr); }
}

.dl-expert-card {
  background: rgba(232, 212, 168, 0.02);
  border: 1px solid rgba(232, 212, 168, 0.09);
  border-radius: 1.1rem;
  overflow: hidden;
  padding: 1.7rem;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dl-expert-card:hover {
  border-color: rgba(212, 184, 122, 0.28);
  box-shadow: rgba(0, 0, 0, 0.3) 0 1.2rem 2.4rem;
  transform: translateY(-0.3rem);
}

.dl-expert-top {
  align-items: center;
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.dl-expert-avatar {
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.22), rgba(184, 160, 232, 0.16));
  border: 1px solid rgba(212, 184, 122, 0.3);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
  height: 3.1rem;
  justify-content: center;
  overflow: hidden;
  width: 3.1rem;
}

.dl-avatar-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dl-expert-card--featured {
  border-color: rgba(212, 184, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(212, 184, 122, 0.15), 0 18px 48px rgba(0, 0, 0, 0.35);
}

.dl-expert-featured {
  background: linear-gradient(90deg, rgba(212, 184, 122, 0.25), rgba(184, 160, 232, 0.18));
  border: 1px solid rgba(212, 184, 122, 0.35);
  border-radius: 999px;
  color: var(--color-primary);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.65rem;
  text-transform: uppercase;
}

.dl-expert-name {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}

.dl-expert-role {
  color: var(--color-primary-deep);
  font-size: 0.76rem;
  font-weight: 600;
}

.dl-expert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.dl-badge {
  background: rgba(212, 184, 122, 0.08);
  border: 1px solid rgba(212, 184, 122, 0.16);
  border-radius: 99rem;
  color: var(--color-text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
}

.dl-expert-desc {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}

.dl-expert-cases {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(232, 212, 168, 0.07);
  border-radius: 0.7rem;
  margin-bottom: 1.2rem;
  padding: 0.85rem 1rem;
}

.dl-expert-cases__label {
  align-items: center;
  color: var(--color-text-tertiary);
  display: flex;
  font-size: 0.7rem;
  gap: 0.4rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dl-expert-cases__label strong {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.dl-expert-cases ul {
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  line-height: 1.55;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dl-expert-cases li {
  border-top: 1px dashed rgba(232, 212, 168, 0.08);
  padding: 0.4rem 0;
}

.dl-expert-cases li:first-child { border-top: none; padding-top: 0; }

.dl-expert-link {
  align-items: center;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.4rem;
  text-decoration: none;
}

/* Expert pricing picker — profile / modal */
.dl-pricing {
  margin: 1.4rem 0 0;
}

.dl-pricing__label {
  color: var(--color-text-tertiary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.dl-pricing__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.dl-pricing__opt {
  background: rgba(232, 212, 168, 0.03);
  border: 1px solid rgba(232, 212, 168, 0.14);
  border-radius: 0.85rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 7.5rem;
  padding: 0.65rem 0.85rem;
  text-align: left;
  transition: 0.2s;
}

.dl-pricing__opt span {
  font-size: 0.78rem;
  font-weight: 600;
}

.dl-pricing__opt strong {
  color: var(--color-primary);
  font-family: var(--font-mono, monospace);
  font-size: 0.88rem;
  font-weight: 700;
}

.dl-pricing__opt small {
  color: var(--color-text-tertiary);
  font-size: 0.68rem;
}

.dl-pricing__opt:hover {
  border-color: rgba(212, 184, 122, 0.35);
}

.dl-pricing__opt.is-on {
  background: rgba(212, 184, 122, 0.12);
  border-color: rgba(212, 184, 122, 0.45);
  color: var(--color-text-primary);
}

.dl-pricing__solo {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.dl-pricing__solo strong {
  color: var(--color-primary);
  font-family: var(--font-mono, monospace);
  font-size: 1.1rem;
}

.dl-profile-selected-price {
  color: var(--color-primary);
  font-family: var(--font-mono, monospace);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.85rem 0 0;
}

.dl-tier-expert__price {
  color: var(--color-primary);
  display: block;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* Steps / process */
.dl-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 56rem) {
  .dl-steps { grid-template-columns: repeat(4, 1fr); }
}

.dl-step {
  border-left: 2px solid rgba(212, 184, 122, 0.2);
  padding: 0 0 0 1.1rem;
}

@media (min-width: 56rem) {
  .dl-step { border-left: none; border-top: 2px solid rgba(212, 184, 122, 0.2); padding: 1.1rem 0 0; }
}

.dl-step__num {
  color: rgba(212, 184, 122, 0.4);
  font-size: 0.85rem;
  font-weight: 800;
}

.dl-step__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.3rem 0 0.4rem;
}

.dl-step__desc {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* CTA band */
.dl-cta-band {
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.1), rgba(184, 160, 232, 0.06));
  border: 1px solid rgba(212, 184, 122, 0.18);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
}

.dl-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.dl-cta-band__actions .dl-cta-main,
.dl-cta-band__actions .dl-cta-sub { width: auto; }

/* Footer */
.dl-footer {
  border-top: 1px solid rgba(232, 212, 168, 0.08);
  padding: 3.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.dl-footer__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 2rem;
}

.dl-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.dl-footer__brand-note {
  color: var(--color-text-tertiary);
  font-size: 0.82rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 20rem;
}

.dl-footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.dl-footer__col-title {
  color: var(--color-text-tertiary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.dl-footer__col a {
  color: var(--color-text-secondary);
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: color 0.2s;
}

.dl-footer__col a:hover { color: var(--color-primary); }

.dl-footer__bottom {
  border-top: 1px solid rgba(232, 212, 168, 0.06);
  color: var(--color-text-tertiary);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  gap: 0.6rem;
  justify-content: space-between;
  padding-top: 1.5rem;
}

/* Page hero (non-home pages) */
.dl-pagehero {
  padding: 8.5rem 0 3.5rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.dl-pagehero__inner {
  margin: 0 auto;
  max-width: 48rem;
  padding: 0 1.5rem;
}

/* Self-serve AI Agent pricing track — bordered panel to feel like a distinct product */
.dl-agent-track {
  background: linear-gradient(160deg, rgba(212, 184, 122, 0.07), rgba(184, 160, 232, 0.03));
  border: 1px solid rgba(212, 184, 122, 0.18);
  border-radius: 1.8rem;
  padding: 3rem 2rem;
}

@media (max-width: 40rem) {
  .dl-agent-track { border-radius: 1.3rem; padding: 2.2rem 1.1rem; }
}

/* ---------------------------------------------------------------------- */
/* Expert profile page                                                    */
/* ---------------------------------------------------------------------- */
.dl-profile-head {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 56rem) {
  .dl-profile-head { align-items: center; grid-template-columns: auto 1fr; }
}

.dl-profile-avatar {
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.3), rgba(184, 160, 232, 0.2));
  border: 1px solid rgba(212, 184, 122, 0.4);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  filter: drop-shadow(rgba(212, 184, 122, 0.25) 0 0 1.4rem);
  font-size: 2.6rem;
  font-weight: 900;
  height: 7.5rem;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 7.5rem;
  z-index: 1;
}

.dl-profile-stats-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
  max-width: 52rem;
}

@media (min-width: 48rem) {
  .dl-profile-stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.dl-profile-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 184, 122, 0.18);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
}

.dl-profile-stat-card__val {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.dl-profile-stat-card__label {
  color: var(--color-text-tertiary);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.dl-profile-intro {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  max-width: 52rem;
}

.dl-profile-intro__title {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
}

.dl-profile-intro__body {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.dl-portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .dl-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.dl-portfolio-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  cursor: zoom-in;
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.dl-portfolio-card:hover {
  border-color: rgba(212, 184, 122, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.dl-portfolio-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.dl-portfolio-card__img {
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.dl-portfolio-card__img img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.dl-portfolio-card figcaption span {
  color: var(--color-text-tertiary);
  font-size: 0.78rem;
  line-height: 1.5;
}

.dl-portfolio-card__cap {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 1rem 1rem;
}

.dl-portfolio-card__cap strong {
  font-size: 0.88rem;
}

.dl-portfolio-card__cap span {
  color: var(--color-text-tertiary);
  font-size: 0.78rem;
  line-height: 1.5;
}

.dl-portfolio-card__hint {
  color: var(--color-primary);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  margin-top: 0.15rem;
}

.dl-cap-card--clickable {
  cursor: zoom-in;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.dl-cap-card--clickable:hover {
  border-color: rgba(212, 184, 122, 0.4);
  transform: translateY(-2px);
}

.dl-cap-open {
  color: var(--color-primary);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.55rem;
}

body.dl-lightbox-lock { overflow: hidden; }

.dl-lightbox {
  inset: 0;
  position: fixed;
  z-index: 1200;
}

.dl-lightbox__backdrop {
  background: rgba(0, 0, 0, 0.88);
  border: none;
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.dl-lightbox__panel {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.2rem;
  pointer-events: none;
  position: absolute;
}

.dl-lightbox__figure {
  margin: 0;
  max-height: 92vh;
  max-width: min(960px, 96vw);
  pointer-events: auto;
  width: 100%;
}

.dl-lightbox__figure img {
  background: #111;
  border-radius: 0.75rem;
  display: block;
  max-height: calc(92vh - 4.5rem);
  object-fit: contain;
  width: 100%;
}

.dl-lightbox__figure figcaption {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.75rem;
  text-align: center;
}

.dl-lightbox__figure figcaption strong {
  color: #fff;
  font-size: 0.95rem;
}

.dl-lightbox__figure figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.dl-lightbox__close,
.dl-lightbox__nav {
  align-items: center;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 2.4rem;
  justify-content: center;
  pointer-events: auto;
  position: absolute;
  width: 2.4rem;
}

.dl-lightbox__close {
  right: 1rem;
  top: 1rem;
}

.dl-lightbox__nav {
  font-size: 1.6rem;
  font-weight: 300;
  top: 50%;
  transform: translateY(-50%);
}

.dl-lightbox__nav--prev { left: 0.6rem; }
.dl-lightbox__nav--next { right: 0.6rem; }

.dl-lightbox__close:hover,
.dl-lightbox__nav:hover {
  border-color: rgba(212, 184, 122, 0.45);
  color: var(--color-primary);
}

.dl-skill-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .dl-skill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.dl-skill-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.9rem;
  padding: 1rem;
}

.dl-skill-card__title {
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.dl-skill-card__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dl-skill-chip {
  background: rgba(212, 184, 122, 0.1);
  border: 1px solid rgba(212, 184, 122, 0.22);
  border-radius: 999px;
  color: var(--color-primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
}

.dl-profile-avatar::before {
  animation: dl-ring-spin 7s linear infinite;
  background: conic-gradient(from 0deg, var(--dl-gold-bright), var(--dl-violet), var(--dl-gold), var(--dl-cream), var(--dl-gold-bright));
  border-radius: 50%;
  content: "";
  filter: blur(0.4rem);
  inset: -0.32rem;
  opacity: 0.65;
  position: absolute;
  z-index: -1;
}

@keyframes dl-ring-spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 56rem) {
  .dl-profile-avatar { margin: 0; }
}

.dl-profile-name {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  gap: 0.7rem;
  margin: 0 0 0.4rem;
}

.dl-profile-title {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.dl-profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.dl-profile-stat__val {
  font-size: 1.3rem;
  font-weight: 900;
}

.dl-profile-stat__label {
  color: var(--color-text-tertiary);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

.dl-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.dl-profile-actions .dl-cta-main,
.dl-profile-actions .dl-cta-sub { width: auto; }

.dl-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.dl-social-chip {
  align-items: center;
  background: rgba(232, 212, 168, 0.03);
  border: 1px solid rgba(232, 212, 168, 0.12);
  border-radius: 99rem;
  color: var(--color-text-secondary);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 600;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
}

/* Profile modal — premium redesign */
.dl-modal-label {
  color: var(--color-text-tertiary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin: 1.7rem 0 0.75rem;
  text-transform: uppercase;
}

.dl-modal-label:first-of-type { margin-top: 1.9rem; }

.dl-verified-ribbon {
  align-items: center;
  background: linear-gradient(135deg, var(--dl-gold-bright), var(--dl-gold));
  border-radius: 0 0.9rem 0.9rem 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0 0.4rem 0.9rem;
  color: #241a08;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  gap: 0.3rem;
  left: -1.6rem;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.85rem 0.32rem 1rem;
  position: absolute;
  top: -0.6rem;
  z-index: 3;
}

.dl-verified-ribbon svg { height: 0.75rem; width: 0.75rem; }

.dl-stat-strip {
  background: rgba(232, 212, 168, 0.03);
  border: 1px solid rgba(232, 212, 168, 0.09);
  border-radius: 1rem;
  display: flex;
  margin-top: 1.3rem;
  overflow: hidden;
}

.dl-stat-cell {
  flex: 1 1 0;
  padding: 0.85rem 0.6rem;
  position: relative;
  text-align: center;
}

.dl-stat-cell + .dl-stat-cell::before {
  background: rgba(232, 212, 168, 0.12);
  content: "";
  inset: 0.7rem auto 0.7rem 0;
  position: absolute;
  width: 1px;
}

.dl-stat-cell__icon { font-size: 0.85rem; margin-bottom: 0.3rem; opacity: 0.85; }

.dl-profile-case {
  align-items: flex-start;
  background: rgba(232, 212, 168, 0.025);
  border: 1px solid rgba(232, 212, 168, 0.09);
  border-left: 2px solid rgba(212, 184, 122, 0.55);
  border-radius: 0 0.85rem 0.85rem 0;
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  transition: background 0.3s, border-left-color 0.3s, transform 0.3s;
}

.dl-profile-case:hover {
  background: rgba(232, 212, 168, 0.05);
  border-left-color: var(--color-primary);
  transform: translateX(0.2rem);
}

.dl-profile-case__num {
  align-items: center;
  background: rgba(212, 184, 122, 0.14);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  height: 1.5rem;
  justify-content: center;
  margin-top: 0.05rem;
  width: 1.5rem;
}

.dl-profile-case__text {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.dl-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dl-trust-badge {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  width: 4.4rem;
}

.dl-trust-badge__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.2), rgba(184, 160, 232, 0.12));
  border: 1px solid rgba(212, 184, 122, 0.32);
  border-radius: 50%;
  display: flex;
  font-size: 1.05rem;
  height: 2.7rem;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  width: 2.7rem;
}

.dl-trust-badge:hover .dl-trust-badge__icon {
  box-shadow: rgba(212, 184, 122, 0.35) 0 0 0.9rem;
  transform: translateY(-0.15rem);
}

.dl-trust-badge__label {
  color: var(--color-text-tertiary);
  font-size: 0.64rem;
  line-height: 1.3;
}

@keyframes dl-modal-fade-up {
  from { opacity: 0; transform: translateY(0.7rem); }
  to { opacity: 1; transform: none; }
}

.dl-modal-stagger { animation: dl-modal-fade-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }
.dl-modal-stagger--1 { animation-delay: 0.02s; }
.dl-modal-stagger--2 { animation-delay: 0.09s; }
.dl-modal-stagger--3 { animation-delay: 0.16s; }
.dl-modal-stagger--4 { animation-delay: 0.23s; }
.dl-modal-stagger--5 { animation-delay: 0.3s; }

/* ---------------------------------------------------------------------- */
/* Expert modal — 弹窗预览专家主页                                          */
/* ---------------------------------------------------------------------- */
body.dl-modal-lock { overflow: hidden; }

.dl-modal-backdrop {
  align-items: center;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(0.4rem);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 2rem 1.2rem;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.3s;
  z-index: 1000;
}

.dl-modal-backdrop.is-open { opacity: 1; pointer-events: auto; }

.dl-modal {
  background: rgb(12, 11, 10);
  border: 1px solid rgba(212, 184, 122, 0.22);
  border-radius: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.5) 0 2rem 4rem;
  max-height: min(42rem, 88vh);
  max-width: 42rem;
  overflow-y: auto;
  padding: 2.4rem;
  position: relative;
  transform: scale(0.94) translateY(0.6rem);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.dl-modal-backdrop.is-open .dl-modal { transform: scale(1) translateY(0); }

.dl-modal__close {
  align-items: center;
  background: rgba(232, 212, 168, 0.06);
  border: 1px solid rgba(232, 212, 168, 0.14);
  border-radius: 50%;
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  height: 2.2rem;
  justify-content: center;
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  transition: 0.2s;
  width: 2.2rem;
  z-index: 1;
}

.dl-modal__close:hover { border-color: rgba(212, 184, 122, 0.4); color: var(--color-primary); }
.dl-modal__close svg { height: 0.9rem; width: 0.9rem; }

.dl-modal__body .dl-profile-head { grid-template-columns: 1fr; text-align: center; }
.dl-modal__body .dl-profile-avatar { margin: 0 auto; }
.dl-modal__body .dl-profile-name { justify-content: center; }
.dl-modal__body .dl-profile-title { text-align: center; }
.dl-modal__body .dl-expert-badges { justify-content: center; }
.dl-modal__body .dl-profile-stats { justify-content: center; }
.dl-modal__body .dl-profile-actions { justify-content: center; }
.dl-modal__body .dl-social-row { justify-content: center; }

@media (min-width: 40rem) {
  .dl-modal__body .dl-profile-head { grid-template-columns: auto 1fr; text-align: left; }
  .dl-modal__body .dl-profile-avatar { margin: 0; }
  .dl-modal__body .dl-profile-name,
  .dl-modal__body .dl-profile-title,
  .dl-modal__body .dl-expert-badges,
  .dl-modal__body .dl-profile-stats,
  .dl-modal__body .dl-profile-actions,
  .dl-modal__body .dl-social-row { justify-content: flex-start; text-align: left; }
}

@media (max-width: 30rem) {
  .dl-modal { padding: 1.8rem 1.4rem; }
}

.dl-modal__body { position: relative; }

.dl-modal__body::before {
  background: radial-gradient(ellipse 22rem 14rem at 50% 0, rgba(212, 184, 122, 0.14), transparent 70%);
  content: "";
  height: 16rem;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -2.4rem;
  transform: translateX(-50%);
  width: 26rem;
  z-index: -1;
}

/* Contact modal — 企业微信二维码弹窗 */
.dl-modal--contact {
  max-width: 27rem;
  padding: 2.2rem 2.2rem 2.4rem;
  text-align: center;
}

.dl-contact__badge {
  align-items: center;
  background: rgba(212, 184, 122, 0.1);
  border: 1px solid rgba(212, 184, 122, 0.28);
  border-radius: 99rem;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.4rem;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  text-transform: uppercase;
}

.dl-contact__badge svg { height: 0.85rem; width: 0.85rem; }

.dl-contact__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 0.6rem;
}

.dl-contact__desc {
  color: var(--color-text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0 auto 1.6rem;
  max-width: 22rem;
}

.dl-contact__qr-wrap {
  margin: 0 auto 1.6rem;
  max-width: 15rem;
  position: relative;
}

.dl-contact__qr-glow {
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.55), rgba(190, 178, 240, 0.4));
  border-radius: 1.6rem;
  filter: blur(1.6rem);
  inset: -0.4rem;
  opacity: 0.55;
  position: absolute;
  z-index: 0;
}

.dl-contact__qr {
  border-radius: 1.1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0 1rem 2.2rem;
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}

.dl-contact__tips {
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.dl-contact__tip {
  align-items: flex-start;
  background: rgba(232, 212, 168, 0.03);
  border: 1px solid rgba(232, 212, 168, 0.08);
  border-radius: 0.8rem;
  color: var(--color-text-tertiary);
  display: flex;
  font-size: 0.78rem;
  gap: 0.6rem;
  line-height: 1.55;
  padding: 0.7rem 0.85rem;
}

.dl-contact__tip strong {
  color: var(--dl-cream);
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

.dl-contact__tip-icon { flex-shrink: 0; font-size: 1.05rem; line-height: 1.4; }

/* WhatsApp contact — US site */
.dl-contact--whatsapp .dl-contact__badge--wa {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  color: #6ee7a0;
}

.dl-contact__wa-icon,
.dl-contact__wa-mark svg {
  display: block;
  height: 1rem;
  width: 1rem;
}

.dl-contact__wa-hero {
  align-items: center;
  display: flex;
  height: 5.5rem;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  width: 5.5rem;
}

.dl-contact__wa-glow {
  background: radial-gradient(circle, rgba(37, 211, 102, 0.35) 0%, rgba(37, 211, 102, 0) 70%);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.dl-contact__wa-mark {
  align-items: center;
  background: linear-gradient(145deg, #25d366, #128c7e);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.28);
  color: #fff;
  display: inline-flex;
  height: 4rem;
  justify-content: center;
  position: relative;
  width: 4rem;
  z-index: 1;
}

.dl-contact__wa-mark svg {
  height: 2rem;
  width: 2rem;
}

.dl-contact__wa-number {
  color: var(--dl-cream);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 1.15rem;
}

.dl-btn--wa {
  background: linear-gradient(135deg, #25d366, #1da851);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  gap: 0.45rem;
  margin-top: 0;
  width: auto;
}

.dl-btn--wa:hover {
  background: linear-gradient(135deg, #2ee26f, #25d366);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.dl-contact__wa-copy {
  background: transparent;
  border: none;
  color: rgba(232, 212, 168, 0.55);
  cursor: pointer;
  display: block;
  font-size: 0.78rem;
  margin: 0.75rem auto 0;
  padding: 0.25rem 0.5rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.dl-contact__wa-copy:hover {
  color: rgba(232, 212, 168, 0.85);
}

.dl-contact__wa-copy.is-copied {
  color: #6ee7a0;
}

.dl-contact__wa-hint {
  color: rgba(232, 212, 168, 0.42);
  font-size: 0.74rem;
  line-height: 1.5;
  margin: 0.85rem auto 0;
  max-width: 18rem;
}

/* WhatsApp FAB — bottom-right */
.dl-wa-fab {
  align-items: center;
  background: linear-gradient(145deg, #25d366, #128c7e);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99rem;
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(37, 211, 102, 0.2);
  color: #fff;
  display: inline-flex;
  gap: 0.55rem;
  opacity: 0;
  padding: 0.72rem 1rem 0.72rem 0.82rem;
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  text-decoration: none;
  transform: translateY(12px) scale(0.94);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease, box-shadow 0.25s ease;
  z-index: 900;
}

.dl-wa-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dl-wa-fab:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(37, 211, 102, 0.35);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

.dl-wa-fab__pulse {
  animation: dl-wa-pulse 2.4s ease-out infinite;
  background: rgba(37, 211, 102, 0.45);
  border-radius: 99rem;
  inset: 0;
  position: absolute;
  z-index: -1;
}

@keyframes dl-wa-pulse {
  0% { opacity: 0.65; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.45); }
  100% { opacity: 0; transform: scale(1.45); }
}

.dl-wa-fab__icon {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  height: 1.35rem;
  justify-content: center;
  width: 1.35rem;
}

.dl-wa-fab__svg {
  display: block;
  height: 100%;
  width: 100%;
}

.dl-wa-fab__label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

body.dl-modal-lock .dl-wa-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.92);
}

@media (max-width: 47.99rem) {
  .dl-wa-fab {
    border-radius: 50%;
    height: 3.35rem;
    justify-content: center;
    padding: 0;
    width: 3.35rem;
  }

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

/* Utility */
.dl-mt-lg { margin-top: 3rem; }
.dl-center { text-align: center; }

@media (max-width: 48rem) {
  .dl-hero { min-height: auto; padding-bottom: 3rem; }
  .dl-hero__inner { padding: 0 1rem; }
  .dl-hero__nums { gap: 1.2rem; }
  .dl-num-val { font-size: 1.4rem; }
  .dl-orbit { --orbit-r: 22rem; }
  .dl-orbit__icon { height: 2rem; width: 2rem; }
  .dl-orbit__name { font-size: 0.5rem; max-width: 3rem; }
  .dl-spotlight { display: none; }
  .dl-sec { padding: 4rem 0; }
  .dl-sec__inner { padding: 0 1.2rem; }
  .dl-footer__top { gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dl-orbit--go,
  .dl-orbit--go .dl-orbit__spin,
  .dl-orbit--go .dl-orbit__icon-wrap,
  .dl-bg__flow,
  .dl-bg__orb,
  .dl-bg__grid,
  .dl-hero__typing,
  .dl-hero__chip-pulse {
    animation: none !important;
  }
  .dl-orbit { opacity: 0.35; transform: scale(1); }
  .dl-orbit__icon-wrap { opacity: 0.35; }
  .dl-reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------- */
/* Dream Taken · premium polish layer                                     */
/* ---------------------------------------------------------------------- */
body:not(.dl-ready) main {
  opacity: 0;
}

body.dl-ready main {
  opacity: 1;
  transition: opacity 0.55s ease;
}

body.dl-locale-switching main {
  opacity: 0.92;
  transition: opacity 0.22s ease;
}

.dl-header {
  opacity: 0;
  transform: translateY(-0.35rem);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.dl-header.is-visible {
  opacity: 1;
  transform: none;
}

.dl-reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.dl-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.dl-orbit__fallback {
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 184, 122, 0.22), rgba(184, 160, 232, 0.18));
  border: 1px solid rgba(232, 212, 168, 0.22);
  border-radius: 50%;
  color: var(--dl-cream);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 2.4rem;
  justify-content: center;
  width: 2.4rem;
}

.dl-locale-toast {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(12, 12, 12, 0.88);
  border: 1px solid rgba(212, 184, 122, 0.28);
  border-radius: 99rem;
  bottom: 1.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  color: var(--color-text-primary);
  display: flex;
  font-size: 0.78rem;
  gap: 0.55rem;
  left: 50%;
  max-width: min(92vw, 28rem);
  opacity: 0;
  padding: 0.65rem 0.85rem 0.65rem 1rem;
  position: fixed;
  transform: translate(-50%, 0.6rem);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 9999;
}

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

.dl-locale-toast__close {
  background: rgba(232, 212, 168, 0.08);
  border: none;
  border-radius: 50%;
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: 1rem;
  height: 1.6rem;
  line-height: 1;
  width: 1.6rem;
}

/* AI Agent private beta — site-wide banner + badges */
html[data-agent-status="beta"] {
  --banner-h: 2.85rem;
}

html[data-agent-status="beta"] main {
  padding-top: var(--banner-h);
}

html[data-agent-status="beta"] body[data-page="build"] main {
  padding-top: var(--banner-h);
}

html[data-agent-status="beta"] .dl-pagehero {
  padding-top: calc(8.5rem + var(--banner-h));
}

.dl-mnav-backdrop {
  top: calc(var(--header-h) + var(--banner-h, 0px));
}

.dl-agent-beta-banner {
  backdrop-filter: blur(0.75rem);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(212, 184, 122, 0.2);
  box-shadow: 0 0.35rem 1.2rem rgba(0, 0, 0, 0.35);
  left: 0;
  padding: 0.6rem 1rem;
  position: fixed;
  right: 0;
  top: var(--header-h);
  z-index: 190;
}

.dl-agent-beta-banner[hidden] {
  display: none !important;
}

.dl-agent-beta-banner__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  justify-content: center;
  margin: 0 auto;
  max-width: min(1120px, 100%);
}

.dl-agent-beta-banner__text {
  color: var(--color-text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.dl-agent-beta-banner__text--short {
  display: none;
}

.dl-agent-beta-banner__cta {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.dl-agent-beta-banner__cta-short {
  display: none;
}

.dl-agent-beta-banner__cta:hover {
  text-decoration: underline;
}

/* Mobile — single-row compact strip (no multi-line block) */
@media (max-width: 48rem) {
  :root {
    --header-bar-h: 3.25rem;
  }

  html[data-agent-status="beta"] {
    --banner-h: 2.5rem;
  }

  body.dl-nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .dl-header {
    background: rgba(3, 3, 3, 0.98);
    border-bottom-color: rgba(212, 184, 122, 0.08);
    box-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.55);
  }

  .dl-header__inner {
    gap: 0.65rem;
    padding: 0 0.85rem;
  }

  .dl-brand {
    flex: 1 1 auto;
    gap: 0.5rem;
    min-width: 0;
  }

  .dl-brand__mark {
    height: 1.65rem;
    width: 1.65rem;
  }

  .dl-brand__cn {
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-brand__sep,
  .dl-brand__en {
    display: none !important;
  }

  .dl-header__actions {
    gap: 0.4rem;
  }

  .dl-lang--header .dl-lang__track {
    height: 1.85rem;
    padding: 0 0.12rem 0 0.32rem;
  }

  .dl-lang--header .dl-lang__icon {
    display: none;
  }

  .dl-lang--header .dl-lang__indicator {
    bottom: 0.12rem;
    left: 0.32rem;
    top: 0.12rem;
    width: 1.72rem;
  }

  .dl-lang--header .dl-lang__track[data-active="en"] .dl-lang__indicator {
    transform: translateX(1.72rem);
  }

  .dl-lang--header .dl-lang__opt {
    font-size: 0.64rem;
    min-width: 1.72rem;
    padding: 0.32rem 0.38rem;
  }

  .dl-nav__toggle {
    align-items: center;
    background: rgba(232, 212, 168, 0.04);
    border-color: rgba(212, 184, 122, 0.22);
    border-radius: 0.55rem;
    display: inline-flex;
    flex-shrink: 0;
    height: 2.15rem;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    width: 2.15rem;
  }

  .dl-nav__toggle.is-open {
    background: rgba(212, 184, 122, 0.12);
    border-color: rgba(212, 184, 122, 0.45);
  }

  .dl-mnav__link {
    align-items: center;
    border-bottom-color: rgba(232, 212, 168, 0.06);
    font-size: 0.95rem;
    padding: 0.85rem 0.15rem;
  }

  .dl-mnav__link span {
    color: var(--color-text-tertiary);
    font-size: 0.72rem;
    font-weight: 500;
    max-width: 52%;
    text-align: right;
  }

  .dl-agent-beta-banner {
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.98), rgba(12, 11, 9, 0.98));
    border-bottom-color: rgba(212, 184, 122, 0.14);
    box-shadow: 0 0.2rem 0.85rem rgba(0, 0, 0, 0.4);
    cursor: pointer;
    padding: 0;
  }

  .dl-agent-beta-banner__inner {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-start;
    min-height: 2.5rem;
    padding: 0 0.65rem 0 0.75rem;
  }

  .dl-agent-beta-banner__inner::before {
    background: linear-gradient(180deg, rgba(212, 184, 122, 0.55), rgba(184, 160, 232, 0.35));
    border-radius: 0 2px 2px 0;
    content: "";
    flex-shrink: 0;
    height: 1.35rem;
    margin-right: 0.15rem;
    width: 2px;
  }

  .dl-agent-beta-banner .dl-beta-badge {
    flex-shrink: 0;
    font-size: 0.62rem;
    padding: 0.16rem 0.45rem;
  }

  .dl-agent-beta-banner__text--long {
    display: none;
  }

  .dl-agent-beta-banner__text--short {
    display: block;
    flex: 1 1 auto;
    font-size: 0.76rem;
    line-height: 1.25;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dl-agent-beta-banner__cta-long {
    display: none;
  }

  .dl-agent-beta-banner__cta-short {
    align-items: center;
    background: rgba(212, 184, 122, 0.14);
    border: 1px solid rgba(212, 184, 122, 0.38);
    border-radius: 99rem;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    gap: 0.15rem;
    line-height: 1;
    padding: 0.32rem 0.65rem;
    text-decoration: none;
  }

  .dl-agent-beta-banner__cta-short:hover {
    background: rgba(212, 184, 122, 0.22);
    text-decoration: none;
  }

  .dl-agent-beta-banner__cta-short svg {
    height: 0.75rem;
    width: 0.75rem;
  }
}

@media (min-width: 48.01rem) {
  .dl-agent-beta-banner__cta-long {
    display: inline;
  }
}

.dl-beta-badge {
  background: rgba(212, 184, 122, 0.14);
  border: 1px solid rgba(212, 184, 122, 0.38);
  border-radius: 99rem;
  color: var(--color-primary);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.22rem 0.55rem;
  text-transform: uppercase;
}

.dl-nav__hint.dl-beta-badge {
  font-size: 0.62rem;
  margin-left: 0.35rem;
  padding: 0.18rem 0.45rem;
  vertical-align: middle;
}

.dl-agent-beta-note {
  border-left: 2px solid rgba(212, 184, 122, 0.45);
  margin-top: 0.85rem !important;
  padding-left: 0.85rem;
}

html[data-agent-status="beta"] .dl-agent-live-only {
  display: none !important;
}
