/* ==========================================================================
   AURORA v5 — fileup.to
   Strategy: brand Stack, don't fight it. Native bar-1 nav. Slim overrides.
   Tokens: Cloud Dancer #F0EEE9 + Indigo→Violet #4F46E5→#7C3AED
   Type: Plus Jakarta Sans (display) / Inter (body)
   ========================================================================== */

:root {
  --au-bg: #F0EEE9;
  --au-bg-soft: #F7F5F1;
  --au-surface: #FFFFFF;
  --au-ink: #17161C;
  --au-ink-soft: #55525E;
  --au-ink-faint: #8B8894;
  --au-line: rgba(23, 22, 28, 0.08);
  --au-brand: #4F46E5;
  --au-brand-deep: #4338CA;
  --au-brand-2: #7C3AED;
  --au-brand-soft: #EEF2FF;
  --au-gradient: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --au-radius-sm: 10px;
  --au-radius: 16px;
  --au-radius-lg: 24px;
  --au-radius-pill: 999px;
  --au-shadow-sm: 0 1px 2px rgba(23, 22, 28, 0.05), 0 2px 8px rgba(23, 22, 28, 0.04);
  --au-shadow: 0 2px 6px rgba(23, 22, 28, 0.05), 0 12px 32px rgba(23, 22, 28, 0.08);
  --au-shadow-lg: 0 8px 24px rgba(79, 70, 229, 0.12), 0 24px 64px rgba(23, 22, 28, 0.12);
  --au-font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --au-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --au-nav-h: 72px;
}

/* --------------------------------------------------------------------------
   1. Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--au-font-body);
  background: var(--au-bg);
  color: var(--au-ink-soft);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--au-font-display);
  color: var(--au-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1, .h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem); }
p.lead, .lead {
  font-size: clamp(1.02rem, 0.95rem + 0.35vw, 1.2rem);
  line-height: 1.75;
  color: var(--au-ink-soft);
}
a { color: var(--au-brand); transition: color .18s ease; }
a:hover { color: var(--au-brand-deep); text-decoration: none; }
::selection { background: rgba(79, 70, 229, 0.18); }
section { background: transparent; }
section.bg--secondary { background: var(--au-bg-soft); }
.bg--dark { background: #17161C; }
hr { border-color: var(--au-line); }

/* --------------------------------------------------------------------------
   2. Buttons
   -------------------------------------------------------------------------- */
.btn {
  border-radius: var(--au-radius-pill);
  border: 1.5px solid var(--au-line);
  background: var(--au-surface);
  padding: 0.05em 1.9em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: var(--au-shadow-sm);
}
.btn .btn__text {
  font-family: var(--au-font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--au-ink);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--au-shadow);
  border-color: rgba(79, 70, 229, 0.35);
}
.btn--primary,
.btn--primary:visited {
  background: var(--au-gradient);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.btn--primary .btn__text { color: #fff; }
.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.45);
  background: linear-gradient(135deg, #5B54F0 0%, #8B5CF6 100%);
}
.btn--sm { padding: 0 1.4em; }
.btn--lg { padding: 0.25em 2.4em; }
.btn-primary {
  background: var(--au-gradient);
  border: none;
  border-radius: var(--au-radius-pill);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   3. Navigation — native Stack bar-1 (logo left). Brand only.
   -------------------------------------------------------------------------- */
.nav-container {
  position: relative;
  z-index: 100;
}
.nav-container .bar.bar--sm {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--au-line);
  padding: 0.65em 0;
}
.nav-container .bar.bar-1 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.7em 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--au-line);
}
.nav-container .bar .logo,
.nav-container .bar-1 .logo {
  max-height: 36px;
  width: auto;
  height: auto;
  position: relative;
  top: 0;
}
/* Solid bar = Stack shows logo-dark. Force it so brand never collapses to 0×0. */
.nav-container .bar .logo-light,
.nav-container .bar-1 .logo-light { display: none !important; }
.nav-container .bar .logo-dark,
.nav-container .bar-1 .logo-dark { display: inline-block !important; }

