/* ==========================================================================
   Donate Now — Landing Page Theme (scoped to .landing-body)
   Premium warm palette · No blue · Dashboard-safe
   ========================================================================== */

:root {
  --dn-bg: #f4ede3;
  --dn-surface: #fdfaf5;
  --dn-surface-elevated: #ffffff;
  --dn-text: #2a2420;
  --dn-text-soft: #5c524a;
  --dn-muted: #7a6f65;
  --dn-primary: #3d5c44;
  --dn-primary-dark: #2d4534;
  --dn-accent: #c4694a;
  --dn-accent-soft: #e8b48a;
  --dn-olive: #6b7d52;
  --dn-clay: #b8846a;
  --dn-gold: #c9a227;
  --dn-cocoa: #3a2e28;
  --dn-graphite: #1f1a17;
  --dn-border: rgba(42, 36, 32, 0.1);
  --dn-border-strong: rgba(42, 36, 32, 0.16);

  --dn-radius-sm: 10px;
  --dn-radius-md: 16px;
  --dn-radius-lg: 24px;
  --dn-radius-xl: 32px;

  --dn-shadow-soft: 0 18px 50px rgba(42, 36, 32, 0.08);
  --dn-shadow-lift: 0 28px 70px rgba(42, 36, 32, 0.14);
  --dn-shadow-float: 0 22px 48px rgba(42, 36, 32, 0.18);

  --dn-ease: cubic-bezier(0.22, 0.65, 0.25, 1);
  --dn-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --dn-header-h: 84px;
  --dn-container: min(1180px, calc(100% - 2.5rem));
}

/* Legacy aliases for static pages / shared components */
:root {
  --color-bg: var(--dn-bg);
  --color-surface: var(--dn-surface);
  --color-dark: var(--dn-text);
  --color-muted: var(--dn-muted);
  --color-primary: var(--dn-accent);
  --color-primary-dark: #a85538;
  --color-olive: var(--dn-olive);
  --color-sand: var(--dn-accent-soft);
  --color-border: var(--dn-border);
  --radius-lg: var(--dn-radius-xl);
  --radius-md: var(--dn-radius-md);
  --radius-sm: var(--dn-radius-sm);
  --shadow-soft: var(--dn-shadow-soft);
  --landing-header-height: var(--dn-header-h);
}

/* ---- Base (landing only) ---- */
body.landing-body {
  margin: 0;
  background: var(--dn-bg);
  color: var(--dn-text);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: clip;
}

body.landing-body .landing-main {
  position: relative;
}

body.landing-body a {
  color: inherit;
  text-decoration: none;
}

body.landing-body img {
  max-width: 100%;
  display: block;
}

body.landing-body .container {
  width: var(--dn-container);
  margin-inline: auto;
}

body.landing-body .dn-section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
  overflow: clip;
}

body.landing-body h1,
body.landing-body h2,
body.landing-body h3,
body.landing-body h4 {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--dn-text);
}

body.landing-body p {
  margin: 0 0 1rem;
  color: var(--dn-text-soft);
}

body.landing-body .dn-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dn-olive);
}

body.landing-body .dn-kicker--light {
  color: rgba(255, 244, 232, 0.92);
}

body.landing-body .dn-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 52ch;
}

body.landing-body .dn-section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

body.landing-body .dn-section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  max-width: 20ch;
}

body.landing-body .dn-section-head__sub {
  margin: 0;
  font-size: 1.02rem;
  max-width: 48ch;
}

body.landing-body .dn-section-head--light h2,
body.landing-body .dn-section-head--light .dn-section-head__sub {
  color: var(--dn-surface);
}

body.landing-body .dn-section-head--light .dn-section-head__sub {
  color: rgba(253, 250, 245, 0.82);
}

/* ---- Buttons ---- */
body.landing-body .btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.72rem 1.35rem;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.28s var(--dn-ease),
    box-shadow 0.32s var(--dn-ease),
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

body.landing-body .btn:hover {
  transform: translateY(-2px);
}

body.landing-body .btn:focus-visible {
  outline: 3px solid rgba(61, 92, 68, 0.35);
  outline-offset: 2px;
}

body.landing-body .btn-primary {
  background: linear-gradient(145deg, var(--dn-primary), var(--dn-primary-dark));
  color: #fff;
  box-shadow: 0 10px 28px rgba(45, 69, 52, 0.28);
}

body.landing-body .btn-primary:hover {
  box-shadow: 0 14px 36px rgba(45, 69, 52, 0.36);
}

body.landing-body .btn-secondary {
  background: linear-gradient(145deg, var(--dn-accent), #a85538);
  color: #fff;
  box-shadow: 0 10px 26px rgba(196, 105, 74, 0.28);
}

body.landing-body .btn-ghost {
  background: var(--dn-surface);
  border-color: var(--dn-border-strong);
  color: var(--dn-text);
}

body.landing-body .btn-ghost:hover {
  border-color: var(--dn-primary);
  color: var(--dn-primary-dark);
}

body.landing-body .btn-light {
  background: var(--dn-surface);
  color: var(--dn-text);
}

body.landing-body .btn-outline-light {
  border-color: rgba(253, 250, 245, 0.55);
  color: #fff;
  background: transparent;
}

body.landing-body .btn-outline-light:hover {
  background: rgba(253, 250, 245, 0.12);
}

body.landing-body .btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

body.landing-body .btn-olive {
  background: var(--dn-olive);
  color: #fff;
}

/* ---- Header / Nav ---- */
body.landing-body .landing-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background-color 0.4s var(--dn-ease),
    backdrop-filter 0.4s var(--dn-ease),
    border-color 0.4s var(--dn-ease),
    box-shadow 0.4s var(--dn-ease);
  border-bottom: 1px solid transparent;
}

