@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* ========== RESET BASIC ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--df-bg);
  background-image:
    radial-gradient(circle at 20% 15%, rgba(56, 189, 248, 0.18), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(139, 92, 246, 0.18), transparent 40%),
    radial-gradient(circle at 15% 70%, rgba(94, 234, 212, 0.16), transparent 35%),
    radial-gradient(circle at 80% 75%, rgba(245, 158, 11, 0.12), transparent 45%),
    linear-gradient(160deg, #020617 0%, #060b1e 45%, #000 100%);
  color: var(--df-text);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
}


:root {
  --df-bg: #05060f;
  --df-surface: rgba(9, 14, 28, 0.9);
  --df-surface-strong: rgba(12, 18, 38, 0.95);
  --df-text: #f8fafc;
  --df-muted: #94a3b8;
  --df-accent-1: #5eead4;
  --df-accent-2: #38bdf8;
  --df-accent-3: #8b5cf6;
  --df-accent-4: #f59e0b;
}

h1,
h2,
h3,
.df-logo span,
.df-nav-text {
  font-family: "Space Grotesk", "Poppins", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background: none;
  opacity: 0;
  filter: none;
  z-index: -2;
  pointer-events: none;
  animation: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}

@keyframes df-aurora {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(4%, -2%, 0) rotate(6deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes df-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -1%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Helpers */
.df-container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== HEADER ========== */
.df-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.6));
  border-bottom: 1px solid rgba(94, 234, 212, 0.18);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.5);
}

.df-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.df-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.df-logo img {
  width: 32px;
  height: 32px;
}

.df-logo span {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #f9fafb;
}

/* ========== GLASS NAV ========== */
.df-nav {
  display: flex;
  justify-content: center;
  flex: 1;
}

.df-nav ul {
  --df-nav-height: 42px;
  --df-nav-btn-width: 96px;
  --df-nav-accent-1: rgba(94, 234, 212, 0.95);
  --df-nav-accent-2: rgba(56, 189, 248, 0.9);
  display: flex;
  list-style: none;
  padding: 0.26rem 0.36rem;
  margin: 0;
  gap: 0.26rem;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(8, 12, 22, 0.65), rgba(8, 12, 22, 0.9));
  border: 1px solid rgba(94, 234, 212, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 10px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.df-nav-item {
  position: relative;
}

.df-nav-link {
  display: block;
  height: var(--df-nav-height);
  min-width: var(--df-nav-btn-width);
  width: auto;
  overflow: hidden;
  text-decoration: none;
  border-radius: 12px;
  position: relative;
  background: rgba(12, 18, 32, 0.45);
  padding: 0 0.85rem;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.df-nav-more {
  position: relative;
}

.df-nav-more-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 190px;
  padding: 0.45rem;
  border-radius: 14px;
  background: rgba(8, 12, 22, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

.df-nav-more-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.df-nav-more-menu a:hover,
.df-nav-more-menu a:focus-visible {
  background: rgba(15, 23, 42, 0.7);
  color: #f8fafc;
}

.df-nav-more:hover .df-nav-more-menu,
.df-nav-more:focus-within .df-nav-more-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.df-nav-button {
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.df-nav-link:hover,
.df-nav-link:focus-visible {
  background: rgba(15, 23, 42, 0.75);
  transform: translateY(-1px);
}

.df-nav-content {
  display: flex;
  flex-direction: column;
  height: calc(var(--df-nav-height) * 2);
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.df-nav-text,
.df-nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--df-nav-height);
  width: 100%;
}

.df-nav-text {
  color: rgba(226, 232, 240, 0.76);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.df-nav-item.active .df-nav-text,
.df-nav-link:hover .df-nav-text,
.df-nav-link:focus-visible .df-nav-text {
  color: #f8fafc;
}

.df-nav-icon {
  color: rgba(59, 130, 246, 0.95);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.df-nav-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.3));
}

.df-nav-item:hover .df-nav-content {
  transform: translateY(-50%);
}

.df-nav-item:hover .df-nav-icon,
.df-nav-item.active .df-nav-icon {
  opacity: 1;
  transform: scale(1.12);
}

.df-nav-item.active .df-nav-content {
  transform: translateY(0);
}

.df-nav-item.active .df-nav-icon {
  opacity: 0;
  transform: scale(0.6);
}

.df-nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: linear-gradient(120deg, var(--df-nav-accent-1), var(--df-nav-accent-2));
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
  transition: transform 0.35s ease;
}

.df-nav-item.active::after {
  transform: translateX(-50%) scaleX(1);
}

.df-nav-link:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.9);
  outline-offset: -2px;
}

@media (max-width: 1100px) {
  .df-nav ul {
    --df-nav-btn-width: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-nav-link,
  .df-nav-content,
  .df-nav-icon,
  .df-nav-item::after {
    transition: none;
  }

  body::before {
    animation: none;
  }
}

/* Header buttons */
.df-header-cta {
  display: inline-flex;
}

/* Burger */
.df-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
}

.df-burger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* Mobile nav */
.df-mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 50%;
  right: auto;
  z-index: 90;
  width: min(92vw, 520px);
  transform: translateX(-50%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 0.85rem 0.95rem 1.05rem;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.98), rgba(8, 12, 26, 0.94));
  box-shadow: 0 20px 36px rgba(2, 6, 23, 0.55);
  max-height: 70vh;
  overflow-y: auto;
  backdrop-filter: blur(16px);
}

.df-mobile-nav.open {
  display: block;
}

.df-mobile-nav ul {
  list-style: none;
  margin: 0 0 0.75rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.df-mobile-nav .df-mobile-auth {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  flex-direction: column;
}

.df-mobile-more details {
  border: none;
  background: transparent;
  padding: 0;
}

.df-mobile-more summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  font-weight: 600;
  color: #e5e7eb;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(12, 18, 32, 0.6);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.df-mobile-more summary::-webkit-details-marker {
  display: none;
}

.df-mobile-more summary::after {
  content: ">";
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.9);
  transition: transform 0.2s ease;
}

.df-mobile-more details[open] summary::after {
  transform: rotate(90deg);
}

.df-mobile-more-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.6rem;
}

.df-mobile-nav .df-btn-ghost-small,
.df-mobile-nav .df-btn-primary-small {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  min-height: 2.8rem;
  border-radius: 12px;
}
.df-mobile-nav .df-btn-ghost-small {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.6);
}
.df-mobile-nav .df-btn-primary-small {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #0b1020;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.35);
}

/* Language dropdown */
.df-header-actions {
  position: relative;
}
.df-lang-menu {
  position: absolute;
  right: 0;
  top: 110%;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  padding: 0.35rem;
  display: none;
  min-width: 180px;
  z-index: 55;
}
.df-lang-menu.open {
  display: grid;
}
.df-lang-menu button {
  background: transparent;
  border: none;
  color: #e5e7eb;
  text-align: left;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
}
.df-lang-menu button:hover {
  background: rgba(79, 70, 229, 0.12);
}

@media (max-width: 768px) {
  .df-lang-menu {
    right: auto;
    left: 0;
  }
}

.df-mobile-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
}

.df-mobile-nav > ul > li:not(.df-mobile-auth) > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(12, 18, 32, 0.55);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.df-mobile-nav .df-mobile-more-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(12, 18, 32, 0.55);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.df-mobile-nav > ul > li:not(.df-mobile-auth) > a:active,
.df-mobile-nav .df-mobile-more-links a:active,
.df-mobile-more summary:active {
  transform: scale(0.98);
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(99, 102, 241, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .df-mobile-nav > ul > li:not(.df-mobile-auth) > a:hover,
  .df-mobile-nav .df-mobile-more-links a:hover,
  .df-mobile-more summary:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(99, 102, 241, 0.45);
  }
}

/* ========== BUTTONS ========== */
.df-btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, color 0.15s ease, border 0.15s ease;
  text-decoration: none;
}

.df-btn-primary {
  background: linear-gradient(120deg, #5eead4, #38bdf8 45%, #8b5cf6);
  color: #0b1020;
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.35);
  position: relative;
  overflow: hidden;
}

.df-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
}

.df-btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -60%;
  width: 55%;
  height: 340%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-140%) rotate(12deg);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.df-btn-primary:hover::after {
  transform: translateX(220%) rotate(12deg);
  opacity: 0.55;
}

.df-btn-outline {
  border: 1px solid rgba(94, 234, 212, 0.35);
  background: rgba(12, 18, 32, 0.4);
  color: #e5e7eb;
}

.df-btn-outline:hover {
  border-color: rgba(94, 234, 212, 0.8);
  background: rgba(15, 23, 42, 0.9);
}

.df-btn-ghost {
  background: rgba(12, 18, 32, 0.7);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.df-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.45);
}

/* ========== HERO ========== */
.df-hero {
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.df-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 2.8rem;
  position: relative;
  z-index: 1;
}

.df-hero::before,
.df-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
  display: none;
}

.df-hero::before {
  left: -80px;
  top: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(99, 102, 241, 0.35),
    rgba(34, 211, 238, 0.12) 45%,
    rgba(2, 6, 23, 0) 70%
  );
  opacity: 0;
}

.df-hero::after {
  right: -160px;
  top: 40px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(94, 234, 212, 0.18),
    rgba(2, 6, 23, 0) 70%
  );
  opacity: 0;
}

.df-hero-text {
  grid-column: span 7;
  max-width: 640px;
  text-align: left;
}

.df-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(8, 13, 26, 0.8));
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c7d2fe;
  border: 1px solid rgba(129, 140, 248, 0.5);
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.df-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: transparent;
  background: linear-gradient(110deg, #ffffff 0%, #c7d2fe 35%, #5eead4 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 35px rgba(15, 23, 42, 0.55);
}

.df-hero-subtitle {
  font-size: 1.02rem;
  color: rgba(226, 232, 240, 0.72);
  max-width: 34rem;
  margin: 0;
}

.df-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0 1.1rem;
  justify-content: flex-start;
}

.df-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.68);
  justify-content: flex-start;
}

.df-hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(10, 16, 30, 0.85);
}

.df-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.df-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(8, 13, 28, 0.9));
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: #e2e8f0;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(8, 15, 30, 0.35);
}

.df-hero-pill-alt {
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 12px 25px rgba(76, 29, 149, 0.25);
}

.df-hero-pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #5eead4;
  box-shadow: 0 0 0 rgba(94, 234, 212, 0.7);
  animation: df-pulse 1.8s ease-in-out infinite;
}

.df-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.df-hero-stat {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(160deg, rgba(10, 16, 30, 0.92), rgba(8, 12, 24, 0.96));
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.45);
}

.df-hero-stat-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
}

.df-hero-stat-value {
  margin: 0.2rem 0 0;
  font-size: 1.4rem;
  color: #f8fafc;
}

.df-hero-visual {
  grid-column: span 5;
  position: relative;
  min-height: 380px;
}

.df-hero-glow {
  position: absolute;
  inset: -15% -10%;
  background: none;
  opacity: 0;
  filter: none;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.df-hero-ring {
  position: absolute;
  inset: 12% 10%;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.25);
  animation: df-rotate 18s linear infinite;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.df-hero-gridlines {
  position: absolute;
  inset: 18% 16%;
  border-radius: 20px;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.df-hero-beam {
  position: absolute;
  left: -25%;
  right: -25%;
  height: 110px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), rgba(94, 234, 212, 0.18), transparent);
  filter: blur(12px);
  opacity: 0.22;
  transform: rotate(-8deg);
  animation: df-beam 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.df-hero-beam-1 {
  top: 6%;
}

.df-hero-beam-2 {
  bottom: 12%;
  transform: rotate(6deg);
  animation-delay: 3s;
}

.df-hero-particles {
  position: absolute;
  inset: -10%;
  background: none;
  opacity: 0;
  filter: none;
  animation: df-twinkle 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.df-hero-marquee {
  display: none !important;
}

.df-hero-float-tag {
  position: absolute;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fafc;
  background: rgba(12, 18, 34, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 25px rgba(2, 6, 23, 0.45);
  animation: df-float 6s ease-in-out infinite;
  z-index: 2;
}

.df-hero-float-tag-1 {
  top: 12%;
  left: 2%;
}

.df-hero-float-tag-2 {
  bottom: 18%;
  right: 6%;
  animation-delay: 1.5s;
}

.df-hero-float-tag-3 {
  top: 55%;
  right: 18%;
  animation-delay: 3s;
}

@keyframes df-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes df-beam {
  0% {
    transform: translateX(-6%) rotate(-8deg);
  }
  50% {
    transform: translateX(6%) rotate(-8deg);
  }
  100% {
    transform: translateX(-6%) rotate(-8deg);
  }
}

@keyframes df-twinkle {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.02);
  }
}

@keyframes df-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes df-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(94, 234, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 234, 212, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-hero-beam,
  .df-hero-particles,
  .df-hero-ring,
  .df-hero-pulse,
  .df-hero-float-tag {
    animation: none !important;
  }

  .df-btn-primary::after {
    transition: none;
  }
}

.df-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.df-hero-orb-1 {
  width: 220px;
  height: 220px;
  top: -30px;
  right: 30px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.6), transparent 70%);
}

.df-hero-orb-2 {
  width: 260px;
  height: 260px;
  bottom: -40px;
  left: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5), transparent 70%);
}

.df-hero-orb-3 {
  width: 160px;
  height: 160px;
  top: 120px;
  left: 120px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.5), transparent 70%);
}

.df-hero-card {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(8, 12, 24, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 24px 60px rgba(5, 7, 20, 0.6);
  overflow: hidden;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.df-hero-card-main {
  inset: 30px 20px auto auto;
  width: 360px;
  height: 250px;
  padding: 1.2rem 1.3rem;
  animation: df-float 6s ease-in-out infinite;
}

.df-hero-card-float {
  right: 40px;
  bottom: 30px;
  width: 200px;
  height: 110px;
  padding: 0.9rem;
  animation: df-float 5s ease-in-out infinite reverse;
}

.df-hero-card-mini {
  left: 30px;
  top: 70px;
  width: 160px;
  height: 90px;
  padding: 0.8rem;
  animation: df-float 4.5s ease-in-out infinite;
}


.df-hero-card-head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.df-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.55);
}

.df-hero-chip {
  margin-left: auto;
  width: 56px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(94, 234, 212, 0.7), rgba(56, 189, 248, 0.7));
}

.df-hero-card-body {
  display: grid;
  gap: 0.6rem;
}

.df-hero-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.df-hero-line-lg {
  height: 14px;
  background: linear-gradient(90deg, rgba(94, 234, 212, 0.5), rgba(56, 189, 248, 0.2));
}

.df-hero-line-sm {
  width: 65%;
}

.df-hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.df-hero-kpi {
  height: 36px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(94, 234, 212, 0.2);
}

.df-hero-mini-badge {
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.6);
  margin-bottom: 0.6rem;
}

@keyframes df-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hero polish (index) */
.df-hero {
  isolation: isolate;
}

.df-hero::before,
.df-hero::after {
  display: block;
  filter: blur(16px);
  opacity: 0.55;
  animation: df-drift 16s ease-in-out infinite;
}

.df-hero::before {
  left: -120px;
  top: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(56, 189, 248, 0.34),
    rgba(94, 234, 212, 0.2) 45%,
    rgba(2, 6, 23, 0) 74%
  );
}

.df-hero::after {
  right: -180px;
  top: 0;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(167, 139, 250, 0.3),
    rgba(56, 189, 248, 0.14) 48%,
    rgba(2, 6, 23, 0) 76%
  );
  animation-delay: -7s;
}

.df-hero h1 {
  background-size: 200% 200%;
  animation: df-hero-title-shift 8s ease-in-out infinite;
}

.df-hero-text {
  position: relative;
}

.df-hero-text::before {
  content: "";
  position: absolute;
  inset: -1.4rem -1.2rem -1.7rem -1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  background:
    linear-gradient(150deg, rgba(9, 16, 30, 0.5), rgba(6, 12, 24, 0.2)),
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.1), transparent 65%);
  box-shadow: 0 26px 50px rgba(2, 6, 23, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  z-index: -1;
}

.df-hero-visual {
  min-height: 430px;
  perspective: 1100px;
}

.df-hero-glow {
  display: block;
  inset: -16% -14%;
  opacity: 0.75;
  filter: blur(14px);
  background:
    radial-gradient(circle at 28% 20%, rgba(56, 189, 248, 0.44), transparent 54%),
    radial-gradient(circle at 78% 30%, rgba(167, 139, 250, 0.36), transparent 58%),
    radial-gradient(circle at 55% 78%, rgba(45, 212, 191, 0.28), transparent 52%);
}

.df-hero-ring {
  display: block;
  inset: 13% 12%;
  opacity: 0.55;
}

.df-hero-gridlines {
  display: block;
  inset: 18% 14%;
  opacity: 0.34;
  animation: df-grid-shift 14s linear infinite;
}

.df-hero-beam,
.df-hero-particles,
.df-hero-orb {
  display: block;
}

.df-hero-beam {
  opacity: 0.32;
}

.df-hero-particles {
  opacity: 0.2;
  background:
    radial-gradient(circle, rgba(148, 163, 184, 0.35) 1px, transparent 1.8px) 0 0 / 24px 24px,
    radial-gradient(circle, rgba(94, 234, 212, 0.35) 1px, transparent 2px) 12px 8px / 32px 32px;
}

.df-hero-orb {
  opacity: 0.5;
  animation: df-orb-drift 9s ease-in-out infinite;
}

.df-hero-orb-2 {
  animation-delay: -3s;
}

.df-hero-orb-3 {
  animation-delay: -5s;
}

.df-hero-card {
  border-color: rgba(148, 163, 184, 0.28);
  box-shadow:
    0 28px 66px rgba(5, 7, 20, 0.62),
    0 10px 28px rgba(56, 189, 248, 0.16);
}

.df-hero-card-main {
  animation: df-card-main-float 6.5s ease-in-out infinite;
  transform-origin: 72% 60%;
}

.df-hero-card-float {
  animation: df-card-float 5.5s ease-in-out infinite;
}

.df-hero-card-mini {
  animation: df-card-mini 4.5s ease-in-out infinite;
}

.df-hero-float-tag {
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(135deg, rgba(12, 18, 34, 0.95), rgba(9, 15, 30, 0.86));
}

.df-hero-signal {
  position: absolute;
  left: 12%;
  bottom: 8%;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.4);
  background: rgba(7, 14, 28, 0.88);
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.45), 0 0 24px rgba(56, 189, 248, 0.22);
  z-index: 3;
}

.df-hero-signal span {
  width: 0.26rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5eead4, #38bdf8);
  animation: df-eq 1.2s ease-in-out infinite;
}

.df-hero-signal span:nth-child(1) {
  height: 0.6rem;
  animation-delay: 0s;
}

.df-hero-signal span:nth-child(2) {
  height: 1rem;
  animation-delay: 0.12s;
}

.df-hero-signal span:nth-child(3) {
  height: 0.44rem;
  animation-delay: 0.24s;
}

.df-hero-signal span:nth-child(4) {
  height: 1.2rem;
  animation-delay: 0.36s;
}

.df-hero-signal span:nth-child(5) {
  height: 0.72rem;
  animation-delay: 0.48s;
}

@keyframes df-hero-title-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes df-grid-shift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 72px 36px, 36px 72px;
  }
}

@keyframes df-orb-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -6px, 0) scale(1.05);
  }
}

@keyframes df-card-main-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotateX(1.5deg) rotateY(-2deg);
  }
}

@keyframes df-card-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes df-card-mini {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes df-eq {
  0%, 100% {
    transform: scaleY(0.55);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

.df-homepage .df-hero {
  padding-top: 7.2rem;
  background:
    linear-gradient(118deg, rgba(7, 13, 27, 0.92) 0%, rgba(5, 12, 24, 0.68) 44%, rgba(10, 22, 40, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(56, 189, 248, 0.04) 0 1px, transparent 1px 120px);
}

.df-homepage .df-hero::before,
.df-homepage .df-hero::after {
  filter: blur(12px);
  opacity: 0.34;
}

.df-homepage .df-hero-text::before {
  border-color: rgba(56, 189, 248, 0.24);
  background:
    linear-gradient(150deg, rgba(8, 15, 30, 0.82), rgba(7, 12, 25, 0.56)),
    linear-gradient(120deg, rgba(56, 189, 248, 0.16), transparent 42%),
    linear-gradient(302deg, rgba(245, 158, 11, 0.1), transparent 48%);
  box-shadow:
    0 30px 56px rgba(2, 6, 23, 0.44),
    inset 0 0 0 1px rgba(56, 189, 248, 0.1);
}

.df-homepage .df-hero-visual {
  transform: translateY(2px);
}

.df-homepage .df-hero-glow,
.df-homepage .df-hero-ring,
.df-homepage .df-hero-orb {
  display: none;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 5%;
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(6, 14, 30, 0.95), rgba(9, 20, 38, 0.9)),
    conic-gradient(from 220deg at 85% 15%, rgba(56, 189, 248, 0.14), rgba(167, 139, 250, 0.1), rgba(245, 158, 11, 0.16), rgba(56, 189, 248, 0.14));
  border: 1px solid rgba(125, 211, 252, 0.2);
  box-shadow:
    0 30px 62px rgba(2, 6, 23, 0.54),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: 10% 8% 11%;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  background:
    linear-gradient(108deg, rgba(56, 189, 248, 0.12), transparent 35%),
    repeating-linear-gradient(90deg, rgba(94, 234, 212, 0.06) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(167, 139, 250, 0.05) 0 1px, transparent 1px 46px);
  mix-blend-mode: screen;
  opacity: 0.78;
  box-shadow:
    inset 0 0 50px rgba(56, 189, 248, 0.08),
    0 0 30px rgba(56, 189, 248, 0.18);
  pointer-events: none;
  z-index: 0;
}

.df-hero-prism {
  position: absolute;
  inset: 12% 10% 14%;
  border-radius: 20px;
  background:
    conic-gradient(from 215deg at 68% 32%, rgba(56, 189, 248, 0.24), rgba(167, 139, 250, 0.14), rgba(245, 158, 11, 0.18), rgba(56, 189, 248, 0.26));
  filter: saturate(115%);
  opacity: 0.55;
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  clip-path: polygon(0 8%, 92% 0, 100% 88%, 8% 100%);
  z-index: 0;
  animation: df-prism-sweep 13s ease-in-out infinite;
}

.df-hero-ribbon {
  --df-ribbon-angle: -7deg;
  position: absolute;
  left: 8%;
  right: 8%;
  height: 8px;
  border-radius: 999px;
  filter: none;
  z-index: 1;
  opacity: 0.85;
}

.df-hero-ribbon-1 {
  top: 18%;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.7), rgba(94, 234, 212, 0.72), rgba(56, 189, 248, 0));
  --df-ribbon-angle: -4deg;
  transform: rotate(var(--df-ribbon-angle));
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
  animation: df-ribbon-drift 8s ease-in-out infinite;
}

.df-hero-ribbon-2 {
  bottom: 16%;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.5), rgba(167, 139, 250, 0.72), rgba(56, 189, 248, 0));
  --df-ribbon-angle: 4deg;
  transform: rotate(var(--df-ribbon-angle));
  box-shadow: 0 0 26px rgba(167, 139, 250, 0.42);
  animation: df-ribbon-drift 9.5s ease-in-out infinite reverse;
}

