.dts-hero,
.dts-hero * { box-sizing: border-box; }

.dts-hero {
  --dts-accent: #d40b08;
  --dts-accent-hover: #be0b08;
  --dts-dark: #0c0c0c;
  --dts-white: #fffefb;
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin-right: -50vw;
  margin-left: -50vw;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--dts-dark);
  color: var(--dts-white);
  font-family: "Karla", "Montserrat", Arial, sans-serif;
}

.dts-hero a,
.dts-hero a:hover { color: var(--dts-white); text-decoration: none; }
.dts-hero button { font: inherit; }

.dts-hero__photo {
  position: absolute;
  right: -2vw;
  bottom: 0;
  z-index: 0;
  width: clamp(1100px, 102.4vw, 2112px);
  aspect-ratio: 2000 / 1131;
  transform-origin: 50% 100%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(0deg, transparent 0, #000 14%);
  mask-image: linear-gradient(0deg, transparent 0, #000 14%);
  will-change: transform, clip-path;
  animation: dtsHeroClipUp 1.9s cubic-bezier(.16,1,.3,1) .1s both;
}

.dts-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  display: block;
  transform-origin: 50% 100%;
  filter: grayscale(.12) contrast(1.12) brightness(1);
  animation: dtsHeroImgGrow 2.6s cubic-bezier(.16,1,.3,1) .1s both;
}

.dts-hero__mobile-scrim {
  position: absolute;
  inset: 0 0 0 100%;
  background: linear-gradient(0deg, rgba(12,12,12,.92), rgba(12,12,12,.2) 60%, transparent),
              linear-gradient(180deg, rgba(12,12,12,.72), rgba(12,12,12,.4) 50%, rgba(12,12,12,.75));
}

.dts-hero__scan {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dts-accent);
  box-shadow: 0 0 16px 2px rgba(212,11,8,.6);
  animation: dtsHeroScan 1.9s cubic-bezier(.16,1,.3,1) .1s both;
}

.dts-hero__wide-scrim {
  position: absolute;
  inset: 0 34% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #0c0c0c 0%, #0c0c0c 40%, rgba(12,12,12,.9) 62%, transparent 100%);
}

.dts-hero__header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px,2.4vw,30px) clamp(20px,4vw,56px);
}

.dts-hero__logo-link { display: block; flex: 0 0 auto; }
.dts-hero .dts-hero__logo {
  display: block !important;
  width: 140px !important;
  max-width: none !important;
  height: 34px !important;
  object-fit: contain;
  object-position: left center;
}

.dts-hero__desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px,2.4vw,36px);
}

.dts-hero__desktop-nav > a:not(.dts-hero__cta) {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.dts-hero__desktop-nav > a:not(.dts-hero__cta):hover { color: var(--dts-accent); border-color: var(--dts-accent); }

.dts-hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--dts-accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dts-hero__cta--small { min-height: 44px; gap: 10px; padding: 6px 6px 6px 20px; }
.dts-hero__cta--large { min-height: 60px; gap: 16px; padding: 10px 10px 10px 30px; font-size: 13px; }
.dts-hero__cta-fill {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  background: var(--dts-white);
  transition: transform .69s cubic-bezier(.2,0,.2,1), background .3s;
}
.dts-hero__cta--large .dts-hero__cta-fill { right: 10px; width: 40px; height: 40px; margin-top: -20px; }
.dts-hero__cta-label, .dts-hero__cta-arrow { position: relative; z-index: 1; }
.dts-hero__cta-label { transition: color .38s cubic-bezier(.2,0,.2,1); }
.dts-hero__cta-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--dts-accent);
  font-size: 22px;
  line-height: 1;
  transition: transform .4s cubic-bezier(.2,0,.2,1), color .38s;
}
.dts-hero__cta--large .dts-hero__cta-arrow { width: 40px; height: 40px; font-size: 26px; }
.dts-hero__cta:hover .dts-hero__cta-fill { transform: scale(18); background: #bbb; }
.dts-hero__cta:hover .dts-hero__cta-label,
.dts-hero__cta:hover .dts-hero__cta-arrow { color: var(--dts-dark); }
.dts-hero__cta:hover .dts-hero__cta-arrow { transform: translateX(5px); }

.dts-hero__mobile-nav { display: none; }

.dts-hero__content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: clamp(96px,16svh,190px) clamp(20px,4vw,56px) clamp(40px,8svh,96px);
}

