/* 다이노픽 메인 — 검정 바탕 (스크롤 유지) */

@keyframes dp-bg-grid-pulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes dp-orange-orbit {
  0% {
    transform: translate3d(-54%, -4%, 0) scale(1);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(-46%, 3%, 0) scale(1.08);
    opacity: 0.76;
  }
  100% {
    transform: translate3d(-54%, -4%, 0) scale(1);
    opacity: 0.58;
  }
}

@keyframes dp-highlight-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes dp-live-orb-drift {
  0% {
    transform: translate3d(var(--x0), var(--y0), 0) scale(var(--s0));
    opacity: var(--o0);
  }
  50% {
    transform: translate3d(var(--x1), var(--y1), 0) scale(var(--s1));
    opacity: var(--o1);
  }
  100% {
    transform: translate3d(var(--x0), var(--y0), 0) scale(var(--s0));
    opacity: var(--o0);
  }
}

@keyframes dp-aurora-flow {
  0% {
    transform: translate3d(var(--x0), var(--y0), 0) rotate(var(--r0)) scaleX(var(--sx0));
    opacity: var(--o0);
  }
  50% {
    transform: translate3d(var(--x1), var(--y1), 0) rotate(var(--r1)) scaleX(var(--sx1));
    opacity: var(--o1);
  }
  100% {
    transform: translate3d(var(--x0), var(--y0), 0) rotate(var(--r0)) scaleX(var(--sx0));
    opacity: var(--o0);
  }
}

@keyframes dp-live-stream-sweep {
  0% {
    transform: translate3d(var(--x), -120%, 0) rotate(var(--r));
    opacity: 0;
  }
  24%,
  62% {
    opacity: var(--o);
  }
  100% {
    transform: translate3d(calc(var(--x) + var(--drift)), 120%, 0) rotate(var(--r));
    opacity: 0;
  }
}

@keyframes dp-live-card-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes dp-test-border-pulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
  }
  50% {
    border-color: rgba(255, 107, 53, 0.32);
    box-shadow:
      0 18px 52px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 107, 53, 0.14),
      0 0 28px rgba(255, 107, 53, 0.08);
  }
}

@keyframes dp-button-glow-pulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.24);
  }
  50% {
    box-shadow:
      0 10px 30px rgba(255, 107, 53, 0.38),
      0 0 22px rgba(255, 107, 53, 0.16);
  }
}

@keyframes dp-free-badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes dp-cta-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* overflow-y: auto — 서브 페이지용. 메인(/)은 page-landing 규칙으로 스크롤 없음 */
.landing-main--dashboard {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  isolation: isolate;
  padding: 0;
  background: transparent;
}

/* 메인 히어로: 배너·푸터 포함 한 화면, 세로 스크롤 없음 */
.page-landing .landing-main--dashboard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

body.daino-shell-mounted.page-landing .landing-main--dashboard {
  padding-top: 0;
  padding-bottom: 0;
}