body.landing-body .landing-header.is-landing {
  background: rgba(244, 237, 227, 0.55);
  backdrop-filter: blur(10px);
}

body.landing-body .landing-header.is-landing.is-scrolled {
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-color: var(--dn-border);
  box-shadow: 0 12px 40px rgba(42, 36, 32, 0.06);
}

body.landing-body .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--dn-header-h);
}

body.landing-body .nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  color: var(--dn-text);
}

body.landing-body .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-inline: auto;
  padding: 0 0.5rem;
}

body.landing-body .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--dn-text-soft);
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

body.landing-body .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--dn-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--dn-ease);
}

body.landing-body .nav-link:hover {
  color: var(--dn-text);
  background: rgba(61, 92, 68, 0.06);
}

body.landing-body .nav-link.active {
  color: var(--dn-primary-dark);
  background: rgba(61, 92, 68, 0.12);
  font-weight: 600;
}

body.landing-body .nav-link:hover::after {
  transform: scaleX(1);
}

body.landing-body .nav-link.active::after {
  display: none;
}

body.landing-body .nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

body.landing-body .mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--dn-radius-sm);
  border: 1px solid var(--dn-border-strong);
  background: var(--dn-surface);
  cursor: pointer;
}

body.landing-body .mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dn-text);
  margin: 3px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.landing-body .mobile-actions {
  display: none;
}

/* ---- A. Hero ---- */
body.landing-body .dn-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--dn-header-h) + 2.5rem) 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(196, 105, 74, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 50% at 5% 80%, rgba(107, 125, 82, 0.14), transparent 45%),
    linear-gradient(168deg, #faf6ef 0%, var(--dn-bg) 55%, #ebe3d6 100%);
  overflow: hidden;
}

body.landing-body .dn-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(232, 180, 138, 0.25), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(107, 125, 82, 0.18), transparent 38%);
  pointer-events: none;
}

body.landing-body .dn-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}

body.landing-body .dn-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

body.landing-body .dn-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}

body.landing-body .dn-hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

body.landing-body .dn-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

body.landing-body .dn-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.landing-body .dn-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--dn-radius-md);
  background: var(--dn-surface-elevated);
  border: 1px solid var(--dn-border);
  box-shadow: var(--dn-shadow-soft);
  font-size: 0.78rem;
  color: var(--dn-muted);
  transition: transform 0.3s var(--dn-ease), box-shadow 0.3s var(--dn-ease);
}

body.landing-body .dn-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--dn-shadow-lift);
}

body.landing-body .dn-chip strong {
  font-size: 1.05rem;
  color: var(--dn-primary-dark);
  font-weight: 700;
}

/* Hero visual stage */
body.landing-body .dn-hero__stage {
  position: relative;
  min-height: 420px;
}

body.landing-body .dn-hero__frame {
  position: relative;
  border-radius: var(--dn-radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  box-shadow: var(--dn-shadow-lift);
  transform: rotate(2deg);
  transition: transform 0.6s var(--dn-ease-out);
}

body.landing-body .dn-hero__frame:hover {
  transform: rotate(0deg) scale(1.01);
}

body.landing-body .dn-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.landing-body .dn-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 26, 23, 0.35) 100%);
  pointer-events: none;
}

body.landing-body .dn-float {
  position: absolute;
  background: var(--dn-surface-elevated);
  border: 1px solid var(--dn-border);
  border-radius: var(--dn-radius-md);
  padding: 0.85rem 1rem;
  box-shadow: var(--dn-shadow-float);
  font-size: 0.82rem;
  transition: transform 0.4s var(--dn-ease), box-shadow 0.4s var(--dn-ease);
}

body.landing-body .dn-float:hover {
  transform: translateY(-4px);
  box-shadow: var(--dn-shadow-lift);
}

body.landing-body .dn-float--proof {
  top: 8%;
  left: -6%;
  max-width: 200px;
  animation: dn-float-a 5s ease-in-out infinite;
}

body.landing-body .dn-float--flow {
  top: 42%;
  right: -4%;
  padding: 0.75rem 0.9rem;
  animation: dn-float-b 6s ease-in-out infinite 0.5s;
}

body.landing-body .dn-float--flow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

body.landing-body .dn-float--flow li {
  font-size: 0.75rem;
  color: var(--dn-muted);
  padding-left: 1rem;
  position: relative;
}

body.landing-body .dn-float--flow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dn-border-strong);
}

body.landing-body .dn-float--flow li.is-done {
  color: var(--dn-primary);
}

body.landing-body .dn-float--flow li.is-done::before {
  background: var(--dn-primary);
}

body.landing-body .dn-float--flow li.is-active {
  color: var(--dn-accent);
  font-weight: 600;
}

body.landing-body .dn-float--flow li.is-active::before {
  background: var(--dn-accent);
  box-shadow: 0 0 0 3px rgba(196, 105, 74, 0.2);
}

