.vtds {
  --vtds-navy: #072b57;
  --vtds-blue: #349bd7;
  --vtds-teal: #0f766e;
  --vtds-teal-dark: #0b5f5a;
  --vtds-gold: #c28a1a;
  --vtds-text: #102033;
  --vtds-muted: #66758a;
  --vtds-line: #dbe5ef;
  --vtds-soft: #f4f8fc;
  max-width: 1120px;
  margin: 0 auto 64px;
  padding: 34px 20px 0;
  font-family: inherit;
  color: var(--vtds-text);
}
.vtds * {
  box-sizing: border-box;
}
.vtds__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(7, 43, 87, .12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 155, 215, .13), transparent 36%),
    linear-gradient(160deg, #ffffff 0%, #f7fbff 58%, #eef7fb 100%);
  box-shadow: 0 22px 60px rgba(7, 43, 87, .13);
}
.vtds__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--vtds-blue), var(--vtds-teal), var(--vtds-gold));
}
.vtds__content {
  position: relative;
  z-index: 1;
  padding: 46px 46px 40px;
}
.vtds__brandline {
  margin-bottom: 12px;
  color: var(--vtds-teal);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vtds__title {
  margin: 0;
  max-width: 680px;
  color: #061a33;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
}
.vtds__intro {
  max-width: 610px;
  margin: 14px 0 26px;
  color: var(--vtds-muted);
  font-size: 17px;
  line-height: 1.65;
}
.vtds__form {
  display: grid;
  gap: 16px;
}
.vtds__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  min-height: 66px;
  border: 1px solid rgba(7, 43, 87, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 43, 87, .1);
}
.vtds__prefix {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 18px;
  border-right: 1px solid var(--vtds-line);
  color: #8290a4;
  font-size: 16px;
  font-weight: 700;
  background: #f8fafc;
}
.vtds__input {
  min-height: 64px;
  width: 100%;
  border: 0;
  padding: 0 18px;
  font-size: 19px;
  line-height: 1.2;
  color: #0f172a;
  background: #fff;
}
.vtds__input:focus {
  outline: 0;
}
.vtds__row:focus-within {
  border-color: var(--vtds-teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12), 0 14px 34px rgba(7, 43, 87, .1);
}
.vtds__button,
.vtds__buy,
.vtds__chip {
  min-height: 44px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.vtds__button {
  align-self: stretch;
  min-height: 64px;
  margin: 0;
  padding: 0 30px;
  border-radius: 0;
  background: var(--vtds-teal);
  color: #fff;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.vtds__button:hover,
.vtds__button:focus-visible {
  background: var(--vtds-teal-dark);
}
.vtds__button:disabled {
  opacity: .65;
  cursor: wait;
}
.vtds__tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vtds__chip {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(52, 155, 215, .2);
  background: rgba(255, 255, 255, .78);
  color: var(--vtds-navy);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(7, 43, 87, .06);
}
.vtds__chip:hover,
.vtds__chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, .38);
  background: #fff;
}
.vtds__status {
  min-height: 24px;
  margin-top: 18px;
  color: #3d4b5f;
  font-size: 15px;
  font-weight: 700;
}
.vtds__status--error {
  color: #b91c1c;
}
.vtds__aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 40px 34px;
  background: linear-gradient(155deg, var(--vtds-navy), #0b4775 58%, #0f766e 100%);
  color: #fff;
}
.vtds__aside::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 82px;
  height: 82px;
  border-right: 4px solid rgba(255, 255, 255, .18);
  border-bottom: 4px solid rgba(255, 255, 255, .18);
}
.vtds__aside-title {
  max-width: 220px;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 800;
}
.vtds__benefits {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vtds__benefits li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.35;
}
.vtds__benefits span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3c54b, var(--vtds-gold));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .32);
}
.vtds__results {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.vtds__result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border: 1px solid var(--vtds-line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 43, 87, .08);
}
.vtds__domain {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
}
.vtds__price {
  min-width: 112px;
  color: var(--vtds-navy);
  font-size: 15px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}
.vtds__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-transform: capitalize;
}
.vtds__result--available {
  border-color: rgba(15, 118, 110, .24);
}
.vtds__result--available .vtds__badge {
  background: #e7f7f2;
  color: #047857;
}
.vtds__buy {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  background: var(--vtds-navy);
  color: #fff;
  font-size: 13px;
}
.vtds__buy:hover,
.vtds__buy:focus-visible {
  transform: translateY(-1px);
  background: var(--vtds-teal);
  color: #fff;
}
.vtds__buy:disabled {
  opacity: .68;
  cursor: wait;
}
.vtds__powered {
  margin: 18px 4px 0;
  color: #738197;
  font-size: 13px;
}
.vtds__powered a {
  color: var(--vtds-navy);
  font-weight: 800;
}
@media (max-width: 900px) {
  .vtds {
    padding: 22px 14px 0;
  }
  .vtds__shell {
    grid-template-columns: 1fr;
  }
  .vtds__content,
  .vtds__aside {
    padding: 32px 24px;
  }
  .vtds__aside {
    min-height: auto;
  }
  .vtds__title {
    font-size: 36px;
  }
}
@media (max-width: 640px) {
  .vtds__content,
  .vtds__aside {
    padding: 28px 18px;
  }
  .vtds__title {
    font-size: 31px;
  }
  .vtds__intro {
    font-size: 15px;
  }
  .vtds__row,
  .vtds__result {
    grid-template-columns: 1fr;
  }
  .vtds__price {
    min-width: 0;
    text-align: left;
  }
  .vtds__prefix {
    display: none;
  }
  .vtds__button,
  .vtds__buy {
    width: 100%;
    border-radius: 8px;
  }
  .vtds__input {
    min-height: 56px;
  }
  .vtds__button {
    min-height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vtds__button,
  .vtds__buy,
  .vtds__chip {
    transition: none;
  }
}
/* Production spacing refinements for the existing Viewertech theme/footer. */
.vtds {
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .vtds {
    margin-bottom: 28px;
    padding-bottom: 92px;
  }
  .vtds__aside {
    padding-bottom: 96px;
  }
  .vtds__aside::after {
    bottom: 92px;
  }
}
@media (max-width: 640px) {
  .vtds {
    padding-bottom: 24px;
  }
  .vtds__aside {
    display: none;
  }
}
