/* ============================================================
   Demokratie-Wegweiser — Homepage styles
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #FAFAFA;
  color: #153544;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Buttons ---------- */
.dw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
  white-space: nowrap;
}
.dw-btn:hover { opacity: .92; }
.dw-btn:active { transform: scale(.98); }
.dw-btn-primary { background: #153544; color: #fff; }
.dw-btn-ghost { background: transparent; color: #153544; }
.dw-btn-ghost:hover { background: #F5F4F4; opacity: 1; }
.dw-btn-sky { background: #8BBEE1; color: #153544; }
.dw-btn-lg { font-size: 18px; padding: 16px 22px; }

/* ---------- Header ---------- */
.dw-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #F5F4F4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  height: 80px;
}
.dw-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.dw-brand img {
  height: 44px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  aspect-ratio: 636 / 246;
}
.dw-nav { display: flex; gap: 4px; align-items: center; }
.dw-nav-item {
  font-weight: 700; font-size: 16px;
  color: #153544;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .15s ease;
}
.dw-nav-item:hover { background: #F5F4F4; }
.dw-nav-item.is-active { background: rgba(139,190,225,0.2); }
.dw-header-cta { display: flex; gap: 8px; align-items: center; }

/* ---------- Hero ── shared ── */
.dw-hero { position: relative; }
.dw-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 48px 0;
  position: relative; z-index: 2;
}
.dw-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5C595C;
  background: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 9999px;
}
.dw-hero-eyebrow-light {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.dw-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #18A038;
  box-shadow: 0 0 0 0 rgba(24,160,56,0.6);
  animation: dw-pulse 2s infinite;
}
@keyframes dw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(24,160,56,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(24,160,56,0); }
  100% { box-shadow: 0 0 0 0 rgba(24,160,56,0); }
}

.dw-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  color: #153544;
  text-wrap: balance;
}
.dw-hero-title em { color: #C17F00; font-style: normal; }
.dw-hero-title-xl { font-size: 88px; }
.dw-hero-title-mega { font-size: 140px; line-height: 0.92; color: #fff; }
.dw-hero-title-mega em { color: #8BBEE1; }

.dw-hero-lead {
  font-size: 20px; line-height: 1.45;
  color: #153544;
  max-width: 620px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.dw-hero-lead-light { color: rgba(255,255,255,0.85); max-width: 720px; font-size: 22px; }

.dw-hero-search {
  display: flex; gap: 12px; align-items: stretch;
  max-width: 720px;
  margin-bottom: 24px;
}
.dw-hero-input {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 0 18px;
  height: 60px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 1px 2px rgba(21,53,68,0.04), 0 8px 32px rgba(21,53,68,0.10);
}
.dw-hero-input input {
  all: unset;
  flex: 1;
  font-size: 18px;
  color: #153544;
  font-family: var(--font-sans);
}
.dw-hero-divider { width: 1px; height: 24px; background: rgba(21,53,68,0.2); }
.dw-hero-level { font-size: 16px; color: #153544; font-weight: 700; }
.dw-hero-search-light .dw-hero-input { box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

.dw-hero-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 14px; color: #5C595C;
  flex-wrap: wrap;
}
.dw-hero-meta b { color: #153544; font-weight: 700; }
.dw-meta-sep { opacity: 0.4; }

/* ── Hero variant A — Map ── */
.dw-hero-map { padding-bottom: 96px; }
.dw-map-bg {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245,244,244,0.55) 0%, rgba(245,244,244,0.85) 75%, #FAFAFA 100%),
    url("../map-base.png") center/cover no-repeat;
}
.dw-map-tile { display: none; }
.dw-map-overlay-img {
  position: absolute; inset: 0;
  background: url("../map-overlay.png") center/cover no-repeat;
  opacity: 0.55;
  mix-blend-mode: multiply;
}
.dw-map-target {
  position: absolute;
  width: 220px; height: 220px;
  top: 200px; right: 8%;
  border-radius: 50%;
  background: rgba(139,190,225,0.18);
  border: 4px solid #8BBEE1;
  animation: dw-target-pulse 3s ease-in-out infinite;
}
@keyframes dw-target-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
.dw-hero-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 48px 48px 40px;
  max-width: 820px;
  box-shadow: 0 1px 2px rgba(21,53,68,0.04), 0 24px 64px rgba(21,53,68,0.10);
}

/* ── Hero variant B — Split ── */
.dw-hero-split {
  background: linear-gradient(180deg, #F5F4F4 0%, #FAFAFA 100%);
  padding-bottom: 80px;
}
.dw-split-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.dw-split-left .dw-hero-eyebrow { background: #fff; }
.dw-split-right { position: relative; }

.dw-mockup {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(21,53,68,0.04), 0 24px 60px rgba(21,53,68,0.14);
  position: relative;
  overflow: hidden;
}
.dw-mockup::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../map-base.png") center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.dw-mockup-head { position: relative; z-index: 1; padding-bottom: 12px; border-bottom: 1px solid #F5F4F4; margin-bottom: 12px; }
.dw-mockup-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.dw-mtab { font-size: 13px; font-weight: 700; padding: 6px 10px; border-radius: 4px; color: #153544; }
.dw-mtab.is-active { background: rgba(139,190,225,0.25); }
.dw-mockup-body { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.dw-mockup-card { display: flex; gap: 12px; padding: 12px; background: rgba(255,255,255,0.96); border-radius: 12px; backdrop-filter: blur(8px); }
.dw-mockup-avatar { width: 44px; height: 44px; border-radius: 22px; background: #F5F4F4; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #153544; flex-shrink: 0; }
.dw-mockup-text { flex: 1; min-width: 0; }
.dw-mockup-name { font-weight: 700; font-size: 14px; color: #153544; line-height: 1.2; }
.dw-mockup-party { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #5C595C; margin-top: 2px; }
.dw-mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.dw-mockup-pill { display: inline-block; margin-top: 6px; font-size: 11px; padding: 3px 8px; background: #CA8350; color: #fff; border-radius: 9999px; }
.dw-mockup-pin {
  position: absolute;
  width: 80px; height: 80px;
  bottom: 32px; right: 32px;
  border-radius: 50%;
  background: rgba(139,190,225,0.18);
  border: 3px solid #8BBEE1;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero variant C — Navy ── */
.dw-hero-navy {
  background: #153544;
  padding-bottom: 96px;
  overflow: hidden;
  position: relative;
}
.dw-navy-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(139,190,225,0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(139,190,225,0.10), transparent 40%);
  pointer-events: none;
}
.dw-hero-navy .dw-hero-inner { padding-top: 96px; }

/* ---------- Audience paths ---------- */
.dw-paths {
  max-width: 1280px;
  margin: 64px auto 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 3;
}
.dw-paths-light { margin-top: 80px; }

.dw-path {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease;
  box-shadow: 0 1px 2px rgba(21,53,68,0.04), 0 12px 36px rgba(21,53,68,0.08);
  border: 1px solid transparent;
  min-height: 320px;
}
.dw-path:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(21,53,68,0.04), 0 24px 48px rgba(21,53,68,0.16); border-color: rgba(139,190,225,0.4); }

.dw-path-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5C595C;
  margin-bottom: 24px;
}
.dw-path-num {
  background: #F5F4F4;
  color: #153544;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0;
}

.dw-path-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: #F5F4F4;
  color: #153544;
  margin-bottom: 20px;
}
.dw-path-sky .dw-path-icon-wrap { background: #C4DEF0; }
.dw-path-navy .dw-path-icon-wrap { background: #153544; color: #fff; }
.dw-path-clay .dw-path-icon-wrap { background: rgba(193,127,0,0.15); color: #C17F00; }

.dw-path-title {
  font-size: 26px; font-weight: 700; line-height: 1.05;
  margin: 0 0 12px;
  color: #153544;
  text-wrap: balance;
}
.dw-path-body {
  font-size: 15px; line-height: 1.5;
  color: #5C595C;
  margin: 0 0 24px;
  flex: 1;
}
.dw-path-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  color: #153544;
  align-self: flex-start;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, gap .15s ease;
}
.dw-path:hover .dw-path-cta { border-color: #153544; gap: 12px; }

.dw-path-clay .dw-path-cta { color: #C17F00; }
.dw-path-clay:hover .dw-path-cta { border-color: #C17F00; }

/* ---------- Sections ---------- */
.dw-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
}
.dw-section-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #5C595C;
  padding: 6px 12px;
  background: #F5F4F4;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.dw-section-head { margin-bottom: 48px; max-width: 760px; }
.dw-section-title {
  font-size: 48px; line-height: 1.05; font-weight: 900;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: #153544;
  text-wrap: balance;
}
.dw-section-title-light { color: #fff; }
.dw-section-lead {
  font-size: 20px; line-height: 1.45;
  color: #5C595C;
  margin: 0;
  text-wrap: pretty;
}

/* How it works */
.dw-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dw-how-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #F5F4F4;
}
.dw-how-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  color: #8BBEE1;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.dw-how-title { font-size: 22px; font-weight: 700; margin: 0 0 8px; color: #153544; }
.dw-how-body { font-size: 16px; line-height: 1.5; color: #5C595C; margin: 0; }

/* Mission */
.dw-mission {
  background: #fff;
  max-width: none;
  padding: 96px 48px;
}
.dw-mission-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.dw-mission-lead { font-size: 20px; line-height: 1.5; color: #153544; margin: 0 0 20px; text-wrap: pretty; }
.dw-mission-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #F5F4F4;
}
.dw-stat-num { font-family: var(--font-display); font-weight: 900; font-size: 36px; color: #153544; line-height: 1; letter-spacing: -0.02em; }
.dw-stat-lbl { font-size: 13px; color: #5C595C; margin-top: 6px; font-weight: 700; }

/* Data */
.dw-data { background: #FAFAFA; max-width: none; padding: 96px 48px; }
.dw-data-grid {
  max-width: 1280px; margin: 0 auto;
}
.dw-data-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: center;
  border: 1px solid #F5F4F4;
}
figure.dw-data-mark { margin: 0; }
figure.dw-data-mark img { width: 22px; height: 22px; display: block; }
.dw-data-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #C4DEF0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dw-data-name { font-size: 15px; font-weight: 700; color: #153544; line-height: 1.2; }
.dw-data-role { font-size: 13px; color: #5C595C; margin-top: 2px; }
.dw-data-actions {
  max-width: 1280px; margin: 32px auto 0;
  display: flex; gap: 32px; flex-wrap: wrap;
}
.dw-link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: #153544;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  transition: border-color .15s ease, gap .15s ease;
}
.dw-link-arrow:hover { border-color: #153544; gap: 12px; }

/* Mitmachen */
.dw-mitmachen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dw-mit-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid #F5F4F4;
  display: flex; flex-direction: column;
}
.dw-mit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(139,190,225,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.dw-mit-title { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.dw-mit-body { font-size: 15px; line-height: 1.5; color: #5C595C; margin: 0 0 20px; flex: 1; }

/* Spenden */
.dw-spenden {
  background: #153544;
  max-width: none;
  padding: 96px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dw-spenden::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  bottom: -180px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,190,225,0.18), transparent 70%);
  pointer-events: none;
}
.dw-spenden-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: start;
  position: relative; z-index: 2;
}
.dw-spenden .dw-section-eyebrow { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.dw-spenden-lead { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0 0 32px; max-width: 540px; }
.dw-spenden-amounts { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.dw-amt {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.2;
  transition: background .15s ease, border-color .15s ease;
}
.dw-amt:hover { background: rgba(255,255,255,0.14); }
.dw-amt span { font-size: 12px; font-weight: 400; opacity: 0.7; margin-top: 4px; }
.dw-amt.is-active { background: #8BBEE1; color: #153544; border-color: #8BBEE1; }
.dw-amt.is-active span { opacity: 0.7; }
.dw-spenden-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dw-spenden-note { font-size: 13px; color: rgba(255,255,255,0.6); }

.dw-foerderer-h { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.dw-foerderer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dw-foerderer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

/* Press */
.dw-press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.dw-press-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  margin: 0;
  border: 1px solid #F5F4F4;
  display: flex; flex-direction: column;
  gap: 24px;
}
.dw-press-card blockquote {
  margin: 0;
  font-size: 22px; line-height: 1.3;
  font-weight: 700;
  color: #153544;
  text-wrap: balance;
}
.dw-press-card figcaption { font-size: 13px; display: flex; flex-direction: column; gap: 4px; }
.dw-press-outlet { font-weight: 700; color: #153544; letter-spacing: 0.04em; }
.dw-press-date { color: #5C595C; }
.dw-press-logos {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid #F5F4F4;
}
.dw-press-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #ACACAC;
}

/* FAQ */
.dw-faq-list { max-width: 880px; }
.dw-faq-item {
  border-top: 1px solid #F5F4F4;
  padding: 24px 0;
  cursor: pointer;
}
.dw-faq-item:last-child { border-bottom: 1px solid #F5F4F4; }
.dw-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 20px; font-weight: 700;
  color: #153544;
}
.dw-faq-q svg { transition: transform .2s ease; flex-shrink: 0; margin-left: 16px; }
details.dw-faq-item[open] .dw-faq-q svg { transform: rotate(180deg); }
.dw-faq-a {
  font-size: 16px; line-height: 1.5;
  color: #5C595C;
  margin-top: 12px;
  max-width: 720px;
}

/* Kontakt */
.dw-kontakt { padding-bottom: 32px; }
.dw-kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.dw-kontakt-cards { display: flex; flex-direction: column; gap: 12px; }
.dw-kontakt-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #F5F4F4;
}
.dw-kontakt-h { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5C595C; margin-bottom: 6px; }
.dw-kontakt-card a { font-size: 18px; font-weight: 700; color: #153544; }
.dw-kontakt-card a:hover { text-decoration: underline; }

/* Footer */
.dw-footer {
  background: #153544;
  color: rgba(255,255,255,0.85);
  padding: 64px 48px 24px;
}
.dw-footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
}
.dw-footer-brand {
  display: inline-block;
  line-height: 0;
}
.dw-footer-brand img {
  height: 40px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  aspect-ratio: 636 / 246;
  margin-bottom: 16px;
}
.dw-footer-tagline { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.7); margin: 0 0 20px; max-width: 320px; }
.dw-footer-osm { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; gap: 12px; align-items: center; }
.dw-heart-mark { font-style: italic; color: #C17F00; font-size: 14px; }
.dw-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dw-footer-h { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.dw-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dw-footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); }
.dw-footer-col a:hover { color: #fff; text-decoration: underline; }
.dw-footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Mobile mockup (used in design canvas) ---------- */
.dw-mobile-frame {
  width: 375px;
  height: 812px;
  background: #fff;
  border-radius: 36px;
  border: 8px solid #153544;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(21,53,68,0.18);
  display: flex; flex-direction: column;
  font-family: var(--font-sans);
  position: relative;
}
.dw-mobile-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px 6px;
  font-size: 13px; font-weight: 700;
  background: #fff;
}
.dw-mobile-status-icons { display: flex; gap: 6px; }
.dw-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px 12px;
  border-bottom: 1px solid #F5F4F4;
}
.dw-mobile-header img { height: 28px; }
.dw-mobile-burger { width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.dw-mobile-burger span { height: 2px; background: #153544; border-radius: 1px; }

.dw-mobile-hero { padding: 24px 20px 16px; background: linear-gradient(180deg, #F5F4F4 0%, #fff 100%); }
.dw-mobile-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5C595C; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(139,190,225,0.2); border-radius: 9999px; margin-bottom: 14px; }
.dw-mobile-h1 { font-size: 32px; line-height: 1; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 8px; color: #153544; }
.dw-mobile-h1 em { color: #C17F00; font-style: normal; }
.dw-mobile-lead { font-size: 14px; line-height: 1.45; color: #5C595C; margin: 0 0 16px; }
.dw-mobile-search {
  background: #fff;
  border-radius: 12px;
  padding: 0 14px;
  height: 52px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 1px 2px rgba(21,53,68,0.04), 0 8px 24px rgba(21,53,68,0.08);
  margin-bottom: 12px;
}
.dw-mobile-search input { all: unset; flex: 1; font-size: 15px; color: #153544; }
.dw-mobile-cta { width: 100%; }

.dw-mobile-paths { padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; }
.dw-mobile-paths .dw-mobile-path-h { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5C595C; margin-bottom: 4px; }
.dw-mobile-path {
  background: #fff;
  border: 1px solid #F5F4F4;
  border-radius: 14px;
  padding: 16px;
  display: flex; gap: 14px; align-items: center;
}
.dw-mobile-path-icon { width: 44px; height: 44px; border-radius: 12px; background: #F5F4F4; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dw-mobile-path-sky .dw-mobile-path-icon { background: #C4DEF0; }
.dw-mobile-path-navy .dw-mobile-path-icon { background: #153544; color: #fff; }
.dw-mobile-path-clay .dw-mobile-path-icon { background: rgba(193,127,0,0.15); color: #C17F00; }
.dw-mobile-path-text { flex: 1; }
.dw-mobile-path-eb { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #5C595C; }
.dw-mobile-path-title { font-size: 16px; font-weight: 700; color: #153544; line-height: 1.15; margin-top: 2px; }
.dw-mobile-path-arrow { color: #153544; flex-shrink: 0; }

.dw-mobile-section {
  padding: 24px 20px;
  border-top: 8px solid #F5F4F4;
}
.dw-mobile-section-eb { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5C595C; margin-bottom: 8px; }
.dw-mobile-section-h { font-size: 22px; line-height: 1.1; font-weight: 900; color: #153544; margin: 0 0 12px; letter-spacing: -0.01em; }
.dw-mobile-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.dw-mobile-stat { background: #FAFAFA; border-radius: 10px; padding: 14px; }
.dw-mobile-stat-n { font-size: 22px; font-weight: 900; color: #153544; line-height: 1; }
.dw-mobile-stat-l { font-size: 11px; color: #5C595C; margin-top: 4px; font-weight: 700; }

/* ---------- Subpage shell ---------- */
.dw-subpage-hero {
  background: #F5F4F4;
  padding: 64px 48px 48px;
}
.dw-subpage-hero-inner { max-width: 1280px; margin: 0 auto; }
.dw-subpage-h1 { font-size: 64px; line-height: 1; font-weight: 900; letter-spacing: -0.02em; color: #153544; margin: 16px 0 16px; text-wrap: balance; }
.dw-subpage-lead { font-size: 22px; line-height: 1.45; color: #5C595C; max-width: 720px; margin: 0; }
.dw-subpage-body { max-width: 1280px; margin: 0 auto; padding: 64px 48px; }

/* ---------- Generic ---------- */
.dw-end-spacer { height: 32px; }