body.landing-body .dn-float--campaign {
  bottom: 4%;
  left: 6%;
  right: 6%;
  color: inherit;
  animation: dn-float-a 5.5s ease-in-out infinite 1s;
}

body.landing-body .dn-float__label,
body.landing-body .dn-float__eyebrow {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dn-muted);
  margin-bottom: 0.25rem;
}

body.landing-body .dn-float strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dn-text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

body.landing-body .dn-float__status {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
}

body.landing-body .dn-float__status--pending {
  background: rgba(201, 162, 39, 0.18);
  color: #8a6d1a;
}

body.landing-body .dn-float__bar {
  height: 5px;
  background: rgba(42, 36, 32, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

body.landing-body .dn-float__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--dn-primary), var(--dn-olive));
  border-radius: 999px;
  transition: width 0.6s var(--dn-ease-out);
}

body.landing-body .dn-float em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--dn-muted);
}

@keyframes dn-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes dn-float-b {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(4px); }
}

body.landing-body .dn-scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dn-muted);
  z-index: 2;
  transition: color 0.25s ease, transform 0.25s ease;
}

body.landing-body .dn-scroll-cue:hover {
  color: var(--dn-primary);
  transform: translateX(-50%) translateY(3px);
}

body.landing-body .dn-scroll-cue svg {
  animation: dn-scroll-pulse 2s ease-in-out infinite;
}

@keyframes dn-scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(5px); }
}

/* ---- B. Impact band ---- */
body.landing-body .dn-impact-band {
  background: var(--dn-primary-dark);
  color: #fff;
  padding-top: 0;
  margin-top: -1px;
}

body.landing-body .dn-impact-band__curve {
  display: block;
  height: 56px;
  margin-bottom: -1px;
  background: var(--dn-bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: scaleX(1.08);
}

body.landing-body .dn-impact-band__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}

body.landing-body .dn-impact-band__head h2 {
  color: #fff;
  margin-inline: auto;
}

body.landing-body .dn-impact-band .dn-kicker {
  color: var(--dn-accent-soft);
}

body.landing-body .dn-stat-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--dn-radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  transition: transform 0.32s var(--dn-ease), background 0.32s ease;
}

body.landing-body .dn-stat-pill:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

body.landing-body .dn-stat-pill__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(232, 180, 138, 0.2);
  color: var(--dn-accent-soft);
  font-size: 0.9rem;
}

body.landing-body .dn-stat-pill h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

body.landing-body .dn-stat-pill p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

body.landing-body .dn-stat-pill small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

/* ---- C. About ---- */
body.landing-body .dn-about {
  background: var(--dn-surface);
}

body.landing-body .dn-about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

body.landing-body .dn-about__media {
  position: relative;
  margin: 0;
}

body.landing-body .dn-about__media img {
  width: 100%;
  aspect-ratio: 5 / 5.5;
  object-fit: cover;
  border-radius: var(--dn-radius-xl) var(--dn-radius-md) var(--dn-radius-xl) var(--dn-radius-md);
  box-shadow: var(--dn-shadow-lift);
  transition: transform 0.55s var(--dn-ease-out);
}

body.landing-body .dn-about__media:hover img {
  transform: scale(1.03);
}

body.landing-body .dn-about__quote {
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  max-width: 240px;
  margin: 0;
  padding: 1rem 1.15rem;
  background: var(--dn-surface-elevated);
  border-radius: var(--dn-radius-md);
  border: 1px solid var(--dn-border);
  box-shadow: var(--dn-shadow-soft);
}

body.landing-body .dn-about__quote blockquote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--dn-text);
  line-height: 1.45;
}

body.landing-body .dn-pillar-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

body.landing-body .dn-pillar-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--dn-radius-md);
  background: var(--dn-bg);
  border: 1px solid var(--dn-border);
  transition: transform 0.28s var(--dn-ease), box-shadow 0.28s var(--dn-ease);
}

body.landing-body .dn-pillar-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--dn-shadow-soft);
}

body.landing-body .dn-pillar-list__num {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--dn-accent);
  opacity: 0.7;
  line-height: 1;
}

body.landing-body .dn-pillar-list h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

body.landing-body .dn-pillar-list p {
  margin: 0;
  font-size: 0.92rem;
}

body.landing-body .dn-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ---- D. Process rail ---- */
body.landing-body .dn-process {
  background:
    linear-gradient(160deg, rgba(107, 125, 82, 0.07) 0%, transparent 42%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(196, 105, 74, 0.06), transparent 55%),
    var(--dn-bg);
}

body.landing-body .dn-process-rail {
  --process-track-y: 2.75rem;
  --process-node: 1.375rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0.75rem;
  row-gap: 0;
  position: relative;
  padding-top: 0.25rem;
}

body.landing-body .dn-process-rail__track {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  height: calc(var(--process-track-y) + var(--process-node));
  margin-bottom: 0.35rem;
  pointer-events: none;
}

body.landing-body .dn-process-rail__line,
body.landing-body .dn-process-rail__progress {
  position: absolute;
  top: var(--process-track-y);
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
}

