* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0a0a;
}

main {
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

:focus {
  outline: none;
}

.is-tabbing :focus-visible {
  outline: 2px solid #ff184d;
  outline-offset: 4px;
}
.datavault-landing {
  --dv-red: #ff184d;
  --dv-red-dark: #a9002b;
  --dv-black: #0a0a0a;
  --dv-panel: rgba(18, 18, 20, 0.74);
  --dv-panel-strong: rgba(25, 25, 28, 0.92);
  --dv-text: #ffffff;
  --dv-muted: #bdbdbd;
  --dv-line: rgba(255, 255, 255, 0.11);
  --dv-hot-line: rgba(255, 24, 77, 0.38);
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(255, 24, 77, 0.13) 0, transparent 420px),
    linear-gradient(180deg, #0a0a0a 0%, #050505 48%, #0a0a0a 100%);
  color: var(--dv-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.datavault-landing a {
  color: inherit;
}

.dv-bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 24, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 24, 77, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.dv-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.dv-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 10, 10, 0.76);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.dv-header.is-scrolled {
  background: rgba(10, 10, 10, 0.88);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.dv-header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dv-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 850;
}

.dv-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 24, 77, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 24, 77, 0.28), rgba(169, 0, 43, 0.07)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 24, 77, 0.28);
}

.dv-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: contain;
  padding: 0;
}

.dv-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 650;
}

.dv-nav a,
.dv-footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.dv-nav a:hover,
.dv-nav a.is-active,
.dv-footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.dv-header-cta,
.dv-support-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 24, 77, 0.42);
  border-radius: 8px;
  background: rgba(255, 24, 77, 0.1);
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(255, 24, 77, 0.16);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dv-header-cta:hover,
.dv-support-link:hover {
  border-color: rgba(255, 24, 77, 0.74);
  box-shadow: 0 0 32px rgba(255, 24, 77, 0.26);
  transform: translateY(-1px);
}

.dv-hero {
  position: relative;
  min-height: calc(100svh - 20px);
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) 0 40px;
}

.dv-aurora {
  position: absolute;
  inset: -20% -10% 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 18%, rgba(255, 24, 77, 0.3), transparent 35%),
    radial-gradient(ellipse at 18% 78%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(115deg, rgba(255, 24, 77, 0.08), transparent 36%, rgba(255, 255, 255, 0.05));
  filter: blur(4px);
  opacity: 0.95;
}

.dv-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dv-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 92, 111, 0.78);
  box-shadow: 0 0 18px rgba(255, 24, 77, 0.74);
  animation: dv-float 10s ease-in-out infinite;
}

.dv-particles span:nth-child(1) { left: 8%; top: 18%; animation-delay: -1s; }
.dv-particles span:nth-child(2) { left: 18%; top: 70%; animation-delay: -7s; }
.dv-particles span:nth-child(3) { left: 26%; top: 31%; animation-delay: -3s; }
.dv-particles span:nth-child(4) { left: 36%; top: 84%; animation-delay: -6s; }
.dv-particles span:nth-child(5) { left: 44%; top: 12%; animation-delay: -2s; }
.dv-particles span:nth-child(6) { left: 53%; top: 55%; animation-delay: -8s; }
.dv-particles span:nth-child(7) { left: 62%; top: 22%; animation-delay: -4s; }
.dv-particles span:nth-child(8) { left: 68%; top: 74%; animation-delay: -9s; }
.dv-particles span:nth-child(9) { left: 76%; top: 39%; animation-delay: -5s; }
.dv-particles span:nth-child(10) { left: 88%; top: 61%; animation-delay: -1.5s; }
.dv-particles span:nth-child(11) { left: 92%; top: 18%; animation-delay: -6.5s; }
.dv-particles span:nth-child(12) { left: 12%; top: 44%; animation-delay: -4.5s; }
.dv-particles span:nth-child(13) { left: 30%; top: 60%; animation-delay: -8.5s; }
.dv-particles span:nth-child(14) { left: 47%; top: 36%; animation-delay: -2.5s; }
.dv-particles span:nth-child(15) { left: 58%; top: 88%; animation-delay: -7.5s; }
.dv-particles span:nth-child(16) { left: 82%; top: 83%; animation-delay: -3.5s; }
.dv-particles span:nth-child(17) { left: 6%; top: 86%; animation-delay: -5.5s; }
.dv-particles span:nth-child(18) { left: 72%; top: 10%; animation-delay: -9.5s; }
.dv-particles span:nth-child(19) { left: 39%; top: 49%; animation-delay: -1.8s; }
.dv-particles span:nth-child(20) { left: 94%; top: 42%; animation-delay: -4.8s; }
.dv-particles span:nth-child(21) { left: 22%; top: 9%; animation-delay: -6.8s; }
.dv-particles span:nth-child(22) { left: 64%; top: 48%; animation-delay: -2.8s; }

