/* ============================================================
   Dynova Health — gateway-derived visual system
   Keeps the product site visually connected to the three-way
   Dynova entrance without changing any application behaviour.
   ============================================================ */

:root {
  color-scheme: dark;
  --dh-bg: #02071d;
  --dh-bg-deep: #010416;
  --dh-surface: rgba(8, 16, 46, 0.78);
  --dh-surface-strong: #08102d;
  --dh-surface-soft: rgba(15, 25, 63, 0.68);
  --dh-line: rgba(158, 143, 255, 0.16);
  --dh-line-strong: rgba(158, 143, 255, 0.32);
  --dh-text: #f7f8ff;
  --dh-muted: rgba(231, 235, 255, 0.64);
  --dh-violet: #8b72ff;
  --dh-blue: #438eff;
  --dh-magenta: #c660e0;
  --l-bg-white: #08102d;
  --l-bg-gray: #030820;
  --l-text-main: #f7f8ff;
  --l-text-muted: rgba(231, 235, 255, 0.64);
  --l-text-light: rgba(231, 235, 255, 0.42);
  --l-border-light: rgba(158, 143, 255, 0.16);
}

html,
body.dn-health-site {
  background: var(--dh-bg) !important;
}

html {
  min-height: 100%;
  height: auto !important;
}

body.dn-health-site {
  position: relative;
  display: flex !important;
  flex-direction: column;
  min-height: 100vh !important;
  height: auto !important;
  color: var(--dh-text);
  isolation: isolate;
}

body.dn-health-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58rem 38rem at 7% 18%, rgba(77, 66, 196, 0.15), transparent 70%),
    radial-gradient(54rem 42rem at 96% 72%, rgba(29, 91, 191, 0.1), transparent 72%),
    linear-gradient(180deg, #02071d 0%, #03081e 52%, #010416 100%);
}

body.dn-health-site > main {
  position: relative;
  background: transparent;
}

body.dn-health-site .dn-main {
  flex: 1 0 auto !important;
  width: 100%;
  min-height: 55vh;
}

body.dn-health-site > main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(144, 128, 255, 0.08) 50%, transparent calc(50% + 1px));
}