body.landing-body .dn-process-rail__line {
  background: rgba(42, 36, 32, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.landing-body .dn-process-rail__progress {
  right: auto;
  width: 80%;
  background: linear-gradient(
    90deg,
    var(--dn-primary) 0%,
    var(--dn-olive) 48%,
    rgba(196, 105, 74, 0.75) 100%
  );
  opacity: 0.92;
}

body.landing-body .dn-process-step {
  grid-row: 2;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.35rem 0.25rem;
  transition: transform 0.32s var(--dn-ease);
}

body.landing-body .dn-process-step:hover {
  transform: translateY(-3px);
}

body.landing-body .dn-process-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(-1 * (var(--process-track-y) + var(--process-node) / 2));
  margin-bottom: 1.15rem;
}

body.landing-body .dn-process-step__node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: var(--process-node);
  height: var(--process-node);
  border-radius: 50%;
  background: var(--dn-surface-elevated);
  border: 2px solid var(--dn-primary);
  box-shadow:
    0 0 0 4px rgba(253, 250, 245, 0.95),
    0 0 0 6px rgba(61, 92, 68, 0.12),
    0 6px 16px rgba(42, 36, 32, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--dn-ease);
}

body.landing-body .dn-process-step__node-core {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dn-primary);
  transition: transform 0.3s var(--dn-ease), background 0.3s ease;
}

body.landing-body .dn-process-step:hover .dn-process-step__node {
  border-color: var(--dn-primary-dark);
  transform: scale(1.08);
  box-shadow:
    0 0 0 4px rgba(253, 250, 245, 0.98),
    0 0 0 7px rgba(61, 92, 68, 0.18),
    0 10px 22px rgba(42, 36, 32, 0.14);
}

body.landing-body .dn-process-step:hover .dn-process-step__node-core {
  transform: scale(1.15);
  background: var(--dn-accent);
}

body.landing-body .dn-process-step:nth-child(4) .dn-process-step__node {
  width: calc(var(--process-node) + 4px);
  height: calc(var(--process-node) + 4px);
  border-width: 3px;
  border-color: var(--dn-accent);
}

body.landing-body .dn-process-step:nth-child(4) .dn-process-step__node-core {
  width: 7px;
  height: 7px;
  background: var(--dn-accent);
}

body.landing-body .dn-process-step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  margin-top: 0.55rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dn-primary-dark);
  background: rgba(61, 92, 68, 0.1);
  border: 1px solid rgba(61, 92, 68, 0.14);
}

body.landing-body .dn-process-step:nth-child(4) .dn-process-step__no {
  color: #8f4329;
  background: rgba(196, 105, 74, 0.12);
  border-color: rgba(196, 105, 74, 0.22);
}

body.landing-body .dn-process-step__body {
  max-width: 15.5rem;
  margin-inline: auto;
  padding: 0.9rem 0.75rem 1rem;
  border-radius: var(--dn-radius-md);
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

body.landing-body .dn-process-step:hover .dn-process-step__body {
  background: var(--dn-surface-elevated);
  border-color: var(--dn-border);
  box-shadow: var(--dn-shadow-soft);
}

body.landing-body .dn-process-step__body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

body.landing-body .dn-process-step__body p {
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.55;
  color: var(--dn-muted);
}

/* ---- E. Campaigns ---- */
body.landing-body .dn-campaigns {
  isolation: isolate;
}

body.landing-body .dn-campaigns__bg {
  position: absolute;
  inset: 0;
  background: var(--section-bg-image) center/cover no-repeat;
  z-index: 0;
}

body.landing-body .dn-campaigns__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    118deg,
    rgba(253, 250, 245, 0.97) 0%,
    rgba(244, 237, 227, 0.92) 42%,
    rgba(235, 227, 214, 0.88) 100%
  );
  pointer-events: none;
}

body.landing-body .dn-campaigns__inner {
  position: relative;
  z-index: 2;
}

body.landing-body .dn-section-head--campaigns h2 {
  color: var(--dn-text);
  max-width: 22ch;
}

body.landing-body .dn-section-head--campaigns .dn-section-head__sub {
  color: var(--dn-text-soft);
}

body.landing-body .dn-section-head--campaigns .dn-kicker {
  color: var(--dn-primary-dark);
}

body.landing-body .campaign-card--landing {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--dn-radius-lg);
  border: 1px solid var(--dn-border);
  background: var(--dn-surface-elevated);
  overflow: hidden;
  box-shadow: var(--dn-shadow-soft);
  transition: transform 0.35s var(--dn-ease), box-shadow 0.35s var(--dn-ease);
}

body.landing-body .campaign-card--landing:hover {
  transform: translateY(-6px);
  box-shadow: var(--dn-shadow-lift);
}

body.landing-body .campaign-card--landing .campaign-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

body.landing-body .campaign-card--landing .campaign-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

body.landing-body .campaign-card--landing .campaign-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--dn-ease-out);
}

body.landing-body .campaign-card--landing:hover .campaign-media img {
  transform: scale(1.07);
}

body.landing-body .campaign-card--landing .campaign-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: rgba(253, 250, 245, 0.94);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dn-primary-dark);
}

body.landing-body .campaign-card--landing .campaign-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 1rem 1.05rem 1.1rem;
}

body.landing-body .campaign-card--landing .campaign-card__title {
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.landing-body .campaign-card--landing .campaign-ngo {
  margin: 0;
  font-size: 0.82rem;
  color: var(--dn-muted);
}

body.landing-body .campaign-card--landing .campaign-card__progress {
  margin-top: auto;
  padding-top: 0.5rem;
}

body.landing-body .campaign-card--landing .progress-wrap {
  height: 6px;
  background: rgba(42, 36, 32, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

body.landing-body .campaign-card--landing .progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dn-primary), var(--dn-olive));
}

