/* Homepage Digital Growth Core — GPU transforms only; decorative, not content. */

.dgc-traveler {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 850;
  width: 36px;
  height: 36px;
  margin: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0;
  --dgc-morph: 0;
  transition: opacity 0.4s ease;
}

.dgc-traveler.is-on {
  opacity: 1;
}

.dgc-traveler.is-on.is-docked {
  opacity: 0;
}

.dgc-traveler.is-logo {
  z-index: 1100;
}

.site-footer .brand-mark.dgc-footer-receive img {
  animation: dgc-footer-catch 0.7s cubic-bezier(.22,.61,.36,1);
  filter: drop-shadow(0 0 14px rgba(147, 197, 253, 0.7));
}

@keyframes dgc-footer-catch {
  0% { transform: scale(0.82); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.14); filter: drop-shadow(0 0 18px rgba(96, 165, 250, 0.85)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.45)); }
}

.dgc-travel-ball {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #e8f2ff 42%, #bfdbfe 78%, #93c5fd 100%);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.85),
    0 4px 12px rgba(10, 22, 40, 0.18),
    0 0 14px rgba(96, 165, 250, 0.45);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.dgc-launch-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 2px solid rgba(29, 78, 216, 0.45);
  opacity: 0;
  pointer-events: none;
}

.dgc-traveler.is-launch .dgc-launch-ring {
  animation: dgc-launch-ring 1.35s cubic-bezier(.22,.61,.36,1) forwards;
}

.dgc-traveler.is-launch .dgc-launch-ring--b {
  animation-delay: 0.22s;
}

@keyframes dgc-launch-ring {
  0% { opacity: 0.9; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(2.4); }
}

.dgc-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.dgc-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: #60a5fa;
  opacity: 0;
}

.dgc-traveler.is-burst .dgc-particle {
  animation: dgc-burst 0.95s cubic-bezier(.22,.61,.36,1) forwards;
}

.dgc-traveler.is-gather .dgc-particle {
  animation: dgc-gather 0.65s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes dgc-burst {
  0% { opacity: 0; transform: translate(0, 0) scale(1); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.25); }
}

@keyframes dgc-gather {
  0% { opacity: 1; transform: translate(var(--dx), var(--dy)) scale(0.35); }
  100% { opacity: 0; transform: translate(0, 0) scale(1); }
}

.dgc-traveler.is-launch .dgc-travel-ball {
  animation: dgc-launch-pop 1.25s cubic-bezier(.22,.61,.36,1);
}

@keyframes dgc-launch-pop {
  0% { transform: scale(0.7); }
  35% { transform: scale(1.22); }
  70% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

.dgc-travel-mark {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: center;
}

.dgc-traveler.is-arrive .dgc-travel-ball {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95),
    0 4px 12px rgba(10, 22, 40, 0.18),
    0 0 18px rgba(96, 165, 250, 0.65);
}

.dgc-traveler.is-milestone .dgc-travel-ball {
  box-shadow:
    0 0 0 2px #fff,
    0 0 20px rgba(29, 78, 216, 0.45);
}

.dgc-traveler:not(.is-logo):not(.is-rest) .dgc-travel-ball {
  animation: dgc-idle-bob 3.2s ease-in-out infinite;
}

.dgc-traveler.is-rest .dgc-travel-ball {
  animation: dgc-bump-bump 0.62s cubic-bezier(.22,.61,.36,1) 2;
}

.dgc-guide {
  position: absolute;
  left: calc(100% + 10px);
  top: -6px;
  z-index: 4;
  min-width: 148px;
  max-width: 220px;
  padding: 10px 12px 11px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #e0edff 100%);
  color: #0A1628;
  border: 1px solid #93c5fd;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.16);
  opacity: 0;
  transform: translate3d(-8px, 6px, 0) scale(0.86);
  pointer-events: none;
  transform-origin: 0 12px;
}

.dgc-guide::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 14px;
  width: 10px;
  height: 10px;
  background: #e8f2ff;
  border-left: 1px solid #93c5fd;
  border-bottom: 1px solid #93c5fd;
  transform: rotate(45deg);
  border-radius: 2px;
}

.dgc-guide b,
.dgc-guide i {
  display: block;
  font-style: normal;
  line-height: 1.3;
}

.dgc-guide b {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0A1628;
}

.dgc-guide i {
  margin-top: 3px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #1d4ed8;
}

.dgc-traveler.is-speaking .dgc-guide {
  animation: dgc-guide-in 0.5s cubic-bezier(.22,.61,.36,1) forwards;
}

.dgc-traveler.is-guide-out .dgc-guide {
  animation: dgc-guide-out 0.42s ease forwards;
}

@keyframes dgc-guide-in {
  0% { opacity: 0; transform: translate3d(-8px, 8px, 0) scale(0.84); }
  62% { opacity: 1; transform: translate3d(2px, -2px, 0) scale(1.04); }
  100% { opacity: 1; transform: none; }
}

@keyframes dgc-guide-out {
  0% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translate3d(8px, -10px, 0) scale(0.9); }
}

@keyframes dgc-bump-bump {
  0%, 100% { transform: translateY(0) scale(1); }
  28% { transform: translateY(-11px) scale(1.1); }
  52% { transform: translateY(0) scale(0.94); }
  76% { transform: translateY(-7px) scale(1.06); }
}

.site-header .brand-mark {
  transition: opacity 0.85s cubic-bezier(.22,.61,.36,1), transform 0.85s cubic-bezier(.22,.61,.36,1), filter 0.85s cubic-bezier(.22,.61,.36,1);
}

.site-header .brand-mark.dgc-mark-dissolve {
  opacity: 0;
  transform: scale(0.15);
  filter: blur(5px);
}