.page-landing .dp-dash {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.page-landing .dp-top {
  flex: 1;
  min-height: 0;
}

.page-landing .landing-site-footer {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .dp-top::before,
  .dp-top::after,
  .dp-title-highlight,
  .dp-live-orb,
  .dp-live-stream,
  .dp-cta-tile,
  .dp-cta-icon,
  .dp-test,
  .dp-test-button,
  .dp-hero-free-note__badge,
  .dp-reveal,
  .dp-reveal::before {
    animation: none;
    transition: none;
  }

  .dp-top::before {
    opacity: 0.35;
  }

  .dp-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .dp-title-highlight {
    background: none;
    -webkit-text-fill-color: #ff8a5b;
    color: #ff8a5b;
  }
}

.dp-dash {
  /* 액센트는 사이드바 등과 맞출 수 있게 유지하되, 메인 UI에는 거의 쓰지 않음 */
  --dp-accent: #ff6b35;
  --dp-accent-2: #ff8a5b;
  --dp-text: #f1f5f9;
  --dp-muted: #b8c2d1;
  --dp-soft: #98a4b5;
  --dp-border: rgba(255, 255, 255, 0.1);
  --dp-chrome: #94a3b8;
  --dp-chrome-soft: rgba(148, 163, 184, 0.14);
  --dp-blue: #7dd3fc;
  --dp-blue-soft: rgba(125, 211, 252, 0.1);
  --dp-green: #86efac;
  --dp-green-soft: rgba(134, 239, 172, 0.08);
  --dp-radius: 22px;
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  color: var(--dp-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dp-top {
  width: 100%;
  margin: 0;
  min-height: min(920px, 100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.2rem, 5vw, 5rem);
  text-align: center;
}

.dp-top {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.dp-top::before,
.dp-top::after {
  content: none;
  display: none;
}

.dp-top > * {
  position: relative;
  z-index: 1;
}

.dp-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.dp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.dp-live-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.dp-live-orb,
.dp-live-stream {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.dp-live-orb {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255, 247, 237, 0.26), rgba(255, 138, 91, 0.18) 28%, rgba(255, 107, 53, 0.06) 54%, transparent 74%);
  filter: blur(var(--blur));
  mix-blend-mode: screen;
  animation: dp-live-orb-drift var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

.dp-live-orb--one {
  --size: min(52vw, 34rem);
  --blur: 30px;
  --dur: 18s;
  --delay: -1s;
  --x0: 4vw;
  --y0: 5vh;
  --x1: 18vw;
  --y1: 14vh;
  --s0: 0.96;
  --s1: 1.08;
  --s2: 0.96;
  --o0: 0.16;
  --o1: 0.32;
  --o2: 0.18;
}

.dp-live-orb--two {
  --size: min(60vw, 42rem);
  --blur: 36px;
  --dur: 22s;
  --delay: -4.2s;
  --x0: 58vw;
  --y0: 2vh;
  --x1: 44vw;
  --y1: 18vh;
  --s0: 1;
  --s1: 1.08;
  --s2: 1;
  --o0: 0.16;
  --o1: 0.32;
  --o2: 0.16;
}

.dp-live-orb--three {
  --size: min(44vw, 28rem);
  --blur: 32px;
  --dur: 20s;
  --delay: -7.2s;
  --x0: 35vw;
  --y0: 34vh;
  --x1: 50vw;
  --y1: 28vh;
  --s0: 0.92;
  --s1: 1.03;
  --s2: 0.92;
  --o0: 0.1;
  --o1: 0.24;
  --o2: 0.1;
}

.dp-live-stream {
  top: 0;
  left: 0;
  width: min(110vw, 78rem);
  height: min(32vw, 21rem);
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.06) 18%, rgba(255, 179, 143, 0.16) 46%, rgba(255, 107, 53, 0.08) 68%, transparent 100%);
  border-radius: 999px;
  filter: blur(24px);
  mix-blend-mode: screen;
  transform-origin: 50% 50%;
  animation: dp-aurora-flow var(--dur) ease-in-out infinite;
  animation-delay: var(--delay);
}

.dp-live-stream::after {
  content: "";
  position: absolute;
  inset: 42% 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 205, 0.28), transparent);
  box-shadow: 0 0 24px rgba(255, 183, 140, 0.24);
}

.dp-live-stream--one {
  --x0: -24vw;
  --y0: 10vh;
  --x1: 16vw;
  --y1: 18vh;
  --r0: -10deg;
  --r1: -4deg;
  --sx0: 0.92;
  --sx1: 1.08;
  --dur: 17s;
  --delay: -1.4s;
  --o0: 0.12;
  --o1: 0.32;
}

.dp-live-stream--two {
  --x0: 28vw;
  --y0: 32vh;
  --x1: -10vw;
  --y1: 22vh;
  --r0: 8deg;
  --r1: 2deg;
  --sx0: 1.04;
  --sx1: 0.88;
  --dur: 21s;
  --delay: -5.8s;
  --o0: 0.1;
  --o1: 0.26;
}

.dp-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dp-chrome);
}

.dp-title {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.dp-title-line {
  display: block;
}

.dp-title-line + .dp-title-line::before {
  content: none;
}

.dp-title-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.04em;
  color: #ff8a5b;
  background: linear-gradient(
    90deg,
    #ff8a5b 0%,
    #ffd4bc 38%,
    #ff6b35 50%,
    #ffd4bc 62%,
    #ff8a5b 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: dp-highlight-shimmer 5.5s ease-in-out infinite;
}

.dp-title-highlight::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.08em;
  height: 0.12em;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.22);
  filter: blur(0.5px);
  opacity: 0.85;
  z-index: -1;
}

.dp-subtitle {
  max-width: 46rem;
  margin: 0.85rem auto 1.75rem;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  line-height: 1.65;
  color: var(--dp-muted);
  font-weight: 650;
  letter-spacing: -0.01em;
}

.dp-hero-free-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  max-width: 46rem;
  margin: 0.95rem auto 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: clamp(0.86rem, 1.45vw, 0.98rem);
  line-height: 1.45;
  color: #c8d3e0;
  font-weight: 600;
}