body.landing-body .campaign-card--landing .campaign-card__pct {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dn-muted);
}

body.landing-body .dn-empty {
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--dn-radius-xl);
  border: 1px dashed var(--dn-border-strong);
  background: var(--dn-surface-elevated);
}

body.landing-body .dn-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(196, 105, 74, 0.12);
  color: var(--dn-accent);
  font-size: 1.4rem;
}

body.landing-body .dn-campaigns__more {
  text-align: center;
  margin: 1.75rem 0 0;
}

body.landing-body .dn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--dn-primary-dark);
  position: relative;
}

body.landing-body .dn-link-arrow::after {
  content: "→";
  transition: transform 0.28s var(--dn-ease);
}

body.landing-body .dn-link-arrow:hover::after {
  transform: translateX(4px);
}

/* ---- F. Proof flow ---- */
body.landing-body .dn-proof-flow {
  background: var(--dn-cocoa);
  color: #fff;
}

body.landing-body .dn-proof-flow .dn-section-head h2 {
  color: #fff;
}

body.landing-body .dn-proof-flow .dn-section-head__sub {
  color: rgba(253, 250, 245, 0.78);
}

body.landing-body .dn-proof-flow .dn-kicker {
  color: var(--dn-accent-soft);
}

body.landing-body .dn-proof-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

body.landing-body .dn-proof-panel {
  position: relative;
  padding: 1.35rem 1.2rem;
  border-radius: var(--dn-radius-lg);
  background: rgba(253, 250, 245, 0.06);
  border: 1px solid rgba(253, 250, 245, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--dn-ease), background 0.35s ease;
}

body.landing-body .dn-proof-panel:hover {
  transform: translateY(-6px);
  background: rgba(253, 250, 245, 0.1);
}

body.landing-body .dn-proof-panel__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 105, 74, 0.25);
  color: var(--dn-accent-soft);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

body.landing-body .dn-proof-panel h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

body.landing-body .dn-proof-panel p {
  color: rgba(253, 250, 245, 0.78);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.55;
}

body.landing-body .dn-proof-panel__connector {
  display: none;
}

/* ---- G. Roles ---- */
body.landing-body .dn-roles {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 180, 138, 0.2), transparent 40%),
    var(--dn-surface);
}

body.landing-body .dn-role-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

body.landing-body .dn-role-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--dn-radius-xl);
  border: 1px solid var(--dn-border);
  background: var(--dn-surface-elevated);
  overflow: hidden;
  box-shadow: var(--dn-shadow-soft);
  transition: transform 0.35s var(--dn-ease), box-shadow 0.35s var(--dn-ease);
}

body.landing-body .dn-role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dn-shadow-lift);
}

body.landing-body .dn-role-card--featured {
  border-color: rgba(61, 92, 68, 0.25);
  box-shadow: var(--dn-shadow-lift);
  transform: scale(1.02);
}

body.landing-body .dn-role-card--featured:hover {
  transform: scale(1.02) translateY(-5px);
}

body.landing-body .dn-role-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

body.landing-body .dn-role-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--dn-ease-out);
}

body.landing-body .dn-role-card:hover .dn-role-card__media img {
  transform: scale(1.06);
}

body.landing-body .dn-role-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}

body.landing-body .dn-role-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dn-primary-dark);
  background: rgba(61, 92, 68, 0.12);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

body.landing-body .dn-role-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

body.landing-body .dn-role-card > .dn-role-card__body > p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

body.landing-body .dn-role-card ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
}

body.landing-body .dn-role-card li {
  font-size: 0.86rem;
  color: var(--dn-muted);
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
}

body.landing-body .dn-role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dn-accent);
}

body.landing-body .dn-role-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ---- H. Trust panel ---- */
body.landing-body .dn-trust-panel {
  isolation: isolate;
  color: #fff;
}

body.landing-body .dn-trust-panel__bg {
  position: absolute;
  inset: 0;
  background: var(--section-bg-image) center/cover no-repeat;
  z-index: 0;
}

body.landing-body .dn-trust-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(125deg, rgba(31, 26, 23, 0.92) 0%, rgba(42, 36, 32, 0.78) 55%, rgba(31, 26, 23, 0.9) 100%);
  pointer-events: none;
}

body.landing-body .dn-trust-panel__inner {
  position: relative;
  z-index: 2;
}

body.landing-body .dn-trust-panel__intro {
  max-width: 560px;
  margin-bottom: 2rem;
}

body.landing-body .dn-trust-panel__intro h2 {
  color: #fff;
}

body.landing-body .dn-trust-panel__intro p {
  color: rgba(253, 250, 245, 0.82);
  margin: 0;
}

body.landing-body .dn-trust-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--dn-radius-lg);
  background: rgba(253, 250, 245, 0.08);
  border: 1px solid rgba(253, 250, 245, 0.14);
  backdrop-filter: blur(10px);
  height: 100%;
  transition: transform 0.32s var(--dn-ease), background 0.32s ease;
}

body.landing-body .dn-trust-card:hover {
  transform: translateY(-4px);
  background: rgba(253, 250, 245, 0.12);
}

body.landing-body .dn-trust-card h3 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

body.landing-body .dn-trust-card p {
  color: rgba(253, 250, 245, 0.78);
  font-size: 0.88rem;
  margin: 0;
}