[data-dgc-hit] h2[data-dgc-split],
[data-dgc-hit] h2.section-title {
  position: relative;
}

[data-dgc-hit].is-lit h2[data-dgc-split],
[data-dgc-hit].is-lit h2.section-title,
[data-dgc-hit].is-hit h2[data-dgc-split],
[data-dgc-hit].is-hit h2.section-title {
  animation: dgc-title-rise 0.8s cubic-bezier(.22,.61,.36,1);
}

@keyframes dgc-title-rise {
  0% { transform: translate3d(0, 12px, 0); opacity: 0.55; filter: blur(3px); }
  48% { transform: translate3d(0, -3px, 0); opacity: 1; filter: blur(0); color: #1d4ed8; }
  100% { transform: none; filter: none; }
}

[data-dgc-hit].is-lit .dgc-stage__copy > p:not(.dgc-stage__kicker) {
  animation: dgc-copy-in 0.5s ease both;
}

@keyframes dgc-copy-in {
  from { opacity: 0.55; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes dgc-idle-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.dgc-dock {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-banner__fx .dgc-dock--hero {
  position: absolute;
  right: 18%;
  top: 48%;
  width: 12px;
  height: 12px;
  z-index: 2;
}

.dgc-live .dgc-hero-fallback {
  opacity: 0;
  visibility: hidden;
}

.dgc-hero-fallback {
  position: absolute;
  right: 16%;
  top: 42%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.55), rgba(29, 78, 216, 0.55) 45%, transparent 70%);
  box-shadow: 0 0 40px rgba(29, 78, 216, 0.35);
  pointer-events: none;
  z-index: 1;
  animation: dgc-float 5s ease-in-out infinite;
}

@keyframes dgc-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

body[data-page="home"] #siteHeader {
  min-height: 0;
}

.hero-story-kicker {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(10, 22, 40, 0.45);
}

.dgc-story {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 18%, #f8fafc 100%);
}

.dgc-stage {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: visible;
}

.dgc-stage + .dgc-stage {
  border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.dgc-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.dgc-stage__copy .dgc-stage__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  line-height: 1.3;
  max-width: none;
}

.dgc-stage__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.dgc-stage__copy p {
  margin: 0;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 36rem;
}

.dgc-visual {
  position: relative;
}

.dgc-visual.dgc-ct,
.dgc-cta-visual.dgc-ct {
  overflow: visible;
}

.dgc-ct .dgc-dock--core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: 0;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.dgc-ct.is-ignite .ct-orb {
  display: none;
}

.dgc-visual > .dgc-dock {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.dgc-constellation {
  width: min(100%, 420px);
  height: 280px;
}

.dgc-constellation text {
  font-size: 11px;
  font-weight: 700;
  fill: var(--navy);
  font-family: inherit;
}

.dgc-line {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: calc(120 - (120 * var(--dgc-p, 0)));
  opacity: calc(0.25 + var(--dgc-p, 0) * 0.75);
}

.dgc-ct .dgc-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.18;
}

.dgc-ct.is-ignite .dgc-line {
  animation: ct-line-draw 0.55s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.dgc-ct.is-ignite .dgc-line-signal {
  animation: ct-signal-travel 0.55s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 80ms);
}

.dgc-ct.is-ignite .dgc-node--growth {
  fill: #1d4ed8;
  stroke: #fff;
}

.dgc-ct.is-ignite:not(.is-gold) .dgc-node--growth {
  animation: dgc-growth-blink 1.15s cubic-bezier(.22,.61,.36,1) 0.45s both;
}

.dgc-ct.is-gold .dgc-node--growth,
.dgc-ct.is-gold .dgc-growth-cap {
  fill: #facc15;
  stroke: #fffbeb;
  animation: dgc-gold-pulse 1s ease-in-out infinite;
}

.dgc-ct.is-gold .dgc-grow-meter i {
  background: linear-gradient(180deg, #fde68a, #d97706);
}

.dgc-traveler.is-gold .dgc-travel-ball {
  box-shadow:
    0 0 0 2px #fde68a,
    0 0 18px rgba(250, 204, 21, 0.85),
    0 0 32px rgba(217, 119, 6, 0.45);
}

@keyframes dgc-gold-pulse {
  0%, 100% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.45));
  }
  50% {
    transform: scale(1.55);
    filter: drop-shadow(0 0 14px rgba(250, 204, 21, 0.95));
  }
}

.dgc-growth-cap {
  font-size: 13px;
  font-weight: 800;
  fill: var(--navy);
  transform-box: fill-box;
  transform-origin: center;
}

.dgc-ct.is-ignite .dgc-growth-cap {
  fill: #1d4ed8;
}

.dgc-ct.is-ignite:not(.is-gold) .dgc-growth-cap {
  animation: dgc-growth-label 1.2s cubic-bezier(.22,.61,.36,1) 0.5s both;
}

@keyframes dgc-growth-blink {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(29,78,216,0)); }
  25% { transform: scale(1.9); filter: drop-shadow(0 0 10px rgba(29,78,216,.7)); }
  50% { transform: scale(1.15); }
  75% { transform: scale(1.75); filter: drop-shadow(0 0 12px rgba(96,165,250,.8)); }
  100% { transform: scale(1.45); filter: drop-shadow(0 0 8px rgba(29,78,216,.55)); }
}

@keyframes dgc-growth-label {
  0% { transform: scale(1); opacity: 0.7; }
  35% { transform: scale(1.28); opacity: 1; }
  55% { transform: scale(1.05); }
  75% { transform: scale(1.22); }
  100% { transform: scale(1.12); opacity: 1; }
}

.dgc-grow-meter {
  position: absolute;
  right: 8%;
  top: 10%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
  z-index: 2;
  pointer-events: none;
}