.nav-container .menu-horizontal > li > a,
.nav-container .menu-horizontal > li > .dropdown__trigger {
  font-family: var(--au-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--au-ink-soft) !important;
  opacity: 1 !important;
  text-transform: none !important;
  padding: 0.4em 0.75em;
  border-radius: var(--au-radius-pill);
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
}
.nav-container .menu-horizontal > li > a:hover,
.nav-container .menu-horizontal > li > .dropdown__trigger:hover {
  color: var(--au-brand) !important;
  background: var(--au-brand-soft);
}
.nav-container .menu-horizontal > li > a.active {
  color: var(--au-brand) !important;
  background: var(--au-brand-soft);
}
.au-nav-ctas .btn { margin-left: 0.35rem; }
.au-nav-ctas .btn:not(.btn--primary) {
  background: var(--au-surface);
  border-color: var(--au-line);
}
.au-nav-ctas .btn:not(.btn--primary) .btn__text {
  color: var(--au-ink) !important;
}
/* Stack fades inactive nav links — keep full contrast */
.nav-container .bar .menu-horizontal > li,
.nav-container .bar .menu-horizontal > li > a,
.nav-container .bar .menu-horizontal > li > span {
  opacity: 1 !important;
}
.hamburger-toggle i { color: var(--au-ink); }
.dropdown .dropdown__content {
  border-radius: var(--au-radius);
  box-shadow: var(--au-shadow);
  border: 1px solid var(--au-line);
  background: var(--au-surface);
}

/* Space for fixed desktop nav */
@media (min-width: 992px) {
  .main-container { padding-top: var(--au-nav-h); }
}

/* Mobile menu open state */
.au-mobile-ctas { display: none; }
@media (max-width: 991px) {
  .nav-container .bar.bar-1 {
    position: relative;
    background: var(--au-surface);
  }
  .nav-container .bar.bar-1:not(.hidden-xs) {
    border-bottom: 1px solid var(--au-line);
  }
  .main-container { padding-top: 0; }
  .nav-container .menu-horizontal > li {
    display: block;
    margin: 0.25rem 0;
  }
  .nav-container .menu-horizontal > li > a,
  .nav-container .menu-horizontal > li > .dropdown__trigger {
    display: block;
    padding: 0.65em 0.9em;
  }
  .au-mobile-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem 1rem;
  }
  .au-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
}