.df-hero-shard {
  --df-shard-rotate: 0deg;
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.42), rgba(94, 234, 212, 0.22));
  clip-path: polygon(50% 0, 100% 42%, 70% 100%, 0 72%, 8% 18%);
  border: 1px solid rgba(125, 211, 252, 0.3);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.34), 0 0 20px rgba(56, 189, 248, 0.2);
  z-index: 1;
}

.df-hero-shard-a {
  top: 4%;
  right: 1%;
  --df-shard-rotate: 16deg;
  transform: rotate(var(--df-shard-rotate));
  animation: df-shard-float 7s ease-in-out infinite;
}

.df-hero-shard-b {
  bottom: 8%;
  left: 2%;
  width: 64px;
  height: 64px;
  --df-shard-rotate: -12deg;
  transform: rotate(var(--df-shard-rotate));
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.34), rgba(56, 189, 248, 0.2));
  animation: df-shard-float 6s ease-in-out infinite reverse;
}

.df-hero-shard-c {
  top: 46%;
  right: 5%;
  width: 56px;
  height: 56px;
  --df-shard-rotate: 6deg;
  transform: rotate(var(--df-shard-rotate));
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.38), rgba(56, 189, 248, 0.24));
  animation: df-shard-float 5.2s ease-in-out infinite;
}

.df-homepage .df-hero-card-main {
  right: 7%;
  width: 350px;
}

.df-homepage .df-hero-card-float {
  right: 9%;
}

.df-homepage .df-hero-card-mini {
  left: 8%;
}

.df-homepage .df-hero-float-tag-2 {
  border-color: rgba(245, 158, 11, 0.45);
}

.df-homepage .df-hero-pill,
.df-homepage .df-hero-stat {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.df-homepage .df-hero-pill:hover,
.df-homepage .df-hero-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.45);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.44), 0 0 20px rgba(56, 189, 248, 0.22);
}

@keyframes df-prism-sweep {
  0%, 100% {
    opacity: 0.64;
    transform: perspective(800px) rotateY(-7deg) rotateX(2deg) scale(1);
  }
  50% {
    opacity: 0.82;
    transform: perspective(800px) rotateY(-4deg) rotateX(1deg) scale(1.02);
  }
}

@keyframes df-ribbon-drift {
  0%, 100% {
    transform: translateX(0) rotate(var(--df-ribbon-angle));
  }
  50% {
    transform: translateX(4%) rotate(calc(var(--df-ribbon-angle) + 1.5deg));
  }
}

@keyframes df-shard-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--df-shard-rotate));
  }
  50% {
    transform: translateY(-10px) rotate(calc(var(--df-shard-rotate) - 6deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-hero::before,
  .df-hero::after,
  .df-hero-gridlines,
  .df-hero-orb,
  .df-hero-card-main,
  .df-hero-card-float,
  .df-hero-card-mini,
  .df-hero-prism,
  .df-hero-ribbon,
  .df-hero-shard,
  .df-hero-signal span,
  .df-hero h1 {
    animation: none !important;
  }
}

/* Support */
.df-support {
  background: radial-gradient(circle at 20% 20%, rgba(34, 193, 233, 0.07), transparent 30%),
    linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(15, 23, 42, 0.9));
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}
.df-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.df-support-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.df-support-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 1rem;
  color: #e5e7eb;
}
.df-support-card p {
  margin: 0;
  color: #cbd5e1;
}


/* ========== Logo wall / Security / Mini changelog ========== */
.df-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: center;
  justify-items: center;
}

.df-logo-wall .df-logo-pill {
  width: 100%;
  max-width: 200px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  text-align: center;
  color: #dbe3f5;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.8);
}

.df-security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.df-security-card,
.df-mini-changelog {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  max-width: 780px;
  margin: 2rem auto 0;
}

.df-security-card h3 {
  margin: 0 0 0.4rem;
  color: #e5e7eb;
}

.df-security-card p {
  margin: 0;
  color: #9fb5d1;
}

.df-mini-changelog ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.df-mini-changelog li {
  color: #dbe3f5;
  font-size: 0.95rem;
}

.df-mini-changelog li span {
  display: inline-block;
  min-width: 58px;
  padding: 0.2rem 0.55rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #bff3ff;
  font-weight: 700;
  font-size: 0.8rem;
}

.df-mini-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.1rem;
}

/* ========== AUTH (login/signup) ========== */
.df-auth-shell {
  min-height: 100vh;
  margin: 0;
  background: #05060f;
  color: #e5e7eb;
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
}

.df-auth-bg,
.df-auth-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.df-auth-bg {
  background:
    radial-gradient(120% 80% at 12% 20%, rgba(94, 234, 212, 0.28), transparent 60%),
    radial-gradient(120% 80% at 88% 10%, rgba(56, 189, 248, 0.24), transparent 60%),
    radial-gradient(120% 80% at 78% 80%, rgba(245, 158, 11, 0.18), transparent 60%),
    #05060f;
  animation: df-aurora 22s ease-in-out infinite;
}

.df-auth-bg::before {
  content: "";
  position: absolute;
  width: 140vw;
  height: 60vh;
  left: -20vw;
  top: 18vh;
  background: linear-gradient(
    100deg,
    rgba(56, 189, 248, 0) 0%,
    rgba(56, 189, 248, 0.5) 35%,
    rgba(94, 234, 212, 0.45) 55%,
    rgba(56, 189, 248, 0) 80%
  );
  border-radius: 50%;
  transform: rotate(-8deg) scaleY(0.6);
  filter: blur(20px);
  opacity: 0.9;
}

.df-auth-bg::after {
  content: "";
  position: absolute;
  width: 120vw;
  height: 52vh;
  left: -10vw;
  top: 32vh;
  background: linear-gradient(
    100deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0.7) 45%,
    rgba(15, 23, 42, 0) 78%
  );
  border-radius: 50%;
  transform: rotate(-6deg) scaleY(0.7);
  filter: blur(18px);
  opacity: 0.9;
}

.df-auth-gradient {
  background:
    radial-gradient(40% 40% at 12% 8%, rgba(167, 139, 250, 0.25), transparent 60%),
    radial-gradient(45% 45% at 88% 12%, rgba(14, 165, 233, 0.25), transparent 65%),
    linear-gradient(120deg, rgba(14, 165, 233, 0.22), rgba(12, 74, 110, 0.12));
  filter: blur(26px);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.df-header-auth {
  background: transparent;
  padding-top: 1.4rem;
  position: relative;
  z-index: 2;
}

.df-auth-main {
  max-width: 520px;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.df-auth-card {
  position: relative;
  background: linear-gradient(165deg, rgba(12, 19, 35, 0.96), rgba(8, 13, 26, 0.96));
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow:
    0 28px 80px rgba(3, 7, 18, 0.6),
    0 14px 35px rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.df-auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(94, 234, 212, 0.2), transparent 55%, rgba(167, 139, 250, 0.25));
  opacity: 0.35;
  pointer-events: none;
}

.df-auth-card::after {
  content: "";
  position: absolute;
  right: -30%;
  top: -35%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.df-auth-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.df-auth-logo {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.df-auth-logo h1 {
  margin: 0;
  font-size: 1.35rem;
  color: #f8fafc;
  background: linear-gradient(120deg, #f8fafc, #7dd3fc 60%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-auth-subtitle {
  margin: 0.15rem 0 0.25rem;
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.45;
}

.df-auth-subtext {
  margin: 0;
  color: #9fb5d1;
  font-size: 0.95rem;
  line-height: 1.45;
}

.df-auth-form {
  display: grid;
  gap: 0.65rem;
}

.df-auth-card .df-signup-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.df-auth-signup .df-auth-main {
  max-width: 620px;
}

.df-auth-form label {
  color: #cbd5e1;
  font-weight: 600;
}

.df-auth-btn {
  width: 100%;
  margin-top: 0.4rem;
}

.df-auth-meta {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #b4c3d8;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.df-auth-meta a,
#df-login-forgot {
  color: #7dd3fc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.df-auth-meta a:hover,
#df-login-forgot:hover {
  color: #a5f3fc;
  border-bottom-color: rgba(125, 211, 252, 0.5);
}

.df-auth-meta a:focus-visible,
#df-login-forgot:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.6);
  outline-offset: 3px;
  border-bottom-color: transparent;
}

.df-auth-footer {
  margin-top: 0.6rem;
}

@media (max-width: 640px) {
  .df-auth-shell {
    background: #0b111c;
  }

  .df-auth-bg::before {
    width: 160vw;
    height: 50vh;
    top: 22vh;
  }

  .df-auth-bg::after {
    width: 150vw;
    height: 46vh;
    top: 34vh;
  }

  .df-auth-main {
    max-width: 460px;
    margin: 1.4rem auto 2.4rem;
    padding: 0 1.1rem;
  }

  .df-auth-card {
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.32),
      0 10px 24px rgba(79, 70, 229, 0.12);
  }

  .df-auth-head {
    display: block;
    margin-bottom: 1rem;
  }

  .df-auth-logo h1 {
    font-size: 1.25rem;
  }

  .df-auth-logo p,
  .df-auth-meta {
    font-size: 0.95rem;
  }

  .df-auth-btn {
    margin-top: 0.2rem;
    min-height: 2.9rem;
  }

  .df-input {
    min-height: 2.8rem;
  }

  .df-auth-signup .df-auth-main {
    max-width: 520px;
  }
}

.df-auth-error {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #f87171;
}

.df-pass-checklist {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.df-pass-checklist ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 4px;
}
.df-pass-checklist li {
  padding-left: 22px;
  position: relative;
  color: #cbd5e1;
  font-size: 0.9rem;
}
.df-pass-checklist li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #f87171;
  font-weight: 700;
}
.df-pass-checklist li.ok {
  color: #22c55e;
  font-weight: 600;
}
.df-pass-checklist li.ok::before {
  content: "✓";
  color: #22c55e;
}
.df-pass-status {
  font-weight: 700;
  color: #cbd5e1;
  font-size: 0.95rem;
}
.df-pass-status.good {
  color: #22c55e;
}

.df-human-card {
  margin: 12px 0 6px;
  padding: 14px;
  border-radius: 14px;
  background: radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.08), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.22);
}
.df-human-title {
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.df-human-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-weight: 600;
}
.df-human-check input {
  width: 18px;
  height: 18px;
}
.df-human-note {
  margin: 6px 0 0;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.cf-turnstile {
  margin-top: 0.35rem;
  padding: 6px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

/* ========== SECTIONS GENERIC ========== */
.df-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.df-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -240px;
  right: -220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.df-section-alt {
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.08), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(6, 10, 24, 0.9), rgba(15, 23, 42, 0.95));
}

.df-section-alt::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  bottom: -240px;
  left: -180px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.12), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

/* Subtle scroll reveal */
.df-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--df-reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .df-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.df-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.df-section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
  color: #f9fafb;
  line-height: 1.25;
  position: relative;
  display: inline-block;
}

.df-section-header h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 234, 212, 0.9), rgba(56, 189, 248, 0.9));
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.35);
}

.df-section-header p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* ========== FEATURES ========== */
.df-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.df-feature-card {
  border-radius: 1rem;
  padding: 1.4rem;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(8, 12, 24, 0.92));
  border: 1px solid rgba(94, 234, 212, 0.18);
  box-shadow:
    0 18px 40px rgba(8, 12, 24, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.df-feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: #e5e7eb;
}

.df-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.df-feature-card::before,
.df-download-card::before,
.df-pricing-card::before,
.df-security-card::before,
.df-step::before,
.df-faq-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(94, 234, 212, 0.45), rgba(56, 189, 248, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.df-feature-card:hover::before,
.df-download-card:hover::before,
.df-pricing-card:hover::before,
.df-security-card:hover::before,
.df-step:hover::before,
.df-faq-item:hover::before {
  opacity: 0.35;
}

.df-feature-card > *,
.df-download-card > *,
.df-pricing-card > *,
.df-security-card > *,
.df-step > *,
.df-faq-item > * {
  position: relative;
  z-index: 1;
}

/* Subtle hover lift for cards */
.df-feature-card,
.df-step,
.df-download-card,
.df-security-card,
.df-support-card,
.df-changelog-card,
.df-mini-changelog,
.df-logo-wall .df-logo-pill {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.df-feature-card::after,
.df-step::after,
.df-download-card::after,
.df-security-card::after,
.df-support-card::after,
.df-changelog-card::after,
.df-mini-changelog::after,
.df-logo-wall .df-logo-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(56, 189, 248, 0.16),
    rgba(15, 23, 42, 0) 60%
  );
}

.df-feature-card:hover,
.df-step:hover,
.df-download-card:hover,
.df-security-card:hover,
.df-support-card:hover,
.df-changelog-card:hover,
.df-mini-changelog:hover,
.df-logo-wall .df-logo-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.6);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.6), 0 0 24px rgba(99, 102, 241, 0.18);
}

.df-feature-card:hover::after,
.df-step:hover::after,
.df-download-card:hover::after,
.df-security-card:hover::after,
.df-support-card:hover::after,
.df-changelog-card:hover::after,
.df-mini-changelog:hover::after,
.df-logo-wall .df-logo-pill:hover::after {
  opacity: 1;
}

/* ========== STEPS ========== */
.df-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.df-step {
  position: relative;
  padding: 1.5rem 1.4rem 1.3rem;
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.9);
}

.df-step-number {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.55);
}

.df-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.df-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ========== PRICING ========== */
.df-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.df-pricing-card {
  border-radius: 1.2rem;
  padding: 1.7rem 1.5rem 1.4rem;
  background: linear-gradient(160deg, rgba(12, 18, 34, 0.96), rgba(8, 12, 24, 0.96));
  border: 1px solid rgba(94, 234, 212, 0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease,
    background 0.35s ease;
}

.df-pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 234, 212, 0.7);
  box-shadow:
    0 16px 44px rgba(14, 165, 233, 0.2),
    0 0 32px rgba(94, 234, 212, 0.22);
  background: radial-gradient(
      circle at 22% 18%,
      rgba(56, 189, 248, 0.16),
      rgba(15, 23, 42, 0)
    ),
    radial-gradient(circle at 80% 30%, rgba(94, 234, 212, 0.12), rgba(15, 23, 42, 0)),
    rgba(12, 18, 34, 0.98);
}

.df-pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.df-price {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
  color: #f9fafb;
}

.df-price span {
  font-size: 0.85rem;
  color: #9ca3af;
}

.df-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.df-pricing-card li + li {
  margin-top: 0.25rem;
}

.df-pricing-card .df-btn {
  width: 100%;
}

.df-pricing-featured {
  position: relative;
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.22), rgba(15, 23, 42, 0.95));
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: none;
}

.df-pricing-featured:hover {
  box-shadow:
    0 22px 70px rgba(99, 102, 241, 0.5),
    0 0 58px rgba(56, 189, 248, 0.42);
  background: radial-gradient(
      circle at 25% 15%,
      rgba(56, 189, 248, 0.18),
      rgba(79, 70, 229, 0.05),
      rgba(15, 23, 42, 0.9)
    ),
    radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.2), rgba(15, 23, 42, 0.9));
}

.df-badge-pill {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.7);
}

.df-pricing-note {
  margin: 1rem auto 0;
  max-width: 720px;
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.4;
}

.df-pricing-offer {
  margin: 0.75rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #d1fae5;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.df-plan-offer {
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.45);
  color: #d1fae5;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ========== DOWNLOAD SECTION ========== */
.df-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: flex-start;
}

.df-download-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.df-download-column h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.df-download-subtitle {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.df-download-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.df-platform-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.df-platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #c7d2fe;
  box-shadow: inset 0 0 12px rgba(99, 102, 241, 0.15);
}

.df-platform-icon-windows {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(30, 58, 138, 0.35);
}

.df-platform-icon-macos {
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(30, 41, 59, 0.45);
}

.df-platform-icon-linux {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(120, 53, 15, 0.35);
}

.df-platform-icon-android {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(20, 83, 45, 0.4);
}

.df-platform-icon-ios {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(30, 58, 138, 0.35);
}

.df-download-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1.1rem;
  padding: 1.25rem 1.3rem 1.35rem;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 34, 0.95),
    rgba(10, 16, 30, 0.86)
  );
  border: 1px solid rgba(94, 234, 212, 0.2);
  margin: 0;
  transition: border 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.df-download-card h4 {
  margin: 0;
  font-size: 1.05rem;
}

.df-download-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #9ca3af;
}

.df-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.df-download-card .df-store-badge {
  margin-top: auto;
}

.df-download-card.highlighted {
  border-color: rgba(94, 234, 212, 0.8);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

/* Store badge */
.df-store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  text-decoration: none;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.95));
}

.df-store-title {
  font-size: 0.75rem;
  color: #d1d5db;
}

.df-store-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f9fafb;
}

.df-download-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* ========== FAQ ========== */
.df-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem 1.7rem;
}

.df-faq-item {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(12, 18, 32, 0.95), rgba(8, 12, 24, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.4);
  position: relative;
  overflow: hidden;
}

.df-faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.df-faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ========== FOOTER ========== */
.df-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background:
    radial-gradient(circle at 15% 0%, rgba(59, 130, 246, 0.12), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.1), transparent 40%),
    #020617;
  padding: 2.4rem 0 2.6rem;
}

.df-footer-inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  grid-template-areas:
    "brand copy social"
    "brand meta social";
  column-gap: clamp(1.2rem, 4vw, 3.2rem);
  row-gap: 0.4rem;
  align-items: center;
}

.df-footer-logo img {
  width: 26px;
  height: 26px;
}

.df-footer-brand {
  display: flex;
  align-items: center;
  grid-area: brand;
  align-self: center;
}

.df-footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  color: #9fb5d1;
  max-width: 360px;
  grid-area: copy;
  text-align: center;
  justify-self: center;
}

.df-footer-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fb5d1;
}

.df-footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  justify-self: end;
  grid-area: social;
}

.df-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.df-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.df-social-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.df-social-btn:hover,
.df-social-btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
  border-color: transparent;
  color: #0b1020;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.95), rgba(56, 189, 248, 0.95));
  box-shadow: 0 12px 26px rgba(56, 189, 248, 0.35);
  outline: none;
}

.df-footer-meta {
  font-size: 0.8rem;
  color: #6b7280;
  grid-area: meta;
  text-align: center;
  justify-self: center;
}

.df-footer-legal {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: #94a3b8;
}

.df-footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.df-footer-legal a:hover,
.df-footer-legal a:focus-visible {
  color: #e2e8f0;
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.6);
}

.df-footer-legal span {
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .df-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-hero-text {
    grid-column: span 12;
    text-align: center;
    margin-inline: auto;
  }

  .df-hero-subtitle {
    margin-inline: auto;
  }

  .df-hero-cta,
  .df-hero-meta {
    justify-content: center;
  }

  .df-hero-highlights {
    justify-content: center;
  }

  .df-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    margin-inline: auto;
  }

  .df-hero-visual {
    grid-column: span 12;
    min-height: 320px;
  }

  .df-hero-text::before {
    inset: -1rem -0.8rem -1.2rem;
  }

  .df-hero::before,
  .df-hero::after {
    opacity: 0.38;
  }

  .df-hero-gridlines,
  .df-hero-beam,
  .df-hero-particles {
    opacity: 0.16;
  }

  .df-hero-signal {
    left: 50%;
    transform: translateX(-50%);
    bottom: 2%;
  }

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

  .df-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
  }

  .df-download-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .df-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-footer-inner {
    text-align: center;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "copy"
      "social"
      "meta";
    justify-items: center;
    row-gap: 0.9rem;
  }

  .df-footer-brand {
    align-items: center;
  }

  .df-footer-social {
    align-items: center;
    text-align: center;
    justify-self: center;
    width: 100%;
    margin-inline: auto;
  }

  .df-footer-socials {
    width: 100%;
    justify-content: center;
    margin-inline: auto;
  }

  .df-nav {
    display: none;
  }

  .df-header-cta {
    display: none;
  }

  .df-burger {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16.5px;
    line-height: 1.6;
  }

  .df-section {
    padding: 2.8rem 0;
  }

  .df-header-inner {
    padding-inline: 0.5rem;
  }

  .df-container {
    width: min(100% - 1.5rem, 1120px);
  }

  .df-download-stack {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .df-hero {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .df-hero-visual {
    min-height: 260px;
  }

  .df-hero-card-main {
    width: 290px;
    height: 200px;
    inset: 20px 0 auto 0;
    margin: 0 auto;
  }

  .df-hero-card-float {
    width: 170px;
    height: 92px;
    right: 10px;
    bottom: 10px;
  }

  .df-hero-card-mini {
    width: 140px;
    height: 80px;
    left: 10px;
    top: 40px;
  }

  .df-hero::before {
    left: -180px;
    top: -200px;
    width: 420px;
    height: 420px;
    opacity: 0.28;
  }

  .df-hero::after {
    display: none;
  }

  .df-features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-btn {
    padding: 0.55rem 1.2rem;
    min-height: 2.6rem;
  }
  .df-btn-primary {
    box-shadow: 0 10px 22px rgba(79, 70, 229, 0.35);
  }

  .df-lang-toggle {
    padding: 0.4rem 0.95rem;
  }

  .df-feature-card,
  .df-step,
  .df-pricing-card,
  .df-support-card,
  .df-security-card,
  .df-mini-changelog {
    border-radius: 1.1rem;
    padding: 1.15rem 1.15rem;
  }

  .df-support-actions .df-btn {
    width: 100%;
    justify-content: center;
  }

  .df-footer-inner {
    text-align: center;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "copy"
      "social"
      "meta";
    justify-items: center;
    row-gap: 0.9rem;
  }

  .df-footer-social {
    justify-self: center;
  }

}

/* ========== LANGUAGE TOGGLE ========== */
.df-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

#df-auth-buttons {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.df-lang-toggle {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(10, 15, 30, 0.7);
  color: #e5e7eb;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 2.5rem;
  transition: background 0.15s ease, border 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.df-lang-toggle:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(191, 219, 254, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.35);
}

/* ========== CHANGELOG ========== */
.df-changelog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

#changelog {
  padding-top: 2.2rem;
  padding-bottom: 1.8rem;
}

#changelog .df-section-header {
  margin-bottom: 1.1rem;
}

#df-changelog-grid .df-changelog-empty {
  max-width: 520px;
  margin: 0 auto;
}

#faq {
  padding-top: 1.6rem;
}

.df-changelog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #9ca3af;
  padding: 1.2rem;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
}

.df-changelog-card {
  border-radius: 1.1rem;
  padding: 1.2rem 1.2rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.df-changelog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.df-changelog-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #f9fafb;
}

.df-changelog-card-latest {
  font-size: 0.8rem;
  color: #a5b4fc;
}

.df-changelog-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.df-changelog-list li + li {
  margin-top: 0.35rem;
}

.df-changelog-version-label {
  font-weight: 500;
  color: #e5e7eb;
}