/* ---- Records strip ---- */
body.landing-body .dn-records {
  background: linear-gradient(180deg, var(--dn-bg), var(--dn-surface));
}

body.landing-body .dn-records-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.landing-body .dn-record-tile {
  padding: 1.2rem 1.15rem;
  border-radius: var(--dn-radius-lg);
  background: var(--dn-surface-elevated);
  border: 1px solid var(--dn-border);
  border-top: 3px solid var(--dn-primary);
  box-shadow: var(--dn-shadow-soft);
  transition: transform 0.3s var(--dn-ease), box-shadow 0.3s var(--dn-ease);
}

body.landing-body .dn-record-tile:nth-child(2) {
  border-top-color: var(--dn-accent);
  transform: translateY(12px);
}

body.landing-body .dn-record-tile:nth-child(4) {
  border-top-color: var(--dn-olive);
  transform: translateY(8px);
}

body.landing-body .dn-record-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--dn-shadow-lift);
}

body.landing-body .dn-record-tile:nth-child(2):hover,
body.landing-body .dn-record-tile:nth-child(4):hover {
  transform: translateY(-4px);
}

body.landing-body .dn-record-tile__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dn-accent);
  margin-bottom: 0.45rem;
}

body.landing-body .dn-record-tile h3 {
  font-size: 1.05rem;
}

body.landing-body .dn-record-tile p {
  margin: 0;
  font-size: 0.88rem;
}

/* ---- Voices ---- */
body.landing-body .dn-voices {
  isolation: isolate;
}

body.landing-body .dn-voices__bg {
  position: absolute;
  inset: 0;
  background: var(--section-bg-image) center/cover no-repeat;
  z-index: 0;
}

body.landing-body .dn-voices__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(118deg, rgba(31, 26, 23, 0.93) 0%, rgba(42, 36, 32, 0.82) 50%, rgba(31, 26, 23, 0.9) 100%);
  pointer-events: none;
}

body.landing-body .dn-voices__inner {
  position: relative;
  z-index: 2;
}

body.landing-body .dn-voice-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.3rem 1.25rem;
  border-radius: var(--dn-radius-lg);
  background: rgba(253, 250, 245, 0.07);
  border: 1px solid rgba(253, 250, 245, 0.14);
  backdrop-filter: blur(12px);
  transition: transform 0.32s var(--dn-ease), border-color 0.32s ease;
}

body.landing-body .dn-voice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 180, 138, 0.35);
}

body.landing-body .dn-voice-card__role {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dn-accent-soft);
  border: 1px solid rgba(253, 250, 245, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

body.landing-body .dn-voice-card blockquote {
  margin: 0;
  flex: 1;
}

body.landing-body .dn-voice-card blockquote p {
  color: rgba(253, 250, 245, 0.94);
  font-size: 0.96rem;
  line-height: 1.62;
  margin: 0;
}

body.landing-body .dn-voice-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(253, 250, 245, 0.12);
}

body.landing-body .dn-voice-card footer strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

body.landing-body .dn-voice-card footer span {
  font-size: 0.8rem;
  color: rgba(253, 250, 245, 0.65);
}

body.landing-body .dn-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--dn-accent), #a85538);
  border: 2px solid rgba(253, 250, 245, 0.2);
}

body.landing-body .dn-avatar--olive {
  background: linear-gradient(145deg, var(--dn-olive), #556642);
}

body.landing-body .dn-voices__note {
  margin: 1.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(253, 250, 245, 0.55);
}

/* ---- FAQ ---- */
body.landing-body .dn-faq {
  background: var(--dn-surface);
}

body.landing-body .dn-faq__wrap {
  max-width: 780px;
}

body.landing-body .dn-faq-list {
  display: grid;
  gap: 0.65rem;
}

body.landing-body .dn-faq-item {
  border-radius: var(--dn-radius-md);
  border: 1px solid var(--dn-border);
  background: var(--dn-surface-elevated);
  overflow: hidden;
  transition: box-shadow 0.28s var(--dn-ease);
}

body.landing-body .dn-faq-item:has(.dn-faq-trigger[aria-expanded="true"]) {
  box-shadow: var(--dn-shadow-soft);
  border-color: rgba(61, 92, 68, 0.2);
}

body.landing-body .dn-faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.05rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dn-text);
}

body.landing-body .dn-faq-chevron {
  flex-shrink: 0;
  color: var(--dn-muted);
  transition: transform 0.35s var(--dn-ease);
}

body.landing-body .dn-faq-trigger[aria-expanded="true"] .dn-faq-chevron {
  transform: rotate(180deg);
  color: var(--dn-primary);
}

body.landing-body .dn-faq-panel {
  padding: 0 1.15rem 1.05rem;
  animation: dn-faq-open 0.35s var(--dn-ease);
}

body.landing-body .dn-faq-panel p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

@keyframes dn-faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Final CTA ---- */
body.landing-body .dn-final-cta {
  isolation: isolate;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

body.landing-body .dn-final-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--section-bg-image) center/cover no-repeat;
  z-index: 0;
}

body.landing-body .dn-final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(31, 26, 23, 0.88) 0%, rgba(61, 92, 68, 0.55) 100%);
  pointer-events: none;
}

body.landing-body .dn-final-cta__box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  color: #fff;
}

body.landing-body .dn-final-cta__box h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  margin-bottom: 0.85rem;
}