.dp-hero-free-note__badge {
  display: inline-block;
  padding: 0.14rem 0.48rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: #e2e8f0;
  animation: dp-free-badge-pulse 3.2s ease-in-out infinite;
}

.dp-hero-free-note strong {
  color: #f8fafc;
  font-weight: 850;
}

.dp-subtitle strong {
  color: #ffb38f;
  font-weight: 850;
}


.dp-signup-banner {
  flex-shrink: 0;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid #3b4252;
  background: #232830;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dp-signup-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #60a5fa;
}

.dp-signup-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0.7rem clamp(1rem, 2.5vw, 1.5rem) 0.7rem clamp(1.15rem, 2.8vw, 1.4rem);
}

.dp-signup-banner__content {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.15rem;
  min-width: 0;
  flex: 1;
}

.dp-signup-banner__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.dp-signup-banner__badge {
  display: inline-block;
  padding: 0.18rem 0.52rem;
  border-radius: 4px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #fff;
  background: #3b82f6;
}

.dp-signup-banner__tagline {
  font-size: 0.86rem;
  font-weight: 800;
  color: #f8fafc;
  white-space: nowrap;
}

.dp-signup-banner__text {
  margin: 0;
  min-width: 0;
  font-size: clamp(0.84rem, 1.45vw, 0.94rem);
  line-height: 1.45;
  color: #cbd5e1;
  font-weight: 650;
  text-align: left;
}

.dp-signup-banner__text strong {
  color: #fff;
  font-weight: 850;
}

.dp-signup-banner__detail {
  display: inline;
  margin-left: 0.45rem;
  padding-left: 0.5rem;
  border-left: 1px solid #475569;
  color: #94a3b8;
  font-weight: 550;
}

.dp-signup-banner__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.dp-signup-banner__link:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #0f172a;
}

.dp-signup-banner__link:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

.dp-signup-banner__offer--short {
  display: none;
}

@media (min-width: 768px) {
  .dp-signup-banner__inner {
    justify-content: center;
    gap: 1rem 1.5rem;
    padding-left: clamp(1rem, 2.5vw, 1.5rem);
    padding-right: clamp(1rem, 2.5vw, 1.5rem);
  }

  .dp-signup-banner__content {
    flex: 0 1 auto;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .dp-signup-banner__tags {
    justify-content: center;
  }

  .dp-signup-banner__text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .dp-signup-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 0.75rem;
    padding: 0.72rem 0.9rem;
  }

  .dp-signup-banner__content {
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    min-width: 0;
  }

  .dp-signup-banner__tagline,
  .dp-signup-banner__detail,
  .dp-signup-banner__offer--full {
    display: none;
  }

  .dp-signup-banner__offer--short {
    display: inline;
  }

  .dp-signup-banner__text {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
  }

  .dp-signup-banner__link {
    width: auto;
    flex-shrink: 0;
    padding: 0.5rem 0.82rem;
    font-size: 0.78rem;
  }
}

.dp-test {
  width: min(100%, 38rem);
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem;
  margin: 0 auto 1rem;
  border-radius: 16px;
  border: 1px solid var(--dp-border);
  background: rgba(15, 17, 20, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  animation: dp-test-border-pulse 3.6s ease-in-out infinite;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.dp-test:focus-within {
  animation: none;
  border-color: rgba(255, 107, 53, 0.42);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 107, 53, 0.2),
    0 0 32px rgba(255, 107, 53, 0.12);
}

.dp-test-input {
  min-width: 0;
  flex: 1;
  height: 2.85rem;
  padding: 0 0.95rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dp-text);
  font: inherit;
  font-size: 0.9rem;
}

.dp-test-input::placeholder {
  color: #8f8f8f;
}

.dp-test-button {
  flex-shrink: 0;
  height: 2.85rem;
  padding: 0 1.15rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffb38f 38%, #ff6b35 100%);
  color: #140b06;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.24);
  animation: dp-button-glow-pulse 2.8s ease-in-out infinite;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.18s ease;
}

.dp-test-button:hover {
  animation: none;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffffff 0%, #ffc4a8 42%, #ff8555 100%);
  box-shadow:
    0 12px 32px rgba(255, 107, 53, 0.36),
    0 0 24px rgba(255, 107, 53, 0.18);
}

