:root {
  --dt-orange: #e16f2a;
  --dt-orange-strong: #ff4b16;
  --dt-ink: #071021;
  --dt-muted: #5e687b;
  --dt-line: #e6e9ef;
  --dt-soft: #fff5ef;
  --dt-dark: #05080c;
}

.dt-page {
  color: var(--dt-ink);
  background: #fff;
  overflow: hidden;
}

.dt-container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.dt-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(225, 111, 42, .22), transparent 28%),
    linear-gradient(90deg, #030507 0%, #070b11 44%, #111822 100%);
  color: #fff;
}

.dt-hero-inner {
  min-height: 418px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  padding: 48px 0;
}

.dt-hero-copy {
  position: relative;
  z-index: 2;
}

.dt-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(3.5rem, 6vw, 6.1rem);
  line-height: .94;
  letter-spacing: 0;
  font-weight: 900;
}

.dt-hero h1 span,
.dt-final h2 span {
  color: var(--dt-orange-strong);
}

.dt-hero h2 {
  margin: 0 0 24px;
  max-width: 650px;
  font-size: clamp(1.28rem, 1.7vw, 2rem);
  line-height: 1.35;
  font-weight: 700;
}

.dt-hero p {
  max-width: 595px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.03rem;
  line-height: 1.8;
}

.dt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.dt-primary,
.dt-secondary {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}

