/* ═══════════════════════════════════════════════════════════════
   DailyUploads — Enhanced home page
   Scoped under .du-home so no other page is affected.
   Palette is inherited from the existing theme (red on white).
═══════════════════════════════════════════════════════════════ */

.du-home {
  --du-red: #e3000f;
  --du-red-2: #ff4d57;
  --du-red-3: #ff7a82;
  --du-red-dark: #b8000c;
  --du-red-deep: #3a0d0d;
  --du-red-mid: #7a1414;
  --du-wash: #fff0f1;
  --du-wash-2: #fee2e2;

  --du-ink: #16181b;
  --du-ink-2: #495057;
  --du-ink-3: #6c757d;
  --du-ink-4: #adb5bd;

  --du-line: #e9ecef;
  --du-line-2: #dee2e6;
  --du-soft: #f8f9fb;
  --du-muted: #f1f3f5;

  --du-r-sm: 10px;
  --du-r-md: 14px;
  --du-r-lg: 20px;
  --du-r-xl: 28px;

  --du-display: 'Sora', 'Inter', system-ui, sans-serif;
  --du-body: 'Inter', system-ui, sans-serif;

  --du-sh-1: 0 1px 2px rgba(16, 18, 20, .05);
  --du-sh-2: 0 8px 24px rgba(16, 18, 20, .07);
  --du-sh-3: 0 24px 60px rgba(16, 18, 20, .12);
  --du-sh-red: 0 14px 34px rgba(227, 0, 15, .28);

  font-family: var(--du-body);
  overflow-x: clip;
}

.du-home h1,
.du-home h2,
.du-home h3,
.du-home h4 {
  font-family: var(--du-display);
  letter-spacing: -.025em;
  color: var(--du-ink);
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.du-home [data-du-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, .68, 0, 1),
    transform .7s cubic-bezier(.22, .68, 0, 1);
  transition-delay: var(--du-delay, 0ms);
}

.du-home [data-du-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {

  .du-home [data-du-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Shared section furniture ──────────────────────────────── */
.du-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--du-body);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--du-red);
  margin-bottom: .75rem;
}

.du-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--du-red));
}

.du-eyebrow::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--du-red), transparent);
}

.du-h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: .6rem;
}

.du-lead {
  font-size: .98rem;
  color: var(--du-ink-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════ HERO */
.du-home .hero.du-hero {
  position: relative;
  padding: .35rem 0 1rem;
  background: #fff;
  isolation: isolate;
  overflow: hidden;
}

/* The hero owns the whole first screen so the stats band only shows
   once the visitor scrolls. 64px navbar + 1px border. Spare height is
   spent on the upload card (the vh clamps further down) instead of a
   dead gap, and the format marquee is pinned to the fold. */
@media (min-width: 992px) {

  .du-home .hero.du-hero {
    min-height: calc(100vh - 65px);
    min-height: calc(100svh - 65px);
    display: flex;
    align-items: stretch;
  }

  .du-home .du-hero > .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .du-home .du-hero .hero-intro {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-top: clamp(.25rem, 1.4vh, 1.5rem);
  }

  .du-home .du-hero .du-hero-formats {
    margin-top: auto;
    padding-top: clamp(.4rem, 1.6vh, 1.5rem);
  }

  /* the wrapper owns the gap above the strip now */
  .du-home .du-hero .du-hero-formats .du-marquee-caption {
    margin-top: 0;
  }

  .du-home .du-hero .btn-brand {
    padding: .8rem 2.1rem;
    font-size: .97rem;
  }
}

/* layered background: grid + aurora blobs */
.du-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.du-hero-grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(16, 18, 20, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 18, 20, .055) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 78% at 50% 0%, #000 12%, transparent 72%);
  mask-image: radial-gradient(120% 78% at 50% 0%, #000 12%, transparent 72%);
}

.du-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  will-change: transform;
}

.du-blob-1 {
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  top: -22%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(227, 0, 15, .16), transparent 66%);
  animation: du-drift-1 18s ease-in-out infinite;
}

.du-blob-2 {
  width: 34vw;
  height: 34vw;
  max-width: 440px;
  max-height: 440px;
  top: 12%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 122, 130, .2), transparent 68%);
  animation: du-drift-2 22s ease-in-out infinite;
}

.du-blob-3 {
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  max-height: 400px;
  bottom: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(227, 0, 15, .13), transparent 68%);
  animation: du-drift-3 26s ease-in-out infinite;
}

@keyframes du-drift-1 {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  50% {
    transform: translateX(-50%) translateY(26px) scale(1.07);
  }
}