/* ========== GENERIC PAGE LAYOUT (privacy / terms / 404) ========== */
.df-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 700px at 12% -15%, rgba(56, 189, 248, 0.25), transparent 60%),
    radial-gradient(900px 560px at 85% 8%, rgba(94, 234, 212, 0.2), transparent 62%),
    radial-gradient(820px 520px at 30% 100%, rgba(245, 158, 11, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(4, 7, 16, 0.96), rgba(3, 6, 14, 0.98));
  isolation: isolate;
}

.df-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 420px at 18% 18%, rgba(56, 189, 248, 0.28), transparent 70%),
    radial-gradient(520px 520px at 82% 25%, rgba(167, 139, 250, 0.22), transparent 72%),
    radial-gradient(360px 360px at 70% 85%, rgba(45, 212, 191, 0.2), transparent 70%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  animation: df-aurora 26s ease-in-out infinite;
}

.df-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 160px 160px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.df-page-main {
  flex: 1;
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.df-page-header-block {
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
}

.df-page-header-block::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #a78bfa 60%, rgba(245, 158, 11, 0.7));
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
}

.df-page-header-block h1 {
  margin: 0 0 0.5rem;
  font-size: 2.25rem;
  color: #f8fafc;
  background: linear-gradient(120deg, #f8fafc, #7dd3fc 55%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-page-header-block p {
  margin: 0;
  color: #b6c5d9;
  font-size: 1rem;
}

.df-page-content:not(.df-legal-content) {
  max-width: 768px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #e5e7eb;
  padding: 2.1rem 2rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(160deg, rgba(10, 16, 32, 0.95), rgba(8, 12, 24, 0.92));
  box-shadow:
    0 40px 90px rgba(2, 6, 23, 0.75),
    0 18px 40px rgba(59, 130, 246, 0.16);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.df-page-content:not(.df-legal-content)::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.df-page-content:not(.df-legal-content)::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -30%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 70%);
  opacity: 0.85;
  pointer-events: none;
}

.df-page-content h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #f8fafc;
}

.df-page-content p {
  margin: 0.4rem 0;
  color: #cbd5f5;
}

.df-page-content ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0;
}

.df-page-content li {
  margin-bottom: 0.25rem;
}

/* Legal pages */
.df-legal-page {
  position: relative;
  display: block;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  background:
    radial-gradient(1200px 600px at 10% -20%, rgba(56, 189, 248, 0.2), transparent 60%),
    radial-gradient(900px 560px at 90% 8%, rgba(94, 234, 212, 0.16), transparent 65%),
    radial-gradient(700px 480px at 75% 85%, rgba(245, 158, 11, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.98), rgba(6, 10, 22, 0.98));
}

.df-legal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.25;
  pointer-events: none;
}

.df-legal-page::after {
  display: none;
}

.df-legal-page .df-container {
  position: relative;
  z-index: 1;
}

.df-legal-shell {
  position: relative;
  display: grid;
  gap: 2.2rem;
  padding: 2.6rem 2.8rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(140deg, rgba(9, 16, 28, 0.96), rgba(10, 20, 36, 0.94));
  box-shadow:
    0 32px 70px rgba(3, 7, 18, 0.6),
    inset 0 0 0 1px rgba(59, 130, 246, 0.05);
  overflow: visible;
}

.df-legal-main {
  padding-top: 4.3rem;
  padding-bottom: 2.4rem;
}

.df-legal-page .df-page-main,
.df-legal-page .df-legal-shell,
.df-legal-page .df-page-content {
  overflow: visible;
}

.df-legal-shell::before {
  display: none;
}

.df-legal-shell::after {
  display: none;
}

.df-legal-shell > * {
  position: relative;
  z-index: 1;
}

.df-legal-page .df-page-header-block {
  margin-bottom: 0;
}

.df-legal-hero h1 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #f8fafc, #7dd3fc 55%, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-legal-hero p {
  max-width: 680px;
  font-size: 1rem;
  color: #c2d3e9;
  line-height: 1.6;
}

.df-legal-content {
  max-width: 860px;
  margin: 0;
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.7;
}

.df-legal-content::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(148, 163, 184, 0.08));
}

.df-legal-content h2 {
  position: relative;
  padding-left: 0.6rem;
  margin-top: 1.7rem;
  font-size: 1.12rem;
  color: #f8fafc;
}

.df-legal-content h2::before {
  content: "";
  position: absolute;
  left: -1.45rem;
  top: 0.38rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #60a5fa);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.df-legal-content p {
  color: #cdd7e5;
}

.df-legal-cta {
  margin-top: 2rem;
}

/* Privacy page 2026 layout */
.df-privacy-shell {
  gap: 1.45rem;
}

.df-privacy-hero .df-tagline {
  margin-bottom: 0.85rem;
}

.df-privacy-hero-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.df-privacy-hero-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(150deg, rgba(9, 14, 28, 0.82), rgba(8, 14, 30, 0.88));
  padding: 0.82rem 0.9rem 0.86rem;
  box-shadow: 0 14px 28px rgba(3, 7, 18, 0.35);
}

.df-privacy-hero-card h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #f8fafc;
}

.df-privacy-hero-card p {
  margin: 0.36rem 0 0;
  font-size: 0.82rem;
  line-height: 1.52;
  color: #cbd5e1;
}

.df-privacy-layered {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(150deg, rgba(9, 14, 28, 0.82), rgba(8, 14, 30, 0.9));
  box-shadow: 0 24px 50px rgba(3, 7, 18, 0.5);
  padding: 1.15rem;
}

.df-privacy-layered-head h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #f8fafc;
}

.df-privacy-layered-head p {
  margin: 0.32rem 0 0;
  color: #9fb2c9;
  font-size: 0.92rem;
  line-height: 1.58;
}

.df-privacy-tabs {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.df-privacy-tab {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  background: rgba(12, 18, 32, 0.72);
  color: #dbe7f5;
  padding: 0.4rem 0.86rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.df-privacy-tab:hover,
.df-privacy-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(94, 234, 212, 0.54);
  background: rgba(15, 23, 42, 0.9);
}

.df-privacy-tab.is-active {
  border-color: rgba(94, 234, 212, 0.72);
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.28), rgba(94, 234, 212, 0.24));
  color: #d9fdf6;
}

.df-privacy-panels {
  margin-top: 1.05rem;
}

.df-privacy-panel {
  display: grid;
  gap: 1.05rem;
}

.df-privacy-panel[hidden] {
  display: none;
}

.df-privacy-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.df-privacy-summary-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(11, 18, 34, 0.74);
  padding: 0.84rem 0.9rem;
}

.df-privacy-summary-card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 0.9rem;
}

.df-privacy-summary-card p {
  margin: 0.34rem 0 0;
  color: #c7d6ea;
  font-size: 0.82rem;
  line-height: 1.56;
}

.df-privacy-section {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(10, 16, 30, 0.68);
  padding: 0.95rem 1rem 1rem;
}

.df-privacy-section h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.02rem;
}

.df-privacy-section > p {
  margin: 0.35rem 0 0.72rem;
  color: #9fb2c9;
  font-size: 0.86rem;
  line-height: 1.56;
}

.df-privacy-map-wrap {
  width: 100%;
  overflow-x: auto;
}

.df-privacy-map-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.df-privacy-map-table th,
.df-privacy-map-table td {
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 0.56rem 0.62rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.df-privacy-map-table th {
  color: #dbeafe;
  background: rgba(30, 41, 59, 0.55);
  font-weight: 700;
  white-space: nowrap;
}

.df-privacy-map-table td {
  color: #c5d4e9;
  background: rgba(12, 18, 32, 0.58);
  vertical-align: top;
}

.df-privacy-retention-timeline {
  display: grid;
  gap: 0.62rem;
}

.df-privacy-retention-item {
  border-left: 2px solid rgba(56, 189, 248, 0.45);
  padding: 0.2rem 0 0.2rem 0.72rem;
}

.df-privacy-retention-period {
  margin: 0;
  color: #7dd3fc;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.df-privacy-retention-item h4 {
  margin: 0.22rem 0 0.12rem;
  color: #f8fafc;
  font-size: 0.88rem;
}

.df-privacy-retention-item p {
  margin: 0;
  color: #c5d4e9;
  font-size: 0.8rem;
  line-height: 1.5;
}

.df-privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.df-privacy-badge {
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.36);
  background: rgba(13, 36, 46, 0.46);
  color: #baf5e8;
  font-size: 0.74rem;
  padding: 0.24rem 0.6rem;
  font-weight: 600;
}

.df-privacy-changelog-list {
  display: grid;
  gap: 0.58rem;
}

.df-privacy-changelog-item {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(12, 18, 32, 0.58);
  padding: 0.62rem 0.7rem;
}

.df-privacy-changelog-date {
  margin: 0;
  font-size: 0.72rem;
  color: #93c5fd;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.df-privacy-changelog-item h4 {
  margin: 0.2rem 0 0.18rem;
  color: #f8fafc;
  font-size: 0.86rem;
}

.df-privacy-changelog-item p {
  margin: 0;
  color: #c7d6ea;
  font-size: 0.8rem;
  line-height: 1.52;
}

.df-privacy-machine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.df-privacy-machine-meta {
  margin: 0.7rem 0 0;
  color: #94a3b8;
  font-size: 0.77rem;
}

.df-privacy-parity {
  display: grid;
  gap: 0.36rem;
}

.df-privacy-parity-badge {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.5);
  background: rgba(12, 74, 110, 0.26);
  color: #c5f3ff;
  padding: 0.22rem 0.56rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.df-privacy-controls-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.df-privacy-control-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(11, 18, 34, 0.74);
  padding: 0.86rem 0.9rem 0.92rem;
  display: grid;
  gap: 0.45rem;
}

.df-privacy-control-card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 0.9rem;
}

.df-privacy-control-card p {
  margin: 0;
  color: #c7d6ea;
  font-size: 0.8rem;
  line-height: 1.52;
}

.df-privacy-trust-cta {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(140deg, rgba(8, 13, 28, 0.84), rgba(8, 14, 32, 0.9));
  box-shadow: 0 18px 38px rgba(3, 7, 18, 0.45);
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
}

.df-privacy-trust-cta h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.05rem;
}

.df-privacy-trust-cta p {
  margin: 0.28rem 0 0;
  color: #9fb2c9;
  font-size: 0.86rem;
}

.df-privacy-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Terms page 2026 layout */
.df-terms-shell {
  gap: 1.45rem;
}

.df-terms-meta-grid {
  margin-top: 1.08rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.df-terms-meta-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(150deg, rgba(9, 14, 28, 0.82), rgba(8, 14, 30, 0.88));
  padding: 0.76rem 0.85rem 0.8rem;
}

.df-terms-meta-label {
  margin: 0;
  color: #94a3b8;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.df-terms-meta-value {
  margin: 0.28rem 0 0;
  color: #e2e8f0;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 600;
}

.df-terms-layered {
  margin-top: 0.1rem;
}

.df-terms-clause-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.df-terms-clause-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(11, 18, 34, 0.74);
  padding: 0.86rem 0.92rem;
}

.df-terms-clause-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.36);
  background: rgba(13, 36, 46, 0.38);
  color: #baf5e8;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
}

.df-terms-clause-card h4 {
  margin: 0.48rem 0 0.22rem;
  color: #f8fafc;
  font-size: 0.9rem;
}

.df-terms-clause-card p {
  margin: 0;
  color: #c7d6ea;
  font-size: 0.8rem;
  line-height: 1.56;
}

.df-terms-meaning-list {
  display: grid;
  gap: 0.62rem;
}

.df-terms-meaning-item {
  border-left: 2px solid rgba(56, 189, 248, 0.44);
  padding: 0.16rem 0 0.18rem 0.74rem;
}

.df-terms-meaning-item h4 {
  margin: 0;
  color: #f8fafc;
  font-size: 0.88rem;
}

.df-terms-meaning-item p {
  margin: 0.23rem 0 0;
  color: #c7d6ea;
  font-size: 0.8rem;
  line-height: 1.53;
}

.df-terms-matrix-wrap {
  width: 100%;
  overflow-x: auto;
}

.df-terms-matrix-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.df-terms-matrix-table th,
.df-terms-matrix-table td {
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 0.56rem 0.62rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.df-terms-matrix-table th {
  color: #dbeafe;
  background: rgba(30, 41, 59, 0.55);
  font-weight: 700;
  white-space: nowrap;
}

.df-terms-matrix-table td {
  color: #c5d4e9;
  background: rgba(12, 18, 32, 0.58);
  vertical-align: top;
}

.df-terms-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

@media (max-width: 1040px) {
  .df-terms-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .df-terms-clause-grid,
  .df-terms-actions-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1040px) {
  .df-privacy-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .df-privacy-summary-grid,
  .df-privacy-controls-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .df-privacy-layered {
    padding: 0.9rem;
  }

  .df-privacy-tab {
    flex: 1 1 auto;
    text-align: center;
  }

  .df-privacy-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-privacy-machine-actions,
  .df-privacy-trust-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .df-terms-meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.df-signup-card {
  background: linear-gradient(160deg, rgba(16, 24, 40, 0.9), rgba(10, 16, 28, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  padding: 1.55rem 1.35rem 1.7rem;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.35),
    0 8px 22px rgba(79, 70, 229, 0.16);
  position: relative;
  overflow: hidden;
}

.df-signup-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.df-signup-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.25), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.df-signup-card label {
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 0.35rem;
}

.df-signup-card .df-input {
  min-height: 2.6rem;
}

.df-signup-card .df-pass-checklist,
.df-signup-card .df-human-card {
  margin-top: 0.75rem;
}

.df-signup-card .df-plan-row {
  display: grid;
  gap: 0.6rem;
}

/* 404 page specifics */
body.df-404-page .df-page-main {
  padding-top: 4.4rem;
  padding-bottom: 2.4rem;
}

.df-404-shell {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.df-404-shell::before {
  display: none;
}

.df-404-shell > * {
  position: relative;
  z-index: 1;
}

@keyframes df-404-glow-shift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(18px, 14px, 0);
    opacity: 0.88;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.62;
  }
}

.df-404-hero {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 0.2rem 0.35rem 0;
}

.df-404-badge {
  margin: 0 auto 0.62rem;
  width: max-content;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.48);
  background: rgba(12, 74, 110, 0.24);
  color: #caecff;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.24rem 0.72rem;
}

.df-404-code {
  font-size: clamp(4.2rem, 9vw, 6.8rem);
  line-height: 0.95;
  margin: 0 0 0.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(122deg, #f97316, #facc15 36%, #38bdf8 72%, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-404-text {
  margin: 0.15rem 0 0;
  color: #f8fafc;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: -0.01em;
}

.df-404-subtext {
  margin: 0.56rem auto 0;
  max-width: 760px;
  color: #c6d5ea;
  font-size: 0.97rem;
  line-height: 1.58;
}

.df-404-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1rem;
}

@media (max-width: 720px) {
  body.df-404-page .df-page-main {
    padding-top: 3.4rem;
  }

  .df-404-shell {
    max-width: 100%;
  }
}

/* Checkout success minimal 2026 */
.df-checkout-success-main {
  padding-top: 4rem;
  padding-bottom: 2.4rem;
}

.df-checkout-success-container {
  max-width: 640px;
}

.df-checkout-success-head {
  text-align: center;
}

.df-checkout-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.5);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.24), rgba(94, 234, 212, 0.22));
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.25);
}

.df-checkout-success-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #d9fdf6;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.df-checkout-success-card {
  text-align: center;
}

.df-checkout-success-status-line {
  margin: 0;
  color: #c8d5e8;
  font-size: 0.92rem;
}

.df-checkout-success-plan {
  display: inline-flex;
  margin-left: 0.32rem;
  padding: 0.16rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(11, 31, 54, 0.45);
  color: #8dd6ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.df-checkout-success-body {
  margin-top: 0.72rem;
}

.df-checkout-success-timer {
  margin-top: 0.62rem;
}

.df-checkout-success-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.df-checkout-success-help {
  margin: 0.88rem 0 0;
  font-size: 0.78rem;
}

.df-checkout-success-help a {
  color: #9fb7d3;
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.df-checkout-success-help a:hover,
.df-checkout-success-help a:focus-visible {
  color: #d2e8ff;
  border-bottom-color: rgba(125, 211, 252, 0.7);
}

@media (max-width: 640px) {
  .df-checkout-success-main {
    padding-top: 3.3rem;
  }

  .df-checkout-success-icon {
    width: 46px;
    height: 46px;
  }
}

/* responsive tweaks for changelog & page layout */
@media (max-width: 960px) {
  .df-changelog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #changelog {
    padding-top: 1.8rem;
    padding-bottom: 1.6rem;
  }

  #faq {
    padding-top: 1.4rem;
  }

  .df-pricing-grid {
    grid-template-columns: repeat(1, minmax(0, 420px));
    justify-content: center;
  }

  .df-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .df-changelog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-hero-highlights {
    justify-content: center;
  }

  .df-hero-pill {
    font-size: 0.75rem;
  }

  .df-hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-hero-float-tag {
    display: none;
  }

  .df-hero-signal {
    display: none;
  }

  .df-page-main {
    padding-top: 3.2rem;
  }

  .df-page-header-block {
    text-align: center;
  }

  .df-page-header-block::after {
    margin-left: auto;
    margin-right: auto;
  }

  .df-page-content {
    max-width: 100%;
  }

  .df-page-content:not(.df-legal-content) {
    padding: 1.6rem 1.35rem;
    border-radius: 18px;
  }

  .df-legal-shell {
    padding: 1.7rem 1.4rem;
    border-radius: 20px;
  }

  .df-legal-page::before {
    background-size: 100px 100px;
    opacity: 0.2;
  }

  .df-legal-page::after {
    right: -20%;
    bottom: -35%;
    width: 320px;
    height: 320px;
  }

  .df-legal-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .df-legal-content {
    padding-left: 0.95rem;
  }

  .df-legal-content::before {
    left: 0;
  }

  .df-legal-content h2::before {
    left: -1.15rem;
  }

  .df-signup-card {
    padding: 1.2rem 1rem 1.4rem;
    border-radius: 18px;
  }

  .df-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
  }

  .df-logo-wall {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-security-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Inputs generice */
.df-input {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.df-input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.98);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.18),
    0 10px 30px rgba(14, 116, 144, 0.25);
}

.df-input::placeholder {
  color: rgba(148, 163, 184, 0.75);
}

/* Account layout */
.df-account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  column-gap: 3rem;
  row-gap: 2.4rem;
  align-items: start;
  max-width: 1100px;
  margin: 2.5rem auto 0;
  justify-content: center;
}

.df-account-grid section {
  max-width: 520px;
}

.df-account-card {
  margin-top: 1.2rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: linear-gradient(160deg, rgba(12, 18, 34, 0.9), rgba(10, 16, 30, 0.95));
  box-shadow:
    0 18px 40px rgba(2, 6, 23, 0.45),
    0 8px 24px rgba(59, 130, 246, 0.18);
  position: relative;
  overflow: hidden;
}

.df-account-card::after {
  content: "";
  position: absolute;
  right: -25%;
  top: -35%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.df-account-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.df-account-card .df-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.52rem;
}

.df-support .df-tagline {
  margin: 0 0 0.45rem;
}

.df-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.df-badge-success {
  color: #bbf7d0;
  border-color: rgba(74, 222, 128, 0.6);
  background: rgba(22, 163, 74, 0.15);
}

.df-badge-warning {
  color: #fde68a;
  border-color: rgba(234, 179, 8, 0.6);
  background: rgba(234, 179, 8, 0.12);
}

.df-badge-neutral {
  color: #cbd5e1;
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
}

.df-account-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.6rem 0 0.4rem;
}

.df-muted {
  color: #94a3b8;
  font-size: 0.92rem;
  margin: 0.2rem 0;
}

.df-hint {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .df-account-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1.2rem;
    column-gap: 1.4rem;
    row-gap: 1.4rem;
  }
  .df-account-grid section {
    max-width: none;
  }
}

/* Single viewport scrollbar across all site pages */
body {
  overflow-y: visible;
}

body.df-page .df-page-main,
body.df-page .df-page-main .df-container,
body.df-page .df-page-content,
body.df-page .df-account-grid,
body.df-page .df-account-grid section {
  max-height: none !important;
  overflow: visible !important;
}

/* Butoane mici login/signup */
.df-btn-ghost-small,
.df-btn-primary-small {
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  min-height: 2.5rem;
  text-align: center;
  white-space: nowrap;
}

.df-btn-ghost-small {
  background: rgba(10, 15, 30, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
}

.df-btn-primary-small {
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  border: 1px solid rgba(59, 130, 246, 0.65);
  color: #f8fafc;
  box-shadow: 0 12px 22px rgba(59, 130, 246, 0.28);
}

.df-btn-ghost-small:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(191, 219, 254, 0.65);
}

.df-btn-primary-small:hover {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 16px 26px rgba(37, 99, 235, 0.4);
}

/* Mobile header buttons & language spacing */
@media (max-width: 768px) {
  .df-header-inner {
    gap: 0.6rem;
  }
  .df-header-actions {
    gap: 0.4rem;
    position: relative;
  }
  .df-lang-toggle {
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    min-height: 2.25rem;
  }
  .df-btn-ghost-small,
  .df-btn-primary-small {
    display: none;
    min-width: 92px;
    padding: 0.35rem 0.78rem;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  /* Center hero content on mobile */
  .df-hero {
    text-align: center;
  }
  .df-hero-text,
  .df-hero-cta,
  .df-hero-meta {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .df-hero-meta span {
    justify-content: center;
  }
  .df-hero-cta {
    flex-direction: column;
  }
  .df-hero-cta .df-btn {
    width: 100%;
    justify-content: center;
  }

  /* Auth pages: keep cards comfortably wide and centered */
  .df-auth-main {
    max-width: 520px;
    width: 100%;
    margin: 2.5rem auto 3rem;
    padding: 0 1.25rem;
  }
  .df-auth-card {
    width: 100%;
    box-sizing: border-box;
  }

  /* Cards and grids single column */
  .df-features-grid,
  .df-pricing-grid,
  .df-download-grid,
  .df-support-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .df-hero {
    padding-top: 4rem;
  }
  .df-hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .df-hero-text p {
    font-size: 1rem;
  }

  /* Support section spacing */
  .df-support {
    padding: 2.5rem 0;
  }
}

/* User menu */
.df-user-menu {
  position: relative;
}

.df-user-menu-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
  font-size: 0.8rem;
  color: #e5e7eb;
}

#df-user-avatar-initials {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0b1120;
}

.df-user-menu-dropdown {
  position: absolute;
  right: 0;
  top: 110%;
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  padding: 0.6rem 0.7rem;
  min-width: 220px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  z-index: 30;
  display: none;
}

