﻿/* Home page styles. */

.dw-hero {
  position: relative;
  overflow: hidden;
  padding: calc(92px + var(--space-4xl)) 0 var(--space-5xl);
  background: var(--gradient-hero);
}

.dw-hero::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(110, 70, 255, 0.12);
  filter: blur(50px);
  pointer-events: none;
}

.dw-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.dw-hero__content {
  max-width: 670px;
}

.dw-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 116, 255, 0.1);
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dw-hero h1 {
  margin-bottom: var(--space-lg);
}

.dw-hero h1 .accent,
.dw-gradient-text,
.dw-page-hero--contact h1 .dw-contact-accent {
  display: inline-block;
  padding-inline-end: 0.08em;
  margin-inline-end: -0.08em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  background-clip: text;
  box-decoration-break: clone;
  color: transparent;
}

.dw-hero__subtitle {
  max-width: 600px;
  margin-bottom: var(--space-xl);
  font-size: 1.15rem;
}

.dw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: var(--space-2xl);
}

.dw-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 var(--space-xl);
}

.dw-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.07);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.dw-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.dw-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.dw-hero__meta-item {
  position: relative;
  isolation: isolate;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.dw-hero__meta-value,
.dw-hero__meta-label {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .dw-hero__meta-item:hover {
    transform: translate3d(0, 0, 0) scale(1.028);
    box-shadow:
      0 18px 38px rgba(17, 26, 51, 0.08),
      0 0 18px 3px rgba(65, 209, 255, 0.22),
      0 0 34px 7px rgba(47, 116, 255, 0.14),
      0 0 42px 9px rgba(110, 70, 255, 0.12);
  }
}

.dw-hero__meta-value {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dw-hero__meta-label {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}


.dw-hero__media .dw-media-card {
  position: relative;
  overflow: hidden;
  transform: rotate(1.5deg);
}

.dw-hero__media .dw-media-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem -1.25rem 1.25rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(17, 26, 51, 0.12);
  filter: blur(24px);
}

.dw-proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-xl);
}

.dw-proof-card {
  overflow: hidden;
  grid-column: span 4;
}

.dw-proof-card--wide {
  grid-column: span 6;
}

.dw-proof-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dw-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dw-proof-card__body {
  padding: 1.3rem 1.35rem 1.45rem;
}

.dw-proof-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--color-accent);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dw-proof-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.dw-proof-card p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.dw-feature-card {
  padding: 1.6rem;
}

.dw-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--gradient-surface);
  color: var(--color-accent);
}

.dw-feature-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.dw-feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.dw-feature-card p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-3xl);
  align-items: center;
}

.dw-two-col--reverse {
  direction: rtl;
}

.dw-two-col--reverse > * {
  direction: ltr;
}

.dw-check-list {
  list-style: none;
  padding: 0;
}

.dw-check-list li {
  position: relative;
  padding-left: 2rem;
}

.dw-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 6px rgba(47, 116, 255, 0.08);
}

.dw-section--managed-service {
  overflow: hidden;
}

.dw-managed-service {
  max-width: 1080px;
  margin: 0 auto;
}

.dw-managed-service__intro {
  max-width: 760px;
  margin: 0 auto clamp(2.75rem, 6vw, 4.5rem);
  text-align: center;
}

.dw-managed-service__intro h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.dw-managed-service__intro p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.dw-managed-service__intro > :last-child {
  margin-bottom: 0;
}

.dw-managed-service__rows {
  display: grid;
  gap: clamp(2.75rem, 5vw, 4.5rem);
}

.dw-managed-service__item {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  column-gap: clamp(1.75rem, 4vw, 4.5rem);
  row-gap: 1.5rem;
}

.dw-managed-service__item--reverse .dw-managed-service__media {
  order: 2;
}

.dw-managed-service__item--reverse .dw-managed-service__content {
  order: 1;
  justify-self: end;
}

.dw-managed-service__media {
  position: relative;
  width: min(100%, clamp(240px, 29vw, 340px));
  margin: 0;
  line-height: 0;
  justify-self: center;
  isolation: isolate;
  --dw-managed-glow-core: rgba(47, 116, 255, 0.23);
  --dw-managed-glow-mid: rgba(65, 209, 255, 0.1);
  --dw-managed-glow-scale: 1.12;
  --dw-managed-glow-opacity: 1;
}

.dw-managed-service__media::before {
  content: "";
  position: absolute;
  inset: 4% 0% -6%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--dw-managed-glow-core) 0%, var(--dw-managed-glow-mid) 45%, transparent 74%);
  filter: blur(60px);
  opacity: var(--dw-managed-glow-opacity);
  transform: scale(var(--dw-managed-glow-scale));
  transform-origin: center;
  pointer-events: none;
  will-change: transform, opacity;
}

.dw-managed-service__media img {
  width: 100%;
  height: auto;
}

.dw-managed-service__content {
  width: 100%;
  max-width: 31rem;
  justify-self: start;
}

.dw-managed-service__content::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 4px;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: var(--gradient-brand);
}

.dw-managed-service__content h3 {
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1.28rem, 1.1rem + 0.55vw, 1.62rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.dw-managed-service__content p {
  margin-bottom: 0;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.12rem);
  line-height: 1.8;
}

.dw-managed-service__cta {
  margin: clamp(2.75rem, 6vw, 4.25rem) auto 0;
  text-align: center;
}

.dw-managed-service__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.dw-managed-service__cta a:hover {
  color: var(--color-accent);
  transform: none;
}

.dw-managed-service__cta a span {
  font-size: 1.15em;
  transition: transform var(--transition-fast);
}

.dw-managed-service__cta a:hover span {
  transform: translateX(4px);
}