.dv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.dv-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6.1vw, 78px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.dv-hero-copy h1::selection,
.dv-section-heading h2::selection,
.dv-final-panel h2::selection {
  background: rgba(255, 24, 77, 0.32);
}

.dv-hero-copy p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--dv-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.72;
}

.dv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.dv-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dv-btn:hover,
.dv-buy-button:hover,
.dv-floating-cta:hover {
  transform: translateY(-2px);
}

.dv-btn-primary,
.dv-buy-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #ff184d 0%, #a9002b 100%);
  color: #fff;
  box-shadow:
    0 18px 44px rgba(255, 24, 77, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.dv-btn-primary:hover,
.dv-buy-button:hover {
  box-shadow:
    0 24px 58px rgba(255, 24, 77, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.dv-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.dv-btn-ghost:hover {
  border-color: rgba(255, 24, 77, 0.52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.dv-hero-stats {
  display: grid;
  max-width: 610px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.dv-hero-stats span,
.dv-time-cell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.dv-hero-stats strong,
.dv-time-cell strong {
  display: block;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
}

.dv-hero-stats small,
.dv-time-cell small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.dv-dashboard-wrap {
  position: relative;
}

.dv-dashboard-wrap::before {
  position: absolute;
  inset: 7% -5% -8% 8%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 24, 77, 0.24), rgba(255, 255, 255, 0.1));
  filter: blur(42px);
  transform: skewY(-7deg);
}

.dv-hero-visual-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 24, 77, 0.16)) padding-box,
    linear-gradient(140deg, rgba(255, 255, 255, 0.34), rgba(255, 24, 77, 0.72), rgba(255, 255, 255, 0.08)) border-box;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.56),
    0 0 80px rgba(255, 24, 77, 0.26);
}

.dv-hero-visual-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.1), transparent 44%);
  transform: translateX(-115%);
  animation: dv-scan 4.8s ease-in-out infinite;
}

.dv-hero-image {
  width: 100%;
  height: auto;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.dv-dashboard-wrap:hover .dv-hero-image {
  transform: scale(1.025);
  filter: saturate(1.16) contrast(1.06);
}

.dv-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 16, 18, 0.96), rgba(28, 18, 21, 0.9)) padding-box,
    linear-gradient(140deg, rgba(255, 255, 255, 0.32), rgba(255, 24, 77, 0.66), rgba(255, 255, 255, 0.08)) border-box;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.56),
    0 0 72px rgba(255, 24, 77, 0.24);
}

.dv-dashboard::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.09), transparent 44%);
  transform: translateX(-115%);
  animation: dv-scan 4.8s ease-in-out infinite;
}

.dv-dashboard-top {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.dv-dashboard-top div {
  display: flex;
  gap: 7px;
}

.dv-dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.dv-dashboard-top span:first-child {
  background: var(--dv-red);
  box-shadow: 0 0 14px rgba(255, 24, 77, 0.72);
}

.dv-dashboard-body {
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 424px;
}

.dv-vault-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 12px;
  background: rgba(0, 0, 0, 0.28);
}

.dv-vault-sidebar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.dv-vault-sidebar .is-active {
  border-color: rgba(255, 24, 77, 0.36);
  background: rgba(255, 24, 77, 0.12);
  color: #fff;
}