body.landing-body .dn-final-cta__box > p {
  color: rgba(253, 250, 245, 0.85);
  margin-bottom: 1.5rem;
}

body.landing-body .dn-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* ---- Footer ---- */
body.landing-body .landing-footer {
  background: var(--dn-graphite);
  color: rgba(253, 250, 245, 0.82);
  border-top: 1px solid rgba(253, 250, 245, 0.08);
  padding: 4rem 0 1.75rem;
}

body.landing-body .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

body.landing-body .footer-grid h4 {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}

body.landing-body .footer-grid p {
  color: rgba(253, 250, 245, 0.68);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

body.landing-body .footer-grid a {
  color: rgba(253, 250, 245, 0.82);
  transition: color 0.25s ease;
}

body.landing-body .footer-grid a:hover {
  color: var(--dn-accent-soft);
}

body.landing-body .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

body.landing-body .footer-social {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

body.landing-body .footer-social__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 250, 245, 0.18);
  color: rgba(253, 250, 245, 0.88);
  transition:
    background 0.28s var(--dn-ease),
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s var(--dn-ease);
}

body.landing-body .footer-social__icon {
  width: 18px;
  height: 18px;
  display: block;
}

body.landing-body .footer-social__link:hover {
  background: rgba(196, 105, 74, 0.25);
  border-color: rgba(232, 180, 138, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

body.landing-body .footer-bottom {
  border-top: 1px solid rgba(253, 250, 245, 0.1);
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.landing-body .footer-bottom p {
  margin: 0;
}

body.landing-body .back-to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 80;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(253, 250, 245, 0.2);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--dn-primary), var(--dn-primary-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(45, 69, 52, 0.38);
  cursor: pointer;
  transition:
    transform 0.28s var(--dn-ease),
    box-shadow 0.28s ease,
    background 0.28s ease;
}

body.landing-body .back-to-top__icon {
  display: block;
  transition: transform 0.28s var(--dn-ease);
}

body.landing-body .back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(45, 69, 52, 0.45);
}

body.landing-body .back-to-top:hover .back-to-top__icon {
  transform: translateY(-2px);
}

body.landing-body .back-to-top:focus-visible {
  outline: 3px solid rgba(61, 92, 68, 0.45);
  outline-offset: 3px;
}

/* ---- Carousels (landing) ---- */
body.landing-body .dn-auto-carousel {
  --carousel-gap: 1rem;
  position: relative;
  width: 100%;
}

body.landing-body .dn-auto-carousel__viewport {
  overflow: visible;
}

body.landing-body .dn-auto-carousel__track {
  display: grid;
  width: 100%;
  gap: var(--carousel-gap);
}

body.landing-body .dn-auto-carousel__track > [aria-hidden="true"] {
  display: none !important;
}

body.landing-body .dn-auto-carousel--stats .dn-auto-carousel__track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

body.landing-body .dn-auto-carousel--campaigns .dn-auto-carousel__track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

body.landing-body .dn-auto-carousel--campaigns .campaign-card--landing {
  width: 100%;
  max-width: none;
}

body.landing-body .dn-auto-carousel--safety .dn-auto-carousel__track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

body.landing-body .dn-auto-carousel--voices .dn-auto-carousel__track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

@media (min-width: 993px) and (max-width: 1200px) {
  body.landing-body .dn-auto-carousel--campaigns .dn-auto-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.landing-body .dn-process-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.5rem;
  }
  body.landing-body .dn-process-rail__track {
    display: none;
  }
  body.landing-body .dn-process-step__marker {
    margin-top: 0;
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 992px) {
  body.landing-body .dn-auto-carousel__viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }
  body.landing-body .dn-auto-carousel__track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: dn-auto-scroll var(--dn-carousel-duration, 42s) linear infinite;
    will-change: transform;
  }
  body.landing-body .dn-auto-carousel:hover .dn-auto-carousel__track,
  body.landing-body .dn-auto-carousel:focus-within .dn-auto-carousel__track {
    animation-play-state: paused;
  }
  body.landing-body .dn-auto-carousel--stats .dn-stat-pill {
    flex: 0 0 clamp(260px, 72vw, 320px);
    width: clamp(260px, 72vw, 320px);
  }
  body.landing-body .dn-auto-carousel--campaigns .campaign-card--landing {
    flex: 0 0 clamp(240px, 72vw, 280px);
    width: clamp(240px, 72vw, 280px);
  }
  body.landing-body .dn-auto-carousel--safety .dn-trust-card {
    flex: 0 0 clamp(280px, 80vw, 340px);
    width: clamp(280px, 80vw, 340px);
  }
  body.landing-body .dn-auto-carousel--voices .dn-voice-card {
    flex: 0 0 clamp(300px, 85vw, 380px);
    width: clamp(300px, 85vw, 380px);
  }
}

@keyframes dn-auto-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - var(--carousel-gap) / 2), 0, 0); }
}

@media (max-width: 992px) and (prefers-reduced-motion: reduce) {
  body.landing-body .dn-auto-carousel__viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  body.landing-body .dn-auto-carousel__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.35rem;
  }
  body.landing-body .dn-auto-carousel__track > * {
    scroll-snap-align: start;
  }
}

/* ---- Scroll reveal ---- */
body.landing-body .reveal {
  opacity: 0;
  transition:
    opacity 0.65s var(--dn-ease),
    transform 0.7s var(--dn-ease-out),
    filter 0.65s ease;
  will-change: transform, opacity;
}