.dw-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.dw-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 51, 0.06);
}

.dw-included-item__icon {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--color-accent);
}

.dw-included-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.dw-included-item h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.dw-included-item p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.dw-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
  counter-reset: step-counter;
}

.dw-step {
  position: relative;
  padding: 1.65rem;
  counter-increment: step-counter;
}

.dw-step::before {
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 800;
}

.dw-step h3 {
  margin-bottom: 0.5rem;
}

.dw-step p {
  margin-bottom: 0;
}

.dw-process-timeline {
  --timeline-column: 5.25rem;
  --timeline-marker-size: 2.65rem;
  --timeline-track-width: 4px;
  --timeline-x: 50%;
  --timeline-item-pad: clamp(2.85rem, 5.6vw, 4.6rem);
  --timeline-step-gap: clamp(2.35rem, 4.8vw, 3.9rem);
  --timeline-intro-gap: calc(var(--timeline-item-pad) + var(--timeline-step-gap));
  --timeline-head-extend: clamp(12rem, 22vw, 15rem);
  --timeline-top-fade: clamp(2rem, 4vw, 3rem);
  --timeline-tail-fade: clamp(0.8rem, 1.8vw, 1.2rem);
  --timeline-start: calc(var(--timeline-marker-size) / 2);
  --timeline-height: calc(100% - var(--timeline-marker-size));
  --timeline-progress: 0px;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding-top: var(--timeline-intro-gap);
}

.dw-process-timeline__track {
  position: absolute;
  top: var(--timeline-start);
  left: var(--timeline-x);
  width: var(--timeline-track-width);
  height: var(--timeline-height);
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(17, 26, 51, 0.08);
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 var(--timeline-top-fade), #000 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 var(--timeline-top-fade), #000 100%);
}

.dw-process-timeline__track::after {
  content: none;
}

.dw-process-timeline__track-segment {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.dw-process-timeline__track-segment--cta,
.dw-process-timeline__track-segment--cta .dw-process-timeline__track-fill {
  border-radius: 0;
}

.dw-process-timeline__track-fill {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  background: linear-gradient(180deg, var(--color-accent-cyan) 0%, var(--color-accent-violet) 100%);
}

.dw-process-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--timeline-column) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(1.5rem, 4.5vw, 4rem);
  padding-block: var(--timeline-item-pad);
}

.dw-process-timeline__item + .dw-process-timeline__item {
  margin-top: var(--timeline-step-gap);
}

.dw-process-timeline__item:first-child {
  margin-top: 0;
}

.dw-process-timeline__meta {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  min-height: var(--timeline-marker-size);
  padding-right: clamp(0.2rem, 1vw, 0.6rem);
  z-index: 1;
}

.dw-process-timeline__step-label {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 2.9vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
}

.dw-process-timeline__marker-slot {
  grid-column: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--timeline-marker-size);
  z-index: 1;
  will-change: transform;
}

.dw-process-timeline__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--timeline-marker-size);
  height: var(--timeline-marker-size);
  border: 2px solid rgba(17, 26, 51, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 18px 36px -28px rgba(17, 26, 51, 0.72);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast),
    background var(--transition-fast);
}

.dw-process-timeline__marker--cta {
  font-size: 0.95rem;
}