@keyframes du-drift-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(34px, -20px) scale(1.1);
  }
}

@keyframes du-drift-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, -24px) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {

  .du-blob {
    animation: none;
  }
}

/* ── Hero badge ── */
.du-home .du-hero .hero-badge {
  margin-bottom: .45rem;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--du-wash-2);
  color: #b8000c;
  backdrop-filter: blur(8px);
  box-shadow: var(--du-sh-1);
  font-size: .76rem;
  letter-spacing: .01em;
  padding: .4rem 1rem .4rem .8rem;
}

.du-badge-sep {
  width: 1px;
  height: 12px;
  background: var(--du-wash-2);
  margin: 0 .15rem;
}

.du-badge-stars {
  display: inline-flex;
  gap: .1rem;
  color: #f59e0b;
  font-size: .72rem;
}

/* ── Hero headline ── */
.du-home .du-hero .hero-headline {
  font-size: clamp(1.55rem, 3.8vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  max-width: 22ch;
  margin-bottom: .5rem;
}

.du-home .du-hero .hw-accent em {
  background: linear-gradient(105deg, #e3000f 0%, #ff4d57 38%, #e3000f 56%, #ff7a82 76%, #e3000f 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.du-home .du-hero .hw-underline {
  height: 4px;
  bottom: -.08em;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--du-red), var(--du-red-3));
  box-shadow: 0 6px 18px rgba(227, 0, 15, .35);
}

.du-home .du-hero .hero-sub {
  font-size: .96rem;
  color: var(--du-ink-3);
  max-width: 520px;
  margin: 0 auto .85rem;
  line-height: 1.58;
  font-weight: 450;
}

/* ── Upload card ── */
.du-card-stage {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}

.du-home .du-hero .hero-intro {
  max-width: 820px;
}

.du-home .du-hero .upload-card {
  position: relative;
  padding: clamp(.95rem, 1.5vh, 1.5rem);
  border: 0;
  border-radius: var(--du-r-xl);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    var(--du-sh-3),
    0 0 0 1px rgba(16, 18, 20, .05);
  transition: transform .35s cubic-bezier(.22, .68, 0, 1), box-shadow .35s ease;
}