.dv-vault-main {
  padding: 18px;
}

.dv-vault-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 24, 77, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 24, 77, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.dv-vault-meter p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.dv-vault-meter strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.dv-vault-meter span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #111 48%, transparent 50%),
    conic-gradient(#ff184d 0 352deg, rgba(255, 255, 255, 0.12) 352deg);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.dv-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.dv-asset-tile {
  min-height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  padding: 14px;
  color: rgba(255, 255, 255, 0.82);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.dv-asset-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 24, 77, 0.44);
}

.dv-asset-tile.is-hot {
  background:
    linear-gradient(145deg, rgba(255, 24, 77, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(255, 24, 77, 0.04);
}

.dv-asset-tile svg {
  color: var(--dv-red);
}

.dv-asset-tile strong {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 13px;
}

.dv-asset-tile small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.dv-download-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(92%, 520px);
  margin: -20px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(20, 20, 23, 0.78);
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35), 0 0 34px rgba(255, 24, 77, 0.16);
}

.dv-download-bar span {
  min-width: 0;
}

.dv-download-bar svg,
.dv-download-bar strong {
  color: var(--dv-red);
}

.dv-download-bar strong {
  margin-left: auto;
  color: #fff;
  font-size: 20px;
}

.dv-trust {
  position: relative;
  z-index: 2;
  padding: 20px 0 76px;
}

.dv-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.dv-trust-badge,
.dv-bundle-card,
.dv-why-card,
.dv-testimonial-card,
.dv-faq-item,
.dv-price-card {
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 17, 19, 0.9), rgba(28, 20, 22, 0.76)) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 24, 77, 0.42), rgba(255, 255, 255, 0.08)) border-box;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.dv-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
}

.dv-trust-badge svg,
.dv-card-icon,
.dv-why-card svg,
.dv-review-stars,
.dv-mini-proof svg {
  color: var(--dv-red);
}

.dv-trust-badge strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.dv-trust-badge small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.45;
}

.dv-section {
  position: relative;
  padding: 96px 0;
}

.dv-section-panel {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 24, 77, 0.045), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.015);
}

.dv-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.dv-section-heading h2,
.dv-pricing-copy h2,
.dv-faq-copy h2,
.dv-final-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4.1vw, 48px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.dv-section-heading p,
.dv-pricing-copy p,
.dv-faq-copy p {
  margin: 18px 0 0;
  color: var(--dv-muted);
  font-size: 16px;
  line-height: 1.75;
}

.dv-bundle-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.dv-bundle-card {
  grid-column: span 2;
  min-height: 338px;
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.dv-bundle-card:nth-child(4),
.dv-bundle-card:nth-child(5) {
  grid-column: span 3;
}

.dv-bundle-card:hover,
.dv-why-card:hover,
.dv-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(255, 24, 77, 0.16);
}

.dv-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 24, 77, 0.38);
  border-radius: 8px;
  background: rgba(255, 24, 77, 0.11);
  box-shadow: 0 0 26px rgba(255, 24, 77, 0.16);
}

.dv-bundle-card h3,
.dv-why-card h3 {
  margin: 20px 0 9px;
  color: #fff;
  font-size: 20px;
  font-weight: 930;
  line-height: 1.12;
}

.dv-bundle-card p,
.dv-why-card p,
.dv-testimonial-card p {
  margin: 0;
  color: var(--dv-muted);
  font-size: 14px;
  line-height: 1.7;
}

.dv-bundle-card ul,
.dv-price-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.dv-bundle-card li,
.dv-price-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.dv-bundle-card li svg,
.dv-price-list li svg {
  flex: 0 0 auto;
  color: var(--dv-red);
}

.dv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dv-why-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.dv-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.64fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.dv-pricing-copy {
  max-width: 650px;
}

.dv-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dv-mini-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.dv-price-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  box-shadow:
    0 30px 110px rgba(0, 0, 0, 0.5),
    0 0 64px rgba(255, 24, 77, 0.18);
}