.df-user-menu-section {
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.df-user-menu-section:last-child {
  border-bottom: none;
}

.df-user-menu-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.df-user-menu-email {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.df-user-menu-account {
  width: 100%;
  text-align: left;
  margin-top: 0.25rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.5rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #e5e7eb;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
}

.df-user-menu-link {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 0.2rem 0;
  cursor: pointer;
}

.df-user-menu-link:hover,
.df-user-menu-account:hover {
  color: #e5e7eb;
}

.df-user-menu-logout {
  color: #f97373;
}

/* Plan selector (signup / account) */
.df-plan-row {
  display: grid;
  gap: 0.6rem;
}

.df-plan-option {
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
}

.df-plan-option input {
  margin-top: 0.25rem;
}

.df-plan-title {
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.df-plan-text {
  font-size: 0.85rem;
  color: #9ca3af;
}

.df-plan-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.df-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.85rem;
}

.df-plan-desc {
  margin-top: 0.4rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* ================= 2026 HERO REFRESH (index only) ================= */
.df-homepage .df-hero {
  position: relative;
  min-height: max(760px, calc(100vh - 72px));
  padding-top: clamp(6.2rem, 8vh, 7.4rem);
  padding-bottom: clamp(4.2rem, 7vh, 6.2rem);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(4, 10, 24, 0.96) 0%, rgba(5, 12, 28, 0.9) 46%, rgba(8, 24, 44, 0.94) 100%),
    radial-gradient(65% 70% at 78% 18%, rgba(56, 189, 248, 0.2), transparent 72%),
    radial-gradient(45% 55% at 18% 82%, rgba(167, 139, 250, 0.16), transparent 75%);
}

.df-homepage .df-hero::before,
.df-homepage .df-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.df-homepage .df-hero::before {
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 62% 38%, black 30%, transparent 86%);
}

.df-homepage .df-hero::after {
  top: -120px;
  right: -90px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.22), rgba(56, 189, 248, 0.1) 45%, transparent 74%);
  filter: blur(22px);
  animation: df-home-orb 8.5s ease-in-out infinite;
}

.df-homepage .df-hero-grid {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.4rem);
}

.df-homepage .df-hero-text {
  max-width: 690px;
}

.df-homepage .df-tagline {
  border-color: rgba(56, 189, 248, 0.44);
  background: linear-gradient(120deg, rgba(10, 18, 34, 0.9), rgba(7, 16, 34, 0.88));
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
}

.df-homepage .df-hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  background: linear-gradient(110deg, #ffffff 0%, #dbeafe 28%, #5eead4 62%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.df-homepage .df-hero-subtitle {
  max-width: 640px;
  font-size: clamp(1.04rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.82);
}

.df-homepage .df-hero-text::before {
  inset: -1.6rem -1.4rem -1.9rem -1.55rem;
  border: 1px solid rgba(56, 189, 248, 0.26);
  background:
    linear-gradient(145deg, rgba(8, 16, 34, 0.82), rgba(7, 14, 28, 0.68)),
    radial-gradient(65% 80% at 8% 18%, rgba(56, 189, 248, 0.2), transparent 60%),
    radial-gradient(58% 64% at 90% 88%, rgba(167, 139, 250, 0.16), transparent 70%);
  box-shadow:
    0 36px 62px rgba(2, 6, 23, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.df-homepage .df-hero-cta .df-btn {
  min-width: 230px;
  min-height: 3.2rem;
  font-size: 1.02rem;
}

.df-homepage .df-hero-pill,
.df-homepage .df-hero-stat {
  border-color: rgba(56, 189, 248, 0.34);
}

.df-homepage .df-hero-pill:hover,
.df-homepage .df-hero-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.52);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.5), 0 0 24px rgba(56, 189, 248, 0.24);
}

.df-homepage .df-hero-visual {
  min-height: clamp(430px, 52vh, 560px);
  transform: none;
}

.df-homepage .df-hero-glow,
.df-homepage .df-hero-ring,
.df-homepage .df-hero-orb {
  display: none;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% 4%;
  border-radius: 26px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background:
    linear-gradient(150deg, rgba(5, 12, 28, 0.98), rgba(8, 19, 38, 0.9)),
    radial-gradient(70% 64% at 80% 22%, rgba(56, 189, 248, 0.16), transparent 72%);
  box-shadow:
    0 32px 64px rgba(2, 6, 23, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: 8% 7% 10%;
  border-radius: 20px;
  border: 1px solid rgba(94, 234, 212, 0.26);
  opacity: 0.7;
  z-index: 0;
  box-shadow:
    inset 0 0 0 1px rgba(94, 234, 212, 0.1),
    inset 0 0 44px rgba(56, 189, 248, 0.08);
}

.df-homepage .df-hero-prism {
  inset: 10% 10% 14%;
  border-radius: 18px;
  opacity: 0.5;
  clip-path: polygon(0 7%, 95% 0, 100% 92%, 6% 100%);
  animation: df-prism-sweep 12s ease-in-out infinite;
}

.df-homepage .df-hero-ribbon {
  left: 8%;
  right: 8%;
  height: 9px;
  filter: none;
  opacity: 0.86;
}

.df-homepage .df-hero-ribbon-1 {
  top: 17%;
  transform: rotate(-4deg);
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.42);
}

.df-homepage .df-hero-ribbon-2 {
  bottom: 16%;
  transform: rotate(4deg);
  box-shadow: 0 0 26px rgba(167, 139, 250, 0.42);
}

.df-homepage .df-hero-shard {
  opacity: 0.85;
}

.df-homepage .df-hero-card-main {
  right: 8%;
  top: 12%;
  width: min(390px, 78%);
  height: 270px;
  animation: df-card-main-float 6.8s ease-in-out infinite;
}

.df-homepage .df-hero-card-float {
  right: 10%;
  bottom: 10%;
}

.df-homepage .df-hero-card-mini {
  left: 10%;
  top: 17%;
}

.df-homepage .df-hero-signal {
  left: 12%;
  bottom: 12%;
}

@keyframes df-home-orb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.78;
  }
  50% {
    transform: translate3d(-10px, 12px, 0) scale(1.06);
    opacity: 0.94;
  }
}

@media (max-width: 1100px) {
  .df-homepage .df-hero {
    min-height: 0;
    padding-top: 6.2rem;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(2.6rem, 8vw, 3.8rem);
  }

  .df-homepage .df-hero-grid {
    gap: 2rem;
  }

  .df-homepage .df-hero-cta .df-btn {
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .df-homepage .df-hero {
    padding-top: 5.6rem;
    padding-bottom: 4rem;
  }

  .df-homepage .df-hero-text::before {
    inset: -1rem -0.8rem -1.2rem -0.9rem;
  }

  .df-homepage .df-hero-visual {
    min-height: 330px;
  }

  .df-homepage .df-hero-card-main {
    width: min(360px, 84%);
    height: 230px;
    top: 10%;
  }

  .df-homepage .df-hero-card-float {
    bottom: 8%;
  }
}

/* ================= Homepage Full Visual Pass ================= */
.df-homepage .df-section {
  position: relative;
  padding-block: clamp(4.4rem, 8vw, 6.6rem);
}

.df-homepage .df-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(520px 320px at 12% 0%, rgba(56, 189, 248, 0.16), transparent 72%),
    radial-gradient(440px 280px at 88% 100%, rgba(167, 139, 250, 0.12), transparent 74%);
}

.df-homepage .df-section > .df-container {
  position: relative;
  z-index: 1;
}

.df-homepage .df-section-header {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.1rem;
}

.df-homepage .df-section-header h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(110deg, #f8fafc, #dbeafe 48%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-homepage .df-section-header p {
  color: rgba(203, 213, 225, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.6;
}

.df-homepage #features .df-container,
.df-homepage #how-it-works .df-container,
.df-homepage #pricing .df-container,
.df-homepage #download .df-container,
.df-homepage #changelog .df-container,
.df-homepage #faq .df-container,
.df-homepage #support .df-container {
  border-radius: 28px;
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid rgba(56, 189, 248, 0.14);
  background:
    linear-gradient(145deg, rgba(7, 15, 31, 0.82), rgba(6, 12, 25, 0.66)),
    radial-gradient(85% 120% at 10% 0%, rgba(56, 189, 248, 0.1), transparent 72%);
  box-shadow:
    0 20px 50px rgba(2, 6, 23, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.df-homepage #how-it-works .df-container,
.df-homepage #download .df-container,
.df-homepage #faq .df-container {
  background:
    linear-gradient(145deg, rgba(8, 15, 31, 0.76), rgba(6, 11, 24, 0.62)),
    radial-gradient(95% 120% at 90% 20%, rgba(167, 139, 250, 0.1), transparent 76%);
}

.df-homepage .df-features-grid,
.df-homepage .df-steps-grid,
.df-homepage .df-pricing-grid,
.df-homepage .df-security-grid,
.df-homepage .df-faq-grid {
  gap: clamp(0.9rem, 1.3vw, 1.2rem);
}

.df-homepage .df-feature-card,
.df-homepage .df-step,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-logo-pill,
.df-homepage .df-download-card,
.df-homepage .df-pricing-card,
.df-homepage .df-support-card,
.df-homepage .df-changelog-card {
  border-radius: 18px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background:
    linear-gradient(150deg, rgba(10, 18, 36, 0.94), rgba(7, 13, 27, 0.9)),
    linear-gradient(120deg, rgba(56, 189, 248, 0.08), transparent 42%);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.4);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.df-homepage .df-feature-card:hover,
.df-homepage .df-step:hover,
.df-homepage .df-security-card:hover,
.df-homepage .df-faq-item:hover,
.df-homepage .df-logo-pill:hover,
.df-homepage .df-download-card:hover,
.df-homepage .df-pricing-card:hover,
.df-homepage .df-support-card:hover,
.df-homepage .df-changelog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.48);
  box-shadow:
    0 22px 40px rgba(2, 6, 23, 0.52),
    0 0 26px rgba(56, 189, 248, 0.18);
}

.df-homepage .df-feature-card h3,
.df-homepage .df-step h3,
.df-homepage .df-security-card h3,
.df-homepage .df-faq-item h3,
.df-homepage .df-pricing-card h3,
.df-homepage .df-download-card h4 {
  color: #eaf2ff;
  letter-spacing: -0.01em;
}

.df-homepage .df-feature-card p,
.df-homepage .df-step p,
.df-homepage .df-security-card p,
.df-homepage .df-faq-item p,
.df-homepage .df-pricing-card li,
.df-homepage .df-download-card p,
.df-homepage .df-pricing-note,
.df-homepage .df-download-note {
  color: rgba(203, 213, 225, 0.86);
}

.df-homepage .df-step-number {
  border: 1px solid rgba(94, 234, 212, 0.48);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.df-homepage .df-pricing-featured {
  border-color: rgba(94, 234, 212, 0.5);
  background:
    linear-gradient(150deg, rgba(8, 19, 38, 0.98), rgba(8, 15, 30, 0.92)),
    radial-gradient(80% 120% at 84% 18%, rgba(94, 234, 212, 0.14), transparent 68%);
  box-shadow:
    0 24px 44px rgba(2, 6, 23, 0.56),
    0 0 30px rgba(94, 234, 212, 0.2);
}

.df-homepage .df-price {
  background: linear-gradient(115deg, #ffffff, #dbeafe 46%, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-homepage .df-download-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.df-homepage .df-download-stack {
  gap: clamp(0.8rem, 1.2vw, 1rem);
}

.df-homepage .df-platform-icon {
  border: 1px solid rgba(56, 189, 248, 0.34);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08);
}

.df-homepage .df-store-badge {
  border-color: rgba(56, 189, 248, 0.36);
  background: linear-gradient(140deg, rgba(10, 19, 38, 0.9), rgba(7, 14, 30, 0.9));
}

.df-homepage .df-mini-changelog {
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background:
    linear-gradient(145deg, rgba(9, 16, 32, 0.92), rgba(7, 13, 26, 0.86)),
    radial-gradient(70% 90% at 85% 20%, rgba(56, 189, 248, 0.12), transparent 72%);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.42);
}

.df-homepage .df-support {
  border-top: none;
}

.df-homepage .df-support-grid {
  gap: clamp(1.1rem, 2vw, 1.8rem);
}

.df-homepage .df-footer {
  margin-top: 2.4rem;
}

@media (max-width: 960px) {
  .df-homepage .df-section {
    padding-block: clamp(3.8rem, 8vw, 5rem);
  }

  .df-homepage #features .df-container,
  .df-homepage #how-it-works .df-container,
  .df-homepage #pricing .df-container,
  .df-homepage #download .df-container,
  .df-homepage #changelog .df-container,
  .df-homepage #faq .df-container,
  .df-homepage #support .df-container {
    border-radius: 22px;
    padding: 1.05rem;
  }
}

@media (max-width: 640px) {
  .df-homepage .df-hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.8rem);
  }

  .df-homepage .df-hero-subtitle {
    font-size: 1.02rem;
  }

  .df-homepage .df-section-header h2 {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }
}

/* ================= Homepage Cinematic Refresh (2026) ================= */
.df-homepage {
  background:
    radial-gradient(50% 45% at 18% 15%, rgba(56, 189, 248, 0.22), transparent 72%),
    radial-gradient(45% 38% at 84% 14%, rgba(14, 165, 233, 0.18), transparent 74%),
    radial-gradient(58% 52% at 72% 86%, rgba(124, 58, 237, 0.14), transparent 78%),
    linear-gradient(155deg, #020512 0%, #03081c 36%, #020616 66%, #01040f 100%);
}

.df-homepage body::after,
body.df-homepage::after {
  background-size: 140px 140px;
  opacity: 0.1;
}

.df-homepage .df-header {
  background: linear-gradient(to bottom, rgba(2, 8, 28, 0.9), rgba(2, 8, 28, 0.56));
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.df-homepage .df-hero {
  padding-top: clamp(6.7rem, 9vw, 8.1rem);
  padding-bottom: clamp(4.4rem, 7.4vw, 6.4rem);
}

.df-homepage .df-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: center;
}

.df-homepage .df-hero-text {
  position: relative;
  padding: clamp(1.3rem, 2vw, 2rem);
  border-radius: 28px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background:
    linear-gradient(145deg, rgba(7, 16, 36, 0.84), rgba(4, 11, 26, 0.78)),
    radial-gradient(72% 65% at 8% 8%, rgba(56, 189, 248, 0.17), transparent 74%);
  box-shadow:
    0 28px 56px rgba(2, 6, 23, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.df-homepage .df-hero-text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(94, 234, 212, 0.14);
  pointer-events: none;
}

.df-homepage .df-tagline {
  margin-bottom: 0.8rem;
  letter-spacing: 0.11em;
}

.df-homepage .df-hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.1;
  max-width: 14.5ch;
  text-wrap: balance;
  background: linear-gradient(112deg, #ffffff 0%, #d8ecff 35%, #67e8f9 70%, #9f7aea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-homepage .df-hero-subtitle {
  margin-bottom: 1.4rem;
  max-width: 54ch;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.58;
  color: rgba(226, 232, 240, 0.85);
}

.df-homepage .df-hero-cta {
  gap: 0.68rem;
}

.df-homepage .df-hero-cta .df-btn {
  min-width: 0;
  padding-inline: 1.25rem;
}

.df-homepage .df-hero-meta {
  margin-top: 1.05rem;
}

.df-homepage .df-hero-highlights {
  margin-top: 0.9rem;
}

.df-homepage .df-hero-stats {
  margin-top: 1rem;
}

.df-homepage .df-hero-visual {
  position: relative;
  min-height: clamp(410px, 53vh, 560px);
  border-radius: 30px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background:
    radial-gradient(80% 82% at 16% 22%, rgba(56, 189, 248, 0.14), transparent 78%),
    radial-gradient(65% 60% at 90% 12%, rgba(139, 92, 246, 0.15), transparent 74%),
    linear-gradient(150deg, rgba(6, 14, 32, 0.95), rgba(4, 10, 24, 0.95));
  box-shadow:
    0 28px 58px rgba(2, 6, 23, 0.54),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  animation: df-visual-drift 10s ease-in-out infinite;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: -24%;
  background:
    conic-gradient(from 140deg,
      rgba(56, 189, 248, 0) 0deg,
      rgba(56, 189, 248, 0.24) 36deg,
      rgba(167, 139, 250, 0.18) 84deg,
      rgba(56, 189, 248, 0) 152deg,
      rgba(56, 189, 248, 0) 360deg);
  animation: df-hero-spin 18s linear infinite;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  pointer-events: none;
}

.df-homepage .df-hero-ribbon,
.df-homepage .df-hero-prism {
  display: none;
}

.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini {
  backdrop-filter: blur(4px);
  animation: df-card-float-soft 6.4s ease-in-out infinite;
}

.df-homepage .df-hero-card-main {
  right: 7%;
  top: 11%;
  width: min(420px, 82%);
  height: 272px;
}

.df-homepage .df-hero-card-float {
  bottom: 10%;
  right: 8%;
  animation-delay: 0.8s;
}

.df-homepage .df-hero-card-mini {
  top: 16%;
  left: 9%;
  animation-delay: 1.5s;
}

.df-homepage .df-hero-float-tag {
  background: rgba(5, 16, 38, 0.82);
  border-color: rgba(56, 189, 248, 0.45);
  animation: df-tag-float-soft 5.8s ease-in-out infinite;
}

.df-homepage .df-section {
  padding-block: clamp(4rem, 6vw, 5.4rem);
}

.df-homepage .df-section:nth-of-type(odd) > .df-container {
  position: relative;
}

.df-homepage .df-section:nth-of-type(odd) > .df-container::after {
  content: "";
  position: absolute;
  inset: auto 4% -18px 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.34), transparent);
}

.df-homepage .df-section-header {
  margin-bottom: 2.35rem;
}

.df-homepage .df-section-header h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  letter-spacing: -0.025em;
}

.df-homepage .df-section-header p {
  max-width: 66ch;
  margin-inline: auto;
}

.df-homepage .df-features-grid,
.df-homepage .df-steps-grid,
.df-homepage .df-pricing-grid,
.df-homepage .df-download-grid,
.df-homepage .df-security-grid,
.df-homepage .df-faq-grid {
  gap: clamp(0.95rem, 1.3vw, 1.35rem);
}

.df-homepage .df-feature-card,
.df-homepage .df-step,
.df-homepage .df-pricing-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-download-card,
.df-homepage .df-logo-pill,
.df-homepage .df-support-card,
.df-homepage .df-changelog-card,
.df-homepage .df-mini-changelog {
  border: 1px solid rgba(56, 189, 248, 0.24);
  background:
    linear-gradient(145deg, rgba(7, 15, 34, 0.94), rgba(4, 10, 22, 0.9)),
    radial-gradient(80% 90% at 5% 0%, rgba(56, 189, 248, 0.1), transparent 78%);
}

.df-homepage .df-feature-card:hover,
.df-homepage .df-step:hover,
.df-homepage .df-pricing-card:hover,
.df-homepage .df-security-card:hover,
.df-homepage .df-faq-item:hover,
.df-homepage .df-download-card:hover,
.df-homepage .df-logo-pill:hover,
.df-homepage .df-support-card:hover,
.df-homepage .df-changelog-card:hover,
.df-homepage .df-mini-changelog:hover {
  transform: translateY(-5px) scale(1.01);
}

.df-homepage .df-feature-card,
.df-homepage .df-step,
.df-homepage .df-pricing-card,
.df-homepage .df-download-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-mini-changelog {
  animation: df-card-breathe 8s ease-in-out infinite;
}

.df-homepage .df-feature-card:nth-child(2),
.df-homepage .df-step:nth-child(2),
.df-homepage .df-pricing-card:nth-child(2),
.df-homepage .df-download-card:nth-child(2),
.df-homepage .df-security-card:nth-child(2),
.df-homepage .df-faq-item:nth-child(2) {
  animation-delay: 0.5s;
}

.df-homepage .df-feature-card:nth-child(3),
.df-homepage .df-step:nth-child(3),
.df-homepage .df-pricing-card:nth-child(3),
.df-homepage .df-download-card:nth-child(3),
.df-homepage .df-security-card:nth-child(3),
.df-homepage .df-faq-item:nth-child(3) {
  animation-delay: 1s;
}

.df-homepage .df-pricing-featured {
  position: relative;
  overflow: hidden;
}

.df-homepage .df-pricing-featured::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.22), transparent 65%);
  pointer-events: none;
}

.df-homepage .df-download-card[data-platform="windows"] {
  border-color: rgba(56, 189, 248, 0.34);
}

.df-homepage .df-download-card[data-platform="macos"] {
  border-color: rgba(167, 139, 250, 0.34);
}

.df-homepage .df-download-card[data-platform="linux"] {
  border-color: rgba(94, 234, 212, 0.32);
}

.df-homepage .df-download-card[data-platform="android"] {
  border-color: rgba(34, 197, 94, 0.34);
}

.df-homepage .df-download-card[data-platform="ios"] {
  border-color: rgba(96, 165, 250, 0.34);
}

.df-homepage .df-support {
  padding-top: clamp(3.6rem, 6vw, 4.9rem);
}

.df-homepage .df-footer {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

@keyframes df-hero-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes df-visual-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes df-card-float-soft {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes df-tag-float-soft {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
}

@keyframes df-card-breathe {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.4);
  }
  50% {
    box-shadow: 0 20px 36px rgba(2, 6, 23, 0.5), 0 0 20px rgba(56, 189, 248, 0.12);
  }
}

@media (max-width: 1040px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .df-homepage .df-hero h1 {
    max-width: 18ch;
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }

  .df-homepage .df-hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .df-homepage .df-hero {
    padding-top: 5.9rem;
  }

  .df-homepage .df-hero-text {
    padding: 1rem 0.95rem 1.1rem;
    border-radius: 20px;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.72rem, 8.8vw, 2.24rem);
    max-width: 100%;
  }

  .df-homepage .df-hero-subtitle {
    font-size: 1rem;
  }

  .df-homepage .df-hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .df-homepage .df-hero-cta .df-btn {
    width: 100%;
  }

  .df-homepage .df-hero-visual {
    min-height: 315px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-homepage .df-hero-visual,
  .df-homepage .df-hero-card-main,
  .df-homepage .df-hero-card-float,
  .df-homepage .df-hero-card-mini,
  .df-homepage .df-hero-float-tag,
  .df-homepage .df-feature-card,
  .df-homepage .df-step,
  .df-homepage .df-pricing-card,
  .df-homepage .df-download-card,
  .df-homepage .df-security-card,
  .df-homepage .df-faq-item,
  .df-homepage .df-mini-changelog,
  .df-homepage .df-hero-visual::before {
    animation: none !important;
  }
}

/* ================= Homepage Proportion Fix ================= */
.df-homepage .df-container {
  width: min(1180px, calc(100% - 2.4rem));
}

.df-homepage .df-hero {
  padding-top: clamp(6.1rem, 8vw, 7.2rem);
  padding-bottom: clamp(3.8rem, 6vw, 5rem);
}

.df-homepage .df-hero-grid {
  --hero-panel-h: clamp(500px, 58vh, 640px);
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.1rem, 1.8vw, 1.8rem);
  align-items: stretch;
}

.df-homepage .df-hero-text,
.df-homepage .df-hero-visual {
  grid-column: auto;
  min-height: var(--hero-panel-h);
}

.df-homepage .df-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 1.6vw, 1.6rem);
  border-radius: 22px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: linear-gradient(145deg, rgba(6, 14, 32, 0.78), rgba(3, 9, 22, 0.74));
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.42);
}

.df-homepage .df-hero-text::before {
  display: none;
}