/* --------------------------------------------------------------------------
   4. Forms / Stack chrome polish
   -------------------------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="password"],
input[type="search"], input[type="url"], input[type="tel"],
input[type="number"], textarea, select {
  border-radius: var(--au-radius-sm);
  border: 1.5px solid var(--au-line);
  background: var(--au-surface);
  font-family: var(--au-font-body);
  color: var(--au-ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--au-brand);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
  outline: none;
}
.boxed {
  border-radius: var(--au-radius-lg);
  background: var(--au-surface);
  box-shadow: var(--au-shadow-sm);
  border: 1px solid var(--au-line);
}
.accordion .accordion__title {
  border-radius: var(--au-radius);
  border: 1px solid var(--au-line);
  background: var(--au-surface);
  font-family: var(--au-font-display);
  font-weight: 700;
  color: var(--au-ink);
}
.accordion .active .accordion__title {
  background: var(--au-brand-soft);
  border-color: rgba(79, 70, 229, 0.4);
}
.back-to-top {
  border-radius: var(--au-radius-pill);
  background: var(--au-surface);
  box-shadow: var(--au-shadow);
  border: 1px solid var(--au-line);
}

/* Cookie — fixed bottom card only */
.cookiealert {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  top: auto;
  z-index: 10050;
  margin: 0 auto;
  max-width: 720px;
  background: rgba(23, 22, 28, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  padding: 0.9rem 1.1rem;
  color: #fff;
}

/* --------------------------------------------------------------------------
   5. Footer
   -------------------------------------------------------------------------- */
footer.au-footer {
  background: #17161C;
  color: #A5A3AD;
  padding: clamp(2.5rem, 2rem + 2vw, 4.5rem) 0 2rem;
}
footer.au-footer a { color: #C9C7D1; font-size: 0.95rem; }
footer.au-footer a:hover { color: #fff; }
footer.au-footer .au-footer-brand img { max-height: 40px; margin-bottom: 1rem; }
footer.au-footer .au-footer-tagline { font-size: 0.95rem; max-width: 320px; color: #8B8894; }
footer.au-footer h6 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
footer.au-footer ul { list-style: none; padding: 0; margin: 0; }
footer.au-footer ul li { margin-bottom: 0.55rem; }
footer.au-footer .au-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #6E6B78;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
footer.au-footer .au-footer-bottom a { color: #8B8894; margin-left: 1.2rem; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   6. Homepage / shared sections
   -------------------------------------------------------------------------- */
.au-hero {
  position: relative;
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0 clamp(2.5rem, 2rem + 2vw, 4rem);
  overflow: hidden;
}
.au-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 50% 60% at 70% 20%, rgba(124, 58, 237, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 40%, rgba(79, 70, 229, 0.1), transparent 70%);
  pointer-events: none;
}
.au-hero .container { position: relative; }
.au-grad {
  background: var(--au-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.au-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--au-radius-pill);
  background: var(--au-brand-soft);
  color: var(--au-brand);
  font-family: var(--au-font-display);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 1.1rem;
}
.au-badge svg { width: 14px; height: 14px; }
.au-hero h1 { margin-bottom: 1.1rem; }
.au-hero .lead { max-width: 560px; margin-bottom: 1.8rem; }
.au-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.au-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
}
.au-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--au-ink-soft);
}
.au-trust svg { width: 16px; height: 16px; color: var(--au-success, #10B981); flex-shrink: 0; }

/* Upload mock */
.au-mock {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius-lg);
  box-shadow: var(--au-shadow-lg);
  padding: 1.4rem;
  animation: au-float 6s ease-in-out infinite;
}
@keyframes au-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.au-mock-drop {
  border: 2px dashed rgba(79, 70, 229, 0.28);
  border-radius: var(--au-radius);
  background: var(--au-brand-soft);
  padding: 1.6rem 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.au-mock-drop svg {
  width: 40px; height: 40px;
  color: var(--au-brand);
  margin-bottom: 0.5rem;
}
.au-mock-drop strong {
  display: block;
  font-family: var(--au-font-display);
  color: var(--au-ink);
  font-size: 1rem;
}
.au-mock-drop span { font-size: 0.85rem; color: var(--au-ink-faint); }
.au-mock-file {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--au-radius-sm);
  background: var(--au-bg-soft);
  margin-bottom: 0.55rem;
}
.au-mock-file svg { width: 22px; height: 22px; flex-shrink: 0; }
.au-mock-file .au-check { color: #10B981; }
.au-file-name {
  font-family: var(--au-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--au-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.au-file-size { font-size: 0.78rem; color: var(--au-ink-faint); white-space: nowrap; }
.au-mock-bar {
  height: 6px;
  background: rgba(79, 70, 229, 0.12);
  border-radius: 99px;
  margin-top: 0.35rem;
  overflow: hidden;
}
.au-mock-bar i {
  display: block;
  height: 100%;
  background: var(--au-gradient);
  border-radius: 99px;
}
.au-mock-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--au-radius-sm);
  background: #ECFDF5;
  color: #047857;
  font-size: 0.85rem;
  font-weight: 600;
}
.au-mock-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Stats */
.au-stats { padding: 0 0 0.5rem; }
.au-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius-lg);
  box-shadow: var(--au-shadow-sm);
  padding: 1.4rem 1rem;
}
.au-stat { text-align: center; padding: 0.4rem; min-width: 0; }
.au-stat strong {
  display: block;
  font-family: var(--au-font-display);
  font-size: 1.25rem;
  color: var(--au-ink);
  margin-bottom: 0.2rem;
}
.au-stat span { font-size: 0.82rem; color: var(--au-ink-faint); font-weight: 500; }
@media (max-width: 767px) {
  .au-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Sections */
.au-section { padding: clamp(3rem, 2.5rem + 3vw, 5rem) 0; }
.au-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.au-kicker {
  display: inline-block;
  font-family: var(--au-font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--au-brand);
  margin-bottom: 0.75rem;
}
.au-section-head .lead { margin: 0.75rem auto 0; }

/* Equal bento — no dark featured tile */
.au-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.au-bento-card {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--au-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-width: 0;
}
.au-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--au-shadow);
  border-color: rgba(79, 70, 229, 0.25);
}
.au-bento-card.au-span3 { grid-column: span 1; } /* equal cards always */
.au-bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--au-brand-soft);
  color: var(--au-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.au-bento-icon svg { width: 22px; height: 22px; }
.au-bento-card h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.au-bento-card p { font-size: 0.92rem; margin: 0; line-height: 1.65; }
@media (max-width: 991px) {
  .au-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .au-bento { grid-template-columns: 1fr; }
}

/* Steps */
.au-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.au-step {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--au-shadow-sm);
}
.au-step-num {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--au-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.au-step-num svg { width: 24px; height: 24px; }
.au-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.au-step p { margin: 0; font-size: 0.92rem; }
@media (max-width: 767px) {
  .au-steps { grid-template-columns: 1fr; }
}

/* Plans */
.au-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
}
.au-plan {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--au-shadow-sm);
  position: relative;
}
.au-plan-pro {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: var(--au-shadow-lg);
}
.au-plan-tag {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--au-gradient);
  color: #fff;
  font-family: var(--au-font-display);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--au-radius-pill);
  white-space: nowrap;
}
.au-plan h3 { margin-bottom: 0.35rem; }
.au-plan-sub { color: var(--au-ink-faint); font-size: 0.9rem; margin-bottom: 1.25rem; }
.au-plan ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.au-plan li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  color: var(--au-ink-soft);
}
.au-plan li svg { width: 16px; height: 16px; color: #10B981; flex-shrink: 0; margin-top: 0.2rem; }
.au-plan li.au-no { color: var(--au-ink-faint); }
.au-plan li.au-no svg { color: #EF4444; }
@media (max-width: 767px) {
  .au-plans { grid-template-columns: 1fr; }
}

/* FAQ */
.au-faq { max-width: 720px; margin: 0 auto; }
.au-faq details {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius);
  margin-bottom: 0.65rem;
  padding: 0 1.15rem;
  transition: border-color .18s ease;
}
.au-faq details[open] { border-color: rgba(79, 70, 229, 0.35); }
.au-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-family: var(--au-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--au-ink);
}
.au-faq summary::-webkit-details-marker { display: none; }
.au-faq summary svg {
  width: 18px; height: 18px;
  color: var(--au-brand);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.au-faq details[open] summary svg { transform: rotate(45deg); }
.au-faq .au-faq-a {
  padding: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--au-ink-soft);
  line-height: 1.7;
}