.dw-process-timeline__marker-arrow {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dw-process-timeline__card {
  grid-column: 3;
  width: 100%;
  max-width: 38rem;
  justify-self: start;
  padding: clamp(1.95rem, 3.6vw, 2.85rem);
  border: 1px solid rgba(17, 26, 51, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.dw-process-timeline__card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.58rem, 1.95vw, 1.98rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.dw-process-timeline__card p {
  margin-bottom: 0;
  color: var(--color-text-light);
  font-size: clamp(1.03rem, 1.18vw, 1.16rem);
  line-height: 1.72;
}

.dw-process-timeline__card--cta {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
}

.dw-process-timeline__card--cta p {
  margin-bottom: 1.15rem;
}

.dw-process-timeline__cta-outline {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
}

.dw-process-timeline__cta-outline-path {
  fill: none;
  stroke: var(--color-accent-violet);
}

.dw-process-timeline__cta-outline-path--left-glow,
.dw-process-timeline__cta-outline-path--right-glow {
  display: none;
}

.dw-process-timeline__cta-outline-path--left-stroke,
.dw-process-timeline__cta-outline-path--right-stroke {
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.dw-process-timeline__cta-outline.is-complete .dw-process-timeline__cta-outline-path--left-stroke,
.dw-process-timeline__cta-outline.is-complete .dw-process-timeline__cta-outline-path--right-stroke {
  stroke-linecap: butt;
}

.dw-process-timeline__item.has-contact .dw-process-timeline__marker {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) padding-box,
    linear-gradient(180deg, var(--color-accent-violet) 0%, var(--color-accent-cyan) 100%) border-box;
  box-shadow: 0 20px 38px -26px rgba(47, 116, 255, 0.36);
}

.dw-process-timeline__item.is-past .dw-process-timeline__card {
  border-color: rgba(47, 116, 255, 0.16);
}

.dw-process-timeline__item--cta.is-past .dw-process-timeline__card {
  border-color: rgba(17, 26, 51, 0.08);
}

.dw-process-timeline__item--cta .dw-process-timeline__step-label {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.dw-process-timeline__item--cta {
  grid-template-rows: 0 minmax(0, 1fr);
  row-gap: 0;
}

.dw-process-timeline__item--cta .dw-process-timeline__meta {
  display: none;
}

.dw-process-timeline__item--cta .dw-process-timeline__marker-slot {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  height: 0;
  align-self: start;
}

.dw-process-timeline__item--cta .dw-process-timeline__marker {
  width: 0;
  height: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  opacity: 0;
}

.dw-process-timeline__item--cta .dw-process-timeline__card {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 33rem;
  justify-self: center;
  text-align: center;
}

.dw-process-timeline__item--cta .dw-process-timeline__card h3 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.dw-process-timeline__item--cta .dw-process-timeline__card p {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.dw-process-timeline__item--cta .dw-process-timeline__card .dw-btn {
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .dw-process-timeline {
    --timeline-column: 4.75rem;
    --timeline-marker-size: 2.45rem;
  }

  .dw-process-timeline__item {
    column-gap: clamp(1.2rem, 3vw, 2.6rem);
  }

  .dw-process-timeline__step-label {
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  }
}

@media (max-width: 860px) {
  .dw-section-header--timeline {
    margin-bottom: 0;
  }

  .dw-process-timeline {
    --timeline-column: 3.75rem;
    --timeline-marker-size: 2.25rem;
    --timeline-x: 1.875rem;
    --timeline-item-pad: clamp(2rem, 5.8vw, 2.85rem);
    --timeline-step-gap: clamp(1.7rem, 5.6vw, 2.7rem);
    --timeline-intro-gap: calc(var(--timeline-item-pad) + var(--timeline-step-gap));
    --timeline-head-extend: clamp(8.25rem, 21vw, 10rem);
    --timeline-top-fade: clamp(1.35rem, 5vw, 2rem);
  }

  .dw-process-timeline__item {
    grid-template-columns: var(--timeline-column) minmax(0, 1fr);
    align-items: start;
    row-gap: 1.1rem;
    padding-block: var(--timeline-item-pad);
  }

  .dw-process-timeline__item + .dw-process-timeline__item {
    margin-top: var(--timeline-step-gap);
  }

  .dw-process-timeline__item:first-child {
    margin-top: 0;
  }

  .dw-process-timeline__meta {
    grid-column: 2;
    justify-content: flex-start;
    align-self: start;
    min-height: auto;
    padding-right: 0;
    padding-top: 0;
  }

  .dw-process-timeline__step-label {
    text-align: left;
    font-size: clamp(1.2rem, 4vw, 1.35rem);
  }

  .dw-process-timeline__item--cta .dw-process-timeline__step-label {
    font-size: clamp(1.2rem, 4vw, 1.35rem);
  }

  .dw-process-timeline__marker-slot {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-items: flex-start;
    min-height: 100%;
  }

  .dw-process-timeline__card {
    grid-column: 2;
    max-width: 100%;
  }

  .dw-process-timeline__item--cta {
    grid-template-rows: none;
    row-gap: 0.75rem;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__meta {
    display: flex;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__marker-slot {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 100%;
    height: auto;
    align-self: start;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__marker {
    width: var(--timeline-marker-size);
    height: var(--timeline-marker-size);
    border: 2px solid rgba(17, 26, 51, 0.12);
    box-shadow: 0 18px 36px -28px rgba(17, 26, 51, 0.72);
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-primary);
    font-size: 0.95rem;
    opacity: 1;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__card {
    grid-column: 2;
    grid-row: auto;
    max-width: 35rem;
    justify-self: start;
    text-align: left;
    border-width: var(--timeline-track-width);
    --cta-mobile-border-opacity: 0;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__card::before {
    content: "";
    position: absolute;
    inset: calc(var(--timeline-track-width) * -1);
    border: var(--timeline-track-width) solid transparent;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--color-accent-cyan) 0%, var(--color-accent-violet) 100%) border-box;
    -webkit-mask:
      linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
      linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: var(--cta-mobile-border-opacity);
    pointer-events: none;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__card h3,
  .dw-process-timeline__item--cta .dw-process-timeline__card p,
  .dw-process-timeline__item--cta .dw-process-timeline__card .dw-btn {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 861px) {
  .dw-process-timeline__card:not(.dw-process-timeline__card--cta) h3 {
    white-space: nowrap;
  }

  .dw-process-timeline__item--cta .dw-process-timeline__card {
    border-width: var(--timeline-track-width);
    border-color: rgba(17, 26, 51, 0.08);
  }
}

@media (max-width: 560px) {
  .dw-process-timeline {
    --timeline-column: 3.3rem;
    --timeline-marker-size: 2rem;
    --timeline-x: 1.65rem;
    --timeline-item-pad: 1.55rem;
    --timeline-step-gap: 1.7rem;
    --timeline-intro-gap: calc(var(--timeline-item-pad) + var(--timeline-step-gap));
    --timeline-head-extend: 7.25rem;
    --timeline-top-fade: 1.2rem;
  }

  .dw-process-timeline__item {
    column-gap: 0.9rem;
    row-gap: 0.9rem;
    padding-block: var(--timeline-item-pad);
  }

  .dw-process-timeline__card {
    padding: 1.5rem 1.35rem;
  }

  .dw-process-timeline__card h3 {
    font-size: 1.5rem;
  }

  .dw-process-timeline__card p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .dw-process-timeline__card--cta .dw-btn {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .dw-process-timeline__cta-outline {
    display: none;
  }
}

.dw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  max-width: 1030px;
  margin: 0 auto;
}

.dw-pricing-card {
  --pricing-card-inline: 2rem;
  --pricing-card-intro-gap: 1.55rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.dw-pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.96));
  box-shadow:
    var(--shadow-md),
    0 28px 72px rgba(47, 116, 255, 0.12);
}

.dw-pricing-card--featured::before {
  content: none;
}

.dw-pricing-card:not(.dw-pricing-card--featured) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 255, 0.96));
  box-shadow:
    var(--shadow-md),
    0 28px 72px rgba(183, 74, 255, 0.12),
    0 12px 36px rgba(255, 113, 210, 0.08);
}

.dw-pricing-card__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38em;
  min-height: 5.2rem;
  margin: 0;
  padding: 1.15rem 1.35rem;
  background: linear-gradient(135deg, #35c9ff 0%, #2f74ff 52%, #4e68ff 100%);
  color: var(--color-text-inverse);
  font-size: clamp(1.55rem, 1.22rem + 1.05vw, 2rem);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
}

.dw-pricing-card:not(.dw-pricing-card--featured) .dw-pricing-card__name {
  background: linear-gradient(135deg, #7c58ff 0%, #924fff 48%, #c354f4 100%);
}

.dw-pricing-card__name span {
  display: inline-block;
}

.dw-pricing-card__desc {
  max-width: 31rem;
  margin: var(--pricing-card-intro-gap) auto;
  padding-inline: var(--pricing-card-inline);
  font-size: var(--text-sm);
  line-height: 1.78;
  text-align: center;
}

.dw-pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 var(--pricing-card-inline) 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(17, 26, 51, 0.08);
  text-align: center;
}

.dw-pricing-card__amount {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--color-primary);
}

.dw-pricing-card__period {
  color: var(--color-text-light);
  font-weight: 700;
}

.dw-pricing-card__features {
  flex: 1 1 auto;
  list-style: none;
  margin: 0 var(--pricing-card-inline) 1.55rem;
  padding: 0.15rem 0 0;
}

.dw-pricing-card__features li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.85rem;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.dw-pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.dw-pricing-card .dw-btn {
  align-self: center;
  margin: auto var(--pricing-card-inline) 2rem;
}

.dw-pricing-card .dw-btn.dw-btn--full {
  width: min(26rem, calc(100% - (var(--pricing-card-inline) * 2)));
}

.dw-pricing-note {
  margin-top: 1.35rem;
  text-align: center;
  font-size: var(--text-sm);
}

.dw-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.dw-compare-card {
  padding: 1.7rem;
}

.dw-compare-card h3 {
  margin-bottom: 0.55rem;
}

.dw-compare-card p:last-child {
  margin-bottom: 0;
}


@media (max-width: 1100px) {

  .dw-hero__layout,

  .dw-two-col,

  .dw-compare-grid { grid-template-columns: 1fr; }

  .dw-hero__content { order: 2; }

  .dw-hero__media { order: 1; }

  .dw-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .dw-steps,

  .home .dw-steps { grid-template-columns: 1fr; }

  .dw-proof-card--wide { grid-column: span 1; }

}

@media (max-width: 920px) and (min-width: 781px) {
  .dw-section--managed-service .dw-container {
    padding-left: clamp(1rem, 2.5vw, 1.5rem);
    padding-right: clamp(1rem, 2.5vw, 1.5rem);
  }

  .dw-managed-service__item {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
    column-gap: clamp(1rem, 2.4vw, 1.4rem);
  }

  .dw-managed-service__media {
    width: min(100%, clamp(220px, 30vw, 290px));
  }

  .dw-managed-service__content {
    max-width: 29.5rem;
  }
}

@media (max-width: 780px) {
  .dw-managed-service__item {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .dw-managed-service__item--reverse .dw-managed-service__media,
  .dw-managed-service__item--reverse .dw-managed-service__content {
    order: initial;
  }

  .dw-managed-service__media,
  .dw-managed-service__item--reverse .dw-managed-service__media {
    width: min(100%, 280px);
  }

  .dw-managed-service__content,
  .dw-managed-service__item--reverse .dw-managed-service__content {
    max-width: 34rem;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.55rem;
    --text-4xl: 2rem;
    --text-3xl: 1.7rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .dw-container {
    padding: 0 1.15rem;
  }

  .dw-section {
    padding: var(--space-4xl) 0;
  }

  .dw-hero {
    padding: calc(82px + var(--space-3xl)) 0 var(--space-4xl);
  }

  .dw-hero__meta {
    grid-template-columns: 1fr;
  }

  .dw-features-grid,
  .dw-steps {
    grid-template-columns: 1fr;
  }

  .home .dw-steps .dw-step:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .dw-proof-card,
  .dw-proof-card--wide {
    grid-column: span 12;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --text-6xl: 2.55rem;
    --text-5xl: 2.2rem;
  }

  .dw-managed-service__media,
  .dw-managed-service__item--reverse .dw-managed-service__media {
    width: min(100%, 240px);
  }

  .dw-hero__actions,
  .dw-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dw-hero__actions .dw-btn,
  .dw-cta__actions .dw-btn {
    width: 100%;
  }
}

.dw-proof-grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  align-items: stretch;
}

.dw-proof-grid--home .dw-proof-card,
.dw-proof-grid--home .dw-proof-card--wide {
  display: grid;
  grid-column: auto;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.dw-proof-grid--home .dw-proof-card__media {
  aspect-ratio: 16 / 10.5;
}

.dw-proof-grid--home .dw-proof-card__media img {
  transform: scale(1.08);
  transform-origin: center top;
}

.dw-proof-grid--home .dw-proof-card__body {
  display: flex;
  flex-direction: column;
}

/* Home hero layout and icon recovery */
.home .dw-hero {
  padding: calc(92px + var(--space-2xl)) 0 clamp(3.5rem, 6vw, var(--space-5xl));
}

.home .dw-hero > .dw-container {
  width: 100%;
  max-width: none;
  padding-left: clamp(1.25rem, 3.8vw, 3rem);
  padding-right: 0;
}

.home .dw-hero__layout {
  --dw-home-hero-media-width: clamp(22rem, 46vw, 51rem);
  --dw-home-hero-copy-overlap: calc(var(--dw-home-hero-media-width) * 0.12);
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, var(--dw-home-hero-media-width));
  align-items: start;
  column-gap: 0;
  row-gap: 0;
  max-width: none;
  margin-inline: 0;
}

.home .dw-hero__content {
  display: contents;
}

.home .dw-hero__content[data-reveal],
.home .dw-hero__media[data-reveal] {
  opacity: 1;
  transform: none;
}

.home .dw-hero__eyebrow,
.home .dw-hero h1,
.home .dw-hero__subtitle,
.home .dw-pill-row,
.home .dw-hero__actions {
  grid-column: 1 / 3;
  justify-self: start;
  position: relative;
  z-index: 2;
  margin-inline: 0;
}

.home .dw-hero__eyebrow {
  grid-row: 1;
  width: fit-content;
  justify-self: start;
}

.home .dw-hero h1 {
  grid-row: 2;
  max-width: calc(100% - var(--dw-home-hero-media-width) + calc(var(--dw-home-hero-copy-overlap) * 0.8));
  font-size: clamp(2.3rem, 3.55vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home .dw-hero h1 .accent {
  padding-block-end: 0.08em;
  margin-block-end: -0.08em;
}

.home .dw-hero__subtitle {
  grid-row: 3;
  max-width: calc(100% - var(--dw-home-hero-media-width) + calc(var(--dw-home-hero-copy-overlap) * 0.45));
  font-size: clamp(0.98rem, 0.72rem + 0.48vw, 1.18rem);
  line-height: 1.54;
  margin-bottom: var(--space-xl);
}

.home .dw-pill-row {
  grid-row: 4;
  width: fit-content;
  max-width: 100%;
}

.home .dw-hero__actions {
  grid-row: 5;
  width: fit-content;
  max-width: none;
  margin-bottom: clamp(1.8rem, 4vw, var(--space-2xl));
}

.home .dw-hero__media {
  grid-column: 2 / 3;
  grid-row: 1 / span 5;
  justify-self: end;
  align-self: start;
  width: min(100%, var(--dw-home-hero-media-width));
  max-width: none;
  margin: clamp(-0.35rem, -0.35vw, 0rem) 0 0 0;
  transform: none;
  z-index: 1;
}

@media (min-width: 721px) {
  .home .dw-hero__layout {
    --dw-home-hero-copy-overlap: calc(var(--dw-home-hero-media-width) * 0.08);
  }

  .home .dw-pill-row,
  .home .dw-hero__actions {
    flex-wrap: nowrap;
  }

  .home .dw-pill-row br,
  .home .dw-hero__actions br {
    display: none;
  }

  .home .dw-pill,
  .home .dw-hero__actions .dw-btn {
    white-space: nowrap;
  }
}

@media (min-width: 721px) and (max-width: 858px) {
  .home .dw-pill-row,
  .home .dw-hero__actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    align-items: center;
  }

  .home .dw-hero__media {
    grid-row: 1 / 4;
    align-self: center;
    margin: 0;
  }
}

@media (min-width: 1360px) {
  .home .dw-hero > .dw-container {
    max-width: 1360px;
    margin-inline: auto;
  }

  .home .dw-hero__layout {
    --dw-home-hero-media-width: 626px;
  }
}

.home .dw-hero__blend-visual {
  --dw-home-hero-edge-clear: 2px;
  --dw-home-hero-corner-mask-size: 54% 54%;
  width: 100%;
  margin: 0;
  line-height: 0;
  position: relative;
  overflow: visible;
  isolation: isolate;
  will-change: transform;
}

.home .dw-hero__orbit {
  position: absolute;
  inset: 4% 1% 7%;
  z-index: 0;
  border: 1px dashed rgba(47, 116, 255, 0.24);
  border-radius: 47% 53% 46% 54%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.home .dw-hero__orbit::before,
.home .dw-hero__orbit::after {
  content: "";
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 24px rgba(65, 209, 255, 0.75), 0 0 0 6px rgba(65, 209, 255, 0.1);
}

.home .dw-hero__orbit::before {
  top: 18%;
  right: 10%;
}

.home .dw-hero__orbit::after {
  left: 8%;
  bottom: 21%;
}

.home .dw-hero__blend-mask {
  display: block;
  position: relative;
  z-index: 1;
}

.home .dw-hero__blend-mask--corners {
  -webkit-mask-image:
    radial-gradient(circle at top left, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%),
    radial-gradient(circle at top right, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%),
    radial-gradient(circle at bottom left, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%),
    radial-gradient(circle at bottom right, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%);
  mask-image:
    radial-gradient(circle at top left, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%),
    radial-gradient(circle at top right, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%),
    radial-gradient(circle at bottom left, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%),
    radial-gradient(circle at bottom right, transparent 0, transparent 9%, rgba(0, 0, 0, 0.08) 12.5%, rgba(0, 0, 0, 0.26) 17.5%, rgba(0, 0, 0, 0.54) 23%, rgba(0, 0, 0, 0.82) 28%, #000 32%, #000 100%);
  -webkit-mask-position: top left, top right, bottom left, bottom right;
  mask-position: top left, top right, bottom left, bottom right;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size:
    var(--dw-home-hero-corner-mask-size),
    var(--dw-home-hero-corner-mask-size),
    var(--dw-home-hero-corner-mask-size),
    var(--dw-home-hero-corner-mask-size);
  mask-size:
    var(--dw-home-hero-corner-mask-size),
    var(--dw-home-hero-corner-mask-size),
    var(--dw-home-hero-corner-mask-size),
    var(--dw-home-hero-corner-mask-size);
}

.home .dw-hero__blend-mask--x {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 1.75%, rgba(0, 0, 0, 0.12) 3.25%, rgba(0, 0, 0, 0.24) 4.625%, rgba(0, 0, 0, 0.44) 5.875%, rgba(0, 0, 0, 0.68) 6.925%, rgba(0, 0, 0, 0.9) 7.5%, #000 7.75%, #000 91.125%, rgba(0, 0, 0, 0.9) 91.5%, rgba(0, 0, 0, 0.68) 92.425%, rgba(0, 0, 0, 0.44) 93.575%, rgba(0, 0, 0, 0.24) 94.85%, rgba(0, 0, 0, 0.12) 96.45%, rgba(0, 0, 0, 0.04) 98.125%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 1.75%, rgba(0, 0, 0, 0.12) 3.25%, rgba(0, 0, 0, 0.24) 4.625%, rgba(0, 0, 0, 0.44) 5.875%, rgba(0, 0, 0, 0.68) 6.925%, rgba(0, 0, 0, 0.9) 7.5%, #000 7.75%, #000 91.125%, rgba(0, 0, 0, 0.9) 91.5%, rgba(0, 0, 0, 0.68) 92.425%, rgba(0, 0, 0, 0.44) 93.575%, rgba(0, 0, 0, 0.24) 94.85%, rgba(0, 0, 0, 0.12) 96.45%, rgba(0, 0, 0, 0.04) 98.125%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.home .dw-hero__blend-mask--y {
  -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 1.625%, rgba(0, 0, 0, 0.1) 2.875%, rgba(0, 0, 0, 0.2) 3.95%, rgba(0, 0, 0, 0.36) 4.875%, rgba(0, 0, 0, 0.58) 5.6%, rgba(0, 0, 0, 0.84) 6.05%, #000 6.25%, #000 90.5%, rgba(0, 0, 0, 0.9) 91%, rgba(0, 0, 0, 0.68) 91.875%, rgba(0, 0, 0, 0.44) 93.125%, rgba(0, 0, 0, 0.24) 94.5%, rgba(0, 0, 0, 0.12) 96.125%, rgba(0, 0, 0, 0.04) 98%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 1.625%, rgba(0, 0, 0, 0.1) 2.875%, rgba(0, 0, 0, 0.2) 3.95%, rgba(0, 0, 0, 0.36) 4.875%, rgba(0, 0, 0, 0.58) 5.6%, rgba(0, 0, 0, 0.84) 6.05%, #000 6.25%, #000 90.5%, rgba(0, 0, 0, 0.9) 91%, rgba(0, 0, 0, 0.68) 91.875%, rgba(0, 0, 0, 0.44) 93.125%, rgba(0, 0, 0, 0.24) 94.5%, rgba(0, 0, 0, 0.12) 96.125%, rgba(0, 0, 0, 0.04) 98%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.home .dw-hero__blend-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
  .home .dw-hero__blend-visual {
    animation: dw-home-hero-float 7s ease-in-out infinite;
  }

  .home .dw-hero__orbit {
    animation: dw-home-hero-orbit 18s linear infinite;
  }
}

@keyframes dw-home-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes dw-home-hero-orbit {
  to {
    transform: rotate(348deg);
  }
}

@media (min-width: 721px) {
  .home .dw-hero__blend-mask--corners {
    -webkit-mask-image:
      radial-gradient(circle at top left, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%),
      radial-gradient(circle at top right, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%),
      radial-gradient(circle at bottom left, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%),
      radial-gradient(circle at bottom right, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%);
    mask-image:
      radial-gradient(circle at top left, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%),
      radial-gradient(circle at top right, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%),
      radial-gradient(circle at bottom left, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%),
      radial-gradient(circle at bottom right, transparent 0, transparent 2.25%, rgba(0, 0, 0, 0.08) 3.125%, rgba(0, 0, 0, 0.26) 4.375%, rgba(0, 0, 0, 0.54) 5.75%, rgba(0, 0, 0, 0.82) 7%, #000 8%, #000 100%);
  }

  .home .dw-hero__blend-mask--x {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 0.45%, rgba(0, 0, 0, 0.12) 0.825%, rgba(0, 0, 0, 0.24) 1.175%, rgba(0, 0, 0, 0.44) 1.5%, rgba(0, 0, 0, 0.68) 1.75%, rgba(0, 0, 0, 0.9) 1.9%, #000 2%, #000 97.75%, rgba(0, 0, 0, 0.9) 97.875%, rgba(0, 0, 0, 0.68) 98.1%, rgba(0, 0, 0, 0.44) 98.4%, rgba(0, 0, 0, 0.24) 98.725%, rgba(0, 0, 0, 0.12) 99.1%, rgba(0, 0, 0, 0.04) 99.5%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 0.45%, rgba(0, 0, 0, 0.12) 0.825%, rgba(0, 0, 0, 0.24) 1.175%, rgba(0, 0, 0, 0.44) 1.5%, rgba(0, 0, 0, 0.68) 1.75%, rgba(0, 0, 0, 0.9) 1.9%, #000 2%, #000 97.75%, rgba(0, 0, 0, 0.9) 97.875%, rgba(0, 0, 0, 0.68) 98.1%, rgba(0, 0, 0, 0.44) 98.4%, rgba(0, 0, 0, 0.24) 98.725%, rgba(0, 0, 0, 0.12) 99.1%, rgba(0, 0, 0, 0.04) 99.5%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
  }

  .home .dw-hero__blend-mask--y {
    -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 0.4%, rgba(0, 0, 0, 0.1) 0.725%, rgba(0, 0, 0, 0.2) 1%, rgba(0, 0, 0, 0.36) 1.225%, rgba(0, 0, 0, 0.58) 1.4%, rgba(0, 0, 0, 0.84) 1.5%, #000 1.575%, #000 97.625%, rgba(0, 0, 0, 0.9) 97.75%, rgba(0, 0, 0, 0.68) 97.975%, rgba(0, 0, 0, 0.44) 98.3%, rgba(0, 0, 0, 0.24) 98.625%, rgba(0, 0, 0, 0.12) 99.025%, rgba(0, 0, 0, 0.04) 99.5%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 0.4%, rgba(0, 0, 0, 0.1) 0.725%, rgba(0, 0, 0, 0.2) 1%, rgba(0, 0, 0, 0.36) 1.225%, rgba(0, 0, 0, 0.58) 1.4%, rgba(0, 0, 0, 0.84) 1.5%, #000 1.575%, #000 97.625%, rgba(0, 0, 0, 0.9) 97.75%, rgba(0, 0, 0, 0.68) 97.975%, rgba(0, 0, 0, 0.44) 98.3%, rgba(0, 0, 0, 0.24) 98.625%, rgba(0, 0, 0, 0.12) 99.025%, rgba(0, 0, 0, 0.04) 99.5%, transparent calc(100% - var(--dw-home-hero-edge-clear)), transparent 100%);
  }
}

.home .dw-hero__meta {
  grid-column: 1 / -1;
  grid-row: 6;
  width: fit-content;
  max-width: 100%;
  margin-top: 25px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 180px);
  gap: var(--space-md);
  justify-content: center;
  align-items: stretch;
  overflow: visible;
}

.home .dw-hero__meta-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  min-height: 100%;
  padding: 1.45rem 1.45rem;
  text-align: center;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
  z-index: 0;
}

.home .dw-hero__meta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #fff;
  pointer-events: none;
  box-shadow:
    0 22px 44px rgba(47, 116, 255, 0.12),
    0 10px 24px rgba(17, 26, 51, 0.08);
  transition: box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .home .dw-hero__meta-item:hover {
    z-index: 2;
    transform: translate3d(0, 0, 0) scale(1.028);
    box-shadow: none;
  }

  .home .dw-hero__meta-item:hover::after {
    box-shadow:
      0 24px 48px rgba(17, 26, 51, 0.1),
      0 0 18px 5px rgba(65, 209, 255, 0.42),
      0 0 34px 9px rgba(47, 116, 255, 0.28),
      0 0 54px 13px rgba(110, 70, 255, 0.24);
  }
}

.home .dw-hero__meta-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.55rem;
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-align: center;
}

.home .dw-hero__meta-value::before {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  background-image: var(--dw-hero-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 12px 22px rgba(47, 116, 255, 0.18));
}

.home .dw-feature-card__icon::before {
  content: "";
  display: block;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.home .dw-hero__meta-label {
  display: block;
  width: 100%;
  color: var(--color-text-light);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.home .dw-hero__meta-item:nth-child(1) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g1)'/%3E%3Cpath d='M29 45.5l9.5 9.5L58.5 35' fill='none' stroke='%23ffffff' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.home .dw-hero__meta-item:nth-child(2) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g2)'/%3E%3Cg transform='translate(18 18) scale(2.15)'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 7h.01m3.486 1.513h.01m-6.978 0h.01M6.99 12H7m9 4h2.706a1.957 1.957 0 0 0 1.883-1.325A9 9 0 1 0 3.043 12.89 9.1 9.1 0 0 0 8.2 20.1a8.62 8.62 0 0 0 3.769.9 2.013 2.013 0 0 0 2.03-2v-.857A2.036 2.036 0 0 1 16 16Z'/%3E%3C/g%3E%3C/svg%3E");
}

.home .dw-hero__meta-item:nth-child(3) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g3' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g3)'/%3E%3Cg transform='translate(18 18) scale(2.15)'%3E%3Cpath fill='%23ffffff' fill-rule='evenodd' clip-rule='evenodd' d='M12 2a7 7 0 0 0-7 7 3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1a1 1 0 0 0 1-1V9a5 5 0 1 1 10 0v7.083A2.919 2.919 0 0 1 14.083 19H14a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v1a2 2 0 0 0 2 2h1a2 2 0 0 0 1.732-1h.351a4.917 4.917 0 0 0 4.83-4H19a3 3 0 0 0 3-3v-2a3 3 0 0 0-3-3 7 7 0 0 0-7-7Zm1.45 3.275a4 4 0 0 0-4.352.976 1 1 0 0 0 1.452 1.376 2.001 2.001 0 0 1 2.836-.067 1 1 0 1 0 1.386-1.442 4 4 0 0 0-1.321-.843Z'/%3E%3C/g%3E%3C/svg%3E");
}

.home .dw-hero__meta-item:nth-child(4) {
  --dw-hero-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cdefs%3E%3ClinearGradient id='g4' x1='16' y1='12' x2='70' y2='76' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238fc1ff'/%3E%3Cstop offset='1' stop-color='%232f74ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='44' cy='44' r='36' fill='url(%23g4)'/%3E%3Ccircle cx='41' cy='39' r='13' fill='none' stroke='%23ffffff' stroke-width='5.5'/%3E%3Cpath d='M50 48l10 10' fill='none' stroke='%23ffffff' stroke-width='5.5' stroke-linecap='round'/%3E%3Cpath d='M35.5 39l4 4 7-8' fill='none' stroke='%23ffffff' stroke-width='4.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(1) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2.5'/%3E%3Cpath d='M3 9h18'/%3E%3Cpath d='M9 20V9'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(2) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 5-3.8 8.7-7 9.9C8.8 20.7 5 17 5 12V6l7-3z'/%3E%3Cpath d='M9.5 12.5l1.9 1.9 3.6-4'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(3) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15.5-6.36L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15.5 6.36L3 16'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(4) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='M16 16l5 5'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(5) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E");
}

.home .dw-features-grid .dw-feature-card:nth-child(6) {
  --dw-feature-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a14 14 0 0 1 4 9 14 14 0 0 1-4 9 14 14 0 0 1-4-9 14 14 0 0 1 4-9z'/%3E%3C/svg%3E");
}

.home .dw-feature-card__icon::before {
  width: 1.45rem;
  height: 1.45rem;
  -webkit-mask-image: var(--dw-feature-icon);
  mask-image: var(--dw-feature-icon);
}

@media (max-width: 844px) {
  .home .dw-hero__meta {
    grid-template-columns: repeat(2, 180px);
  }
}


@media (max-width: 720px) {
  .home .dw-hero__blend-visual {
    --dw-home-hero-corner-mask-size: 50% 50%;
  }

  .home .dw-hero__blend-mask--x {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 1.75%, rgba(0, 0, 0, 0.12) 3.25%, rgba(0, 0, 0, 0.24) 4.625%, rgba(0, 0, 0, 0.44) 5.875%, rgba(0, 0, 0, 0.68) 6.925%, rgba(0, 0, 0, 0.9) 7.5%, #000 7.75%, #000 96.7%, rgba(0, 0, 0, 0.94) 97.2%, rgba(0, 0, 0, 0.78) 97.95%, rgba(0, 0, 0, 0.52) 98.7%, rgba(0, 0, 0, 0.26) 99.3%, rgba(0, 0, 0, 0.1) 99.75%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, transparent var(--dw-home-hero-edge-clear), rgba(0, 0, 0, 0.04) 1.75%, rgba(0, 0, 0, 0.12) 3.25%, rgba(0, 0, 0, 0.24) 4.625%, rgba(0, 0, 0, 0.44) 5.875%, rgba(0, 0, 0, 0.68) 6.925%, rgba(0, 0, 0, 0.9) 7.5%, #000 7.75%, #000 96.7%, rgba(0, 0, 0, 0.94) 97.2%, rgba(0, 0, 0, 0.78) 97.95%, rgba(0, 0, 0, 0.52) 98.7%, rgba(0, 0, 0, 0.26) 99.3%, rgba(0, 0, 0, 0.1) 99.75%, transparent 100%);
  }

  .home .dw-hero {
    padding: calc(82px + 0.75rem) 0 var(--space-4xl);
  }

  .home .dw-hero > .dw-container {
    max-width: none;
    padding-inline: 1.15rem;
  }

  .home .dw-hero__layout {
    --dw-home-hero-copy-overlap: 0rem;
    --dw-home-hero-mobile-media-width: min(100%, 28rem);
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    margin-inline: 0;
    row-gap: 0;
  }

  .home .dw-hero__eyebrow {
    display: none;
  }

  .home .dw-hero h1 {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(2.2rem, 8.2vw, 2.72rem);
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-top: 15px;
    text-align: center;
    margin-inline: 0;
  }

  .home .dw-hero__media {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    width: var(--dw-home-hero-mobile-media-width);
    max-width: none;
    margin: calc(-1 * clamp(0.35rem, 1.5vw, 0.7rem)) auto clamp(0.15rem, 0.8vw, 0.35rem);
    z-index: 1;
  }

  .home .dw-hero__subtitle {
    grid-column: 1;
    grid-row: 4;
    width: var(--dw-home-hero-mobile-media-width);
    max-width: var(--dw-home-hero-mobile-media-width);
    justify-self: center;
    margin: clamp(0.15rem, 0.8vw, 0.35rem) 0 0.85rem;
  }

  .home .dw-pill-row {
    grid-column: 1;
    grid-row: 5;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    align-items: center;
    margin: 0 0 var(--space-lg);
  }

  .home .dw-hero__actions {
    grid-column: 1;
    grid-row: 6;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-2xl);
  }

  .home .dw-pill-row br,
  .home .dw-hero__actions br {
    display: none;
  }

  .home .dw-pill {
    white-space: nowrap;
  }

  .home .dw-hero__actions .dw-btn {
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .home .dw-hero__meta {
    grid-column: 1;
    grid-row: 7;
  }

  .home .dw-hero__blend-visual img {
    transform: scale(1.02);
  }


.dw-proof-grid--home {
    grid-template-columns: 1fr;
  }

  .dw-proof-grid--home .dw-proof-card,
  .dw-proof-grid--home .dw-proof-card--wide {
    grid-column: auto;
  }

  .home .dw-hero__meta-item {
    padding: 1.3rem 1.1rem;
  }

  .home .dw-hero__meta-value {
    gap: 0.45rem;
    font-size: 1.08rem;
  }

  .home .dw-hero__meta-label {
    font-size: 0.78rem;
  }

  .home .dw-hero__meta {
    width: min(100%, 376px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 410px) {
  .home .dw-pill-row,
  .home .dw-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .dw-pricing-card__amount {
    font-size: clamp(2.55rem, 13vw, 3rem);
  }

  .dw-pricing-card__period {
    flex-basis: 100%;
  }
}

@media (max-width: 780px) {
  .dw-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 38rem;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .dw-pricing-card {
    --pricing-card-inline: 1.35rem;
    --pricing-card-intro-gap: 1.45rem;
  }

  .dw-pricing-card__name {
    flex-direction: column;
    gap: 0.05rem;
    min-height: 5.75rem;
    padding-block: 1.05rem;
  }

  .dw-pricing-card__desc {
    padding-inline: var(--pricing-card-inline);
  }

  .dw-pricing-card .dw-btn {
    margin-bottom: var(--pricing-card-intro-gap);
  }
}

.home .dw-hero__blend-visual picture,

.dw-proof-card__media picture,

.dw-managed-service__media picture { display: block; width: 100%; height: 100%; }

.dw-managed-service__media picture { height: auto; }