.dgc-grow-meter i {
  display: block;
  width: 7px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #60a5fa, #1d4ed8);
  height: 8px;
  opacity: 0.25;
  transform-origin: bottom center;
}

.dgc-ct.is-ignite .dgc-grow-meter i {
  animation: dgc-meter-up 0.7s cubic-bezier(.22,.61,.36,1) forwards;
}

.dgc-ct.is-ignite .dgc-grow-meter i:nth-child(1) { animation-delay: 0.55s; }
.dgc-ct.is-ignite .dgc-grow-meter i:nth-child(2) { animation-delay: 0.68s; }
.dgc-ct.is-ignite .dgc-grow-meter i:nth-child(3) { animation-delay: 0.81s; }
.dgc-ct.is-ignite .dgc-grow-meter i:nth-child(4) { animation-delay: 0.94s; }

@keyframes dgc-meter-up {
  to { opacity: 1; height: var(--h, 28px); }
}

.dgc-grow-meter i:nth-child(1) { --h: 16px; }
.dgc-grow-meter i:nth-child(2) { --h: 24px; }
.dgc-grow-meter i:nth-child(3) { --h: 32px; }
.dgc-grow-meter i:nth-child(4) { --h: 42px; }

.dgc-ct.is-ignite .dgc-node {
  opacity: 1;
  fill: #93c5fd;
  stroke: #fff;
  animation: ct-node-receive 0.55s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: calc(var(--i) * 70ms + 220ms);
}

.dgc-ct.is-ignite .dgc-core-dot {
  opacity: 0;
}

.dgc-ct.is-ignite text {
  fill: #1d4ed8;
  filter: drop-shadow(0 0 8px rgba(147, 197, 253, 0.85));
}

.dgc-ct.is-ignite .dgc-growth-cap {
  filter: drop-shadow(0 0 12px rgba(29, 78, 216, 0.55));
}

.dgc-ct.is-ignite .ct-ripple {
  animation: ct-ripple-out 0.9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--r) * 120ms);
}

.dgc-ct.ct-play .dgc-line {
  animation: ct-line-draw 0.7s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 620ms);
}

.dgc-ct.is-ignite.ct-play .dgc-line {
  animation-delay: calc(var(--i, 0) * 70ms);
}

.dgc-ct.is-ignite.ct-play .dgc-line-signal {
  animation-delay: calc(var(--i, 0) * 70ms + 80ms);
}

.dgc-ct.is-ignite .dgc-node.dgc-node--growth {
  fill: #1d4ed8;
  stroke: #fff;
}

.dgc-ct.is-gold .dgc-node.dgc-node--growth {
  fill: #facc15;
  stroke: #fffbeb;
  animation: dgc-gold-pulse 1s ease-in-out infinite;
}

.dgc-ct.ct-reverse .dgc-line {
  animation: ct-line-undraw 0.45s ease forwards;
}

@keyframes ct-line-draw {
  0% { stroke-dashoffset: 1; opacity: 0.18; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes ct-line-undraw {
  from { stroke-dashoffset: 0; opacity: 1; }
  to { stroke-dashoffset: 1; opacity: 0.18; }
}

.dgc-line-signal {
  fill: none;
  stroke: #1d4ed8;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

.dgc-ct.ct-play .dgc-line-signal {
  animation: ct-signal-travel 0.6s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--i) * 90ms + 680ms);
}

.dgc-ct.ct-reverse .dgc-line-signal {
  animation: none;
  opacity: 0;
}

@keyframes ct-signal-travel {
  0% { opacity: 1; stroke-dashoffset: 1; }
  70% { opacity: 1; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dashoffset: 0; }
}

.dgc-node {
  fill: #60a5fa;
  stroke: #1d4ed8;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  opacity: calc(0.2 + var(--dgc-p, 0) * 0.8);
}

.dgc-ct.ct-play .dgc-node {
  opacity: 1;
  animation: ct-node-receive 0.5s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: calc(var(--i) * 90ms + 1080ms);
}

@keyframes ct-node-receive {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(29,78,216,0)); }
  55% { transform: scale(1.55); filter: drop-shadow(0 0 6px rgba(29,78,216,.55)); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 4px rgba(29,78,216,.35)); }
}

.dgc-core-dot {
  fill: #1d4ed8;
  transform-box: fill-box;
  transform-origin: center;
}

.dgc-ct.ct-play .dgc-core-dot {
  animation: ct-core-idle 2.6s ease-in-out infinite;
  animation-delay: 1.1s;
}

.dgc-ct.ct-play.ct-landed .dgc-core-dot {
  animation: ct-core-hit 0.45s cubic-bezier(.22,.61,.36,1) 1;
}

@keyframes ct-core-hit {
  0% { transform: scale(1); }
  45% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

@keyframes ct-core-idle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.ct-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  border: 1.5px solid #1d4ed8;
  opacity: 0;
  pointer-events: none;
}

.dgc-ct.ct-play .ct-ripple {
  animation: ct-ripple-out 0.9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--r) * 130ms + 480ms);
}

@keyframes ct-ripple-out {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(14); opacity: 0; }
}