/* CTA band */
.au-cta {
  text-align: center;
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius-lg);
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem) 1.5rem;
  box-shadow: var(--au-shadow-sm);
}
.au-cta h2 { margin-bottom: 0.6rem; }
.au-cta p { max-width: 520px; margin: 0 auto 1.5rem; }
.au-cta .au-hero-ctas { justify-content: center; margin-bottom: 0; }

/* Motion */
.au-reveal {
  animation: au-in .55s ease both;
}
.au-hero .au-reveal:nth-child(2) { animation-delay: .08s; }
.au-hero .au-reveal:nth-child(3) { animation-delay: .16s; }
@keyframes au-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .au-reveal, .au-mock { animation: none; }
}

/* --------------------------------------------------------------------------
   7. Download page
   -------------------------------------------------------------------------- */
.au-dl {
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0;
  min-height: 60vh;
}
.au-dl-card {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: var(--au-radius-lg);
  box-shadow: var(--au-shadow-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
}
.au-dl-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 18px;
  background: var(--au-brand-soft);
  color: var(--au-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.au-dl-icon svg { width: 30px; height: 30px; }
.au-dl-name {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  word-break: break-word;
  margin-bottom: 0.75rem;
}
.au-dl-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--au-ink-faint);
  margin-bottom: 1.25rem;
}
.au-dl-meta span { display: inline-flex; align-items: center; gap: 0.35em; }
.au-dl-meta svg { width: 15px; height: 15px; }
.au-dl-timer { margin: 0.5rem 0 1.4rem; }
.au-dl-ring { position: relative; width: 140px; height: 140px; margin: 0 auto 0.75rem; }
.au-dl-ring svg { width: 140px; height: 140px; transform: rotate(-90deg); }
.au-dl-ring-bg { fill: none; stroke: rgba(79, 70, 229, 0.12); stroke-width: 8; }
.au-dl-ring-fg {
  fill: none;
  stroke: url(#auGrad) #4F46E5;
  stroke: #4F46E5;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset .2s linear;
}
.au-dl-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.au-dl-ring-num span {
  font-family: var(--au-font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--au-ink);
  line-height: 1;
}
.au-dl-ring-num small {
  font-size: 0.75rem;
  color: var(--au-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.au-dl-timer-label { font-size: 0.92rem; color: var(--au-ink-soft); margin: 0; }
.au-dl-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

/* --------------------------------------------------------------------------
   8. Mobile safety
   -------------------------------------------------------------------------- */
@media (max-width: 575px) {
  .au-hero-ctas .btn { width: 100%; text-align: center; }
  .container { max-width: 100%; }
}