.df-homepage .df-hero::before,
.df-homepage .df-hero::after {
  display: block;
  opacity: 0.5;
  filter: blur(22px);
  mix-blend-mode: screen;
}

.df-homepage .df-hero::before {
  left: -10%;
  top: -24%;
  width: min(620px, 48vw);
  height: min(620px, 48vw);
  background: radial-gradient(
    circle at 34% 34%,
    rgba(56, 189, 248, 0.24) 0%,
    rgba(56, 189, 248, 0.12) 36%,
    rgba(2, 6, 23, 0) 74%
  );
  animation: df-aura-slow 15s ease-in-out infinite;
}

.df-homepage .df-hero::after {
  right: -11%;
  top: -8%;
  width: min(540px, 42vw);
  height: min(540px, 42vw);
  background: radial-gradient(
    circle at 45% 25%,
    rgba(167, 139, 250, 0.2) 0%,
    rgba(56, 189, 248, 0.11) 48%,
    rgba(2, 6, 23, 0) 76%
  );
  animation: df-aura-slow 17s ease-in-out infinite reverse;
}

.df-homepage .df-tagline {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
}

.df-homepage .df-hero h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.95rem, 3.2vw, 3.05rem);
  line-height: 1.11;
  max-width: 14.5ch;
}

.df-homepage .df-hero-subtitle {
  margin-bottom: 1rem;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.56;
  max-width: 48ch;
}

.df-homepage .df-hero-cta {
  margin: 1.05rem 0 0.85rem;
  gap: 0.6rem;
}

.df-homepage .df-hero-cta .df-btn {
  padding-inline: 1.05rem;
  min-height: 2.95rem;
}

.df-homepage .df-hero-meta {
  gap: 0.5rem;
}

.df-homepage .df-hero-meta span {
  font-size: 0.76rem;
}

.df-homepage .df-hero-highlights {
  margin-top: 0.7rem;
}

.df-homepage .df-hero-stats {
  margin-top: 0.75rem;
}

.df-homepage .df-hero-stat {
  padding: 0.65rem 0.75rem;
}

.df-homepage .df-hero-stat-value {
  font-size: 1.2rem;
}

.df-homepage .df-hero-visual {
  min-height: var(--hero-panel-h);
  height: var(--hero-panel-h);
  border-radius: 24px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background:
    radial-gradient(75% 70% at 25% 18%, rgba(56, 189, 248, 0.16), transparent 72%),
    radial-gradient(55% 50% at 85% 14%, rgba(167, 139, 250, 0.14), transparent 70%),
    linear-gradient(152deg, rgba(5, 12, 30, 0.97), rgba(3, 8, 20, 0.96));
  box-shadow: 0 24px 52px rgba(2, 6, 23, 0.5);
  animation: df-visual-drift-lite 10s ease-in-out infinite;
}

.df-homepage .df-hero-glow {
  display: block;
  inset: -16%;
  background:
    radial-gradient(circle at 32% 40%, rgba(56, 189, 248, 0.26), transparent 58%),
    radial-gradient(circle at 76% 26%, rgba(167, 139, 250, 0.2), transparent 62%);
  opacity: 0.42;
  filter: blur(26px);
  animation: df-aura-core 11s ease-in-out infinite;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(8, 14, 30, 0.96) 0 46px, rgba(8, 14, 30, 0.5) 46px, transparent 46px),
    linear-gradient(90deg, rgba(8, 14, 30, 0.92) 0 96px, rgba(8, 14, 30, 0.55) 96px, transparent 96px),
    radial-gradient(120% 120% at 12% 12%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(120% 120% at 88% 8%, rgba(139, 92, 246, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  pointer-events: none;
}

.df-homepage .df-hero-prism,
.df-homepage .df-hero-ribbon,
.df-homepage .df-hero-ring,
.df-homepage .df-hero-beam,
.df-homepage .df-hero-orb,
.df-homepage .df-hero-shard,
.df-homepage .df-hero-particles {
  display: none !important;
}

.df-homepage .df-hero-gridlines {
  display: block !important;
  inset: 12% 10%;
  opacity: 0.26;
}

.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini {
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: linear-gradient(145deg, rgba(8, 16, 35, 0.93), rgba(5, 10, 24, 0.9));
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.46);
}

.df-homepage .df-hero-card-main {
  width: min(420px, 80%);
  height: 270px;
  left: 14%;
  right: auto;
  top: 18%;
  animation: df-card-float-lite 7s ease-in-out infinite;
}

.df-homepage .df-hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 34px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.df-homepage .df-hero-card-main::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 14px;
  left: 12px;
  width: 70px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.9), rgba(8, 12, 28, 0.8));
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.df-homepage .df-hero-card-main .df-hero-card-body {
  padding-left: 88px;
  padding-top: 0.35rem;
}

.df-homepage .df-hero-card-float {
  right: 10%;
  bottom: 14%;
  animation: df-card-float-lite 7s ease-in-out infinite 0.9s;
}

.df-homepage .df-hero-card-mini {
  left: 9%;
  top: 12%;
  animation: df-card-float-lite 7s ease-in-out infinite 1.5s;
}

.df-homepage .df-hero-float-tag {
  background: rgba(8, 16, 36, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.34);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.44);
  animation: df-tag-float-lite 5.8s ease-in-out infinite;
}

.df-homepage .df-section {
  padding-block: clamp(3.4rem, 5vw, 4.8rem);
}

.df-homepage .df-section-header h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
}

.df-homepage .df-section-header p {
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
}

.df-homepage #features .df-container,
.df-homepage #how-it-works .df-container,
.df-homepage #pricing .df-container,
.df-homepage #download .df-container,
.df-homepage #changelog .df-container,
.df-homepage #faq .df-container,
.df-homepage #support .df-container {
  border-radius: 22px;
  padding: clamp(1rem, 1.6vw, 1.55rem);
}

.df-homepage .df-feature-card,
.df-homepage .df-step,
.df-homepage .df-pricing-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-download-card,
.df-homepage .df-logo-pill,
.df-homepage .df-support-card,
.df-homepage .df-changelog-card,
.df-homepage .df-mini-changelog {
  border-radius: 15px;
  animation: none;
}

.df-homepage .df-feature-card:hover,
.df-homepage .df-step:hover,
.df-homepage .df-pricing-card:hover,
.df-homepage .df-security-card:hover,
.df-homepage .df-faq-item:hover,
.df-homepage .df-download-card:hover,
.df-homepage .df-logo-pill:hover,
.df-homepage .df-support-card:hover,
.df-homepage .df-changelog-card:hover,
.df-homepage .df-mini-changelog:hover {
  transform: translateY(-3px);
}

.df-homepage .df-footer {
  margin-top: 1.8rem;
}

@keyframes df-visual-drift-lite {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes df-card-float-lite {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -3px, 0);
  }
}

@keyframes df-tag-float-lite {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes df-aura-slow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.8%, -1.8%, 0) scale(1.04);
  }
}

@keyframes df-aura-core {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.34;
  }
  50% {
    transform: translate3d(-2.5%, 2%, 0);
    opacity: 0.48;
  }
}

@media (max-width: 1080px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr;
    --hero-panel-h: auto;
    align-items: initial;
  }

  .df-homepage .df-hero h1 {
    max-width: 16ch;
    font-size: clamp(1.85rem, 5.9vw, 2.72rem);
  }

  .df-homepage .df-hero-visual {
    min-height: 330px;
    height: auto;
    order: 2;
  }

  .df-homepage .df-hero::before,
  .df-homepage .df-hero::after {
    opacity: 0.35;
  }
}

@media (max-width: 760px) {
  .df-homepage .df-container {
    width: min(1120px, calc(100% - 1.4rem));
  }

  .df-homepage .df-hero {
    padding-top: 5.5rem;
    padding-bottom: 3.2rem;
  }

  .df-homepage .df-hero-text {
    padding: 0.85rem 0.8rem 1rem;
    border-radius: 18px;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.55rem, 7.9vw, 2.08rem);
    line-height: 1.14;
    max-width: 100%;
  }

  .df-homepage .df-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .df-homepage .df-hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .df-homepage .df-hero-cta .df-btn {
    width: 100%;
    min-height: 2.72rem;
  }

  .df-homepage .df-hero-meta,
  .df-homepage .df-hero-highlights {
    gap: 0.42rem;
  }

  .df-homepage .df-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .df-homepage .df-hero-visual {
    min-height: 290px;
    border-radius: 18px;
  }

  .df-homepage .df-hero-card-main {
    width: min(330px, 84%);
    height: 204px;
  }

  .df-homepage .df-hero-card-float,
  .df-homepage .df-hero-card-mini,
  .df-homepage .df-hero-float-tag {
    display: none;
  }

  .df-homepage .df-section {
    padding-block: clamp(2.8rem, 7vw, 3.8rem);
  }

  .df-homepage .df-hero::before,
  .df-homepage .df-hero::after,
  .df-homepage .df-hero-glow {
    opacity: 0.24;
    filter: blur(18px);
  }
}

/* ================= Homepage Layout Lock (desktop + mobile) ================= */
@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    --hero-panel-h: clamp(500px, 56vh, 620px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.5rem);
    align-items: stretch;
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    width: 100%;
    max-width: none;
    min-height: var(--hero-panel-h);
  }

  .df-homepage .df-hero-visual {
    height: var(--hero-panel-h);
  }
}

@media (max-width: 1080px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    --hero-panel-h: auto;
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .df-homepage .df-hero-visual {
    height: auto;
  }
}

@media (max-width: 760px) {
  .df-homepage .df-hero {
    padding-top: 5.4rem;
    padding-bottom: 3rem;
  }

  .df-homepage .df-hero-text {
    padding: 0.9rem 0.85rem 1rem;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
    line-height: 1.16;
  }

  .df-homepage .df-hero-subtitle {
    font-size: 0.94rem;
  }

  .df-homepage .df-hero-meta span,
  .df-homepage .df-hero-pill {
    font-size: 0.78rem;
  }

  .df-homepage .df-hero-visual {
    min-height: 260px;
  }
}

/* ================= Final Hero Layout (structured desktop + mobile) ================= */
@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    --hero-panel-h: clamp(520px, 60vh, 640px);
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: clamp(1rem, 1.5vw, 1.6rem) !important;
    align-items: stretch !important;
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    grid-column: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-height: var(--hero-panel-h) !important;
    height: auto !important;
    align-self: stretch !important;
  }

  .df-homepage .df-hero-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: clamp(1rem, 1.4vw, 1.45rem) !important;
    border-radius: 20px !important;
  }

  .df-homepage .df-hero-visual {
    border-radius: 20px !important;
  }
}

@media (max-width: 1080px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    align-items: initial !important;
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .df-homepage .df-hero-visual {
    order: 2 !important;
    min-height: 320px !important;
  }
}

@media (max-width: 760px) {
  .df-homepage .df-container {
    width: min(1180px, calc(100% - 1rem)) !important;
  }

  .df-homepage .df-hero {
    padding-top: 5.15rem !important;
    padding-bottom: 2.65rem !important;
  }

  .df-homepage .df-hero-grid {
    gap: 0.85rem !important;
  }

  .df-homepage .df-hero-text {
    padding: 0.95rem !important;
    border-radius: 16px !important;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
    line-height: 1.14 !important;
    max-width: 100% !important;
  }

  .df-homepage .df-hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .df-homepage .df-hero-cta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .df-homepage .df-hero-cta .df-btn {
    width: 100% !important;
    min-height: 2.65rem !important;
  }

  .df-homepage .df-hero-meta,
  .df-homepage .df-hero-highlights {
    gap: 0.42rem !important;
  }

  .df-homepage .df-hero-meta span,
  .df-homepage .df-hero-pill {
    font-size: 0.78rem !important;
  }

  .df-homepage .df-hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.48rem !important;
  }

  .df-homepage .df-hero-visual {
    min-height: 272px !important;
    border-radius: 16px !important;
  }

  .df-homepage .df-hero-card-main {
    width: min(330px, 86%) !important;
    height: 204px !important;
    right: 6% !important;
    top: 10% !important;
  }

  .df-homepage .df-hero-card-float,
  .df-homepage .df-hero-card-mini,
  .df-homepage .df-hero-float-tag {
    display: none !important;
  }
}

/* ================= 2026 "Wow" Visual Pass (homepage only) ================= */
body.df-homepage {
  background-color: #05070f;
  background-image:
    radial-gradient(circle at 16% 18%, rgba(94, 234, 212, 0.18), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.18), transparent 36%),
    radial-gradient(circle at 20% 75%, rgba(56, 189, 248, 0.14), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(245, 158, 11, 0.1), transparent 45%),
    linear-gradient(160deg, #040814 0%, #071226 45%, #020611 100%);
}

body.df-homepage::after {
  background-size: 140px 140px;
  opacity: 0.08;
}

.df-homepage .df-header {
  background: linear-gradient(180deg, rgba(4, 10, 24, 0.96), rgba(4, 10, 24, 0.72));
  border-bottom: 1px solid rgba(94, 234, 212, 0.12);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.55);
}

.df-homepage .df-nav ul {
  background: linear-gradient(120deg, rgba(6, 12, 24, 0.7), rgba(10, 18, 36, 0.92));
  border: 1px solid rgba(94, 234, 212, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 12px 26px rgba(2, 6, 23, 0.4);
}

.df-homepage .df-hero-text {
  background: linear-gradient(145deg, rgba(6, 12, 26, 0.86), rgba(4, 9, 20, 0.78));
  border: 1px solid rgba(94, 234, 212, 0.18);
  box-shadow: 0 22px 48px rgba(2, 6, 23, 0.55);
}

.df-homepage .df-hero h1 {
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, #ffffff 0%, #dbeafe 35%, #5eead4 70%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.df-homepage .df-hero-subtitle {
  color: rgba(226, 232, 240, 0.88);
}

.df-homepage .df-hero-cta .df-btn-primary {
  background: linear-gradient(120deg, #5eead4, #38bdf8 45%, #8b5cf6);
  color: #0b1020;
  box-shadow: 0 14px 34px rgba(56, 189, 248, 0.4);
}

.df-homepage .df-hero-cta .df-btn-ghost {
  background: rgba(12, 18, 32, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.df-homepage .df-hero-pill,
.df-homepage .df-hero-stat {
  border: 1px solid rgba(94, 234, 212, 0.2);
  background: rgba(8, 14, 28, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.df-homepage .df-hero-visual {
  background:
    radial-gradient(80% 75% at 20% 16%, rgba(94, 234, 212, 0.16), transparent 72%),
    radial-gradient(60% 55% at 88% 12%, rgba(139, 92, 246, 0.15), transparent 70%),
    linear-gradient(152deg, rgba(5, 12, 28, 0.98), rgba(3, 8, 18, 0.96));
  border: 1px solid rgba(94, 234, 212, 0.22);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.55);
}

.df-homepage .df-hero-gridlines {
  opacity: 0.14;
  background-size: 40px 40px;
}

.df-homepage .df-hero-card {
  border: 1px solid rgba(94, 234, 212, 0.22);
  background: linear-gradient(145deg, rgba(10, 18, 38, 0.96), rgba(6, 12, 26, 0.9));
}

.df-homepage .df-hero-card-main::before {
  background: linear-gradient(90deg, rgba(12, 20, 42, 0.98), rgba(12, 20, 42, 0.7));
}

.df-homepage .df-hero-card-main::after {
  border: 1px solid rgba(94, 234, 212, 0.2);
}

.df-homepage .df-section {
  padding-block: clamp(3.8rem, 5.6vw, 5.1rem);
}

.df-homepage .df-section-header h2 {
  font-size: clamp(1.85rem, 2.6vw, 2.8rem);
  letter-spacing: -0.02em;
}

.df-homepage .df-feature-card,
.df-homepage .df-step,
.df-homepage .df-pricing-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-download-card,
.df-homepage .df-support-card,
.df-homepage .df-changelog-card {
  background: linear-gradient(140deg, rgba(8, 14, 28, 0.85), rgba(10, 18, 36, 0.92));
  border: 1px solid rgba(94, 234, 212, 0.14);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.45);
}

.df-homepage .df-feature-card:hover,
.df-homepage .df-step:hover,
.df-homepage .df-pricing-card:hover,
.df-homepage .df-download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 22px 45px rgba(2, 6, 23, 0.6);
}

@media (max-width: 760px) {
  .df-homepage .df-hero h1 {
    font-size: clamp(1.55rem, 8.4vw, 2.05rem);
  }
}

/* ================= Neon Lux 2026 (homepage only) ================= */
body.df-homepage {
  background-image:
    radial-gradient(circle at 18% 16%, rgba(34, 211, 238, 0.28), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(168, 85, 247, 0.28), transparent 36%),
    radial-gradient(circle at 18% 78%, rgba(16, 185, 129, 0.22), transparent 38%),
    radial-gradient(circle at 86% 82%, rgba(249, 115, 22, 0.18), transparent 40%),
    linear-gradient(155deg, #05080f 0%, #071226 45%, #030613 100%);
}

body.df-homepage::after {
  opacity: 0.06;
  background-size: 160px 160px;
}

.df-homepage .df-hero::before,
.df-homepage .df-hero::after {
  opacity: 0.7 !important;
  filter: blur(26px) saturate(1.2) !important;
}

.df-homepage .df-hero-text {
  border: 1px solid rgba(34, 211, 238, 0.28) !important;
  box-shadow:
    0 28px 64px rgba(2, 6, 23, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(34, 211, 238, 0.18);
  gap: 0.95rem;
}

.df-homepage .df-hero h1 {
  background: linear-gradient(115deg, #ffffff 0%, #dbeafe 28%, #22d3ee 55%, #a855f7 78%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(34, 211, 238, 0.15);
  line-height: 1.12;
}

.df-homepage .df-hero-cta .df-btn-primary {
  background: linear-gradient(120deg, #22d3ee, #a855f7 52%, #f97316);
  color: #0a0f1f;
  box-shadow:
    0 18px 40px rgba(34, 211, 238, 0.35),
    0 0 24px rgba(168, 85, 247, 0.25);
}

.df-homepage .df-hero-cta .df-btn-primary::after {
  opacity: 0.8;
}

.df-homepage .df-hero-pill,
.df-homepage .df-hero-stat {
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: linear-gradient(135deg, rgba(8, 14, 30, 0.78), rgba(10, 18, 36, 0.88));
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.45), 0 0 16px rgba(34, 211, 238, 0.12);
}

.df-homepage .df-hero-subtitle {
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.df-homepage .df-hero-cta {
  margin-top: 1.2rem;
  margin-bottom: 1.1rem;
}

.df-homepage .df-hero-meta {
  margin-top: 1.2rem;
}

.df-homepage .df-hero-highlights {
  margin-top: 1rem;
}

/* ================= Natural Modern Polish ================= */
.df-homepage .df-hero-text {
  background: linear-gradient(145deg, rgba(7, 14, 30, 0.86), rgba(5, 10, 24, 0.8));
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 52px rgba(2, 6, 23, 0.55), 0 0 18px rgba(34, 211, 238, 0.12);
}

.df-homepage .df-hero h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.75rem);
  line-height: 1.14;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.12);
}

.df-homepage .df-hero-subtitle {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.df-homepage .df-hero-cta .df-btn-primary {
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.3), 0 0 18px rgba(168, 85, 247, 0.18);
}

.df-homepage .df-hero-pill,
.df-homepage .df-hero-stat {
  background: rgba(9, 14, 28, 0.7);
  border-color: rgba(148, 163, 184, 0.22);
}

.df-homepage .df-hero-visual {
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.55), 0 0 34px rgba(168, 85, 247, 0.12);
}

.df-homepage .df-hero-gridlines {
  opacity: 0.05 !important;
}

@media (max-width: 900px) {
  .df-homepage .df-hero {
    padding-top: 5.6rem;
    padding-bottom: 3.2rem;
  }
}

@media (max-width: 760px) {
  .df-homepage .df-hero-text {
    padding: 1rem;
    border-radius: 18px;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.55rem, 8.2vw, 2.05rem);
  }

  .df-homepage .df-hero-subtitle {
    font-size: 0.96rem;
  }

  .df-homepage .df-hero-visual {
    min-height: 260px;
  }
}

.df-homepage .df-hero-visual {
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow:
    0 30px 70px rgba(2, 6, 23, 0.6),
    0 0 50px rgba(168, 85, 247, 0.16),
    0 0 30px rgba(34, 211, 238, 0.16);
}

.df-homepage .df-hero-visual::before {
  background:
    linear-gradient(180deg, rgba(10, 18, 36, 0.98) 0 46px, rgba(10, 18, 36, 0.6) 46px, transparent 46px),
    linear-gradient(90deg, rgba(10, 18, 36, 0.95) 0 96px, rgba(10, 18, 36, 0.6) 96px, transparent 96px),
    radial-gradient(120% 120% at 12% 12%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(120% 120% at 88% 8%, rgba(168, 85, 247, 0.2), transparent 60%);
  opacity: 0.95;
}

.df-homepage .df-hero-visual::after {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: inset 0 0 18px rgba(34, 211, 238, 0.12);
}

.df-homepage .df-hero-gridlines {
  opacity: 0.18;
  background-size: 36px 36px;
}

.df-homepage .df-hero-card {
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow:
    0 18px 38px rgba(2, 6, 23, 0.6),
    0 0 22px rgba(34, 211, 238, 0.12);
}

.df-homepage .df-hero-glow {
  opacity: 0.6;
  filter: blur(28px) saturate(1.2);
}

.df-homepage .df-hero-signal span {
  background: linear-gradient(180deg, #22d3ee, #a855f7);
}

.df-homepage .df-hero-text {
  position: relative;
  overflow: visible;
}

.df-homepage .df-hero-visual {
  position: relative;
  overflow: hidden;
}

.df-homepage .df-hero-text::after,
.df-homepage .df-hero-visual::before {
  animation: df-neon-scan 6s ease-in-out infinite;
}

@keyframes df-neon-scan {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
  100% { filter: brightness(1); }
}

/* ================= Hero Proportion Normalize ================= */
.df-homepage .df-hero-gridlines {
  opacity: 0.04 !important;
}

@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    --hero-panel-h: clamp(500px, 56vh, 600px);
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    min-height: var(--hero-panel-h) !important;
    height: auto !important;
  }

  .df-homepage .df-hero-text {
    padding: clamp(1rem, 1.2vw, 1.35rem) !important;
    gap: 0.7rem !important;
    justify-content: flex-start !important;
  }

  .df-homepage .df-tagline {
    margin-bottom: 0.55rem;
  }

  .df-homepage .df-hero-cta {
    margin-top: 0.7rem;
    margin-bottom: 0.65rem;
  }

  .df-homepage .df-hero-meta {
    margin-top: 0.6rem;
  }

  .df-homepage .df-hero-highlights {
    margin-top: 0.6rem;
  }

  .df-homepage .df-hero-stats {
    margin-top: 0.6rem;
  }
}

/* ================= Hero Overflow Fix (no clipping) ================= */
@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    align-items: stretch !important;
  }

  .df-homepage .df-hero-text {
    overflow: visible !important;
  }

  .df-homepage .df-hero-visual {
    height: 100% !important;
  }
}

.df-homepage .df-hero-card-main {
  width: clamp(320px, 78%, 440px);
  height: clamp(235px, 58%, 285px);
  left: 12%;
  top: 18%;
}