.ct-orb {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    url("/Images/footer/footerlogo.webp") center / 14px 14px no-repeat,
    radial-gradient(circle at 32% 28%, #fff 0%, #e8f2ff 50%, #93c5fd 100%);
  box-shadow: 0 0 0 1px #fff, 0 0 10px rgba(96, 165, 250, 0.45);
  filter: none;
  opacity: 0;
  pointer-events: none;
  left: 8%;
  top: 6%;
  z-index: 3;
}

.dgc-ct.ct-play .ct-orb {
  animation: ct-orb-travel 0.6s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes ct-orb-travel {
  0% { opacity: 1; left: 8%; top: 6%; transform: scale(1); }
  85% { opacity: 1; left: var(--core-x, 50%); top: var(--core-y, 50%); transform: scale(1); }
  100% { opacity: 0; left: var(--core-x, 50%); top: var(--core-y, 50%); transform: scale(0.4); }
}

.dgc-scene {
  position: relative;
  min-height: 300px;
}

.dgc-scene--web {
  padding: 8px 8px 36px 0;
}

.dgc-site {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  background: #0A1628;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(10, 22, 40, 0.22);
  transform: translate3d(0, 16px, 0) scale(0.96);
  opacity: 0.35;
}

.dgc-stage.is-in .dgc-site {
  animation: dgc-scene-in 0.55s cubic-bezier(.22,.61,.36,1) forwards;
}

.dgc-site__bar {
  height: 30px;
  background: #152238;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}

.dgc-site__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
}

.dgc-site__bar i {
  flex: 1;
  margin-left: 8px;
  height: 14px;
  border-radius: 7px;
  background: #0f1b2e;
  color: #93c5fd;
  font-size: 8px;
  font-style: normal;
  display: flex;
  align-items: center;
  padding: 0 8px;
  letter-spacing: 0.04em;
}

.dgc-site__nav {
  display: flex;
  gap: 6px;
  padding: 8px 10px 0;
  opacity: 0;
}

.dgc-site__nav b {
  height: 8px;
  width: 28px;
  border-radius: 4px;
  background: rgba(147, 197, 253, 0.35);
}

.dgc-site__hero {
  position: relative;
  margin: 10px;
  height: 108px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8 45%, #60a5fa);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92);
}

.dgc-dock--in-hero {
  position: absolute;
  right: 18%;
  top: 46%;
  width: 12px;
  height: 12px;
  margin: 0;
}

.dgc-site__hero em {
  display: block;
  height: 8px;
  width: 46%;
  margin: 22px 0 0 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
}

.dgc-site__hero em + em {
  width: 32%;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.45);
}

.dgc-site__hero button {
  position: absolute;
  left: 14px;
  bottom: 16px;
  width: 64px;
  height: 18px;
  border: 0;
  border-radius: 9px;
  background: #fff;
  pointer-events: none;
}

.dgc-site__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 0 10px 12px;
}

.dgc-site__cards span {
  height: 42px;
  border-radius: 6px;
  background: #152238;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.dgc-stage.is-in .dgc-site__nav { animation: dgc-build 0.4s ease 0.15s forwards; }
.dgc-stage.is-in .dgc-site__hero { animation: dgc-hero-bloom 0.55s cubic-bezier(.22,.61,.36,1) 0.28s forwards; }
.dgc-stage.is-in .dgc-site__cards span:nth-child(1) { animation: dgc-build 0.4s ease 0.45s forwards; }
.dgc-stage.is-in .dgc-site__cards span:nth-child(2) { animation: dgc-build 0.4s ease 0.55s forwards; }
.dgc-stage.is-in .dgc-site__cards span:nth-child(3) { animation: dgc-build 0.4s ease 0.65s forwards; }

@keyframes dgc-hero-bloom {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: none; }
}

@keyframes dgc-scene-in {
  to { opacity: 1; transform: none; }
}

.dgc-ghost {
  position: absolute;
  background: #fff;
  border: 2px solid #0A1628;
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.12);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.dgc-ghost__bar,
.dgc-ghost__notch,
.dgc-ghost__screen {
  display: block;
  position: absolute;
}

.dgc-ghost__screen {
  inset: 16px 8px 10px;
  border-radius: 6px;
  background: linear-gradient(160deg, #1e3a8a, #1d4ed8 48%, #93c5fd);
  opacity: 0.28;
  transform: scale(0.92);
}

.dgc-ghost--tab {
  right: 18px;
  top: 42px;
  width: 92px;
  height: 122px;
  border-radius: 12px;
  z-index: 1;
  transform: translate3d(-32px, 16px, 0) scale(0.72);
}

.dgc-ghost--tab .dgc-ghost__bar {
  left: 50%;
  top: 7px;
  width: 22px;
  height: 4px;
  margin-left: -11px;
  border-radius: 2px;
  background: #0A1628;
}

.dgc-ghost--ph {
  right: 0;
  bottom: 48px;
  width: 44px;
  height: 86px;
  border-radius: 12px;
  z-index: 3;
  transform: translate3d(20px, 24px, 0) scale(0.62);
}

.dgc-ghost--ph .dgc-ghost__notch {
  left: 50%;
  top: 6px;
  width: 14px;
  height: 5px;
  margin-left: -7px;
  border-radius: 3px;
  background: #0A1628;
}

.dgc-ghost--ph .dgc-ghost__screen {
  inset: 14px 5px 8px;
  border-radius: 5px;
}

.dgc-scene--web.is-placed .dgc-ghost--tab {
  animation: dgc-ghost-tab-place 0.75s cubic-bezier(.22,.61,.36,1) forwards;
}

.dgc-scene--web.is-placed .dgc-ghost--ph {
  animation: dgc-ghost-ph-place 0.75s cubic-bezier(.22,.61,.36,1) 0.2s forwards;
}

.dgc-scene--web.is-placed .dgc-ghost--tab .dgc-ghost__screen {
  animation: dgc-ghost-screen-on 0.55s ease 0.38s forwards, dgc-ghost-screen-pulse 2.2s ease 1s infinite;
}

.dgc-scene--web.is-placed .dgc-ghost--ph .dgc-ghost__screen {
  animation: dgc-ghost-screen-on 0.55s ease 0.58s forwards, dgc-ghost-screen-pulse 2.2s ease 1.2s infinite;
}

@keyframes dgc-ghost-tab-place {
  0% {
    opacity: 0;
    transform: translate3d(-36px, 18px, 0) scale(0.7);
    box-shadow: 0 8px 16px rgba(10, 22, 40, 0.08);
  }
  58% {
    opacity: 1;
    transform: translate3d(8px, -6px, 0) scale(1.08);
    box-shadow: 0 18px 36px rgba(29, 78, 216, 0.28);
  }
  100% {
    opacity: 1;
    transform: none;
    box-shadow: 0 14px 30px rgba(10, 22, 40, 0.16);
  }
}

@keyframes dgc-ghost-ph-place {
  0% {
    opacity: 0;
    transform: translate3d(22px, 28px, 0) scale(0.58);
    box-shadow: 0 8px 16px rgba(10, 22, 40, 0.08);
  }
  55% {
    opacity: 1;
    transform: translate3d(-6px, -10px, 0) scale(1.14);
    box-shadow: 0 16px 32px rgba(29, 78, 216, 0.3);
  }
  100% {
    opacity: 1;
    transform: none;
    box-shadow: 0 12px 24px rgba(10, 22, 40, 0.16);
  }
}

@keyframes dgc-ghost-screen-on {
  from { opacity: 0.22; transform: scale(0.9); }
  to { opacity: 1; transform: none; }
}

@keyframes dgc-ghost-screen-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.22); }
}