.du-home .du-hero .upload-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(150deg, rgba(227, 0, 15, .55), rgba(227, 0, 15, .08) 42%, rgba(16, 18, 20, .07) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.du-card-stage:hover .upload-card {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 34px 74px rgba(16, 18, 20, .16),
    0 0 0 1px rgba(227, 0, 15, .12);
}

/* ── Drop zone ── */
.du-home .du-hero .drop-zone {
  position: relative;
  border: 2px dashed rgba(227, 0, 15, .3);
  border-radius: var(--du-r-lg);
  padding: clamp(1.35rem, 4.6vh, 3.4rem) 1.5rem clamp(1.25rem, 4.2vh, 3.1rem);
  background:
    radial-gradient(120% 90% at 50% 0%, #fff6f6 0%, #fff 62%);
  transition: border-color .25s, background .25s, box-shadow .25s;
  overflow: hidden;
}

.du-home .du-hero .drop-zone:hover,
.du-home .du-hero .drop-zone.drag-over {
  border-color: var(--du-red);
  background: radial-gradient(120% 90% at 50% 0%, #fff0f1 0%, #fff 66%);
  box-shadow: inset 0 0 0 4px rgba(227, 0, 15, .05);
}

/* rotating conic ring behind the cloud icon */
.du-home .du-hero .drop-zone-icon-wrap {
  width: 72px;
  height: 72px;
}

.du-home .du-hero .drop-zone-icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 62%, rgba(227, 0, 15, .55) 78%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  animation: du-spin 4.5s linear infinite;
}

@keyframes du-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {

  .du-home .du-hero .drop-zone-icon-wrap::before {
    animation: none;
  }
}

.du-home .du-hero .pulse-ring {
  inset: 10px;
  background: rgba(227, 0, 15, .22);
}

.du-home .du-hero .drop-zone-icon {
  width: 54px;
  height: 54px;
  font-size: 1.45rem;
  background: linear-gradient(150deg, #ff4d57, #e3000f 52%, #b8000c);
  box-shadow:
    0 10px 26px rgba(227, 0, 15, .38),
    0 1px 0 rgba(255, 255, 255, .5) inset;
}

.du-home .du-hero .drop-zone h4 {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-top: .6rem !important;
  margin-bottom: .25rem;
}

.du-home .du-hero .drop-zone>p {
  font-size: .9rem;
  color: var(--du-ink-3);
}

/* Browse button */
.du-home .du-hero .btn-brand {
  background: linear-gradient(180deg, #ff2634, var(--du-red) 55%, var(--du-red-dark));
  border: 0;
  border-radius: 100px;
  padding: .7rem 1.8rem;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: var(--du-sh-red), 0 1px 0 rgba(255, 255, 255, .35) inset;
  position: relative;
  overflow: hidden;
}

.du-home .du-hero .btn-brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  animation: du-sheen 3.6s ease-in-out 1.2s infinite;
}

@keyframes du-sheen {

  0% {
    left: -80%;
  }

  55%,
  100% {
    left: 130%;
  }
}

.du-home .du-hero .btn-brand:hover {
  background: linear-gradient(180deg, #ff3a46, var(--du-red-dark));
  box-shadow: 0 18px 40px rgba(227, 0, 15, .42);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {

  .du-home .du-hero .btn-brand::after {
    animation: none;
    display: none;
  }
}

/* ── Floating file chips around the card ── */
.du-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--du-line);
  box-shadow: var(--du-sh-2);
  font-size: .74rem;
  font-weight: 700;
  color: var(--du-ink-2);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 3;
  animation: du-float 6s ease-in-out infinite;
}

.du-chip i {
  font-size: .95rem;
}

.du-chip-meta {
  font-weight: 600;
  color: var(--du-ink-4);
}

.du-chip-1 {
  top: 12%;
  left: -10.5rem;
  animation-delay: .1s;
}

.du-chip-2 {
  top: 46%;
  left: -10.5rem;
  animation-delay: 1.1s;
}

.du-chip-3 {
  top: 12%;
  right: -8.5rem;
  animation-delay: .6s;
}

.du-chip-4 {
  bottom: 14%;
  right: -10.5rem;
  animation-delay: 1.6s;
}

.du-chip-1 i {
  color: #dc2626;
}

.du-chip-2 i {
  color: #7c3aed;
}

.du-chip-3 i {
  color: #0d9488;
}

.du-chip-4 i {
  color: #d97706;
}

@keyframes du-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1499.98px) {

  .du-chip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .du-chip {
    animation: none;
  }
}

/* ── Trust pills ── */
.du-home .du-hero .trust-pill {
  border: 1px solid var(--du-line);
  border-radius: 12px;
  background: #fff;
  padding: .6rem .5rem;
  font-size: .77rem;
  font-weight: 650;
  color: var(--du-ink-2);
  box-shadow: var(--du-sh-1);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.du-home .du-hero .trust-pill:hover {
  transform: translateY(-2px);
  border-color: var(--du-wash-2);
  box-shadow: var(--du-sh-2);
}

.du-home .du-hero .trust-pill i {
  color: var(--du-red);
}

.du-home .du-hero .notice {
  background: #fff6f6;
  border: 1px solid #fcdcde;
  border-radius: 12px;
  font-size: .78rem;
}

/* ── Format marquee ── */
.du-marquee-caption {
  margin-top: .9rem;
  margin-bottom: .5rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--du-ink-4);
}

.du-marquee {
  position: relative;
  z-index: 2;
  padding: .35rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.du-marquee-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  animation: du-marquee 32s linear infinite;
}

.du-marquee:hover .du-marquee-track {
  animation-play-state: paused;
}

@keyframes du-marquee {
  to {
    transform: translateX(-50%);
  }
}

.du-fmt {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--du-ink-3);
  white-space: nowrap;
}

.du-fmt i {
  color: var(--du-red);
  opacity: .55;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {

  .du-marquee-track {
    animation: none;
  }
}

/* Firefox: mask-image + translateX repaints every frame; use GPU layer + edge fades */
@-moz-document url-prefix() {
  .du-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: hidden;
  }

  .du-marquee::before,
  .du-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 14%;
    z-index: 1;
    pointer-events: none;
  }

  .du-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
  }

  .du-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
  }

  .du-marquee-track {
    will-change: transform;
    backface-visibility: hidden;
    animation-name: du-marquee-moz;
  }

  @keyframes du-marquee-moz {
    to {
      transform: translate3d(-50%, 0, 0);
    }
  }
}

/* ═══════════════════════════════════════════════ STATS BAND */
.du-stats {
  position: relative;
  padding: 3.2rem 0;
  background:
    radial-gradient(90% 140% at 12% 0%, #7a1414 0%, transparent 58%),
    linear-gradient(120deg, #3a0d0d 0%, #8d0f16 52%, #b8000c 100%);
  overflow: hidden;
  isolation: isolate;
}

.du-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 78%);
  mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 78%);
}