.dp-cta-grid {
  width: min(100%, 44rem);
  display: grid;
  gap: 0.85rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

@media (min-width: 720px) {
  .dp-cta-grid {
    width: min(100%, 52rem);
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.dp-cta-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1.15rem 1.05rem;
  min-height: 5.5rem;
  border-radius: 18px;
  text-decoration: none;
  color: var(--dp-text);
  text-align: left;
  border: 1px solid var(--dp-border);
  background: rgba(22, 24, 28, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  animation: dp-live-card-breathe 6.4s ease-in-out infinite;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.dp-cta-tile--agent {
  animation-delay: -3.2s;
}

.dp-cta-tile:hover {
  animation: none;
  transform: translateY(-2px);
}

.dp-cta-tile:hover .dp-cta-icon {
  animation: none;
  transform: scale(1.06) translateY(-2px);
}

.dp-cta-tile--web {
  border-color: rgba(125, 211, 252, 0.22);
  background: linear-gradient(135deg, var(--dp-blue-soft) 0%, rgba(22, 24, 28, 0.94) 55%);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.06),
    0 16px 44px rgba(0, 0, 0, 0.38);
}

.dp-cta-tile--web:hover {
  border-color: rgba(125, 211, 252, 0.38);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.42);
}

.dp-cta-tile--agent {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, var(--dp-green-soft) 0%, rgba(18, 20, 22, 0.95) 52%);
}

.dp-cta-tile--agent:hover {
  border-color: rgba(134, 239, 172, 0.28);
}

.dp-cta-icon {
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--dp-blue);
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.22);
  animation: dp-cta-icon-float 4.8s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.dp-cta-tile--agent .dp-cta-icon {
  animation-delay: -2.4s;
  color: var(--dp-green);
  background: rgba(134, 239, 172, 0.08);
  border-color: rgba(134, 239, 172, 0.2);
}

.dp-cta-icon i[class*="fa-"] {
  font-size: 1.28rem;
  line-height: 1;
}

.dp-cta-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dp-cta-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
}

.dp-cta-tile--agent .dp-cta-tag {
  color: #a7f3d0;
}

.dp-cta-name {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.dp-cta-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--dp-muted);
  font-weight: 500;
}

.dp-cta-arrow {
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  padding: 0 0.15rem 0 0.25rem;
  transition:
    transform 0.22s ease,
    color 0.2s ease;
}

.dp-cta-tile:hover .dp-cta-arrow {
  color: #cbd5e1;
  transform: translateX(4px);
}

@media (max-width: 767px) {
  /* 모바일: 배너·모바일바·푸터 때문에 한 화면 고정 시 잘림 → 스크롤 허용 */
  .page-landing .landing-main--dashboard {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-landing .dp-dash {
    flex: none;
    min-height: auto;
  }

  .page-landing .dp-top {
    flex: none;
    min-height: auto;
    justify-content: flex-start;
    padding: 1rem 1rem 0.5rem;
  }

  .page-landing .landing-site-footer {
    padding-bottom: max(4.85rem, calc(env(safe-area-inset-bottom, 0px) + 3.85rem));
  }

  .page-landing .landing-site-footer-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .page-landing .landing-site-footer-links {
    font-size: 0.72rem;
  }

  .page-landing .landing-site-footer-line {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .dp-live-bg {
    opacity: 0.55;
  }

  .dp-title {
    font-size: clamp(1.62rem, 7vw, 2.05rem);
    line-height: 1.2;
  }

  .dp-hero-free-note {
    margin-top: 0.6rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .dp-hero-free-note__badge {
    font-size: 0.66rem;
    animation: none;
  }

  .dp-subtitle {
    margin: 0.6rem auto 0.95rem;
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .dp-test {
    flex-direction: row;
    align-items: stretch;
    padding: 0.28rem;
    margin-bottom: 0.85rem;
  }

  .dp-test-input {
    height: 2.65rem;
    padding: 0 0.65rem;
    font-size: 0.84rem;
  }

  .dp-test-button {
    width: auto;
    height: 2.65rem;
    padding: 0 0.95rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .dp-cta-grid {
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .dp-cta-tile {
    min-height: 0;
    padding: 0.85rem 0.9rem;
    gap: 0.7rem;
    animation: none;
  }

  .dp-cta-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    animation: none;
  }

  .dp-cta-icon i[class*="fa-"] {
    font-size: 1.05rem;
  }

  .dp-cta-name {
    font-size: 0.94rem;
  }

  .dp-cta-desc {
    font-size: 0.73rem;
    line-height: 1.38;
  }

  .dp-cta-arrow {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .page-landing .dp-top {
    padding: 0.85rem 0.85rem 0.35rem;
  }

  .dp-signup-banner__text {
    font-size: 0.8rem;
  }

  .dp-cta-desc {
    display: none;
  }
}