.df-homepage .df-hero-card-float {
  right: 10%;
  bottom: 14%;
}

.df-homepage .df-hero-card-mini {
  left: 12%;
  top: 10%;
}

/* ================= Hero Structural Polish ================= */
@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    --hero-panel-h: clamp(520px, 60vh, 660px);
  }

  .df-homepage .df-hero-text {
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .df-homepage .df-tagline {
    align-self: flex-start;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.85rem, 2.9vw, 2.85rem);
    max-width: 18ch;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 52ch;
  }
}

.df-homepage .df-hero-card-main {
  width: min(440px, 82%);
  height: 280px;
  left: 12%;
  top: 16%;
}

.df-homepage .df-hero-card-float {
  right: 10%;
  bottom: 12%;
}

.df-homepage .df-hero-card-mini {
  left: 12%;
  top: 10%;
}

/* ================= HERO FINAL + PAGE POLISH ================= */
.df-homepage .df-hero-gridlines {
  opacity: 0.015 !important;
  filter: blur(0.5px);
  mix-blend-mode: soft-light;
}

.df-homepage .df-hero-visual {
  border: 1px solid rgba(56, 189, 248, 0.06) !important;
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  background:
    radial-gradient(80% 65% at 30% 20%, rgba(56, 189, 248, 0.12), transparent 70%),
    radial-gradient(60% 55% at 82% 18%, rgba(139, 92, 246, 0.12), transparent 70%),
    linear-gradient(150deg, rgba(4, 10, 24, 0.94), rgba(3, 8, 20, 0.92)) !important;
}

@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    --hero-panel-h: clamp(520px, 60vh, 660px);
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr) !important;
    gap: clamp(1.8rem, 2.4vw, 2.6rem) !important;
    align-items: stretch !important;
  }

  .df-homepage .df-hero-text {
    min-height: var(--hero-panel-h) !important;
    padding: clamp(1.9rem, 2.7vw, 2.8rem) !important;
    gap: 1.35rem !important;
    background: linear-gradient(145deg, rgba(6, 14, 32, 0.74), rgba(3, 9, 22, 0.68));
    box-shadow: 0 26px 64px rgba(2, 6, 23, 0.55);
  }

  .df-homepage .df-hero-visual {
    min-height: clamp(440px, 50vh, 540px) !important;
    height: clamp(440px, 50vh, 540px) !important;
    align-self: center !important;
    padding: clamp(0.9rem, 1.8vw, 1.6rem) !important;
  }

  .df-homepage .df-hero h1 {
    max-width: 22ch;
    line-height: 1.18;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 68ch;
    line-height: 1.65;
  }

  .df-homepage .df-hero-cta {
    margin-top: 1.25rem;
    gap: 0.75rem;
  }

  .df-homepage .df-hero-meta {
    margin-top: 0.35rem;
    gap: 0.6rem;
  }

  .df-homepage .df-hero-highlights {
    gap: 0.65rem;
  }

  .df-homepage .df-hero-stats {
    gap: 0.9rem;
  }

  .df-homepage .df-hero-stat {
    padding: 0.75rem 0.95rem;
  }

  /* cluster animation elements */
  .df-homepage .df-hero-card-main {
    width: min(80%, 420px);
    height: min(58%, 280px);
    left: 12%;
    top: 18%;
  }

  .df-homepage .df-hero-card-float {
    right: 14%;
    bottom: 18%;
  }

  .df-homepage .df-hero-card-mini {
    left: 12%;
    top: 14%;
  }

  .df-homepage .df-hero-float-tag-1 {
    left: 10%;
    top: 12%;
  }

  .df-homepage .df-hero-float-tag-2 {
    right: 18%;
    bottom: 22%;
  }

  .df-homepage .df-hero-float-tag-3 {
    right: 24%;
    top: 56%;
  }
}

@media (max-width: 1080px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    min-height: auto !important;
  }

  .df-homepage .df-hero-visual {
    margin-top: 1.5rem;
  }
}

/* ===== Page-wide polish ===== */
.df-homepage .df-section {
  padding: clamp(3.8rem, 6vw, 5.4rem) 0;
}

.df-homepage .df-section-header {
  max-width: 720px;
  margin-bottom: clamp(2rem, 3.2vw, 2.8rem);
}

.df-homepage .df-section-header h2 {
  letter-spacing: -0.015em;
}

.df-homepage .df-features-grid,
.df-homepage .df-pricing-grid,
.df-homepage .df-download-grid,
.df-homepage .df-security-grid,
.df-homepage .df-faq-grid {
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
}

.df-homepage .df-feature-card,
.df-homepage .df-pricing-card,
.df-homepage .df-download-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item {
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(9, 16, 34, 0.92), rgba(6, 10, 24, 0.9));
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.45);
}

.df-homepage .df-feature-card:hover,
.df-homepage .df-pricing-card:hover,
.df-homepage .df-download-card:hover,
.df-homepage .df-security-card:hover,
.df-homepage .df-faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(2, 6, 23, 0.55), 0 0 26px rgba(56, 189, 248, 0.18);
}


/* ================= HERO BLEND (no visible panels) ================= */
@media (min-width: 1081px) {
  .df-homepage .df-hero-grid {
    position: relative;
  }

  .df-homepage .df-hero-grid::before {
    content: "";
    position: absolute;
    inset: -6% -4%;
    background:
      radial-gradient(70% 60% at 20% 30%, rgba(56, 189, 248, 0.12), transparent 70%),
      radial-gradient(60% 50% at 80% 25%, rgba(139, 92, 246, 0.12), transparent 70%),
      radial-gradient(55% 60% at 50% 75%, rgba(94, 234, 212, 0.08), transparent 72%);
    filter: blur(24px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    position: relative;
    z-index: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .df-homepage .df-hero-text {
    padding: clamp(1.6rem, 2.4vw, 2.6rem) !important;
  }

  .df-homepage .df-hero-visual {
    min-height: clamp(420px, 48vh, 520px) !important;
    height: clamp(420px, 48vh, 520px) !important;
    padding: clamp(0.6rem, 1.4vw, 1.2rem) !important;
    border-radius: 26px;
    background:
      radial-gradient(70% 55% at 25% 30%, rgba(56, 189, 248, 0.1), transparent 72%),
      radial-gradient(60% 60% at 75% 25%, rgba(139, 92, 246, 0.1), transparent 72%) !important;
    mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 92%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 92%);
  }

  .df-homepage .df-hero-gridlines {
    opacity: 0.008 !important;
  }
}

/* ================= HOMEPAGE ELITE POLISH ================= */
.df-homepage .df-container {
  width: min(1200px, calc(100% - 2.6rem));
}

.df-homepage .df-section {
  position: relative;
  padding: clamp(4.2rem, 7.2vw, 6rem) 0;
  isolation: isolate;
}

.df-homepage .df-section::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  background:
    radial-gradient(60% 60% at 15% 10%, rgba(56, 189, 248, 0.1), transparent 70%),
    radial-gradient(55% 55% at 85% 20%, rgba(139, 92, 246, 0.1), transparent 72%),
    radial-gradient(60% 60% at 50% 85%, rgba(94, 234, 212, 0.08), transparent 75%);
  opacity: 0.6;
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.df-homepage .df-section:nth-of-type(even)::before {
  background:
    radial-gradient(60% 60% at 20% 15%, rgba(14, 165, 233, 0.1), transparent 70%),
    radial-gradient(55% 55% at 80% 25%, rgba(167, 139, 250, 0.12), transparent 72%),
    radial-gradient(60% 60% at 50% 90%, rgba(245, 158, 11, 0.06), transparent 75%);
  opacity: 0.5;
}

.df-homepage .df-section > .df-container {
  position: relative;
  z-index: 1;
}

.df-homepage .df-section-header {
  max-width: 760px;
  margin-bottom: clamp(2.2rem, 3.6vw, 3.1rem);
}

.df-homepage .df-section-header h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  letter-spacing: -0.02em;
}

.df-homepage .df-section-header p {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  max-width: 64ch;
  color: rgba(226, 232, 240, 0.78);
}

.df-homepage .df-features-grid,
.df-homepage .df-pricing-grid,
.df-homepage .df-download-grid,
.df-homepage .df-security-grid,
.df-homepage .df-faq-grid,
.df-homepage .df-steps-grid {
  gap: clamp(1.3rem, 2.4vw, 2rem);
}

.df-homepage .df-feature-card,
.df-homepage .df-pricing-card,
.df-homepage .df-download-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-step {
  background: linear-gradient(160deg, rgba(9, 16, 34, 0.94), rgba(6, 10, 24, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(8px);
}

.df-homepage .df-feature-card:hover,
.df-homepage .df-pricing-card:hover,
.df-homepage .df-download-card:hover,
.df-homepage .df-security-card:hover,
.df-homepage .df-faq-item:hover,
.df-homepage .df-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.55), 0 0 26px rgba(56, 189, 248, 0.18);
  border-color: rgba(94, 234, 212, 0.35);
}

.df-homepage .df-pricing-featured {
  position: relative;
  border: 1px solid rgba(94, 234, 212, 0.45);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.6), 0 0 30px rgba(94, 234, 212, 0.2);
}

.df-homepage .df-pricing-featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.45), rgba(139, 92, 246, 0.45), rgba(94, 234, 212, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.df-homepage .df-download-card.highlighted {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.55), 0 0 24px rgba(56, 189, 248, 0.2);
}

.df-homepage .df-logo-wall .df-logo-pill {
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(10, 18, 38, 0.9), rgba(6, 12, 26, 0.85));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

@media (max-width: 980px) {
  .df-homepage .df-container {
    width: min(100%, calc(100% - 1.8rem));
  }

  .df-homepage .df-section {
    padding: clamp(3.2rem, 8vw, 4.4rem) 0;
  }

  .df-homepage .df-section-header {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .df-homepage .df-section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .df-homepage .df-feature-card,
  .df-homepage .df-pricing-card,
  .df-homepage .df-download-card,
  .df-homepage .df-security-card,
  .df-homepage .df-faq-item,
  .df-homepage .df-step {
    border-radius: 18px;
    padding: 1.1rem;
  }
}

/* ================= EXPLOSIVE 2026 PASS ================= */
.df-homepage body,
.df-homepage {
  background-image:
    radial-gradient(circle at 15% 12%, rgba(56, 189, 248, 0.22), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.22), transparent 40%),
    radial-gradient(circle at 18% 78%, rgba(94, 234, 212, 0.18), transparent 38%),
    radial-gradient(circle at 85% 76%, rgba(245, 158, 11, 0.12), transparent 45%),
    linear-gradient(160deg, #03040f 0%, #050a1f 45%, #02040d 100%);
}

.df-homepage body::after {
  opacity: 0.12;
}

@keyframes df-neon-sheen {
  0% { transform: translateX(-20%); opacity: 0; }
  35% { opacity: 0.4; }
  60% { opacity: 0.25; }
  100% { transform: translateX(120%); opacity: 0; }
}

.df-homepage .df-section-header h2 {
  position: relative;
}

.df-homepage .df-section-header h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56,189,248,0.7), rgba(94,234,212,0.7), rgba(139,92,246,0.7));
  box-shadow: 0 0 18px rgba(56,189,248,0.35);
}

.df-homepage .df-section-header h2::before {
  content: "";
  position: absolute;
  left: -6%;
  top: 50%;
  width: 40%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.35), transparent);
  filter: blur(1px);
  animation: df-neon-sheen 9s ease-in-out infinite;
}

.df-homepage .df-btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(56, 189, 248, 0.35);
}

.df-homepage .df-btn-primary::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 80%;
  height: 340%;
  transform: rotate(18deg);
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: df-neon-sheen 6.5s ease-in-out infinite;
}

.df-homepage .df-feature-card,
.df-homepage .df-pricing-card,
.df-homepage .df-download-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-step {
  backdrop-filter: blur(10px);
}

.df-homepage .df-feature-card::after,
.df-homepage .df-pricing-card::after,
.df-homepage .df-download-card::after,
.df-homepage .df-security-card::after,
.df-homepage .df-faq-item::after,
.df-homepage .df-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(56,189,248,0.06), rgba(139,92,246,0.05), rgba(94,234,212,0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.df-homepage .df-feature-card:hover::after,
.df-homepage .df-pricing-card:hover::after,
.df-homepage .df-download-card:hover::after,
.df-homepage .df-security-card:hover::after,
.df-homepage .df-faq-item:hover::after,
.df-homepage .df-step:hover::after {
  opacity: 1;
}

.df-homepage .df-hero-text h1 {
  text-shadow: 0 8px 22px rgba(8, 145, 178, 0.25);
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: -10% -6%;
  border-radius: 26px;
  background: radial-gradient(55% 55% at 80% 20%, rgba(56,189,248,0.2), transparent 70%);
  opacity: 0.25;
  filter: blur(28px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .df-homepage .df-section-header h2::before {
    display: none;
  }

  .df-homepage .df-btn-primary::after {
    display: none;
  }
}

/* ================= NEO ELEGANCE (site-wide) ================= */
.df-homepage {
  color-scheme: dark;
}

.df-homepage body,
.df-homepage {
  background-image:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.2), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.22), transparent 40%),
    radial-gradient(circle at 20% 82%, rgba(94, 234, 212, 0.16), transparent 40%),
    radial-gradient(circle at 80% 82%, rgba(245, 158, 11, 0.1), transparent 45%),
    linear-gradient(160deg, #03040f 0%, #070d24 45%, #04060f 100%);
}

.df-homepage .df-header {
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.6);
}

.df-homepage .df-nav ul {
  border: 1px solid rgba(94, 234, 212, 0.22);
  background: linear-gradient(120deg, rgba(8, 12, 22, 0.7), rgba(8, 12, 22, 0.92));
}

.df-homepage .df-section-header h2 {
  text-transform: none;
  letter-spacing: -0.02em;
}

.df-homepage .df-section-header h2::after {
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, rgba(56,189,248,0.9), rgba(94,234,212,0.8), rgba(139,92,246,0.8));
  box-shadow: 0 0 22px rgba(56,189,248,0.45);
}

.df-homepage .df-section-header p {
  color: rgba(226, 232, 240, 0.8);
}

.df-homepage .df-feature-card,
.df-homepage .df-pricing-card,
.df-homepage .df-download-card,
.df-homepage .df-security-card,
.df-homepage .df-faq-item,
.df-homepage .df-step {
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.5);
  position: relative;
  overflow: hidden;
}

.df-homepage .df-feature-card::before,
.df-homepage .df-pricing-card::before,
.df-homepage .df-download-card::before,
.df-homepage .df-security-card::before,
.df-homepage .df-faq-item::before,
.df-homepage .df-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(56,189,248,0.08), transparent 45%, rgba(139,92,246,0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.df-homepage .df-feature-card:hover::before,
.df-homepage .df-pricing-card:hover::before,
.df-homepage .df-download-card:hover::before,
.df-homepage .df-security-card:hover::before,
.df-homepage .df-faq-item:hover::before,
.df-homepage .df-step:hover::before {
  opacity: 1;
}

.df-homepage .df-pricing-featured {
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.65), 0 0 34px rgba(94, 234, 212, 0.22);
}

.df-homepage .df-btn-primary {
  box-shadow: 0 20px 42px rgba(56, 189, 248, 0.38);
}

.df-homepage .df-btn-ghost {
  border-color: rgba(148, 163, 184, 0.35);
}

.df-homepage .df-btn-ghost:hover {
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.22);
}

.df-homepage .df-logo-wall .df-logo-pill {
  border-color: rgba(148, 163, 184, 0.22);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.4);
}

.df-homepage .df-download-card.highlighted {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.55), 0 0 26px rgba(56, 189, 248, 0.22);
}

@media (max-width: 720px) {
  .df-homepage .df-section-header h2::after {
    width: 96px;
  }
}

/* ================= EXPLOSIVE 2026 BACKGROUND & HERO ================= */
@keyframes df-aurora-flow {
  0% { transform: translate3d(-2%, -2%, 0) rotate(0deg); }
  50% { transform: translate3d(2%, 1%, 0) rotate(6deg); }
  100% { transform: translate3d(-2%, -2%, 0) rotate(0deg); }
}

.df-homepage::before {
  content: "";
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(circle at 12% 18%, rgba(56,189,248,0.28), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(139,92,246,0.26), transparent 40%),
    radial-gradient(circle at 24% 82%, rgba(94,234,212,0.2), transparent 40%),
    radial-gradient(circle at 78% 80%, rgba(245,158,11,0.12), transparent 46%);
  filter: blur(38px);
  opacity: 0.6;
  animation: df-aurora-flow 16s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

.df-homepage .df-hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(80% 90% at 20% 10%, rgba(56,189,248,0.14), transparent 70%),
    radial-gradient(70% 80% at 85% 20%, rgba(139,92,246,0.14), transparent 72%),
    linear-gradient(160deg, rgba(4,10,26,0.9), rgba(3,7,20,0.9));
  border-radius: 28px;
}

.df-homepage .df-hero::after {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(56,189,248,0.06), rgba(139,92,246,0.05), rgba(94,234,212,0.06));
  opacity: 0.6;
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.df-homepage .df-hero-grid {
  position: relative;
  z-index: 1;
}

.df-homepage .df-hero-text {
  max-width: 620px;
}

.df-homepage .df-hero h1 {
  letter-spacing: -0.015em;
}

.df-homepage .df-hero-subtitle {
  letter-spacing: 0.005em;
}

.df-homepage .df-hero-visual {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 94%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 94%);
}

.df-homepage .df-hero-card,
.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini {
  box-shadow: 0 18px 36px rgba(2,6,23,0.45);
}

@media (max-width: 900px) {
  .df-homepage .df-hero {
    border-radius: 22px;
  }
}

/* ================= HERO HALO + PARALLAX ================= */
.df-homepage .df-btn-primary {
  position: relative;
  overflow: hidden;
}

.df-homepage .df-btn-primary::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.55);
  opacity: 0;
  animation: df-cta-pulse 2.8s ease-in-out infinite;
}

@keyframes df-cta-pulse {
  0% { opacity: 0; transform: scale(0.98); }
  50% { opacity: 0.5; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes df-parallax-float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.df-homepage .df-hero-visual {
  animation: df-parallax-float 14s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .df-homepage .df-btn-primary::before {
    animation: none;
  }
  .df-homepage .df-hero-visual {
    animation: none;
  }
}

/* ================= HOME: BUILT FOR / TESTIMONIALS / COMPARE / INTEGRATIONS ================= */
.df-homepage .df-builtfor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.df-homepage .df-builtfor-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(160deg, rgba(10, 18, 38, 0.92), rgba(6, 12, 26, 0.88));
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.df-homepage .df-builtfor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.42);
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.5), 0 0 18px rgba(56, 189, 248, 0.18);
}

.df-homepage .df-builtfor-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.25), rgba(139, 92, 246, 0.22));
  box-shadow: inset 0 0 12px rgba(14, 165, 233, 0.15);
}

.df-homepage .df-builtfor-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #e2e8f0;
}


.df-homepage .df-compare-card {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(160deg, rgba(9, 16, 34, 0.94), rgba(6, 10, 24, 0.9));
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.55);
  padding: 1.2rem 1.4rem;
}

.df-homepage .df-compare-table-wrap {
  overflow-x: auto;
}

.df-homepage .df-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.df-homepage .df-compare-table th,
.df-homepage .df-compare-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
}

.df-homepage .df-compare-table th {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.9);
}

.df-homepage .df-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.df-homepage .df-integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.1rem;
}

.df-homepage .df-integration-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(160deg, rgba(10, 18, 38, 0.92), rgba(6, 12, 26, 0.88));
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.4);
  color: #e2e8f0;
  font-weight: 500;
}

.df-homepage .df-integration-icon {
  min-width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.25), rgba(139, 92, 246, 0.25));
  box-shadow: inset 0 0 10px rgba(56, 189, 248, 0.2);
}

.df-homepage .df-security-spotlight {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(94, 234, 212, 0.25);
  background: linear-gradient(140deg, rgba(10, 18, 38, 0.95), rgba(6, 12, 26, 0.9));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.55);
}

.df-homepage .df-security-spotlight-text h3 {
  margin: 0.35rem 0 0.8rem;
}

.df-homepage .df-security-spotlight-text p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
}

.df-homepage .df-security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.df-homepage .df-security-badge {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(8, 12, 24, 0.7);
  font-size: 0.82rem;
  color: #e2e8f0;
}


/* ================= HERO BALANCE (equal presence) ================= */
@media (min-width: 980px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .df-homepage .df-hero-text {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.6rem, 2.4vw, 2.6rem) !important;
  }

  .df-homepage .df-hero-visual {
    min-height: clamp(380px, 46vh, 520px) !important;
    height: clamp(380px, 46vh, 520px) !important;
    align-self: stretch;
  }
}

.df-homepage .df-hero h1 {
  line-height: 1.2;
}

.df-homepage .df-hero-subtitle {
  line-height: 1.7;
  max-width: 60ch;
}

.df-homepage .df-hero-gridlines {
  opacity: 0.02 !important;
  filter: blur(0.2px);
}

.df-homepage .df-hero-visual {
  border: none !important;
  box-shadow: none !important;
  transform: scale(0.95);
  transform-origin: center;
}

@media (max-width: 980px) {
  .df-homepage .df-security-spotlight {
    grid-template-columns: 1fr;
  }

  .df-homepage .df-security-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .df-homepage .df-hero-visual {
    transform: none;
  }
}

@media (max-width: 720px) {
  .df-homepage .df-builtfor-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .df-homepage .df-builtfor-grid::-webkit-scrollbar {
    display: none;
  }

  .df-homepage .df-builtfor-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 68px;
    padding: 0.95rem 1.05rem;
    scroll-snap-align: start;
  }

  .df-homepage .df-compare-card {
    padding: 1rem;
  }

  .df-homepage .df-integration-card {
    padding: 0.75rem 0.9rem;
  }
}

/* ================= FINAL INDEX LAYOUT TUNE (desktop + mobile) ================= */
.df-homepage .df-container {
  width: min(1360px, calc(100% - 2.4rem));
}

.df-homepage .df-hero {
  border-radius: 30px;
}

.df-homepage .df-hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: center;
}

.df-homepage .df-hero-text {
  max-width: min(760px, 100%);
  padding: clamp(1.2rem, 2vw, 2rem);
}