.du-stats::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 130, .32), transparent 62%);
  filter: blur(28px);
}

.du-stat {
  text-align: center;
  padding: .35rem 0;
}

.du-stat-num {
  font-family: var(--du-display);
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.du-stat-num .du-suffix {
  color: #ffb3b8;
}

.du-stat-label {
  margin-top: .5rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
}

.du-stat-div {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .22), transparent);
}

/* ═══════════════════════════════════════════════ FEATURES */
/* Short top padding: the plans section above ends on the payment strip, so a
   full 5rem here plus its bottom padding left a dead gap. */
.du-home .features.du-features {
  padding: 1.9rem 0 5rem;
  background:
    linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  position: relative;
}

.du-home .du-features .feature-card {
  position: relative;
  border: 1px solid var(--du-line);
  border-radius: var(--du-r-lg);
  background: #fff;
  padding: 1.65rem 1.5rem;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22, .68, 0, 1), box-shadow .3s, border-color .3s;
}

/* mouse-follow spotlight (coords set from JS) */
.du-home .du-features .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--du-mx, 50%) var(--du-my, 0%), rgba(227, 0, 15, .09), transparent 68%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.du-home .du-features .feature-card:hover::before {
  opacity: 1;
}

.du-home .du-features .feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 0, 15, .22);
  box-shadow: 0 20px 44px rgba(16, 18, 20, .1);
}

.du-home .du-features .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  margin-bottom: 1.05rem;
  box-shadow: var(--du-sh-1);
  transition: transform .3s cubic-bezier(.22, .68, 0, 1);
}

.du-home .du-features .feature-card:hover .feature-icon {
  transform: translateY(-2px) rotate(-4deg) scale(1.06);
}

.du-home .du-features .feature-icon svg {
  width: 22px;
  height: 22px;
}

.du-home .du-features .feature-card h3 {
  font-size: 1.02rem;
  font-weight: 750;
  margin-bottom: .45rem;
}

.du-home .du-features .feature-card p {
  font-size: .87rem;
  color: var(--du-ink-3);
  line-height: 1.7;
}

.du-feat-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 750;
  color: var(--du-red);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}

.du-home .du-features .feature-card:hover .du-feat-more {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════ PLANS */
.du-plans {
  padding: 5rem 0 1.1rem;
  background: #fff;
}

.du-plan {
  position: relative;
  height: 100%;
  border: 1px solid var(--du-line);
  border-radius: var(--du-r-xl);
  background: #fff;
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22, .68, 0, 1), box-shadow .3s;
}

.du-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--du-sh-3);
}

.du-plan-hot {
  border: 0;
  color: #fff;
  background:
    radial-gradient(120% 100% at 88% 0%, #b8000c 0%, transparent 56%),
    linear-gradient(150deg, #3a0d0d, #8d0f16 55%, #b8000c);
  box-shadow: 0 26px 60px rgba(184, 0, 12, .34);
  overflow: hidden;
}

.du-plan-hot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(100% 90% at 50% 0%, #000, transparent 76%);
  mask-image: radial-gradient(100% 90% at 50% 0%, #000, transparent 76%);
  pointer-events: none;
}

.du-plan-tag {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .32rem .7rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  backdrop-filter: blur(6px);
}

.du-plan-name {
  font-family: var(--du-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--du-red);
}

.du-plan-hot .du-plan-name {
  color: #ffb3b8;
}

.du-plan-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin: .7rem 0 .2rem;
}

.du-plan-price b {
  font-family: var(--du-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--du-ink);
}

.du-plan-hot .du-plan-price b {
  color: #fff;
}

.du-plan-price span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--du-ink-4);
}

.du-plan-hot .du-plan-price span {
  color: rgba(255, 255, 255, .6);
}

.du-plan-note {
  font-size: .8rem;
  color: var(--du-ink-3);
  margin-bottom: 1.4rem;
}

.du-plan-hot .du-plan-note {
  color: rgba(255, 255, 255, .72);
}

.du-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .72rem;
  flex: 1;
}

.du-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--du-ink-2);
  line-height: 1.5;
}

.du-plan-hot .du-plan-list li {
  color: rgba(255, 255, 255, .9);
}

.du-plan-list i {
  flex: none;
  margin-top: .12rem;
  font-size: .95rem;
  color: var(--du-red);
}

.du-plan-hot .du-plan-list i {
  color: #ff9ba1;
}

.du-plan-list .du-off {
  color: var(--du-ink-4);
}