.dts-hero__inner { width: 100%; max-width: 1360px; margin-inline: auto; }
.dts-hero__content { width: 100%; max-width: 660px; margin-right: auto; }
.dts-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(12px,2.4svh,28px);
  padding: 7px 15px 8px;
  border: 1px solid rgba(255,254,251,.24);
  border-radius: 5px;
  background: rgba(12,12,12,.35);
  backdrop-filter: blur(8px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation-delay: .15s !important;
}
.dts-hero__pulse { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--dts-accent); animation: dtsHeroPulse 2.4s infinite; }
.dts-hero__title {
  margin: 0 0 clamp(14px,2.6svh,30px);
  color: var(--dts-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px,min(6.1vw,8.4svh),64px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.dts-hero__line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.dts-hero__line > span { display: block; animation: dtsHeroLineUp .95s cubic-bezier(.65,.05,.36,1) both; }
.dts-hero__line:nth-child(1) > span { animation-delay: .1s; }
.dts-hero__line:nth-child(2) > span { animation-delay: .22s; }
.dts-hero__line:nth-child(3) > span { animation-delay: .34s; }
.dts-hero__description {
  max-width: 54ch;
  margin: 0 0 clamp(20px,3.4svh,42px);
  color: rgba(255,254,251,.78);
  font-size: clamp(15px,1.5vw,19px);
  font-weight: 500;
  line-height: 1.6;
  text-wrap: pretty;
  animation-delay: .65s !important;
}
.dts-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; animation-delay: .78s !important; }
.dts-hero__fade-up { animation: dtsHeroFadeUp .7s cubic-bezier(.2,0,.2,1) both; }

@media (max-width: 899px) {
  .dts-hero__desktop-nav { display: none; }
  .dts-hero__photo { width: clamp(560px,135vw,1320px); }
  .dts-hero__wide-scrim { display: none; }
  .dts-hero__mobile-scrim { left: 0; }
  .dts-hero__mobile-nav {
    position: fixed;
    top: clamp(14px,3.2vw,22px);
    right: clamp(14px,4vw,22px);
    z-index: 999;
    display: block;
    width: 124px;
    height: 48px;
    overflow: hidden;
    border: 1px solid rgba(255,254,251,.24);
    border-radius: 24px;
    background: rgba(12,12,12,.9);
    backdrop-filter: blur(14px);
    transition: width .55s cubic-bezier(.2,0,.2,1), height .55s cubic-bezier(.2,0,.2,1), border-radius .55s cubic-bezier(.2,0,.2,1);
  }
  .dts-hero__mobile-nav[data-open="true"] { width: min(78vw,300px); height: 282px; border-radius: 20px; }
  .dts-hero__menu-button {
    position: absolute; top: 0; right: 0; display: grid; place-items: center;
    width: 124px; height: 48px; padding: 0; border: 0; background: transparent;
    color: var(--dts-white); font-family: "Montserrat",Arial,sans-serif; font-size: 13px;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  }
  .dts-hero__menu-open, .dts-hero__menu-close { grid-area: 1/1; transition: opacity .25s; }
  .dts-hero__menu-close { opacity: 0; color: var(--dts-accent); }
  .dts-hero__mobile-nav[data-open="true"] .dts-hero__menu-open { opacity: 0; }
  .dts-hero__mobile-nav[data-open="true"] .dts-hero__menu-close { opacity: 1; }
  .dts-hero__mobile-links {
    position: absolute; top: 60px; right: 0; left: 0; display: flex; flex-direction: column; gap: 2px;
    padding: 0 20px 20px; opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .3s, transform .4s;
  }
  .dts-hero__mobile-nav[data-open="true"] .dts-hero__mobile-links { opacity: 1; transform: none; pointer-events: auto; transition-delay: .18s; }
  .dts-hero__mobile-links > a:not(.dts-hero__mobile-cta) {
    padding: 11px 0; border-bottom: 1px solid rgba(255,254,251,.14);
    font-family: "Montserrat",Arial,sans-serif; font-size: 19px; font-weight: 600;
  }
  .dts-hero__mobile-cta {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
    margin-top: 16px; padding: 12px 22px; border-radius: 5px; background: var(--dts-accent);
    font-family: "Montserrat",Arial,sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
  }
}

@media (max-width: 480px) {
  .dts-hero__header { padding-right: 156px; }
  .dts-hero .dts-hero__logo { width: 136px !important; height: auto !important; }
  .dts-hero__content-wrap { padding-bottom: clamp(36px,7svh,64px); }
}

@media (prefers-reduced-motion: reduce) {
  .dts-hero *, .dts-hero *::before, .dts-hero *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .dts-hero__photo { transform: none !important; }
}

@keyframes dtsHeroLineUp { from { transform: translateY(108%); } to { transform: translateY(0); } }
@keyframes dtsHeroFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dtsHeroClipUp { from { clip-path: inset(100% 0 0); } to { clip-path: inset(0); } }
@keyframes dtsHeroImgGrow { from { transform: translateY(18%) scale(-.78,.78); } to { transform: translateY(0) scale(-1,1); } }
@keyframes dtsHeroScan { 0% { transform: translateY(0); opacity: 1; } 71% { opacity: 1; } 97%,100% { transform: translateY(-100%); opacity: 0; } }
@keyframes dtsHeroPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(212,11,8,.65); } 50% { box-shadow: 0 0 0 7px rgba(212,11,8,0); } }