.dv-price-card-glow {
  position: absolute;
  inset: -35% -18% auto;
  height: 230px;
  background: linear-gradient(100deg, rgba(255, 24, 77, 0.36), rgba(255, 255, 255, 0.08));
  filter: blur(30px);
  pointer-events: none;
}

.dv-price-top,
.dv-price-main,
.dv-price-list,
.dv-buy-button,
.dv-price-note {
  position: relative;
  z-index: 1;
}

.dv-price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.dv-price-top strong {
  border: 1px solid rgba(255, 24, 77, 0.36);
  border-radius: 8px;
  background: rgba(255, 24, 77, 0.13);
  padding: 8px 10px;
  color: #fff;
  font-size: 12px;
}

.dv-price-main {
  margin-top: 26px;
}

.dv-price-main span {
  display: block;
  color: #fff;
  font-size: clamp(72px, 9vw, 112px);
  font-weight: 980;
  line-height: 0.88;
}

.dv-price-main small {
  display: block;
  margin-top: 12px;
  color: var(--dv-muted);
  font-size: 14px;
  font-weight: 750;
}

.dv-buy-button {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  margin-top: 26px;
  scroll-margin-top: 112px;
  font-size: 16px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dv-price-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.dv-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dv-testimonial-card {
  min-height: 268px;
  padding: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.dv-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.dv-review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.dv-review-person img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 24, 77, 0.34);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(255, 24, 77, 0.18);
}

.dv-review-person strong,
.dv-review-person small {
  display: block;
}

.dv-review-person strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.dv-review-person small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.dv-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 70px);
}

.dv-faq-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.dv-support-link {
  margin-top: 26px;
}

.dv-faq-list {
  display: grid;
  gap: 12px;
}

.dv-faq-item {
  overflow: hidden;
}

.dv-faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
}

.dv-faq-item button svg {
  flex: 0 0 auto;
  color: var(--dv-red);
  transition: transform 180ms ease;
}

.dv-faq-item.is-open button svg {
  transform: rotate(180deg);
}

.dv-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.dv-faq-item.is-open .dv-faq-answer {
  grid-template-rows: 1fr;
}

.dv-faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--dv-muted);
  font-size: 14px;
  line-height: 1.75;
}

.dv-faq-item.is-open .dv-faq-answer p {
  padding-bottom: 20px;
}

.dv-final-cta {
  position: relative;
  padding: 92px 0;
}

.dv-final-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 24, 77, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 24, 77, 0.18), rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.035);
  padding: clamp(34px, 7vw, 70px);
  text-align: center;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.46),
    0 0 88px rgba(255, 24, 77, 0.22);
}

.dv-final-panel h2 {
  max-width: 780px;
  margin-inline: auto;
}

.dv-countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.dv-countdown > svg {
  align-self: center;
  color: var(--dv-red);
}

.dv-time-cell {
  width: 112px;
}

.dv-final-button {
  margin-top: 28px;
}

.dv-floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #ff184d, #a9002b);
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(255, 24, 77, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dv-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.54);
}

.dv-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  padding: 42px 0 30px;
}

.dv-footer p {
  max-width: 460px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.dv-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.dv-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dv-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.js-enabled .dv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.21, 1, 0.21, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.21, 1, 0.21, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled .dv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dv-hero-copy h1,
.dv-hero-copy p,
.dv-hero-actions,
.dv-hero-stats {
  animation: dv-rise 760ms cubic-bezier(0.21, 1, 0.21, 1) both;
}

.dv-hero-copy p {
  animation-delay: 90ms;
}

.dv-hero-actions {
  animation-delay: 170ms;
}

.dv-hero-stats {
  animation-delay: 250ms;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .dv-header,
  .dv-btn-ghost,
  .dv-hero-stats span,
  .dv-time-cell,
  .dv-trust-badge,
  .dv-bundle-card,
  .dv-why-card,
  .dv-testimonial-card,
  .dv-faq-item,
  .dv-price-card {
    background-color: rgba(18, 18, 20, 0.96);
  }
}

@keyframes dv-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.28;
  }
  45% {
    transform: translate3d(18px, -26px, 0);
    opacity: 0.95;
  }
}