.du-plan-list .du-off i {
  color: var(--du-ink-4);
}

.du-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  padding: .82rem 1.2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 750;
  border: 1.5px solid var(--du-line-2);
  color: var(--du-ink);
  background: #fff;
  transition: all .22s;
}

.du-plan-btn:hover {
  border-color: var(--du-red);
  color: var(--du-red);
  background: var(--du-wash);
}

.du-plan-btn-hot {
  border: 0;
  color: var(--du-red-dark);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.du-plan-btn-hot:hover {
  color: var(--du-red-dark);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

/* ── Accepted payment methods ── */
.du-pay {
  margin-top: 3.2rem;
  padding-top: 2.1rem;
  border-top: 1px solid var(--du-line);
  text-align: center;
}

.du-pay-head {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  font-size: .84rem;
  font-weight: 600;
  color: var(--du-ink-2);
}

.du-pay-head i {
  font-size: .95rem;
  color: #17924f;
}

.du-pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.15rem;
}

.du-pay-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 48px;
  padding: 0 1.05rem;
  border: 1px solid var(--du-line);
  border-radius: var(--du-r-sm);
  background: #fff;
  box-shadow: var(--du-sh-1);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--du-ink-2);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.du-pay-item:hover {
  transform: translateY(-2px);
  border-color: var(--du-line-2);
  box-shadow: var(--du-sh-2);
}

.du-pay-logo {
  display: block;
  width: auto;
}

.du-pay-logo-cc {
  height: 24px;
}

.du-pay-logo-pp {
  height: 38px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* The site has no clean Bitcoin/Litecoin/Tether artwork, so these are drawn
   from the icon font in each coin's own brand colour. */
.du-pay-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
}

.du-pay-btc {
  background: #f7931a;
}

.du-pay-ltc {
  background: #345d9d;
  font-size: .88rem;
}

.du-pay-usdt {
  background: #26a17b;
  font-size: .9rem;
}

.du-pay-note {
  margin: 1.15rem 0 0;
  font-size: .8rem;
  color: var(--du-ink-3);
}

/* ═══════════════════════════════════════════════ FAQ */
.du-faq {
  padding: 5rem 0;
  background: #f8f9fb;
}

.du-faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.du-home .du-faq .accordion-item {
  border: 1px solid var(--du-line);
  border-radius: var(--du-r-md) !important;
  margin-bottom: .7rem;
  background: #fff;
  overflow: hidden;
}

.du-home .du-faq .accordion-button {
  font-family: var(--du-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--du-ink);
  background: #fff;
  padding: 1.1rem 1.3rem;
  box-shadow: none;
}

.du-home .du-faq .accordion-button:not(.collapsed) {
  color: var(--du-red-dark);
  background: #fff6f6;
}

.du-home .du-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--du-line);
}

.du-home .du-faq .accordion-button::after {
  width: .95rem;
  height: .95rem;
  background-size: .95rem;
}

.du-home .du-faq .accordion-body {
  font-size: .885rem;
  color: var(--du-ink-3);
  line-height: 1.78;
  padding: 0 1.3rem 1.2rem;
}

/* ═══════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 991.98px) {

  .du-home .hero.du-hero {
    padding: .3rem 0 1.4rem;
  }

  .du-faq {
    padding: 3.6rem 0;
  }

  .du-plans {
    padding: 3.6rem 0 .9rem;
  }

  .du-home .features.du-features {
    padding: 1.5rem 0 3.6rem;
  }

  .du-stat-div {
    display: none;
  }
}

@media (max-width: 767.98px) {

  .du-home .du-hero .upload-card {
    padding: .85rem;
  }

  .du-home .du-hero .drop-zone {
    padding: 1.2rem 1rem 1.1rem;
  }

  .du-home .du-hero .drop-zone h4 {
    font-size: 1.06rem;
  }

  .du-home .du-hero .hero-headline {
    max-width: 100%;
  }

  .du-plan {
    padding: 1.6rem 1.3rem;
  }

  .du-pay {
    margin-top: 2.4rem;
    padding-top: 1.7rem;
  }

  .du-pay-item {
    height: 42px;
    padding: 0 .8rem;
    gap: .42rem;
    font-size: .8rem;
  }

  .du-pay-logo-cc {
    height: 20px;
  }

  .du-pay-logo-pp {
    height: 28px;
  }

  .du-pay-mark {
    width: 22px;
    height: 22px;
    font-size: .85rem;
  }

  .du-stats {
    padding: 2.4rem 0;
  }

  .du-stat {
    padding: .6rem 0;
  }
}