body.landing-body .reveal-up { transform: translateY(28px); }
body.landing-body .reveal-left { transform: translateX(-24px); }
body.landing-body .reveal-right { transform: translateX(24px); }
body.landing-body .reveal-scale { transform: scale(0.96); filter: blur(4px); }
body.landing-body .is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  body.landing-body .mobile-toggle { display: inline-block; }
  body.landing-body .nav-actions { display: none; }
  body.landing-body .nav-links {
    position: absolute;
    top: var(--dn-header-h);
    left: 1rem;
    right: 1rem;
    border-radius: var(--dn-radius-md);
    border: 1px solid var(--dn-border);
    background: rgba(253, 250, 245, 0.98);
    box-shadow: var(--dn-shadow-lift);
    padding: 0.85rem;
    display: grid;
    gap: 0.4rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  body.landing-body .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  body.landing-body .nav-links .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.65rem 1rem;
  }
  body.landing-body .mobile-actions {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--dn-border);
  }
  body.landing-body .dn-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.landing-body .dn-hero h1 { margin-inline: auto; }
  body.landing-body .dn-hero__lead { margin-inline: auto; }
  body.landing-body .dn-hero__actions,
  body.landing-body .dn-hero__chips { justify-content: center; }
  body.landing-body .dn-hero__stage {
    max-width: 420px;
    margin-inline: auto;
  }
  body.landing-body .dn-float--proof { left: 0; }
  body.landing-body .dn-about__grid { grid-template-columns: 1fr; }
  body.landing-body .dn-about__quote {
    right: 1rem;
    bottom: -1rem;
  }
  body.landing-body .dn-process-rail {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 0;
  }
  body.landing-body .dn-process-rail__track {
    display: none;
  }
  body.landing-body .dn-process-step {
    grid-row: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.1rem;
    align-items: start;
    text-align: left;
    padding: 1.05rem 1.1rem;
    background: var(--dn-surface-elevated);
    border-radius: var(--dn-radius-md);
    border: 1px solid var(--dn-border);
    box-shadow: var(--dn-shadow-soft);
  }
  body.landing-body .dn-process-step:hover {
    transform: none;
  }
  body.landing-body .dn-process-step__marker {
    flex-direction: column;
    margin: 0;
    align-items: center;
  }
  body.landing-body .dn-process-step__no {
    margin-top: 0.4rem;
  }
  body.landing-body .dn-process-step__body {
    max-width: none;
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  body.landing-body .dn-process-step:hover .dn-process-step__body {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  body.landing-body .dn-proof-panels { grid-template-columns: 1fr 1fr; }
  body.landing-body .dn-role-cards { grid-template-columns: 1fr; }
  body.landing-body .dn-role-card--featured { transform: none; }
  body.landing-body .dn-records-strip { grid-template-columns: 1fr 1fr; }
  body.landing-body .dn-record-tile:nth-child(n) { transform: none; }
  body.landing-body .footer-grid { grid-template-columns: 1fr 1fr; }
  body.landing-body .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body.landing-body .container { width: min(1180px, calc(100% - 1.5rem)); }
  body.landing-body .dn-section { padding: 4rem 0; }
  body.landing-body .dn-hero { min-height: auto; padding-bottom: 3.5rem; }
  body.landing-body .dn-hero__actions { flex-direction: column; align-items: stretch; }
  body.landing-body .dn-hero__actions .btn { width: 100%; }
  body.landing-body .dn-proof-panels { grid-template-columns: 1fr; }
  body.landing-body .dn-records-strip { grid-template-columns: 1fr; }
  body.landing-body .dn-final-cta__actions { flex-direction: column; align-items: stretch; }
  body.landing-body .dn-final-cta__actions .btn { width: 100%; }
  body.landing-body .footer-grid { grid-template-columns: 1fr; }

  /* Impact band: flatter curve + tighter heading on mobile only */
  body.landing-body .dn-impact-band__curve {
    height: 28px;
    transform: none;
    border-radius: 0 0 50% 50% / 0 0 16px 16px;
  }

  body.landing-body .dn-impact-band .container {
    padding-top: 0.25rem;
  }

  body.landing-body .dn-impact-band__head {
    margin-bottom: 1.5rem;
    padding-inline: 0.15rem;
  }

  body.landing-body .dn-impact-band__head h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
    max-width: none;
    line-height: 1.18;
  }

  body.landing-body .footer-brand-col .footer-social {
    gap: 0.55rem;
  }
}

@media (max-width: 576px) {
  :root { --dn-header-h: 74px; }

  body.landing-body .dn-impact-band__curve {
    height: 22px;
    border-radius: 0 0 50% 50% / 0 0 12px 12px;
  }

  body.landing-body .dn-impact-band {
    padding-bottom: 3.5rem;
  }

  body.landing-body .dn-impact-band__head h2 {
    font-size: clamp(1.35rem, 7vw, 1.65rem);
  }

  body.landing-body .dn-float--proof,
  body.landing-body .dn-float--flow { display: none; }
  body.landing-body .dn-scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-body .reveal,
  body.landing-body .btn,
  body.landing-body .campaign-card--landing,
  body.landing-body .dn-float,
  body.landing-body .dn-scroll-cue svg {
    transition: none !important;
    animation: none !important;
  }
  body.landing-body .reveal { opacity: 1; transform: none; filter: none; }
}