.df-homepage .df-hero h1 {
  font-size: clamp(2.25rem, 5.6vw, 4.05rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 1.05rem;
}

.df-homepage .df-hero-subtitle {
  max-width: 34ch;
  line-height: 1.52;
  font-size: clamp(1.04rem, 1.55vw, 1.88rem);
}

.df-homepage .df-hero-visual {
  position: relative;
  min-height: clamp(410px, 44vw, 570px);
  height: clamp(410px, 44vw, 570px);
  max-height: 600px;
  border-radius: 30px;
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(65% 55% at 22% 28%, rgba(56, 189, 248, 0.19), transparent 72%),
    radial-gradient(62% 62% at 78% 24%, rgba(139, 92, 246, 0.19), transparent 75%),
    radial-gradient(56% 50% at 55% 84%, rgba(94, 234, 212, 0.1), transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.df-homepage .df-hero-gridlines {
  opacity: 0.011 !important;
}

.df-homepage .df-hero-prism,
.df-homepage .df-hero-ribbon {
  opacity: 0.3;
}

.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini,
.df-homepage .df-hero-signal,
.df-homepage .df-hero-float-tag {
  position: absolute;
  z-index: 2;
}

.df-homepage .df-hero-card-main {
  width: 72%;
  height: 44%;
  left: 16%;
  top: 18%;
}

.df-homepage .df-hero-card-float {
  width: 34%;
  height: 23%;
  left: 8%;
  top: 10%;
}

.df-homepage .df-hero-card-mini {
  width: 36%;
  height: 23%;
  right: 10%;
  bottom: 14%;
}

.df-homepage .df-hero-signal {
  left: 12%;
  bottom: 10%;
}

.df-homepage .df-hero-float-tag-1 {
  left: 4%;
  top: 8%;
}

.df-homepage .df-hero-float-tag-2 {
  right: 9%;
  bottom: 22%;
}

.df-homepage .df-hero-float-tag-3 {
  right: 20%;
  top: 54%;
}

@media (max-width: 1240px) {
  .df-homepage .df-container {
    width: min(1240px, calc(100% - 2rem));
  }

  .df-homepage .df-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.4rem;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 30ch;
  }
}

@media (max-width: 980px) {
  .df-homepage .df-container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .df-homepage .df-hero-text {
    max-width: 100%;
    padding: 1.1rem 0.8rem 0.2rem;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.13;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .df-homepage .df-hero-visual {
    min-height: clamp(330px, 62vw, 470px);
    height: clamp(330px, 62vw, 470px);
    margin-top: 0.2rem;
  }
}

@media (max-width: 720px) {
  .df-homepage .df-hero {
    border-radius: 22px;
  }

  .df-homepage .df-hero h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.55rem);
  }

  .df-homepage .df-hero-subtitle {
    font-size: 1.02rem;
  }

  .df-homepage .df-hero-visual {
    min-height: 315px;
    height: 315px;
    border-radius: 20px;
  }

  .df-homepage .df-hero-card-main {
    width: 78%;
    height: 46%;
    left: 13%;
    top: 18%;
  }

  .df-homepage .df-hero-card-float {
    width: 43%;
    height: 21%;
    left: 6%;
    top: 11%;
  }

  .df-homepage .df-hero-card-mini {
    width: 44%;
    height: 22%;
    right: 7%;
    bottom: 12%;
  }

  .df-homepage .df-hero-float-tag-1 {
    left: 3%;
    top: 7%;
  }

  .df-homepage .df-hero-float-tag-2 {
    right: 7%;
    bottom: 21%;
  }

  .df-homepage .df-hero-float-tag-3 {
    right: 18%;
    top: 53%;
  }
}

/* ================= HERO PROPORTION TUNE (text wider, visual tighter) ================= */
@media (min-width: 1100px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: clamp(1rem, 2.2vw, 2rem);
  }

  .df-homepage .df-hero-text {
    max-width: 860px;
    padding: clamp(1.2rem, 2vw, 2.2rem) clamp(1.1rem, 1.9vw, 2.1rem);
  }

  .df-homepage .df-hero h1 {
    max-width: 14.5ch;
    font-size: clamp(2.3rem, 4.9vw, 4.05rem);
    line-height: 1.14;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 44ch;
    font-size: clamp(1.06rem, 1.25vw, 1.4rem);
  }

  .df-homepage .df-hero-visual {
    justify-self: end;
    width: 100%;
    max-width: 860px;
    min-height: clamp(370px, 38vw, 500px);
    height: clamp(370px, 38vw, 500px);
    transform: scale(0.92);
    transform-origin: center right;
  }

  .df-homepage .df-hero-card-main {
    width: 68%;
    height: 42%;
    left: 19%;
    top: 20%;
  }

  .df-homepage .df-hero-card-float {
    width: 31%;
    height: 20%;
    left: 9%;
    top: 12%;
  }

  .df-homepage .df-hero-card-mini {
    width: 33%;
    height: 20%;
    right: 11%;
    bottom: 15%;
  }

  .df-homepage .df-hero-signal {
    left: 13%;
    bottom: 11%;
  }

  .df-homepage .df-hero-float-tag-1 {
    left: 5%;
    top: 9%;
  }

  .df-homepage .df-hero-float-tag-2 {
    right: 10%;
    bottom: 23%;
  }

  .df-homepage .df-hero-float-tag-3 {
    right: 22%;
    top: 55%;
  }
}

@media (max-width: 1240px) {
  .df-homepage .df-hero-visual {
    transform: none;
  }
}

/* ================= FINAL HERO BALANCE (TEXT AIR + TIGHT VISUAL) ================= */
@media (min-width: 1200px) {
  .df-homepage .df-hero {
    overflow: visible;
  }

  .df-homepage .df-hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    align-items: stretch;
    gap: clamp(1.1rem, 2vw, 2.2rem);
  }

  .df-homepage .df-hero-text,
  .df-homepage .df-hero-visual {
    min-height: clamp(560px, 48vw, 640px);
  }

  .df-homepage .df-hero-text {
    max-width: none;
    padding: clamp(1.5rem, 2.2vw, 2.4rem) clamp(1.4rem, 2vw, 2.5rem);
  }

  .df-homepage .df-hero h1 {
    max-width: 16ch;
    font-size: clamp(2.55rem, 4.5vw, 4rem);
    line-height: 1.16;
    letter-spacing: -0.018em;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 52ch;
    font-size: clamp(1.08rem, 1.22vw, 1.34rem);
    line-height: 1.58;
  }

  .df-homepage .df-hero-visual {
    justify-self: stretch;
    align-self: stretch;
    max-width: 100%;
    width: 100%;
    min-height: clamp(560px, 48vw, 640px);
    height: clamp(560px, 48vw, 640px);
    transform: none;
    border-color: rgba(69, 213, 255, 0.28);
    box-shadow:
      0 22px 72px rgba(8, 17, 43, 0.5),
      inset 0 0 0 1px rgba(94, 234, 212, 0.07);
  }

  .df-homepage .df-hero-gridlines {
    opacity: 0.009 !important;
  }

  .df-homepage .df-hero-card-main {
    width: 64%;
    height: 40%;
    left: 18%;
    top: 21%;
  }

  .df-homepage .df-hero-card-float {
    width: 30%;
    height: 19%;
    left: 8%;
    top: 13%;
  }

  .df-homepage .df-hero-card-mini {
    width: 31%;
    height: 19%;
    right: 10%;
    bottom: 19%;
  }

  .df-homepage .df-hero-signal {
    left: 12%;
    bottom: 14%;
  }

  .df-homepage .df-hero-float-tag-1 {
    left: 4%;
    top: 10%;
  }

  .df-homepage .df-hero-float-tag-2 {
    right: 10%;
    bottom: 27%;
  }

  .df-homepage .df-hero-float-tag-3 {
    right: 18%;
    top: 58%;
  }
}

@media (max-width: 1199px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .df-homepage .df-hero-text {
    padding: 1.1rem 0.85rem 0.15rem;
  }

  .df-homepage .df-hero h1 {
    max-width: 100%;
    line-height: 1.14;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 100%;
    line-height: 1.56;
  }

  .df-homepage .df-hero-visual {
    margin-inline: auto;
    width: min(100%, 820px);
    min-height: clamp(350px, 62vw, 500px);
    height: clamp(350px, 62vw, 500px);
  }
}

@media (max-width: 760px) {
  .df-homepage .df-hero-text {
    padding: 0.95rem 0.75rem 0.05rem;
  }

  .df-homepage .df-hero-visual {
    width: 100%;
    min-height: 320px;
    height: 320px;
  }

  .df-homepage .df-hero-card-main {
    width: 74%;
    height: 43%;
    left: 14%;
    top: 19%;
  }

  .df-homepage .df-hero-card-float {
    width: 39%;
    height: 20%;
    left: 6%;
    top: 11%;
  }

  .df-homepage .df-hero-card-mini {
    width: 41%;
    height: 20%;
    right: 8%;
    bottom: 14%;
  }

  .df-homepage .df-hero-float-tag-2 {
    right: 9%;
    bottom: 23%;
  }
}

/* ================= GLOBAL TYPE REBALANCE (INDEX) ================= */
.df-homepage .df-hero h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.35rem) !important;
  line-height: 1.14 !important;
}

.df-homepage .df-hero-subtitle {
  font-size: clamp(0.98rem, 1.1vw, 1.18rem) !important;
  line-height: 1.55 !important;
  max-width: 50ch !important;
}

.df-homepage .df-section-header h2 {
  font-size: clamp(1.6rem, 2vw, 2.35rem) !important;
  line-height: 1.16 !important;
}

.df-homepage .df-section-header p {
  font-size: clamp(0.94rem, 1vw, 1.05rem) !important;
  line-height: 1.5 !important;
}

.df-homepage .df-hero-pill,
.df-homepage .df-hero-meta span,
.df-homepage .df-security-badge,
.df-homepage .df-builtfor-card h3 {
  font-size: 0.96rem !important;
}

.df-homepage .df-hero-stat-label {
  font-size: 0.76rem !important;
}

.df-homepage .df-hero-stat-value {
  font-size: 1.65rem !important;
}

@media (max-width: 980px) {
  .df-homepage .df-hero h1 {
    font-size: clamp(1.75rem, 8.1vw, 2.45rem) !important;
  }

  .df-homepage .df-hero-subtitle {
    font-size: 0.95rem !important;
  }

  .df-homepage .df-section-header h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.95rem) !important;
  }

  .df-homepage .df-section-header p {
    font-size: 0.92rem !important;
  }
}

/* ================= HEADER ALWAYS AVAILABLE ON SCROLL ================= */
:root {
  --df-header-height: 74px;
}

.df-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

body {
  padding-top: var(--df-header-height) !important;
}

@media (max-width: 760px) {
  :root {
    --df-header-height: 68px;
  }
}

/* ================= DOWNLOAD AUTH GATE ================= */
body.df-auth-gate-open {
  overflow: hidden;
}

.df-auth-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.df-auth-gate-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.df-auth-gate-dialog {
  position: relative;
  width: min(520px, calc(100% - 1.6rem));
  border-radius: 22px;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(8, 14, 30, 0.96), rgba(5, 10, 24, 0.96));
  border: 1px solid rgba(94, 234, 212, 0.24);
  box-shadow: 0 26px 58px rgba(2, 6, 23, 0.65), 0 0 24px rgba(56, 189, 248, 0.16);
}

.df-auth-gate-dialog h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  color: #f8fafc;
}

.df-auth-gate-dialog p {
  margin: 0 0 1.15rem;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.5;
}

.df-auth-gate-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.df-auth-gate-actions .df-btn {
  min-width: 150px;
  text-align: center;
}

.df-auth-gate-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #cbd5e1;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.df-auth-gate-close:hover {
  color: #fff;
  background: rgba(30, 41, 59, 0.92);
}

@media (max-width: 640px) {
  .df-auth-gate-dialog {
    padding: 1.05rem;
    border-radius: 18px;
  }

  .df-auth-gate-dialog h3 {
    font-size: 1.2rem;
  }

  .df-auth-gate-actions {
    flex-direction: column;
  }

  .df-auth-gate-actions .df-btn {
    width: 100%;
  }
}

/* ================= HERO CANVAS INTEGRATION ================= */
@keyframes df-ambient-pan {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(2.5%, -1.8%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes df-node-pulse {
  0%, 100% { transform: scale(1); opacity: 0.42; }
  50% { transform: scale(1.14); opacity: 0.68; }
}

.df-homepage .df-hero-visual {
  position: relative;
  overflow: visible;
}

.df-homepage .df-hero-canvas {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(88% 75% at 22% 18%, rgba(56, 189, 248, 0.12), transparent 72%),
    radial-gradient(72% 62% at 82% 16%, rgba(139, 92, 246, 0.13), transparent 74%),
    linear-gradient(155deg, rgba(5, 11, 25, 0.86), rgba(3, 7, 18, 0.9));
}

.df-homepage .df-hero-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 28, 0.22) 0 12%, transparent 12%),
    linear-gradient(180deg, rgba(6, 12, 28, 0.2) 0 14%, transparent 14%);
  opacity: 0.24;
  z-index: 0;
  pointer-events: none;
}

.df-homepage .df-hero-ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.df-homepage .df-hero-ambient-a {
  width: 280px;
  height: 280px;
  left: -40px;
  top: 10%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 68%);
  animation: df-ambient-pan 13s ease-in-out infinite;
}

.df-homepage .df-hero-ambient-b {
  width: 260px;
  height: 260px;
  right: -30px;
  top: 8%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  animation: df-ambient-pan 15s ease-in-out infinite reverse;
}

.df-homepage .df-hero-ambient-c {
  width: 240px;
  height: 240px;
  left: 34%;
  bottom: -60px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.14), transparent 72%);
  animation: df-ambient-pan 16s ease-in-out infinite;
}

.df-homepage .df-hero-canvas .df-hero-card,
.df-homepage .df-hero-canvas .df-hero-signal,
.df-homepage .df-hero-canvas .df-hero-float-tag {
  z-index: 2;
}

.df-homepage .df-hero-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #67e8f9 0%, #22d3ee 58%, rgba(34, 211, 238, 0.18) 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.45);
  z-index: 3;
  animation: df-node-pulse 3.4s ease-in-out infinite;
}

.df-homepage .df-hero-node-a {
  left: 22%;
  top: 46%;
}

.df-homepage .df-hero-node-b {
  right: 24%;
  bottom: 28%;
  animation-delay: 1.2s;
}

@media (max-width: 980px) {
  .df-homepage .df-hero-ambient-a,
  .df-homepage .df-hero-ambient-b,
  .df-homepage .df-hero-ambient-c {
    filter: blur(20px);
    opacity: 0.82;
  }

  .df-homepage .df-hero-canvas {
    border-radius: 20px;
  }
}

/* ================= HERO RELAYOUT (AERISIT + PROPORTIONAL) ================= */
@media (min-width: 1200px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr) !important;
    gap: clamp(1.4rem, 2vw, 2.4rem) !important;
    align-items: stretch !important;
  }

  .df-homepage .df-hero-text {
    max-width: none !important;
    min-height: clamp(540px, 50vh, 640px) !important;
    padding: clamp(1.8rem, 2.4vw, 2.8rem) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
  }

  .df-homepage .df-hero h1 {
    max-width: 16ch !important;
    font-size: clamp(2.15rem, 3.6vw, 3.45rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.015em !important;
    text-wrap: balance;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 60ch !important;
    font-size: clamp(1rem, 1.15vw, 1.2rem) !important;
    line-height: 1.62 !important;
  }

  .df-homepage .df-hero-meta,
  .df-homepage .df-hero-highlights,
  .df-homepage .df-hero-stats {
    width: 100%;
    max-width: 720px;
  }

  .df-homepage .df-hero-meta {
    gap: 0.6rem 0.8rem !important;
  }

  .df-homepage .df-hero-highlights {
    gap: 0.65rem 0.7rem !important;
  }

  .df-homepage .df-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
  }

  .df-homepage .df-hero-visual {
    justify-self: end !important;
    max-width: 760px !important;
    min-height: clamp(470px, 44vw, 560px) !important;
    height: clamp(470px, 44vw, 560px) !important;
    padding: clamp(0.7rem, 1.4vw, 1.25rem) !important;
  }

  .df-homepage .df-hero-card-main {
    width: 66% !important;
    height: 42% !important;
    left: 17% !important;
    top: 20% !important;
  }

  .df-homepage .df-hero-card-float {
    width: 31% !important;
    height: 19% !important;
    left: 8% !important;
    top: 13% !important;
  }

  .df-homepage .df-hero-card-mini {
    width: 32% !important;
    height: 19% !important;
    right: 10% !important;
    bottom: 17% !important;
  }

  .df-homepage .df-hero-float-tag-3 {
    right: 18% !important;
    top: 56% !important;
  }
}

@media (max-width: 1199px) {
  .df-homepage .df-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.05rem !important;
  }

  .df-homepage .df-hero-text {
    max-width: 100% !important;
    padding: 1.05rem 0.85rem 0.1rem !important;
    gap: 0.8rem !important;
  }

  .df-homepage .df-hero h1 {
    max-width: 100% !important;
    text-wrap: pretty;
  }

  .df-homepage .df-hero-subtitle {
    max-width: 100% !important;
  }
}

/* ================= HERO VISUAL SOFT BLEND (no harsh div outlines) ================= */
.df-homepage .df-hero-visual {
  border: 0 !important;
  outline: 0 !important;
  box-shadow:
    0 20px 46px rgba(2, 6, 23, 0.5),
    0 0 34px rgba(56, 189, 248, 0.12) !important;
  background:
    radial-gradient(70% 62% at 18% 20%, rgba(56, 189, 248, 0.12), transparent 72%),
    radial-gradient(62% 56% at 82% 18%, rgba(139, 92, 246, 0.12), transparent 74%),
    linear-gradient(155deg, rgba(5, 11, 27, 0.88), rgba(3, 8, 19, 0.9)) !important;
}

.df-homepage .df-hero-visual::before,
.df-homepage .df-hero-visual::after {
  border: 0 !important;
  box-shadow: none !important;
}

.df-homepage .df-hero-gridlines {
  opacity: 0.006 !important;
}

.df-homepage .df-hero-card,
.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini {
  border-color: rgba(94, 234, 212, 0.16) !important;
  box-shadow:
    0 14px 30px rgba(2, 6, 23, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02) !important;
}

.df-homepage .df-hero-card-main {
  width: 64% !important;
  height: 40% !important;
  left: 18% !important;
  top: 20% !important;
}

.df-homepage .df-hero-card-float {
  width: 29% !important;
  height: 18% !important;
  left: 9% !important;
  top: 13% !important;
}

.df-homepage .df-hero-card-mini {
  width: 30% !important;
  height: 18% !important;
  right: 11% !important;
  bottom: 18% !important;
}

.df-homepage .df-hero-float-tag-1 {
  left: 5% !important;
  top: 10% !important;
}

.df-homepage .df-hero-float-tag-2 {
  right: 11% !important;
  bottom: 25% !important;
}

.df-homepage .df-hero-float-tag-3 {
  right: 19% !important;
  top: 57% !important;
}

@media (max-width: 980px) {
  .df-homepage .df-hero-visual {
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45) !important;
  }

  .df-homepage .df-hero-card-main {
    width: 74% !important;
    height: 44% !important;
    left: 13% !important;
    top: 19% !important;
  }

  .df-homepage .df-hero-card-float {
    width: 40% !important;
    height: 20% !important;
    left: 6% !important;
    top: 11% !important;
  }

  .df-homepage .df-hero-card-mini {
    width: 42% !important;
    height: 20% !important;
    right: 8% !important;
    bottom: 14% !important;
  }
}

/* ================= TOP CORNERS OFF (keep bottom corners) ================= */
.df-homepage .df-hero {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.df-homepage .df-hero::after {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.df-homepage .df-hero-text,
.df-homepage .df-hero-visual {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}


/* ================= HEADER ALWAYS VISIBLE ================= */
:root {
  --df-header-height: 74px;
}

.df-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999 !important;
}

body {
  padding-top: var(--df-header-height) !important;
}

@media (max-width: 760px) {
  :root {
    --df-header-height: 68px;
  }
}

/* ================= HERO VISUAL INTEGRATION + EXTRA ANIMATION ================= */
@keyframes df-hero-float-soft {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes df-hero-pulse-soft {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.42; }
}

.df-homepage .df-hero-visual {
  border: 0 !important;
  outline: 0 !important;
  background: linear-gradient(155deg, rgba(6, 12, 28, 0.72), rgba(5, 10, 22, 0.76)) !important;
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.48),
    0 0 34px rgba(56, 189, 248, 0.1) !important;
  overflow: hidden;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(58% 52% at 16% 26%, rgba(56, 189, 248, 0.2), transparent 70%),
    radial-gradient(56% 52% at 84% 22%, rgba(139, 92, 246, 0.2), transparent 74%),
    radial-gradient(48% 44% at 48% 88%, rgba(94, 234, 212, 0.12), transparent 76%);
  filter: blur(22px);
  opacity: 0.62;
  z-index: 0;
  pointer-events: none;
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 30, 0.65) 0 12%, transparent 12%),
    linear-gradient(180deg, rgba(8, 14, 30, 0.52) 0 14%, transparent 14%);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.df-homepage .df-hero-gridlines {
  opacity: 0.004 !important;
}

.df-homepage .df-hero-ring {
  opacity: 0.2 !important;
  animation: df-hero-pulse-soft 6.2s ease-in-out infinite;
}

.df-homepage .df-hero-beam {
  opacity: 0.16 !important;
}

.df-homepage .df-hero-orb {
  opacity: 0.26 !important;
  animation: df-hero-float-soft 8.2s ease-in-out infinite;
}

.df-homepage .df-hero-orb-2 {
  animation-delay: 1.2s;
}

.df-homepage .df-hero-orb-3 {
  animation-delay: 2.1s;
}

.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini {
  border-color: rgba(94, 234, 212, 0.14) !important;
  box-shadow:
    0 12px 26px rgba(2, 6, 23, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018) !important;
}

.df-homepage .df-hero-card-float {
  animation: df-hero-float-soft 7.4s ease-in-out infinite;
}

.df-homepage .df-hero-card-mini {
  animation: df-hero-float-soft 8.6s ease-in-out infinite;
  animation-delay: 0.9s;
}

.df-homepage .df-hero-text {
  gap: 1.15rem !important;
}

.df-homepage .df-hero h1 {
  max-width: 17ch !important;
  line-height: 1.17 !important;
}

.df-homepage .df-hero-subtitle {
  max-width: 58ch !important;
  line-height: 1.64 !important;
  letter-spacing: 0.004em;
}

.df-homepage .df-hero-signal {
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.22));
}

.df-homepage .df-hero-float-tag {
  border-color: rgba(94, 234, 212, 0.2) !important;
  background: rgba(8, 14, 28, 0.68) !important;
}

@media (max-width: 980px) {
  .df-homepage .df-hero-visual::after {
    opacity: 0.14;
  }

  .df-homepage .df-hero-orb {
    opacity: 0.2 !important;
  }
}

/* ================= HERO VISUAL DEEP BLEND FINAL ================= */
@keyframes df-hero-ambient-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(1.8%, -1.2%, 0) scale(1.03); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

.df-homepage .df-hero-visual {
  isolation: isolate;
  border-radius: 28px;
  background:
    radial-gradient(95% 78% at 26% 18%, rgba(56, 189, 248, 0.12), transparent 74%),
    radial-gradient(82% 75% at 82% 16%, rgba(139, 92, 246, 0.12), transparent 74%),
    radial-gradient(78% 70% at 46% 86%, rgba(94, 234, 212, 0.08), transparent 78%),
    linear-gradient(160deg, rgba(4, 10, 24, 0.72), rgba(3, 8, 19, 0.78)) !important;
  box-shadow:
    0 16px 38px rgba(2, 6, 23, 0.42),
    0 0 22px rgba(56, 189, 248, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02) !important;
  border: 0 !important;
}