.dt-primary {
  background: linear-gradient(135deg, #ff5a1b, var(--dt-orange));
  color: #fff;
  border: 1px solid var(--dt-orange);
  box-shadow: 0 12px 24px rgba(225, 111, 42, .24);
}

.dt-secondary {
  background: #fff;
  color: var(--dt-ink);
  border: 1px solid rgba(225, 111, 42, .5);
}

.dt-secondary.dark {
  background: rgba(255, 255, 255, .04);
  color: #fff;
  border-color: rgba(225, 111, 42, .78);
}

.dt-hero-visual {
  min-width: 0;
}

.dt-hero-visual img {
  width: 100%;
  height: 390px;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.dt-hero .dt-actions {
  flex-wrap: nowrap;
  gap: 12px;
}

.dt-hero .dt-primary,
.dt-hero .dt-secondary {
  min-height: 48px;
  padding: 0 18px;
  font-size: .9rem;
}

.dt-why {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  align-items: center;
  padding: 76px 0 52px;
}

.dt-kicker {
  margin: 0 0 16px;
  color: var(--dt-orange-strong);
  text-transform: uppercase;
  font-size: .88rem;
  line-height: 1.2;
  font-weight: 900;
}

.dt-title-block h2,
.dt-journey h2,
.dt-tech h2,
.dt-industries h2 {
  margin: 0 0 18px;
  color: var(--dt-ink);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
}

.dt-why .dt-title-block h2 {
  font-size: clamp(1.75rem, 2vw, 2.05rem);
}

.dt-title-block p:not(.dt-kicker) {
  max-width: 575px;
  margin: 0 0 28px;
  color: var(--dt-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.dt-why-image {
  width: 100%;
  height: auto;
  max-height: 270px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(10, 18, 32, .12);
}

.dt-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--dt-line);
  border-bottom: 1px solid var(--dt-line);
  margin-top: 22px;
}

.dt-benefits article {
  padding: 36px 42px 36px 34px;
  border-right: 1px solid var(--dt-line);
}

.dt-benefits article:nth-child(4n) {
  border-right: 0;
}

.dt-benefits article:nth-child(n+5) {
  border-top: 1px solid var(--dt-line);
}

.dt-benefits h3,
.dt-steps h3,
.dt-tech h3 {
  margin: 16px 0 8px;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 900;
}

.dt-benefits p,
.dt-steps p,
.dt-tech p {
  margin: 0;
  color: #3d4657;
  font-size: .94rem;
  line-height: 1.62;
}

.dt-icon {
  --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5'/%3E%3Cpath d='M4 19h16'/%3E%3Cpath d='m7 14 4-4 3 3 5-6'/%3E%3C/svg%3E");
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
}

.dt-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--dt-orange-strong);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.dt-icon.user { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c1.5-4 14.5-4 16 0'/%3E%3C/svg%3E"); }
.dt-icon.idea { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M8 14a6 6 0 1 1 8 0c-1 1-1 2-1 4H9c0-2 0-3-1-4z'/%3E%3C/svg%3E"); }
.dt-icon.shield { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 19 6v5c0 4.5-2.8 8-7 10-4.2-2-7-5.5-7-10V6l7-3z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E"); }
.dt-icon.cloud { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 18h10a4 4 0 0 0 0-8 6 6 0 0 0-11.5 2A3.5 3.5 0 0 0 7 18z'/%3E%3C/svg%3E"); }
.dt-icon.lock { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); }
.dt-icon.data { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='7' ry='3'/%3E%3Cpath d='M5 5v6c0 1.7 3.1 3 7 3s7-1.3 7-3V5'/%3E%3Cpath d='M5 11v6c0 1.7 3.1 3 7 3s7-1.3 7-3v-6'/%3E%3C/svg%3E"); }
.dt-icon.globe { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E"); }
.dt-icon.target { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); }
.dt-icon.stack { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3 9 5-9 5-9-5z'/%3E%3Cpath d='m3 12 9 5 9-5'/%3E%3Cpath d='m3 16 9 5 9-5'/%3E%3C/svg%3E"); }
.dt-icon.clipboard { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='4' width='12' height='16' rx='2'/%3E%3Cpath d='M9 4a3 3 0 0 1 6 0M9 9h6M9 13h6M9 17h4'/%3E%3C/svg%3E"); }
.dt-icon.rocket { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4c3-1 5-1 6 0 1 1 1 3 0 6l-8 8-6-6z'/%3E%3Cpath d='M7 17 4 20M10 14l-6 6M14 4l6 6'/%3E%3C/svg%3E"); }
.dt-icon.ai { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='6' width='12' height='12' rx='2'/%3E%3Cpath d='M9 1v4M15 1v4M9 19v4M15 19v4M1 9h4M1 15h4M19 9h4M19 15h4M9 15l2-6h2l2 6M10 13h4'/%3E%3C/svg%3E"); }
.dt-icon.iot { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2'/%3E%3Cpath d='M9 9h6v6H9zM12 1v4M12 19v4M1 12h4M19 12h4'/%3E%3C/svg%3E"); }
.dt-icon.gear { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a8 8 0 0 0 .1-2l2-1-2-3-2.2.7a7 7 0 0 0-1.7-1l-.4-2.3h-4l-.4 2.3a7 7 0 0 0-1.7 1L6.9 9 5 12l2 1a8 8 0 0 0 .1 2l-2 1 2 3 2.2-.7a7 7 0 0 0 1.7 1l.4 2.3h4l.4-2.3a7 7 0 0 0 1.7-1l2.2.7 2-3z'/%3E%3C/svg%3E"); }
.dt-icon.code { --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='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 8-4 4 4 4M16 8l4 4-4 4M14 4l-4 16'/%3E%3C/svg%3E"); }

.dt-center-action {
  display: flex;
  justify-content: center;
  padding: 28px 0 72px;
}

.dt-center-action .dt-secondary {
  color: var(--dt-orange-strong);
  min-width: 190px;
}

.dt-journey {
  padding: 58px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(225, 111, 42, .22), transparent 30%),
    linear-gradient(180deg, #06090e 0%, #090d13 100%);
  text-align: center;
}

.dt-journey .dt-kicker {
  color: var(--dt-orange);
}

.dt-journey h2 {
  color: #fff;
  margin-bottom: 10px;
}

.dt-journey-sub {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, .74);
  font-size: 1.02rem;
}

.dt-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.dt-steps article {
  position: relative;
  min-height: 270px;
  padding: 48px 18px 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.dt-steps article::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -14px;
  width: 14px;
  border-top: 1px dashed rgba(255, 255, 255, .58);
}

.dt-steps article:last-child::after {
  display: none;
}

.dt-steps b {
  position: absolute;
  top: -17px;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--dt-orange-strong);
  color: #fff;
  font-size: .92rem;
  box-shadow: 0 8px 18px rgba(225, 111, 42, .35);
}

.dt-steps .dt-icon {
  width: 48px;
  height: 48px;
}

.dt-steps h3 {
  min-height: 42px;
  margin: 18px 0 10px;
  color: #fff;
  font-size: .88rem;
}

.dt-steps p {
  color: rgba(255, 255, 255, .74);
  font-size: .82rem;
  line-height: 1.62;
}

.dt-journey .dt-actions {
  justify-content: center;
}

.dt-tech {
  padding: 54px 0 26px;
  text-align: center;
}

.dt-tech h2,
.dt-industries h2 {
  font-size: clamp(1.85rem, 2.6vw, 2.55rem);
}

.dt-tech-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--dt-line);
  border-bottom: 1px solid var(--dt-line);
}

.dt-tech-row span {
  min-height: 122px;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--dt-line);
  font-weight: 900;
  line-height: 1.25;
}

.dt-tech-row span:last-child {
  border-right: 0;
}

.dt-tech-row small {
  display: block;
  color: #384254;
  font-size: .75rem;
  font-weight: 800;
}

.dt-tech-row .dt-icon {
  width: 38px;
  height: 38px;
}

.dt-industries {
  padding: 20px 0 48px;
  text-align: center;
}

.dt-industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.dt-industry-grid article {
  overflow: hidden;
  border-radius: 7px;
  background: #0a0d13;
  box-shadow: 0 14px 28px rgba(10, 18, 32, .12);
}

.dt-industry-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: block;
  object-fit: cover;
}

.dt-industry-grid h3 {
  margin: 0;
  padding: 9px 6px 11px;
  color: #fff;
  font-size: .82rem;
  line-height: 1.15;
  font-weight: 900;
}

.dt-final {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .95), rgba(8, 9, 12, .84)),
    radial-gradient(circle at 78% 40%, rgba(225, 111, 42, .35), transparent 34%),
    #08090d;
}

.dt-final-inner {
  min-height: 180px;
  padding: 38px 0;
  display: grid;
  grid-template-columns: .55fr .7fr 1fr;
  gap: 36px;
  align-items: center;
}

.dt-final h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
}

.dt-final p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.02rem;
  line-height: 1.65;
}

.dt-final .dt-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
}

.dt-final .dt-primary,
.dt-final .dt-secondary {
  min-height: 48px;
  padding: 0 14px;
  font-size: .84rem;
}

@media (max-width: 1120px) {
  .dt-container {
    width: min(100% - 36px, 960px);
  }

  .dt-hero-inner,
  .dt-why,
  .dt-final-inner {
    grid-template-columns: 1fr;
  }

  .dt-hero-visual img {
    height: auto;
    object-fit: contain;
  }

  .dt-benefits,
  .dt-tech-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .dt-benefits article,
  .dt-benefits article:nth-child(4n),
  .dt-tech-row span {
    border-right: 1px solid var(--dt-line);
  }

  .dt-benefits article:nth-child(2n),
  .dt-tech-row span:nth-child(2n) {
    border-right: 0;
  }

  .dt-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .dt-steps article::after {
    display: none;
  }

  .dt-industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dt-final .dt-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dt-container {
    width: min(100% - 28px, 520px);
  }

  .dt-hero-inner {
    padding: 40px 0;
  }

  .dt-hero h1 {
    font-size: 3.25rem;
  }

  .dt-actions,
  .dt-primary,
  .dt-secondary {
    width: 100%;
  }

  .dt-hero .dt-actions {
    flex-wrap: wrap;
  }

  .dt-benefits,
  .dt-steps,
  .dt-tech-row,
  .dt-industry-grid {
    grid-template-columns: 1fr;
  }

  .dt-benefits article,
  .dt-benefits article:nth-child(4n),
  .dt-benefits article:nth-child(2n),
  .dt-tech-row span,
  .dt-tech-row span:nth-child(2n) {
    border-right: 0;
  }

  .dt-benefits article:not(:first-child),
  .dt-tech-row span:not(:first-child) {
    border-top: 1px solid var(--dt-line);
  }

  .dt-journey {
    padding-top: 50px;
  }

  .dt-steps {
    gap: 34px;
  }

  .dt-steps article {
    min-height: auto;
  }
}