@keyframes dv-rise {
  from {
    opacity: 1;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dv-scan {
  0%, 48% {
    transform: translateX(-115%);
  }
  78%, 100% {
    transform: translateX(115%);
  }
}

@media (max-width: 1040px) {
  .dv-hero-grid,
  .dv-pricing-layout,
  .dv-faq-layout {
    grid-template-columns: 1fr;
  }

  .dv-dashboard-wrap,
  .dv-pricing-copy {
    max-width: 760px;
  }

  .dv-trust-grid,
  .dv-why-grid,
  .dv-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dv-bundle-card,
  .dv-bundle-card:nth-child(4),
  .dv-bundle-card:nth-child(5) {
    grid-column: span 3;
  }

  .dv-faq-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .dv-shell {
    width: min(100% - 24px, 1180px);
  }

  .dv-header-inner {
    min-height: 68px;
  }

  .dv-nav {
    display: none;
  }

  .dv-header-cta {
    min-height: 38px;
    padding-inline: 12px;
  }

  .dv-brand {
    gap: 9px;
    font-size: 16px;
  }

  .dv-brand-mark {
    width: 38px;
    height: 38px;
  }

  .dv-hero {
    min-height: auto;
    overflow: visible;
    padding: 46px 0 44px;
  }

  .dv-hero-grid {
    gap: 28px;
  }

  .dv-hero-copy h1 {
    font-size: clamp(32px, 9.6vw, 46px);
    line-height: 1.04;
  }

  .dv-hero-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .dv-btn,
  .dv-hero-actions a {
    width: 100%;
  }

  .dv-hero-stats,
  .dv-trust-grid,
  .dv-why-grid,
  .dv-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .dv-hero-stats {
    gap: 10px;
    margin-top: 24px;
  }

  .dv-hero-stats span {
    padding: 14px;
  }

  .dv-dashboard-wrap {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .dv-hero-visual-frame {
    width: 100%;
  }

  .dv-download-bar {
    width: min(100%, 520px);
    margin-top: -8px;
    padding: 13px 14px;
  }

  .dv-trust {
    padding: 44px 0 58px;
  }

  .dv-trust-grid {
    gap: 10px;
  }

  .dv-trust-badge {
    min-height: auto;
    padding: 14px;
  }

  .dv-dashboard-body {
    grid-template-columns: 1fr;
  }

  .dv-vault-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dv-asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dv-vault-meter {
    align-items: flex-start;
  }

  .dv-vault-meter strong {
    font-size: 28px;
  }

  .dv-bundle-grid {
    grid-template-columns: 1fr;
  }

  .dv-bundle-card,
  .dv-bundle-card:nth-child(4),
  .dv-bundle-card:nth-child(5) {
    grid-column: auto;
  }

  .dv-section {
    padding: 72px 0;
  }

  .dv-section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .dv-section-heading h2,
  .dv-pricing-copy h2,
  .dv-faq-copy h2,
  .dv-final-panel h2 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .dv-price-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .dv-countdown {
    flex-wrap: wrap;
  }

  .dv-time-cell {
    width: calc(33.333% - 10px);
    min-width: 88px;
    padding: 13px 10px;
  }

  .dv-final-panel {
    padding: 30px 16px;
  }

  .dv-footer-inner,
  .dv-footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .dv-footer-links {
    justify-content: flex-start;
  }

  .dv-floating-cta {
    right: 12px;
    bottom: 12px;
    padding: 12px 13px;
  }
}

@media (max-width: 460px) {
  .dv-header-cta span {
    display: none;
  }

  .dv-asset-grid,
  .dv-vault-sidebar {
    grid-template-columns: 1fr;
  }

  .dv-download-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: flex-start;
    column-gap: 10px;
    row-gap: 4px;
  }

  .dv-download-bar strong {
    width: auto;
    margin-left: 0;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js-enabled .dv-reveal {
    opacity: 1;
    transform: none;
  }
}