.dgc-scene-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  width: min(100%, 360px);
}

.dgc-scene-rail li {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 4px 10px;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.dgc-stage.is-in .dgc-scene-rail li:nth-child(1) { animation: dgc-build 0.35s ease 0.5s forwards; }
.dgc-stage.is-in .dgc-scene-rail li:nth-child(2) { animation: dgc-build 0.35s ease 0.7s forwards; }
.dgc-stage.is-in .dgc-scene-rail li:nth-child(3) { animation: dgc-build 0.35s ease 0.9s forwards; }
.dgc-stage.is-in .dgc-scene-rail li:nth-child(4) { animation: dgc-build 0.35s ease 1.08s forwards; }

.dgc-scene--app {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr 118px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 8px 4px;
}

.dgc-miniweb {
  width: 92px;
  background: #0A1628;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.16);
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
}

.dgc-stage.is-in .dgc-miniweb {
  animation: dgc-build 0.45s ease forwards;
}

.dgc-miniweb__bar {
  height: 10px;
  background: #152238;
}

.dgc-miniweb__hero {
  height: 36px;
  margin: 6px;
  border-radius: 4px;
  background: linear-gradient(135deg, #1d4ed8, #93c5fd);
}

.dgc-miniweb__row {
  height: 18px;
  margin: 0 6px 8px;
  border-radius: 4px;
  background: #152238;
}

.dgc-miniweb span {
  display: block;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  padding-bottom: 8px;
}

.dgc-handoff {
  width: 100%;
  height: 88px;
  overflow: visible;
}

.dgc-handoff__line {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.dgc-stage.is-in .dgc-handoff__line {
  animation: ct-line-draw 0.8s cubic-bezier(.22,.61,.36,1) 0.25s forwards;
}

.dgc-handoff-spark {
  position: absolute;
  left: 22%;
  top: 42%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #60a5fa 50%, #1d4ed8);
  box-shadow: 0 0 12px 4px rgba(96, 165, 250, 0.75);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}

.dgc-stage.is-in .dgc-handoff-spark {
  animation: dgc-app-spark 1.2s cubic-bezier(.22,.61,.36,1) 0.4s forwards;
}

@keyframes dgc-app-spark {
  0% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  55% { opacity: 1; transform: translate3d(48px, -28px, 0) scale(1.15); }
  100% { opacity: 0; transform: translate3d(92px, -36px, 0) scale(0.4); }
}

.dgc-phone--story {
  position: relative;
  width: 118px;
  height: 228px;
  border-radius: 24px;
  border: 3px solid #152238;
  background: #0A1628;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(10, 22, 40, 0.22);
  opacity: 0;
  transform: translate3d(18px, 8px, 0) scale(0.92);
}

.dgc-stage.is-in .dgc-phone--story {
  animation: dgc-phone-catch 0.55s cubic-bezier(.22,.61,.36,1) 0.85s forwards;
}

@keyframes dgc-phone-catch {
  0% { opacity: 0; transform: translate3d(18px, 8px, 0) scale(0.92); }
  70% { opacity: 1; transform: translate3d(0, -6px, 0) scale(1.04); }
  100% { opacity: 1; transform: none; }
}

.dgc-phone__notch {
  width: 42px;
  height: 8px;
  margin: 8px auto 6px;
  background: #0f172a;
  border-radius: 8px;
}

.dgc-phone__screens {
  position: relative;
  margin: 0 8px;
  height: 168px;
  border-radius: 10px;
  background: #e8eef6;
  overflow: hidden;
}

.dgc-phone__screen {
  position: absolute;
  inset: 8px;
  display: grid;
  align-content: start;
  gap: 8px;
  opacity: 0;
  transform: translate3d(16px, 0, 0);
}

.dgc-phone__screen b {
  font-size: 10px;
  color: #0A1628;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dgc-phone__screen i {
  display: block;
  height: 28px;
  border-radius: 5px;
  background: #fff;
}

.dgc-phone__screen.is-a i:first-of-type {
  height: 40px;
  background: linear-gradient(180deg, #bfdbfe, #fff);
}

.dgc-stage.is-in .dgc-phone__screen.is-a { animation: dgc-screen-cycle 4.8s 1.05s infinite; }
.dgc-stage.is-in .dgc-phone__screen.is-b { animation: dgc-screen-cycle 4.8s 2.65s infinite; }
.dgc-stage.is-in .dgc-phone__screen.is-c { animation: dgc-screen-cycle 4.8s 4.25s infinite; }

@keyframes dgc-screen-cycle {
  0%, 31%, 100% { opacity: 0; transform: translate3d(14px, 0, 0); }
  6%, 26% { opacity: 1; transform: none; }
}

.dgc-dock--in-phone {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
}

.dgc-api {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.dgc-api li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  background: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}

.dgc-stage.is-in .dgc-api li:nth-child(1) { animation: dgc-build 0.35s ease 1s forwards; }
.dgc-stage.is-in .dgc-api li:nth-child(2) { animation: dgc-build 0.35s ease 1.12s forwards; }
.dgc-stage.is-in .dgc-api li:nth-child(3) { animation: dgc-build 0.35s ease 1.24s forwards; }

.dgc-site.is-touched,
.dgc-phone--story.is-touched,
.dgc-miniweb.is-touched {
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.45), 0 18px 40px rgba(29, 78, 216, 0.28);
}

@keyframes dgc-build {
  to { opacity: 1; transform: none; }
}

.dgc-seo-flow {
  display: grid;
  gap: 10px;
  width: min(100%, 320px);
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.dgc-seo-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0.22;
  transform: translate3d(-10px, 0, 0);
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.dgc-seo-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eff6ff;
  color: #1d4ed8;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: background 0.28s ease, color 0.28s ease;
}

.dgc-seo-step.is-touched {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.28);
  transform: translate3d(8px, 0, 0);
}

.dgc-seo-step.is-touched span {
  background: #fff;
  color: #1d4ed8;
}

.dgc-stage.is-in .dgc-seo-step:nth-child(1) { animation: dgc-build 0.4s ease forwards; }
.dgc-stage.is-in .dgc-seo-step:nth-child(2) { animation: dgc-build 0.4s ease 0.08s forwards; }
.dgc-stage.is-in .dgc-seo-step:nth-child(3) { animation: dgc-build 0.4s ease 0.16s forwards; }
.dgc-stage.is-in .dgc-seo-step:nth-child(4) { animation: dgc-build 0.4s ease 0.24s forwards; }
.dgc-stage.is-in .dgc-seo-step:nth-child(5) { animation: dgc-build 0.4s ease 0.32s forwards; }

.dgc-funnel {
  display: grid;
  gap: 0;
  width: min(100%, 280px);
  justify-items: center;
  margin-inline: auto;
}

.dgc-funnel__row {
  background: #fff;
  border: 1px solid rgba(29, 78, 216, 0.18);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  padding: 10px 12px;
  opacity: 0;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.dgc-funnel__row.is-touched {
  color: #fff;
  transform: scale(1.06);
  animation: dgc-funnel-hit 0.55s cubic-bezier(.22,.61,.36,1);
}

.dgc-funnel__row.is-touched:nth-child(1) {
  background: #0f766e;
  border-color: #0f766e;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.32);
}

.dgc-funnel__row.is-touched:nth-child(2) {
  background: #7c3aed;
  border-color: #7c3aed;
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.32);
}

.dgc-funnel__row.is-touched:nth-child(3) {
  background: #d97706;
  border-color: #d97706;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.32);
}

.dgc-funnel__row.is-touched:nth-child(4) {
  background: #db2777;
  border-color: #db2777;
  box-shadow: 0 12px 24px rgba(219, 39, 119, 0.32);
}

.dgc-funnel__row.is-touched:nth-child(5) {
  background: #15803d;
  border-color: #15803d;
  box-shadow: 0 12px 24px rgba(21, 128, 61, 0.32);
}

@keyframes dgc-funnel-hit {
  0% { transform: scale(0.96); }
  45% { transform: scale(1.1); }
  100% { transform: scale(1.06); }
}

.dgc-funnel__row:nth-child(1) { width: 100%; border-radius: 10px 10px 0 0; }
.dgc-funnel__row:nth-child(2) { width: 88%; }
.dgc-funnel__row:nth-child(3) { width: 76%; }
.dgc-funnel__row:nth-child(4) { width: 64%; }
.dgc-funnel__row:nth-child(5) { width: 52%; border-radius: 0 0 10px 10px; }

.dgc-stage.is-in .dgc-funnel__row:nth-child(1) { animation: dgc-build 0.35s ease forwards; }
.dgc-stage.is-in .dgc-funnel__row:nth-child(2) { animation: dgc-build 0.35s ease 0.08s forwards; }
.dgc-stage.is-in .dgc-funnel__row:nth-child(3) { animation: dgc-build 0.35s ease 0.16s forwards; }
.dgc-stage.is-in .dgc-funnel__row:nth-child(4) { animation: dgc-build 0.35s ease 0.24s forwards; }
.dgc-stage.is-in .dgc-funnel__row:nth-child(5) { animation: dgc-build 0.35s ease 0.32s forwards; }

.dgc-growth {
  width: min(100%, 420px);
}

.dgc-growth text {
  font-size: 11px;
  font-weight: 700;
  fill: var(--navy);
  font-family: inherit;
}

.dgc-tech {
  padding: 1.25rem 0 2.75rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.dgc-tech h2 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.15rem;
  color: var(--navy);
}

.dgc-tech-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.dgc-tech-track__inner {
  display: flex;
  width: max-content;
  gap: 0.55rem;
  animation: dgc-marquee 32s linear infinite;
}

.dgc-tech-track span {
  flex: 0 0 auto;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

@keyframes dgc-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.process-steps--growth .process-step:nth-child(5) .process-num::after {
  content: none;
}

.dgc-node.is-touched,
.dgc-node.is-lit {
  fill: #60a5fa;
  stroke: #fff;
}

[data-dgc-hit] {
  position: relative;
}

.dgc-mid {
  position: absolute;
  left: 50%;
  top: 5.75rem;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.dgc-bricks--orbit {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

.dgc-tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  padding: 0.3rem;
  transform: translate(var(--tx), var(--ty)) scale(1);
  box-shadow: 0 6px 16px -6px rgba(15, 23, 42, 0.25);
}

.dgc-tile--core {
  --tx: 0px;
  --ty: 0px;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  z-index: 2;
  background: #1d4ed8;
}

.dgc-tile--blue { --tx: 0px; --ty: -108px; background: #3b82f6; }
.dgc-tile--indigo { --tx: 94px; --ty: -54px; background: #6366f1; }
.dgc-tile--teal { --tx: 94px; --ty: 54px; background: #14b8a6; }
.dgc-tile--violet { --tx: 0px; --ty: 108px; background: #8b5cf6; }
.dgc-tile--gold { --tx: -94px; --ty: 54px; background: #d97706; }

.dgc-ct.ct-play .dgc-tile--core {
  animation: ct-core-hit-tile 0.45s cubic-bezier(.22,.61,.36,1) 1, ct-core-idle-tile 2.6s ease-in-out 1.1s infinite;
}

@keyframes ct-core-hit-tile {
  0% { transform: translate(var(--tx), var(--ty)) scale(1); }
  45% { transform: translate(var(--tx), var(--ty)) scale(1.18); }
  100% { transform: translate(var(--tx), var(--ty)) scale(1); }
}

@keyframes ct-core-idle-tile {
  0%, 100% { transform: translate(var(--tx), var(--ty)) scale(1); }
  50% { transform: translate(var(--tx), var(--ty)) scale(1.06); }
}

.dgc-ct.ct-play .dgc-tile:not(.dgc-tile--core) {
  animation: ct-tile-receive 0.5s cubic-bezier(.22,.61,.36,1) both;
  animation-delay: calc(var(--i) * 100ms + 620ms);
}

@keyframes ct-tile-receive {
  0% { transform: translate(var(--tx), var(--ty)) scale(1); filter: brightness(1); }
  55% { transform: translate(var(--tx), var(--ty)) scale(1.22); filter: brightness(1.28); }
  100% { transform: translate(var(--tx), var(--ty)) scale(1.06); filter: brightness(1.1); }
}

.ct-orbit-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  border: 2px solid #1d4ed8;
  opacity: 0;
  pointer-events: none;
}

.dgc-ct.ct-play .ct-orbit-ripple {
  animation: ct-ripple-out 0.9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: 480ms;
}

.dgc-tile.is-touched,
.dgc-tile.is-lit {
  filter: brightness(1.18);
}

.final-cta-band .dgc-line-signal {
  stroke: #bfdbfe;
}

.final-cta-band .dgc-node {
  fill: #93c5fd;
  stroke: #fff;
}

.final-cta-band .ct-ripple {
  border-color: #93c5fd;
}

html.dgc-live #services .home-card,
html.dgc-live #products .home-card,
html.dgc-live #work .home-case-card {
  filter: grayscale(0.75) saturate(0.35);
  transition: filter 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

html.dgc-live #services.is-lit .home-card,
html.dgc-live #products.is-lit .home-card,
html.dgc-live #work.is-lit .home-case-card,
html.dgc-live #services .home-card.is-touched,
html.dgc-live #products .home-card.is-touched {
  filter: none;
  transform: translate3d(0, -4px, 0);
}

html.dgc-live #services.is-lit .home-card {
  animation: dgc-svc-blink 0.85s cubic-bezier(.22,.61,.36,1) both;
}

html.dgc-live #services.is-lit .home-card:nth-child(1) { animation-delay: 0.04s; }
html.dgc-live #services.is-lit .home-card:nth-child(2) { animation-delay: 0.12s; }
html.dgc-live #services.is-lit .home-card:nth-child(3) { animation-delay: 0.2s; }
html.dgc-live #services.is-lit .home-card:nth-child(4) { animation-delay: 0.28s; }
html.dgc-live #services.is-lit .home-card:nth-child(5) { animation-delay: 0.36s; }
html.dgc-live #services.is-lit .home-card:nth-child(6) { animation-delay: 0.44s; }

@keyframes dgc-svc-blink {
  0% { transform: translate3d(0, 10px, 0); opacity: 0.55; filter: brightness(0.92); }
  40% { transform: translate3d(0, -8px, 0); opacity: 1; filter: brightness(1.12); box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.45), 0 16px 32px rgba(29, 78, 216, 0.16); }
  100% { transform: translate3d(0, -4px, 0); opacity: 1; filter: none; }
}
html.dgc-live #products.is-lit .home-card:nth-child(1) { transition-delay: 0.06s; }
html.dgc-live #products.is-lit .home-card:nth-child(2) { transition-delay: 0.14s; }
html.dgc-live #products.is-lit .home-card:nth-child(3) { transition-delay: 0.22s; }

.dgc-cta-visual {
  position: relative;
  --dgc-p: 1;
  overflow: visible;
}

.dgc-cta-constellation {
  width: min(100%, 360px);
  margin: 0 auto 1.25rem;
  height: 220px;
  overflow: visible;
}

.final-cta-band .dgc-cta-constellation text {
  fill: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 700;
}

.final-cta-band .dgc-ct.is-travel text,
.final-cta-band .dgc-ct.is-ignite text {
  fill: #bfdbfe;
  filter: drop-shadow(0 0 6px rgba(147, 197, 253, 0.55));
}

.final-cta-band .dgc-ct.is-gold text {
  fill: #fde68a;
  animation: dgc-gold-text 1.15s ease-in-out infinite;
}

.final-cta-band .dgc-ct.is-gold .dgc-node {
  fill: #facc15;
  stroke: #fffbeb;
  animation: dgc-gold-pulse 1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 80ms);
}

.final-cta-band .dgc-ct.is-gold .dgc-line {
  stroke: #fbbf24;
}

@keyframes dgc-gold-text {
  0%, 100% { opacity: 0.82; }
  50% { opacity: 1; }
}

@media (max-width: 900px) {
  .dgc-stage__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .dgc-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .dgc-funnel,
  .dgc-seo-flow {
    margin-inline: auto;
    width: min(100%, 320px);
  }

  .dgc-funnel__row {
    opacity: 1;
  }

  .dgc-guide {
    left: 50%;
    right: auto;
    top: calc(100% + 10px);
    min-width: 0;
    width: max-content;
    max-width: min(68vw, 196px);
    padding: 7px 10px 8px;
    text-align: center;
    transform-origin: 50% 0;
    border-radius: 12px;
  }

  .dgc-guide::before {
    left: 50%;
    top: -4px;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    background: #f4f8ff;
    border-left: 1px solid #93c5fd;
    border-bottom: 0;
    border-right: 1px solid #93c5fd;
    transform: rotate(45deg);
  }

  .dgc-guide b {
    font-size: 0.7rem;
  }

  .dgc-guide i {
    font-size: 0.65rem;
    margin-top: 2px;
  }

  .dgc-traveler.is-speaking .dgc-guide {
    animation: dgc-guide-in-mid 0.5s cubic-bezier(.22,.61,.36,1) forwards;
  }

  .dgc-traveler.is-guide-out .dgc-guide {
    animation: dgc-guide-out-mid 0.42s ease forwards;
  }

  @keyframes dgc-guide-in-mid {
    0% { opacity: 0; transform: translateX(-50%) translate3d(0, 10px, 0) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%); }
  }

  @keyframes dgc-guide-out-mid {
    0% { opacity: 1; transform: translateX(-50%); }
    100% { opacity: 0; transform: translateX(-50%) translate3d(0, -8px, 0) scale(0.94); }
  }

  .dgc-map {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "web app"
      "seo mkt"
      "ads ads";
  }

  .dgc-touch img {
    height: 72px;
  }

  .dgc-touch--wide img {
    height: 140px;
  }

  .dgc-scene--app {
    grid-template-columns: 80px 1fr 104px;
  }

  .hero-banner__fx .dgc-dock--hero,
  .dgc-hero-fallback {
    left: 50%;
    right: auto;
    top: 46%;
    transform: translate(-50%, -50%);
  }

  .dgc-hero-fallback {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .dgc-stage {
    padding: 3rem 0 2.25rem;
  }

  .dgc-traveler,
  .dgc-travel-ball {
    width: 32px;
    height: 32px;
  }

  .dgc-travel-mark {
    width: 18px;
    height: 18px;
  }

  .dgc-scene--app {
    grid-template-columns: 72px minmax(48px, 1fr) 96px;
  }

  .dgc-phone--story {
    width: 96px;
    height: 188px;
  }

  .dgc-bricks--orbit {
    transform: scale(0.82);
    transform-origin: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dgc-traveler {
    display: none !important;
  }

  .dgc-hero-fallback,
  .dgc-travel-mark,
  .dgc-tech-track__inner {
    animation: none;
  }

  .dgc-guide {
    display: none;
  }

  [data-dgc-hit] h2[data-dgc-split],
  [data-dgc-hit] h2.section-title {
    animation: none;
    filter: none;
    transform: none;
  }

  .dgc-line,
  .dgc-node,
  .dgc-handoff__line {
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
  }

  .dgc-site,
  .dgc-miniweb,
  .dgc-phone--story,
  .dgc-ghost,
  .dgc-ghost__screen,
  .dgc-scene-rail li,
  .dgc-api li,
  .dgc-site__nav,
  .dgc-site__hero,
  .dgc-site__cards span,
  .dgc-phone__screen.is-a {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .dgc-handoff-spark {
    display: none;
  }

  .dgc-touch,
  .dgc-touch img,
  .dgc-shot,
  html.dgc-live #services .home-card,
  html.dgc-live #products .home-card,
  html.dgc-live #work .home-case-card {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .dgc-ct .ct-orb,
  .dgc-ct .ct-ripple,
  .dgc-ct .ct-orbit-ripple,
  .dgc-line-signal {
    display: none !important;
  }

  .dgc-ct.ct-play .dgc-node,
  .dgc-ct.ct-play .dgc-core-dot {
    animation: none !important;
  }

  .dgc-tile {
    filter: none;
    animation: none !important;
    transform: translate(var(--tx, 0), var(--ty, 0)) scale(1);
  }
}

@media (max-width: 768px) {
  #why-us .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  #why-us .why-visual {
    padding: 1.1rem;
    overflow: visible;
    border-radius: 16px;
  }

  #why-us .why-feat,
  #why-us .why-point {
    padding: 14px 12px;
    gap: 12px;
    min-width: 0;
    align-items: flex-start;
  }

  #why-us .why-feat > div,
  #why-us .why-point > div {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  #why-us .why-feat h3,
  #why-us .why-point h3,
  #process .process-step h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  #process {
    overflow: visible;
  }

  #process .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 1.5rem;
  }

  #process .process-step {
    padding: 18px 16px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  [data-dgc-hit].is-lit h2[data-dgc-split],
  [data-dgc-hit].is-lit h2.section-title,
  [data-dgc-hit].is-hit h2[data-dgc-split],
  [data-dgc-hit].is-hit h2.section-title {
    animation: none;
    filter: none;
    transform: none;
  }
}