/* Navigation — same quiet, architectural treatment as the gateway. */
body.dn-health-site .dn-nav {
  background: rgba(2, 7, 29, 0.76) !important;
  border-bottom: 1px solid var(--dh-line) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.dn-brand--navbar-wordmark {
  flex: 0 0 auto;
}

.dn-brand__navbar-logo {
  display: block;
  width: auto;
  height: 2.7rem;
  max-width: 9rem;
  object-fit: contain;
  filter: drop-shadow(0 0 1rem rgba(121, 101, 255, 0.14));
}

body.dn-health-site .dn-nav__link {
  color: rgba(239, 242, 255, 0.64) !important;
  letter-spacing: 0.005em;
}

body.dn-health-site .dn-nav__link:hover,
body.dn-health-site .dn-nav__link:focus-visible {
  color: #fff !important;
}

body.dn-health-site .dn-nav__user-actions {
  gap: 0.55rem;
}

body.dn-health-site .dn-nav__logout-form {
  display: flex;
  margin: 0;
}

body.dn-health-site .dn-nav__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(158, 143, 255, 0.18);
  border-radius: 0.65rem;
  color: rgba(239, 242, 255, 0.62);
  background: rgba(139, 114, 255, 0.045);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

body.dn-health-site .dn-nav__logout:hover,
body.dn-health-site .dn-nav__logout:focus-visible {
  color: #fff;
  border-color: rgba(158, 143, 255, 0.38);
  background: rgba(139, 114, 255, 0.12);
}

body.dn-health-site .dn-nav__cta {
  border: 1px solid rgba(190, 179, 255, 0.2);
  background: linear-gradient(120deg, #735cff, #8970ff) !important;
  box-shadow: 0 12px 34px -16px rgba(111, 88, 255, 0.85);
}

body.dn-health-site .lang-switcher {
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.035) !important;
}

/* Mobile navigation follows the same dark system instead of opening white. */
body.dn-health-site .mobile-nav {
  color: var(--dh-text);
  background:
    radial-gradient(circle at 12% 5%, rgba(107, 82, 238, 0.2), transparent 38%),
    linear-gradient(180deg, #030922, #010416) !important;
}

body.dn-health-site .mobile-nav__top {
  border-color: var(--dh-line);
}

body.dn-health-site .mobile-nav__brand--wordmark {
  width: auto;
}

body.dn-health-site .mobile-nav__brand-logo {
  display: block;
  width: auto;
  height: 2.5rem;
  max-width: 8.4rem;
  object-fit: contain;
}

body.dn-health-site .mobile-nav__close {
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

body.dn-health-site .mobile-nav__close:hover {
  color: #fff;
  background: rgba(139, 114, 255, 0.12);
}

body.dn-health-site .mobile-nav__link {
  color: rgba(247, 248, 255, 0.86);
  border-color: var(--dh-line);
}

body.dn-health-site .mobile-nav__link:hover,
body.dn-health-site .mobile-nav__link:focus {
  color: #a896ff;
}

body.dn-health-site .mobile-nav__section-title,
body.dn-health-site .mobile-nav__footer {
  color: rgba(231, 235, 255, 0.42);
}

body.dn-health-site .mobile-nav__user {
  border-color: var(--dh-line);
}

body.dn-health-site .mobile-nav__user-name,
body.dn-health-site .mobile-nav__signin {
  color: var(--dh-text);
}

body.dn-health-site .mobile-nav__signin {
  border-color: var(--dh-line-strong);
}

body.dn-health-site .mobile-nav .lang-switcher {
  background: rgba(255, 255, 255, 0.045) !important;
}

body.dn-health-site .mobile-nav .lang-switcher__btn {
  color: rgba(255, 255, 255, 0.58) !important;
}

/* Legacy light pages receive a non-invasive dark/glass translation. */
body.dn-health-site main .bg-white,
body.dn-health-site main section.bg-white,
body.dn-health-site main div.bg-white {
  background-color: var(--dh-surface) !important;
}

body.dn-health-site main .bg-gray-50,
body.dn-health-site main section.bg-gray-50,
body.dn-health-site main .bg-gray-100 {
  background-color: rgba(3, 8, 31, 0.74) !important;
}

body.dn-health-site main .bg-green-50,
body.dn-health-site main .bg-green-100,
body.dn-health-site main .bg-emerald-50,
body.dn-health-site main .bg-purple-50 {
  background-color: rgba(120, 97, 255, 0.1) !important;
}

body.dn-health-site main .text-gray-900,
body.dn-health-site main .text-gray-800,
body.dn-health-site main .text-gray-700,
body.dn-health-site main .text-black {
  color: var(--dh-text) !important;
}

body.dn-health-site main .text-gray-600,
body.dn-health-site main .text-gray-500,
body.dn-health-site main .text-gray-400 {
  color: var(--dh-muted) !important;
}

body.dn-health-site main .text-green-800,
body.dn-health-site main .text-green-700,
body.dn-health-site main .text-green-600,
body.dn-health-site main .text-green-500,
body.dn-health-site main .text-emerald-700,
body.dn-health-site main .text-emerald-600 {
  color: #a996ff !important;
}

body.dn-health-site main .border-gray-100,
body.dn-health-site main .border-gray-200,
body.dn-health-site main .border-gray-300,
body.dn-health-site main .border-green-100,
body.dn-health-site main .border-green-200,
body.dn-health-site main .divide-gray-100 > :not([hidden]) ~ :not([hidden]),
body.dn-health-site main .divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--dh-line) !important;
}

body.dn-health-site main .shadow,
body.dn-health-site main .shadow-sm,
body.dn-health-site main .shadow-md,
body.dn-health-site main .shadow-lg,
body.dn-health-site main .shadow-xl,
body.dn-health-site main .shadow-2xl {
  box-shadow: 0 28px 70px -42px rgba(0, 0, 0, 0.92), inset 0 1px rgba(255, 255, 255, 0.025) !important;
}

body.dn-health-site main input:not([type="checkbox"]):not([type="radio"]),
body.dn-health-site main select,
body.dn-health-site main textarea {
  color: var(--dh-text) !important;
  background: rgba(4, 10, 34, 0.88) !important;
  border-color: var(--dh-line-strong) !important;
}

body.dn-health-site main input::placeholder,
body.dn-health-site main textarea::placeholder {
  color: rgba(231, 235, 255, 0.36) !important;
}

body.dn-health-site main input:focus,
body.dn-health-site main select:focus,
body.dn-health-site main textarea:focus {
  border-color: rgba(139, 114, 255, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(139, 114, 255, 0.12) !important;
}

body.dn-health-site main table,
body.dn-health-site main thead,
body.dn-health-site main tbody,
body.dn-health-site main tr {
  border-color: var(--dh-line) !important;
}

body.dn-health-site main thead,
body.dn-health-site main .bg-gray-50\/50 {
  background: rgba(139, 114, 255, 0.06) !important;
}

body.dn-health-site main img {
  color-scheme: normal;
}

body.dn-health-site main .gradient-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(65rem 30rem at 78% 8%, rgba(115, 86, 255, 0.24), transparent 64%),
    radial-gradient(44rem 30rem at 100% 78%, rgba(51, 124, 232, 0.13), transparent 70%),
    linear-gradient(180deg, #02071d, #050a23) !important;
  border-bottom: 1px solid var(--dh-line);
}

body.dn-health-site main .gradient-hero::before {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) !important;
  background-size: 3.75rem 3.75rem !important;
}

body.dn-health-site main .gradient-hero .text-green-100,
body.dn-health-site main .gradient-hero .text-green-200 {
  color: rgba(225, 229, 255, 0.66) !important;
}

body.dn-health-site main .bg-green-600,
body.dn-health-site main a.bg-green-600,
body.dn-health-site main button.bg-green-600 {
  color: #fff !important;
  background: linear-gradient(120deg, #725aff, #8870ff) !important;
  border-color: transparent !important;
  box-shadow: 0 15px 34px -17px rgba(114, 90, 255, 0.86) !important;
}

body.dn-health-site main .hover\:bg-green-700:hover,
body.dn-health-site main a.bg-green-600:hover,
body.dn-health-site main button.bg-green-600:hover {
  background: linear-gradient(120deg, #644df0, #785eff) !important;
}

body.dn-health-site main .border-green-500,
body.dn-health-site main .border-green-600 {
  border-color: rgba(130, 109, 255, 0.72) !important;
}

body.dn-health-site main [data-plan-grid] > div {
  background:
    linear-gradient(150deg, rgba(15, 25, 63, 0.86), rgba(5, 12, 37, 0.92)) !important;
  border-color: var(--dh-line) !important;
  box-shadow: 0 30px 74px -48px rgba(0, 0, 0, 0.96), inset 0 1px rgba(255, 255, 255, 0.025) !important;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

body.dn-health-site main [data-plan-grid] > div:hover {
  transform: translateY(-5px);
  border-color: var(--dh-line-strong) !important;
  box-shadow: 0 34px 78px -42px rgba(34, 27, 107, 0.78), inset 0 1px rgba(255, 255, 255, 0.04) !important;
}

body.dn-health-site main [data-plan-grid] h3[style] {
  color: #a896ff !important;
}

body.dn-health-site main [data-plan-grid] .bg-gray-100 {
  background: rgba(139, 114, 255, 0.07) !important;
  border-bottom: 1px solid var(--dh-line);
}

body.dn-health-site main [data-plan-grid] a.border-green-600 {
  color: #b8a9ff !important;
  background: rgba(130, 109, 255, 0.035);
}

body.dn-health-site main [data-plan-grid] a.border-green-600:hover {
  color: #fff !important;
  background: rgba(130, 109, 255, 0.13) !important;
}

/* ============================================================
   Site-wide component translation
   Profile, account, store, checkout, orders, blog and diet pages
   all inherit the same gateway-derived surface and colour system.
   ============================================================ */

body.dn-health-site .dn-main > section.bg-white,
body.dn-health-site .dn-main > section.bg-gray-50,
body.dn-health-site .dn-main > section.bg-gray-100,
body.dn-health-site .dn-main > div.bg-gray-50,
body.dn-health-site .dn-main > div.bg-white,
body.dn-health-site .dn-main > article {
  background:
    radial-gradient(54rem 34rem at 4% 12%, rgba(86, 65, 209, 0.1), transparent 72%),
    radial-gradient(46rem 32rem at 96% 82%, rgba(39, 105, 203, 0.07), transparent 72%),
    #02071d !important;
}

body.dn-health-site .dn-main > section:not(.dn-hero):not(.dn-ai):not(.blog-hero):not(.gradient-hero),
body.dn-health-site .dn-main > div[class*="bg-"] {
  border-color: var(--dh-line) !important;
}

body.dn-health-site .dn-main h1,
body.dn-health-site .dn-main h2,
body.dn-health-site .dn-main h3,
body.dn-health-site .dn-main h4,
body.dn-health-site .dn-main h5,
body.dn-health-site .dn-main h6 {
  color: var(--dh-text) !important;
}

body.dn-health-site .dn-main .text-gray-100,
body.dn-health-site .dn-main .text-gray-200 {
  color: rgba(247, 248, 255, 0.86) !important;
}

body.dn-health-site .dn-main .text-gray-300 {
  color: rgba(239, 242, 255, 0.74) !important;
}

body.dn-health-site .dn-main .text-green-50,
body.dn-health-site .dn-main .text-green-100,
body.dn-health-site .dn-main .text-green-200,
body.dn-health-site .dn-main .text-green-300,
body.dn-health-site .dn-main .text-green-400,
body.dn-health-site .dn-main .text-green-500,
body.dn-health-site .dn-main .text-green-600,
body.dn-health-site .dn-main .text-green-700,
body.dn-health-site .dn-main .text-green-800,
body.dn-health-site .dn-main .text-green-900,
body.dn-health-site .dn-main .text-emerald-200,
body.dn-health-site .dn-main .text-emerald-300,
body.dn-health-site .dn-main .text-emerald-600,
body.dn-health-site .dn-main .text-emerald-700,
body.dn-health-site .dn-main [class~="text-emerald-100/80"] {
  color: #aa99ff !important;
}

body.dn-health-site .dn-main .text-purple-300,
body.dn-health-site .dn-main .text-purple-600,
body.dn-health-site .dn-main .text-purple-700 {
  color: #b6a8ff !important;
}

body.dn-health-site .dn-main .text-blue-300,
body.dn-health-site .dn-main .text-blue-600,
body.dn-health-site .dn-main .text-blue-700,
body.dn-health-site .dn-main .text-blue-800 {
  color: #78b6ff !important;
}

body.dn-health-site .dn-main .text-amber-300,
body.dn-health-site .dn-main .text-amber-500,
body.dn-health-site .dn-main .text-amber-600,
body.dn-health-site .dn-main .text-amber-700,
body.dn-health-site .dn-main .text-amber-800,
body.dn-health-site .dn-main .text-amber-900,
body.dn-health-site .dn-main .text-yellow-600,
body.dn-health-site .dn-main .text-yellow-700,
body.dn-health-site .dn-main .text-yellow-800 {
  color: #f3c879 !important;
}

body.dn-health-site .dn-main .text-red-400,
body.dn-health-site .dn-main .text-red-500,
body.dn-health-site .dn-main .text-red-600,
body.dn-health-site .dn-main .text-red-700,
body.dn-health-site .dn-main .text-red-900,
body.dn-health-site .dn-main .text-rose-500 {
  color: #ff91a7 !important;
}

body.dn-health-site .dn-main .bg-gray-200,
body.dn-health-site .dn-main .bg-gray-300 {
  background-color: rgba(145, 137, 199, 0.14) !important;
}

body.dn-health-site .dn-main .bg-gray-700,
body.dn-health-site .dn-main .bg-gray-800,
body.dn-health-site .dn-main .bg-gray-900,
body.dn-health-site .dn-main .bg-gray-950 {
  background-color: #050b24 !important;
}

body.dn-health-site .dn-main .bg-green-50,
body.dn-health-site .dn-main .bg-green-100,
body.dn-health-site .dn-main [class~="bg-green-50/50"],
body.dn-health-site .dn-main .bg-emerald-50,
body.dn-health-site .dn-main .bg-emerald-100,
body.dn-health-site .dn-main .bg-purple-50,
body.dn-health-site .dn-main .bg-purple-100 {
  background-color: rgba(130, 109, 255, 0.1) !important;
}

body.dn-health-site .dn-main .bg-green-400,
body.dn-health-site .dn-main .bg-green-500,
body.dn-health-site .dn-main .bg-green-700,
body.dn-health-site .dn-main .bg-green-800,
body.dn-health-site .dn-main .bg-emerald-600,
body.dn-health-site .dn-main .bg-emerald-700 {
  color: #fff !important;
  background: linear-gradient(120deg, #7058fa, #8870ff) !important;
}

body.dn-health-site .dn-main [class~="bg-green-500/20"],
body.dn-health-site .dn-main [class~="bg-emerald-500/15"],
body.dn-health-site .dn-main [class~="bg-emerald-500/20"] {
  background: rgba(130, 109, 255, 0.14) !important;
}

body.dn-health-site .dn-main .bg-blue-50,
body.dn-health-site .dn-main .bg-blue-100 {
  background: rgba(67, 142, 255, 0.12) !important;
}

body.dn-health-site .dn-main .bg-amber-50,
body.dn-health-site .dn-main .bg-amber-100,
body.dn-health-site .dn-main .bg-yellow-50,
body.dn-health-site .dn-main .bg-yellow-100 {
  background: rgba(224, 165, 66, 0.12) !important;
}

body.dn-health-site .dn-main .bg-red-50,
body.dn-health-site .dn-main .bg-red-100,
body.dn-health-site .dn-main [class~="bg-red-900/20"] {
  background: rgba(222, 74, 112, 0.11) !important;
}

body.dn-health-site .dn-main [class~="bg-green-900/40"],
body.dn-health-site .dn-main [class~="bg-green-900/60"],
body.dn-health-site .dn-main [class~="bg-green-900/70"],
body.dn-health-site .dn-main [class~="bg-blue-900/60"],
body.dn-health-site .dn-main [class~="bg-purple-900/60"],
body.dn-health-site .dn-main [class~="bg-amber-900/60"] {
  background: rgba(8, 16, 46, 0.82) !important;
}

body.dn-health-site .dn-main .bg-white.rounded-lg,
body.dn-health-site .dn-main .bg-white.rounded-xl,
body.dn-health-site .dn-main .bg-white.rounded-2xl,
body.dn-health-site .dn-main .bg-white.rounded-3xl {
  background:
    linear-gradient(150deg, rgba(15, 25, 63, 0.84), rgba(5, 12, 37, 0.93)) !important;
  border-color: var(--dh-line) !important;
  box-shadow: 0 30px 76px -52px rgba(0, 0, 0, 0.96), inset 0 1px rgba(255, 255, 255, 0.025) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.dn-health-site .dn-main .bg-gray-50.rounded-lg,
body.dn-health-site .dn-main .bg-gray-50.rounded-xl,
body.dn-health-site .dn-main .bg-gray-50.rounded-2xl,
body.dn-health-site .dn-main .bg-gray-100.rounded-lg,
body.dn-health-site .dn-main .bg-gray-100.rounded-xl,
body.dn-health-site .dn-main .bg-gray-100.rounded-2xl {
  background: rgba(139, 114, 255, 0.055) !important;
  border-color: var(--dh-line) !important;
}

body.dn-health-site .dn-main .bg-white.bg-opacity-60,
body.dn-health-site .dn-main .bg-white.bg-opacity-70 {
  background: rgba(2, 7, 29, 0.78) !important;
}

body.dn-health-site .dn-main [class*="from-gray-900"][class*="to-gray-900"] {
  background-image:
    radial-gradient(60rem 30rem at 12% 8%, rgba(104, 79, 231, 0.2), transparent 68%),
    linear-gradient(145deg, #02071d, #07102d) !important;
  border-bottom: 1px solid var(--dh-line);
}

body.dn-health-site .dn-main [class*="from-green-400"][class*="to-emerald-600"],
body.dn-health-site .dn-main [class*="from-green-500"][class*="to-green-700"] {
  background-image: linear-gradient(135deg, #826dff, #4d82ee) !important;
}

body.dn-health-site .dn-main [class*="from-green-50"][class*="to-emerald"],
body.dn-health-site .dn-main [class*="from-emerald-50"][class*="to-green-50"],
body.dn-health-site .dn-main [class*="from-green-50"][class*="to-green-100"] {
  background-image: linear-gradient(145deg, rgba(130, 109, 255, 0.12), rgba(67, 142, 255, 0.06)) !important;
}

body.dn-health-site .dn-main [class*="from-emerald-700"][class*="to-green-600"],
body.dn-health-site .dn-main [class*="from-green-600"][class*="to-green-800"] {
  background-image:
    radial-gradient(circle at 92% 8%, rgba(198, 96, 224, 0.2), transparent 42%),
    linear-gradient(135deg, #251b67, #49389e) !important;
  border: 1px solid var(--dh-line-strong);
}

body.dn-health-site .dn-main [class*="from-emerald-50"][class*="to-white"] {
  background-image:
    radial-gradient(52rem 26rem at 15% 0%, rgba(105, 79, 228, 0.16), transparent 68%),
    linear-gradient(180deg, #040a24, #02071d) !important;
}

body.dn-health-site .dn-main .border-gray-50,
body.dn-health-site .dn-main .border-gray-100,
body.dn-health-site .dn-main .border-gray-200,
body.dn-health-site .dn-main .border-gray-300,
body.dn-health-site .dn-main .border-gray-700,
body.dn-health-site .dn-main .border-gray-800,
body.dn-health-site .dn-main .border-green-50,
body.dn-health-site .dn-main .border-green-100,
body.dn-health-site .dn-main .border-green-200,
body.dn-health-site .dn-main .border-green-300,
body.dn-health-site .dn-main .border-green-400,
body.dn-health-site .dn-main .border-emerald-100,
body.dn-health-site .dn-main .border-blue-100,
body.dn-health-site .dn-main .border-purple-100 {
  border-color: var(--dh-line) !important;
}

body.dn-health-site .dn-main .border-amber-200,
body.dn-health-site .dn-main .border-yellow-200,
body.dn-health-site .dn-main .border-yellow-300 {
  border-color: rgba(224, 165, 66, 0.25) !important;
}

body.dn-health-site .dn-main .border-red-100,
body.dn-health-site .dn-main .border-red-200 {
  border-color: rgba(222, 74, 112, 0.24) !important;
}

body.dn-health-site .dn-main .divide-gray-50 > :not([hidden]) ~ :not([hidden]),
body.dn-health-site .dn-main .divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--dh-line) !important;
}

body.dn-health-site .dn-main .ring-green-100,
body.dn-health-site .dn-main .ring-green-300,
body.dn-health-site .dn-main .ring-green-400,
body.dn-health-site .dn-main .ring-green-500,
body.dn-health-site .dn-main .ring-blue-300,
body.dn-health-site .dn-main .ring-purple-300,
body.dn-health-site .dn-main [class~="ring-green-400/30"] {
  --tw-ring-color: rgba(139, 114, 255, 0.58) !important;
}

body.dn-health-site .dn-main .ring-offset-1,
body.dn-health-site .dn-main .ring-offset-2 {
  --tw-ring-offset-color: #02071d !important;
}

body.dn-health-site .dn-main input[type="checkbox"],
body.dn-health-site .dn-main input[type="radio"] {
  color: var(--dh-violet);
  accent-color: var(--dh-violet);
  background-color: rgba(4, 10, 34, 0.88);
  border-color: var(--dh-line-strong);
}

/* Plan checkout — premium coupon control inside the order summary. */
body.dn-health-site .dn-main .dn-coupon {
  position: relative;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(158, 143, 255, 0.14);
  border-radius: 0.9rem;
  background: rgba(139, 114, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

body.dn-health-site .dn-main .dn-coupon::after {
  content: none;
}

body.dn-health-site .dn-main .dn-coupon__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

body.dn-health-site .dn-main .dn-coupon__mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(158, 143, 255, 0.22);
  border-radius: 0.78rem;
  color: #b8aaff;
  background: rgba(139, 114, 255, 0.1);
  font-size: 1rem;
  font-weight: 750;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

body.dn-health-site .dn-main .dn-coupon__copy {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 0.24rem;
}

body.dn-health-site .dn-main .dn-coupon__title {
  color: rgba(247, 248, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

body.dn-health-site .dn-main .dn-coupon__meta {
  flex: 0 0 auto;
  color: rgba(231, 235, 255, 0.38);
  font-size: 0.66rem;
  font-weight: 600;
}

body.dn-health-site .dn-main .dn-coupon.is-applied .dn-coupon__meta {
  color: #8ee0c8;
}

body.dn-health-site .dn-main .dn-coupon__hint {
  color: rgba(231, 235, 255, 0.44);
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: normal;
}

body.dn-health-site .dn-main .dn-coupon__status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(111, 205, 177, 0.18);
  border-radius: 999px;
  color: #8ee0c8;
  background: rgba(52, 181, 143, 0.08);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.dn-health-site .dn-main .dn-coupon__status::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: #65d6b5;
  box-shadow: 0 0 0 0.18rem rgba(101, 214, 181, 0.1), 0 0 0.7rem rgba(101, 214, 181, 0.46);
}

body.dn-health-site .dn-main .dn-coupon__control {
  display: flex;
  align-items: stretch;
  gap: 0.62rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body.dn-health-site .dn-main .dn-coupon__control:focus-within {
  background: transparent;
  box-shadow: none;
}

body.dn-health-site .dn-main .dn-coupon__input {
  min-width: 0;
  flex: 1 1 auto;
}

body.dn-health-site .dn-main .dn-coupon__input::placeholder {
  color: rgba(231, 235, 255, 0.28) !important;
  font-weight: 600;
  letter-spacing: 0.045em;
}

body.dn-health-site .dn-main .dn-coupon__input[readonly] {
  color: #c4b8ff !important;
  cursor: default;
}

body.dn-health-site .dn-main .dn-coupon__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

body.dn-health-site .dn-main .dn-coupon__action:hover,
body.dn-health-site .dn-main .dn-coupon__action:focus-visible {
  outline: none;
}

body.dn-health-site .dn-main .dn-coupon__action--apply {
  border: 1px solid rgba(158, 143, 255, 0.48);
  color: #c7bbff;
  background: rgba(139, 114, 255, 0.07);
  box-shadow: none;
}

body.dn-health-site .dn-main .dn-coupon__action--apply:hover,
body.dn-health-site .dn-main .dn-coupon__action--apply:focus-visible {
  border-color: rgba(178, 164, 255, 0.78);
  color: #fff;
  background: rgba(139, 114, 255, 0.14);
  box-shadow: none;
}

body.dn-health-site .dn-main .dn-coupon__action--remove {
  border: 1px solid rgba(158, 143, 255, 0.18);
  color: rgba(231, 235, 255, 0.58);
  background: rgba(255, 255, 255, 0.025);
}

body.dn-health-site .dn-main .dn-coupon__action--remove:hover,
body.dn-health-site .dn-main .dn-coupon__action--remove:focus-visible {
  border-color: rgba(255, 145, 167, 0.3);
  color: #ff9db0;
  background: rgba(222, 74, 112, 0.07);
}

body.dn-health-site .dn-main .dn-coupon__feedback {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

body.dn-health-site .dn-main .dn-coupon__feedback > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  font-size: 0.68rem;
}

body.dn-health-site .dn-main .dn-coupon__feedback--success {
  color: #8ee0c8;
}

body.dn-health-site .dn-main .dn-coupon__feedback--success > span {
  color: #071d1a;
  background: #65d6b5;
}

body.dn-health-site .dn-main .dn-coupon__feedback--error {
  color: #ff9db0;
}

body.dn-health-site .dn-main .dn-coupon__feedback--error > span {
  color: #290713;
  background: #ff91a7;
  font-weight: 800;
}

body.dn-health-site .dn-main .dn-coupon.is-applied {
  border-color: rgba(111, 205, 177, 0.2);
  background: rgba(52, 181, 143, 0.045);
}

body.dn-health-site .dn-main .dn-coupon.is-applied .dn-coupon__mark {
  border-color: rgba(111, 205, 177, 0.2);
  color: #8ee0c8;
  background: rgba(52, 181, 143, 0.08);
}

body.dn-health-site .dn-main .dn-coupon.has-error {
  border-color: rgba(255, 145, 167, 0.22);
  background: rgba(222, 74, 112, 0.04);
}

body.dn-health-site .dn-main .dn-coupon.has-error .dn-coupon__control {
  border-color: rgba(255, 145, 167, 0.25);
}

@media (max-width: 420px) {
  body.dn-health-site .dn-main .dn-coupon {
    padding: 0.85rem;
  }

  body.dn-health-site .dn-main .dn-coupon__hint {
    white-space: normal;
  }

  body.dn-health-site .dn-main .dn-coupon__status {
    display: none;
  }

  body.dn-health-site .dn-main .dn-coupon__control {
    flex-direction: column;
  }

  body.dn-health-site .dn-main .dn-coupon__action {
    width: 100%;
    min-width: 0;
    padding: 0 0.8rem;
  }
}

body.dn-health-site .dn-main select option {
  color: var(--dh-text);
  background: #07102d;
}

body.dn-health-site .dn-main .hover\:bg-gray-50:hover,
body.dn-health-site .dn-main .hover\:bg-gray-100:hover,
body.dn-health-site .dn-main .hover\:bg-gray-200:hover {
  background: rgba(139, 114, 255, 0.1) !important;
}

body.dn-health-site .dn-main .hover\:bg-green-50:hover,
body.dn-health-site .dn-main .hover\:bg-green-100:hover,
body.dn-health-site .dn-main [class~="hover:bg-green-50/50"]:hover {
  background: rgba(130, 109, 255, 0.12) !important;
}

body.dn-health-site .dn-main .hover\:bg-red-50:hover {
  background: rgba(222, 74, 112, 0.1) !important;
}

body.dn-health-site .dn-main button:disabled,
body.dn-health-site .dn-main .cursor-not-allowed {
  color: rgba(231, 235, 255, 0.34) !important;
  background: rgba(145, 137, 199, 0.1) !important;
  box-shadow: none !important;
}

body.dn-health-site .dn-main table {
  color: var(--dh-muted);
  background: transparent;
}

body.dn-health-site .dn-main th {
  color: rgba(247, 248, 255, 0.72) !important;
  background: rgba(139, 114, 255, 0.055);
}

body.dn-health-site .dn-main tr:hover td {
  background: rgba(139, 114, 255, 0.035);
}

body.dn-health-site .dn-main .blog-card,
body.dn-health-site .dn-main .blog-featured {
  border-color: var(--dh-line) !important;
  box-shadow: 0 30px 74px -48px rgba(0, 0, 0, 0.95) !important;
}

body.dn-health-site .dn-main .blog-card:hover,
body.dn-health-site .dn-main .blog-featured:hover {
  border-color: var(--dh-line-strong) !important;
  box-shadow: 0 36px 82px -45px rgba(58, 43, 154, 0.62) !important;
}

/* Footer visually closes the same continuous canvas. */
body.dn-health-site .dn-footer {
  position: relative !important;
  inset: auto !important;
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto !important;
  z-index: 0;
  background: rgba(1, 4, 22, 0.96) !important;
  border-top-color: var(--dh-line) !important;
}

body.dn-health-site .dn-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 114, 255, 0.5), rgba(67, 142, 255, 0.34), transparent);
}

body.dn-health-site .dn-footer__social a {
  background: rgba(139, 114, 255, 0.055);
  border-color: var(--dh-line);
}

@media (max-width: 767px) {
  body.dn-health-site > main::before { display: none; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .dn-brand__navbar-logo { height: 2.1rem; max-width: 7rem; }
  body.dn-health-site .dn-nav__links { gap: 1rem !important; }
  body.dn-health-site .dn-nav__link { font-size: 0.8rem; }
}