.df-homepage .df-hero-visual::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(50% 44% at 18% 28%, rgba(56, 189, 248, 0.2), transparent 72%),
    radial-gradient(56% 46% at 82% 20%, rgba(139, 92, 246, 0.18), transparent 74%),
    radial-gradient(45% 36% at 48% 84%, rgba(34, 197, 94, 0.08), transparent 74%);
  filter: blur(28px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
  animation: df-hero-ambient-drift 11s ease-in-out infinite;
}

.df-homepage .df-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 105% at 50% 56%, transparent 56%, rgba(5, 10, 24, 0.34) 84%),
    linear-gradient(90deg, rgba(4, 10, 24, 0.38) 0 11%, transparent 11%),
    linear-gradient(180deg, rgba(4, 10, 24, 0.32) 0 12%, transparent 12%);
  opacity: 0.56;
  z-index: 1;
  pointer-events: none;
}

.df-homepage .df-hero-gridlines {
  opacity: 0.0035 !important;
}

.df-homepage .df-hero-card-main,
.df-homepage .df-hero-card-float,
.df-homepage .df-hero-card-mini {
  background: linear-gradient(150deg, rgba(7, 14, 32, 0.86), rgba(6, 12, 28, 0.9)) !important;
  border: 1px solid rgba(94, 234, 212, 0.12) !important;
  box-shadow:
    0 10px 24px rgba(2, 6, 23, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015) !important;
}

.df-homepage .df-hero-card-main {
  backdrop-filter: blur(3px);
}

.df-homepage .df-hero-card-float {
  filter: saturate(0.95);
  opacity: 0.92;
}

.df-homepage .df-hero-card-mini {
  opacity: 0.9;
}

.df-homepage .df-hero-float-tag {
  background: rgba(8, 14, 28, 0.62) !important;
  border-color: rgba(94, 234, 212, 0.14) !important;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.28) !important;
}

.df-homepage .df-hero-signal {
  opacity: 0.85;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.18));
}

.df-homepage .df-hero-ring,
.df-homepage .df-hero-beam,
.df-homepage .df-hero-shard {
  opacity: 0.16 !important;
}

@media (max-width: 980px) {
  .df-homepage .df-hero-visual::before {
    opacity: 0.32;
  }

  .df-homepage .df-hero-visual::after {
    opacity: 0.36;
  }
}

/* ================= SCROLL CONTAINER NORMALIZATION (GLOBAL) ================= */
html,
body {
  height: 100%;
}

html {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  scrollbar-gutter: auto !important;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

body.df-auth-gate-open {
  overflow: hidden !important;
}

/* ================= GLOBAL SCROLLBAR SYSTEM ================= */
html,
body {
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 211, 252, 0.78) rgba(3, 10, 24, 0.9);
}

*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

*::-webkit-scrollbar-track {
  background: rgba(3, 10, 24, 0.9);
  border-left: 1px solid rgba(148, 163, 184, 0.16);
}

*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(3, 10, 24, 0.95);
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.9), rgba(56, 189, 248, 0.86));
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(134, 239, 172, 0.95), rgba(56, 189, 248, 0.92));
}

*::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

/* ================= ACCOUNT PAGE 2026 EXPERIENCE ================= */
@keyframes df-account-mesh-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.8%, -1.2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes df-account-panel-fade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes df-account-card-sheen {
  0% {
    transform: translateX(-140%) rotate(15deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(220%) rotate(15deg);
    opacity: 0;
  }
}

@keyframes df-health-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.2);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(34, 211, 238, 0);
  }
}

body.df-account-page::before {
  inset: -30%;
  background:
    radial-gradient(48% 40% at 20% 22%, rgba(56, 189, 248, 0.2), transparent 72%),
    radial-gradient(42% 38% at 82% 18%, rgba(94, 234, 212, 0.2), transparent 72%),
    radial-gradient(40% 34% at 70% 82%, rgba(167, 139, 250, 0.14), transparent 74%);
  opacity: 0.7;
  filter: blur(24px);
  animation: df-account-mesh-drift 19s ease-in-out infinite;
}

body.df-account-page::after {
  background-size: 100px 100px;
  opacity: 0.14;
}

body.df-account-page .df-page-main {
  position: relative;
  overflow: visible;
}

body.df-account-page .df-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 280px at 18% 8%, rgba(56, 189, 248, 0.11), transparent 70%),
    radial-gradient(560px 280px at 82% 12%, rgba(94, 234, 212, 0.1), transparent 72%);
  pointer-events: none;
  opacity: 0.75;
}

body.df-account-page .df-page-main > .df-container {
  position: relative;
  z-index: 1;
}

body.df-account-page .df-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.df-account-header-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(8, 14, 30, 0.72);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.36);
  max-width: 290px;
}

.df-account-header-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #052036;
  background: linear-gradient(135deg, #5eead4, #38bdf8);
}

.df-account-header-meta {
  display: grid;
  min-width: 0;
}

.df-account-header-meta strong {
  font-size: 0.8rem;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-account-header-meta small {
  font-size: 0.68rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-account-header-meta small[data-tone="good"] {
  color: #86efac;
}

.df-account-header-meta small[data-tone="warn"] {
  color: #fde68a;
}

.df-account-header-meta small[data-tone="risk"] {
  color: #fda4af;
}

.df-account-top-actions {
  margin: 0.35rem 0 1.15rem auto;
  width: fit-content;
  max-width: 100%;
  padding: 0.48rem 0.55rem;
  border-radius: 13px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(150deg, rgba(8, 14, 30, 0.82), rgba(7, 12, 24, 0.86));
  box-shadow:
    0 14px 30px rgba(2, 6, 23, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.df-account-top-btn {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 0.46rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.df-account-top-btn:hover,
.df-account-top-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(94, 234, 212, 0.62);
  background: rgba(30, 41, 59, 0.95);
}

.df-account-top-btn.is-primary {
  border-color: rgba(94, 234, 212, 0.56);
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.2), rgba(56, 189, 248, 0.2));
  color: #ccfbf1;
}

.df-account-overview {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.df-account-hero-card {
  grid-column: span 4;
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(155deg, rgba(8, 14, 30, 0.9), rgba(8, 13, 25, 0.9));
  box-shadow:
    0 24px 48px rgba(2, 6, 23, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.df-account-hero-card::before,
body.df-account-page .df-account-panel::before,
body.df-account-page .df-account-card::before {
  content: "";
  position: absolute;
  top: -160%;
  left: -38%;
  width: 42%;
  height: 360%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-140%) rotate(15deg);
  pointer-events: none;
}

.df-account-hero-card:hover,
body.df-account-page .df-account-panel:hover,
body.df-account-page .df-account-card:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 234, 212, 0.38);
  box-shadow:
    0 26px 58px rgba(2, 6, 23, 0.55),
    0 0 20px rgba(56, 189, 248, 0.12);
}

.df-account-hero-card:hover::before,
body.df-account-page .df-account-panel:hover::before,
body.df-account-page .df-account-card:hover::before {
  animation: df-account-card-sheen 0.95s ease;
}

.df-account-identity-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.df-account-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #052036;
  background: linear-gradient(140deg, #5eead4, #38bdf8);
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.3);
}

.df-account-identity-kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.df-account-identity-title {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  color: #f8fafc;
  max-width: 17ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-account-identity-email {
  margin: 0.28rem 0 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-account-identity-footer {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.6rem;
}

.df-account-status-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
}

.df-account-status-pill.is-good {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.58);
  background: rgba(20, 83, 45, 0.32);
}

.df-account-status-pill.is-warn {
  color: #fde68a;
  border-color: rgba(234, 179, 8, 0.58);
  background: rgba(120, 53, 15, 0.3);
}

.df-account-status-pill.is-risk {
  color: #fda4af;
  border-color: rgba(251, 113, 133, 0.52);
  background: rgba(127, 29, 29, 0.32);
}

.df-account-hero-message {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
  color: #cbd5e1;
}

.df-account-health-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.df-health-level {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
}

.df-health-level.is-good {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.58);
}

.df-health-level.is-warn {
  color: #fde68a;
  border-color: rgba(234, 179, 8, 0.58);
}

.df-health-level.is-risk {
  color: #fda4af;
  border-color: rgba(251, 113, 133, 0.56);
}

.df-health-ring-wrap {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.df-health-ring {
  --df-health-score: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(6, 11, 24, 0.96) 62%, transparent 64%),
    conic-gradient(#22d3ee calc(var(--df-health-score) * 1%), rgba(30, 41, 59, 0.9) 0);
  border: 1px solid rgba(56, 189, 248, 0.38);
  animation: df-health-pulse 2.4s ease-in-out infinite;
}

.df-health-score {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f8fafc;
}

.df-health-caption {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.52;
  color: #cbd5e1;
  max-width: 32ch;
}

.df-health-factors {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.df-health-factor {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.26rem 0.54rem;
  border-radius: 999px;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: rgba(15, 23, 42, 0.64);
}

.df-health-factor.is-ok {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.56);
  background: rgba(20, 83, 45, 0.24);
}

.df-account-activity-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.df-account-activity-live {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a5f3fc;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  background: rgba(12, 74, 110, 0.3);
}

.df-account-empty-state {
  margin: 0.72rem 0 0;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  padding: 0.68rem 0.75rem;
  background: rgba(15, 23, 42, 0.38);
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.df-activity-list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.df-activity-item {
  display: grid;
  grid-template-columns: 0.44rem 1fr auto;
  gap: 0.55rem;
  align-items: start;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.54);
  padding: 0.56rem 0.62rem;
}

.df-activity-dot {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  margin-top: 0.34rem;
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.df-activity-item.is-success .df-activity-dot {
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}

.df-activity-item.is-warning .df-activity-dot {
  background: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
}

.df-activity-item strong {
  display: block;
  margin-bottom: 0.12rem;
  color: #f8fafc;
  font-size: 0.84rem;
}

.df-activity-item span {
  color: #94a3b8;
  font-size: 0.76rem;
}

.df-activity-time {
  font-size: 0.72rem;
  color: #64748b;
  white-space: nowrap;
  margin-top: 0.06rem;
}

body.df-account-page .df-account-grid {
  margin-top: 0.4rem;
  max-width: 1200px;
}

body.df-account-page .df-account-grid section {
  max-width: none;
}

body.df-account-page .df-account-panel {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(160deg, rgba(10, 16, 32, 0.92), rgba(7, 12, 26, 0.94));
  box-shadow:
    0 26px 56px rgba(2, 6, 23, 0.56),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  overflow: hidden;
  position: relative;
}

body.df-account-page .df-account-panel > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 1rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  position: relative;
}

body.df-account-page .df-account-panel > summary::-webkit-details-marker {
  display: none;
}

body.df-account-page .df-account-panel > summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 1.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1;
}

body.df-account-page .df-account-panel[open] > summary::after {
  content: "-";
}

.df-account-panel-title {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.df-account-panel-meta {
  color: #94a3b8;
  font-size: 0.82rem;
}

.df-account-panel-body {
  padding: 1rem 1.05rem 1.15rem;
}

body.df-account-page .df-account-panel[open] > .df-account-panel-body {
  animation: df-account-panel-fade 0.28s ease;
}

.df-inline-feedback {
  margin-top: 0.6rem;
  font-size: 0.84rem;
  border-radius: 10px;
  padding: 0.48rem 0.56rem;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #cbd5e1;
  display: none;
}

.df-inline-feedback.is-visible {
  display: block;
}

.df-inline-feedback.is-success {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(20, 83, 45, 0.2);
}

.df-inline-feedback.is-error {
  color: #fda4af;
  border-color: rgba(251, 113, 133, 0.4);
  background: rgba(127, 29, 29, 0.2);
}

.df-security-metrics {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.df-security-metric {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.56);
  padding: 0.58rem 0.62rem;
}

.df-security-metric-label {
  display: block;
  color: #94a3b8;
  font-size: 0.74rem;
  margin-bottom: 0.16rem;
}

.df-security-metric strong {
  font-size: 0.86rem;
  color: #f8fafc;
}

.df-security-toggles {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.62rem;
}

.df-security-provider-note {
  margin: 0.55rem 0 0.25rem;
  color: #93c5fd;
  font-size: 0.8rem;
  line-height: 1.5;
}

#df-security-center {
  margin-top: 1.45rem;
  padding: 1.3rem 1.25rem 1.35rem;
}

#df-security-center .df-account-card-header {
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 0.85rem;
}

#df-security-center .df-account-card-header h3 {
  line-height: 1.24;
  max-width: 26ch;
}

#df-security-center .df-tagline {
  margin-bottom: 0.68rem;
}

#df-security-center .df-security-provider-note {
  margin: 0 0 0.92rem;
  font-size: 0.86rem;
  line-height: 1.58;
}

#df-security-center .df-security-metrics {
  margin-top: 0;
  gap: 0.72rem;
}

#df-security-center .df-security-toggles {
  margin-top: 1rem;
  gap: 0.74rem;
}

#df-security-center .df-account-actions {
  margin-top: 1.05rem;
}

.df-switch-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.54);
  padding: 0.6rem 0.7rem;
}

.df-switch-row strong {
  display: block;
  color: #f8fafc;
  font-size: 0.87rem;
}

.df-switch-row small {
  display: block;
  color: #94a3b8;
  font-size: 0.75rem;
  margin-top: 0.1rem;
  line-height: 1.4;
}

.df-switch-content {
  display: grid;
  gap: 0.2rem;
}

.df-security-link {
  justify-self: start;
  margin-top: 0.2rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(8, 13, 30, 0.72);
  color: #93c5fd;
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.df-security-link:hover,
.df-security-link:focus-visible {
  border-color: rgba(94, 234, 212, 0.62);
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

.df-totp-setup {
  margin-top: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  background: linear-gradient(150deg, rgba(8, 14, 30, 0.82), rgba(7, 12, 24, 0.86));
}

.df-totp-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f8fafc;
}

.df-totp-subtitle {
  margin: 0.28rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.df-totp-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.df-totp-qr {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  object-fit: contain;
  padding: 0.24rem;
}

.df-totp-manual {
  display: grid;
  gap: 0.35rem;
}

.df-totp-manual-label {
  margin: 0;
  color: #93c5fd;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.df-totp-secret-key {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 0.34rem 0.46rem;
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.42);
  background: rgba(15, 23, 42, 0.62);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
}

.df-totp-code-label {
  display: block;
  margin-top: 0.7rem;
  margin-bottom: 0.35rem;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
}

.df-totp-code-input {
  max-width: 170px;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-family: "Space Grotesk", "Poppins", system-ui, sans-serif;
}

.df-switch {
  appearance: none;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.df-switch::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  left: 3px;
  top: 3px;
  background: #cbd5e1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.df-switch:checked {
  background: linear-gradient(120deg, rgba(45, 212, 191, 0.75), rgba(56, 189, 248, 0.75));
  border-color: rgba(94, 234, 212, 0.7);
}

.df-switch:checked::before {
  transform: translateX(19px);
  background: #052036;
}

.df-switch:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.8);
  outline-offset: 2px;
}

.df-account-toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  min-width: min(450px, calc(100vw - 1.6rem));
  max-width: min(450px, calc(100vw - 1.6rem));
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(8, 14, 30, 0.92);
  box-shadow: 0 22px 38px rgba(2, 6, 23, 0.56);
  color: #e5e7eb;
  font-size: 0.86rem;
  line-height: 1.45;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.df-account-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.df-account-toast.is-success {
  border-color: rgba(74, 222, 128, 0.48);
  color: #86efac;
}

.df-account-toast.is-error {
  border-color: rgba(251, 113, 133, 0.5);
  color: #fda4af;
}

.df-account-toast.is-info {
  border-color: rgba(56, 189, 248, 0.52);
  color: #bae6fd;
}

@media (max-width: 1280px) {
  .df-account-overview {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .df-account-hero-card {
    grid-column: span 3;
  }
}

@media (max-width: 1024px) {
  .df-account-top-actions {
    margin-top: 0.6rem;
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .df-account-overview {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .df-account-hero-card {
    grid-column: 1 / -1;
  }

  .df-security-metrics {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .df-account-top-btn {
    padding: 0.42rem 0.68rem;
    font-size: 0.77rem;
  }
}

@media (max-width: 700px) {
  .df-account-header-chip {
    max-width: 46vw;
  }

  .df-account-header-meta small {
    display: none;
  }

  .df-account-header-meta strong {
    font-size: 0.74rem;
  }

  .df-health-ring-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .df-health-ring {
    width: 88px;
    height: 88px;
  }

  .df-account-panel-body {
    padding: 0.9rem 0.85rem 1rem;
  }

  #df-security-center {
    padding: 1.05rem 0.95rem 1.1rem;
  }

  #df-security-center .df-account-card-header {
    gap: 0.78rem;
    margin-bottom: 0.72rem;
  }

  #df-security-center .df-account-card-header h3 {
    max-width: none;
  }

  .df-totp-grid {
    grid-template-columns: 1fr;
  }

  .df-totp-qr {
    width: 120px;
    height: 120px;
  }
}

/* ========== Cross-Device Safety Layer ========== */
html,
body {
  max-width: 100%;
}

body,
body.df-homepage,
body.df-page,
body.df-legal-page,
body.df-auth-shell,
body.df-download-shell,
body.df-reset-page {
  overflow-x: hidden;
  overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

:where(
  .df-container,
  .df-page-main,
  .df-legal-main,
  .df-auth-main,
  .df-download-main,
  .df-checkout-success-main,
  .df-reset-shell,
  .df-page-content,
  .df-hero-grid,
  .df-features-grid,
  .df-steps-grid,
  .df-pricing-grid,
  .df-download-grid,
  .df-download-stack,
  .df-security-grid,
  .df-support-grid,
  .df-account-grid,
  .df-account-overview,
  .df-security-metrics,
  .df-privacy-summary-grid,
  .df-privacy-controls-grid,
  .df-terms-meta-grid,
  .df-terms-clause-grid,
  .df-terms-actions-grid
) > * {
  min-width: 0;
}

:where(
  .df-homepage .df-compare-table-wrap,
  .df-privacy-map-wrap,
  .df-terms-matrix-wrap
) {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.df-lang-menu {
  max-width: min(92vw, 260px);
}

@media (max-width: 980px) {
  .df-container {
    width: min(1120px, calc(100% - 1.6rem));
  }

  :where(
    .df-hero-cta,
    .df-support-actions,
    .df-checkout-success-actions,
    .df-privacy-machine-actions,
    .df-privacy-trust-actions,
    .df-account-actions,
    .df-account-top-actions,
    .df-404-actions
  ) {
    flex-wrap: wrap;
  }

  :where(
    .df-hero-cta,
    .df-support-actions,
    .df-checkout-success-actions,
    .df-privacy-machine-actions,
    .df-privacy-trust-actions,
    .df-account-actions,
    .df-account-top-actions,
    .df-404-actions
  ) .df-btn {
    min-width: 0;
    max-width: 100%;
  }

  .df-homepage .df-hero-stats,
  .df-homepage .df-features-grid,
  .df-homepage .df-steps-grid,
  .df-homepage .df-security-grid,
  .df-homepage .df-logo-wall,
  .df-homepage .df-support-grid,
  .df-homepage .df-pricing-grid,
  .df-homepage .df-download-grid,
  .df-homepage .df-download-stack {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .df-homepage .df-hero-visual {
    min-height: 300px;
  }

  .df-account-grid,
  .df-account-overview,
  .df-security-metrics,
  .df-privacy-summary-grid,
  .df-privacy-controls-grid,
  .df-terms-meta-grid,
  .df-terms-clause-grid,
  .df-terms-actions-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .df-container {
    width: min(1120px, calc(100% - 1.15rem));
  }

  .df-header-inner {
    gap: 0.6rem;
  }

  .df-lang-menu {
    right: 0;
    left: auto;
  }

  .df-404-shell,
  .df-checkout-success-card,
  .df-auth-card,
  .df-page-content:not(.df-legal-content),
  .df-legal-content,
  .df-account-card {
    border-radius: 16px;
  }

  .df-404-actions .df-btn,
  .df-checkout-success-actions .df-btn,
  .df-hero-cta .df-btn,
  .df-support-actions .df-btn,
  .df-account-actions .df-btn,
  .df-account-top-actions .df-btn {
    width: 100%;
    justify-content: center;
  }

  .df-homepage .df-hero-subtitle,
  .df-checkout-success-body {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .df-mobile-nav {
    width: min(95vw, 520px);
    padding: 0.75rem 0.75rem 0.95rem;
  }

  .df-hero {
    padding-top: 2.7rem;
    padding-bottom: 2.9rem;
  }

  .df-hero-visual {
    min-height: 260px !important;
  }

  .df-404-code {
    font-size: clamp(4rem, 28vw, 6.2rem);
  }

  .df-account-toast {
    min-width: min(calc(100vw - 1rem), 420px);
    max-width: min(calc(100vw - 1rem), 420px);
  }
}

/* ================= SUPPORT COMPOSER ================= */
.df-support-composer-overlay {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.df-support-composer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.df-support-composer {
  width: min(640px, 100%);
  max-height: min(92vh, 700px);
  overflow-y: auto;
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.1rem;
  background: linear-gradient(140deg, rgba(8, 14, 32, 0.97), rgba(5, 10, 24, 0.97));
  border: 1px solid rgba(94, 234, 212, 0.24);
  box-shadow: 0 24px 54px rgba(2, 6, 23, 0.62), 0 0 24px rgba(56, 189, 248, 0.14);
  position: relative;
}

.df-support-composer-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 33px;
  height: 33px;
  border-radius: 999px;
  border: 1px solid rgba(100, 116, 139, 0.45);
  background: rgba(15, 23, 42, 0.9);
  color: #cbd5e1;
  font-size: 1.28rem;
  line-height: 1;
  cursor: pointer;
}

.df-support-composer-close:hover {
  background: rgba(30, 41, 59, 0.95);
  color: #ffffff;
}

.df-support-composer h3 {
  margin: 0 2.2rem 0.45rem 0;
  color: #f8fafc;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  letter-spacing: 0.01em;
}

.df-support-composer-body {
  margin: 0 0 0.95rem;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.55;
}

.df-support-composer-email-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  border: 1px solid rgba(71, 85, 105, 0.52);
  border-radius: 14px;
  padding: 0.55rem 0.65rem;
  background: rgba(9, 16, 36, 0.8);
  margin-bottom: 0.95rem;
}

.df-support-composer-email {
  color: #7dd3fc;
  font-family: "IBM Plex Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.df-support-composer-copy {
  min-width: 110px;
}

.df-support-composer-copy.is-copied {
  border-color: rgba(45, 212, 191, 0.55);
  color: #a7f3d0;
}

.df-support-composer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.df-support-composer-actions .df-btn {
  width: 100%;
  justify-content: center;
}

.df-support-composer-note {
  margin: 0.95rem 0 0;
  color: rgba(148, 163, 184, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .df-support-composer {
    border-radius: 18px;
    padding: 1rem 0.95rem;
  }

  .df-support-composer-email-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .df-support-composer-copy {
    width: 100%;
    min-width: 0;
  }

  .df-support-composer-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}
