:root {
  --dd1-bg-top: #1a0a2e;
  --dd1-bg-bottom: #12071f;
  --dd1-surface: #1f1035;
  --dd1-surface-strong: #261343;
  --dd1-border: rgba(255, 215, 0, 0.15);
  --dd1-text: #faf5ff;
  --dd1-muted: #d8cde7;
  --dd1-gold-1: #f59e0b;
  --dd1-gold-2: #fbbf24;
  --dd1-purple: #7c3aed;
  --dd1-shadow: 0 22px 50px rgba(5, 2, 15, 0.45);
  --dd1-radius-xl: 28px;
  --dd1-radius-lg: 20px;
  --dd1-radius-md: 16px;
  --dd1-max: 1180px;
  --dd1-header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.dd1-age-scroll-lock {
  overflow: hidden !important;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--dd1-text);
  background: linear-gradient(180deg, var(--dd1-bg-top) 0%, var(--dd1-bg-bottom) 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.42), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.13), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

body::after {
  content: '';
  position: fixed;
  inset: auto 0 0 auto;
  width: 40vw;
  height: 40vw;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 65%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.dd1-page {
  position: relative;
  z-index: 1;
  width: min(var(--dd1-max), calc(100% - 32px));
  margin: 0 auto;
}

.dd1-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dd1-header.is-scrolled {
  background: rgba(26, 10, 46, 0.92);
  border-bottom: 1px solid rgba(255, 215, 0, 0.16);
  box-shadow: 0 10px 28px rgba(4, 1, 11, 0.34);
}

.dd1-header-inner {
  width: min(var(--dd1-max), calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--dd1-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dd1-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.dd1-logo-img {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 8px 22px rgba(245, 158, 11, 0.18));
}

.dd1-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 14px;
  background: rgba(31, 16, 53, 0.85);
  cursor: pointer;
}

.dd1-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--dd1-text);
  border-radius: 999px;
}

.dd1-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.dd1-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dd1-muted);
  position: relative;
}

.dd1-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dd1-gold-2), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dd1-nav a:hover::after,
.dd1-nav a:focus-visible::after {
  opacity: 1;
}

.dd1-hero,
.dd1-page-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--dd1-header-h) + 3rem) 1rem 4rem;
  text-align: center;
}

.dd1-page-hero {
  min-height: 42vh;
}

.dd1-hero-inner,
.dd1-page-hero-inner {
  max-width: 860px;
}

.dd1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 999px;
  background: rgba(31, 16, 53, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: #fce588;
}

.dd1-hero h1,
.dd1-page-hero h1 {
  margin: 1.2rem 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 0.98;
  color: #fdf0b5;
  text-wrap: balance;
}

.dd1-shimmer {
  background: linear-gradient(90deg, #fdf3c2 10%, #f59e0b 42%, #fff7d6 50%, #fbbf24 58%, #fdf3c2 90%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: dd1Shimmer 3.6s linear infinite;
}

@keyframes dd1Shimmer {
  from { background-position: 0 center; }
  to { background-position: 220% center; }
}

.dd1-subline {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--dd1-muted);
  font-style: italic;
}

.dd1-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.dd1-button,
.dd1-link-button,
.dd1-age-actions button,
.dd1-cookie-banner button,
.dd1-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  color: #251302;
  background: linear-gradient(135deg, var(--dd1-gold-1), var(--dd1-gold-2));
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.22);
  cursor: pointer;
  transition: filter 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dd1-button:hover,
.dd1-link-button:hover,
.dd1-age-actions button:hover,
.dd1-cookie-banner button:hover,
.dd1-back-top:hover {
  filter: brightness(1.08);
  box-shadow: 0 18px 38px rgba(251, 191, 36, 0.3);
  transform: translateY(-1px);
}

.dd1-button.dd1-button--ghost,
.dd1-age-actions .dd1-button--ghost,
.dd1-cookie-banner .dd1-button--ghost {
  background: transparent;
  color: var(--dd1-text);
  border: 1px solid rgba(255, 215, 0, 0.24);
  box-shadow: none;
}

.dd1-section {
  margin-bottom: 1.6rem;
  padding: 2rem;
  border-radius: var(--dd1-radius-xl);
  background: linear-gradient(180deg, rgba(31, 16, 53, 0.92), rgba(26, 10, 46, 0.88));
  border: 1px solid var(--dd1-border);
  box-shadow: var(--dd1-shadow);
}

.dd1-section h2 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fce588;
}

.dd1-section-intro {
  max-width: 760px;
  color: var(--dd1-muted);
  line-height: 1.8;
}

.dd1-about-grid,
.dd1-editorial-grid,
.dd1-footer-grid,
.dd1-rg-grid,
.dd1-glossary-grid,
.dd1-page-grid {
  display: grid;
  gap: 1.2rem;
}

.dd1-about-grid,
.dd1-page-grid {
  grid-template-columns: 1.35fr 0.95fr;
}

.dd1-copy p,
.dd1-copy li,
.dd1-faq details p,
.dd1-card-note,
.dd1-legal-section p,
.dd1-legal-section li {
  margin: 0 0 1rem;
  color: var(--dd1-muted);
  line-height: 1.82;
}

.dd1-stat-panel,
.dd1-side-card,
.dd1-editorial-note,
.dd1-rg-item,
.dd1-glossary-item,
.dd1-legal-section,
.dd1-footer-box,
.dd1-faq details {
  background: rgba(38, 19, 67, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: var(--dd1-radius-lg);
  padding: 1.25rem;
}

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

.dd1-stat {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(19, 8, 34, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.dd1-stat strong {
  display: block;
  font-size: 2rem;
  color: #fff3b8;
  margin-bottom: 0.35rem;
}

.dd1-stat span {
  color: var(--dd1-muted);
  font-size: 0.92rem;
}

.dd1-timeline {
  position: relative;
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.dd1-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--dd1-gold-2), rgba(124, 58, 237, 0.5));
}

.dd1-step {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.1rem 1.1rem 1.4rem;
  background: rgba(26, 10, 46, 0.88);
  border-left: 3px solid rgba(255, 215, 0, 0.55);
  border-radius: 0 var(--dd1-radius-md) var(--dd1-radius-md) 0;
}

.dd1-step::before {
  content: attr(data-step);
  position: absolute;
  left: -2.25rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #221100;
  background: linear-gradient(135deg, var(--dd1-gold-1), var(--dd1-gold-2));
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.24);
}

.dd1-step h3,
.dd1-card h3,
.dd1-glossary-item h3,
.dd1-legal-section h2,
.dd1-legal-section h3,
.dd1-side-card h3 {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', serif;
  color: #fff0b3;
}

.dd1-cards {
  display: grid;
  gap: 1.25rem;
}

.dd1-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--dd1-radius-lg);
  background: linear-gradient(180deg, rgba(31, 16, 53, 0.96), rgba(20, 8, 35, 0.96));
  border: 1px solid var(--dd1-border);
  box-shadow: var(--dd1-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dd1-card:hover,
.dd1-card[data-hover='active'] {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 0, 0.28);
  box-shadow: 0 26px 54px rgba(5, 2, 15, 0.52);
}

.dd1-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.dd1-logo-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.dd1-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.dd1-brand-meta {
  flex: 1;
  min-width: 0;
}

.dd1-brand-meta h3 {
  margin: 0;
}

.dd1-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
  text-align: right;
}

.dd1-score strong {
  font-size: 1.65rem;
  line-height: 1;
  color: #fff3b8;
}

.dd1-stars {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--dd1-gold-2);
}

.dd1-bonus {
  padding: 1rem 1.1rem;
  border-radius: var(--dd1-radius-md);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(52, 24, 91, 0.55));
  border: 1px solid rgba(255, 215, 0, 0.14);
}

.dd1-offer {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #fff4c8;
  line-height: 1.35;
}

.dd1-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.dd1-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.16);
  color: #ffedac;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.dd1-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.dd1-card-actions .dd1-small {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--dd1-muted);
  line-height: 1.65;
}

.dd1-card-actions .dd1-link-button {
  flex-shrink: 0;
  min-width: 148px;
}

.dd1-card-note {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(216, 205, 231, 0.78);
}

.dd1-editorial-grid {
  grid-template-columns: 1.35fr 0.95fr;
}

.dd1-checklist,
.dd1-rg-checklist,
.dd1-quick-links,
.dd1-legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.dd1-checklist li,
.dd1-rg-checklist li,
.dd1-quick-links li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--dd1-muted);
}

.dd1-checklist li::before,
.dd1-rg-checklist li::before,
.dd1-quick-links li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dd1-gold-2);
}

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

.dd1-faq {
  display: grid;
  gap: 0.85rem;
}

.dd1-faq details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: #fff2be;
}

.dd1-faq details summary::-webkit-details-marker {
  display: none;
}

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

.dd1-rg-item a,
.dd1-footer-box a,
.dd1-legal-section a,
.dd1-copy a {
  color: #ffd76b;
}

.dd1-legal-main {
  padding-bottom: 2rem;
}

.dd1-legal-stack {
  display: grid;
  gap: 1rem;
}

.dd1-footer {
  padding: 1rem 0 3rem;
}

.dd1-footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dd1-footer-meta {
  margin-top: 1rem;
  padding: 1rem 1.25rem 0;
  color: var(--dd1-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.dd1-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.dd1-footer-brand img {
  width: 46px;
  height: 46px;
}

.dd1-footer h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  color: #fff0b3;
}

.dd1-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  background: rgba(26, 10, 46, 0.97) !important;
}

.dd1-age-box {
  margin-block: auto;
  width: min(420px, calc(100% - 12px));
  background: #1f1035;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
}

.dd1-age-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.dd1-cookie-banner {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 2147483645;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(22, 9, 39, 0.96);
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.dd1-cookie-banner[data-dd1-cookie-state='visible'] ~ .dd1-page .dd1-header {
  padding-top: 66px;
}

.dd1-cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.dd1-back-top {
  position: fixed;
  right: 20px;
  bottom: 94px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
}

.dd1-back-top--visible {
  opacity: 1;
  pointer-events: auto;
}

.dd1-legal-callout {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--dd1-gold-2);
  border-radius: 0 16px 16px 0;
  background: rgba(124, 58, 237, 0.14);
}

.dd1-small {
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .dd1-about-grid,
  .dd1-editorial-grid,
  .dd1-page-grid,
  .dd1-rg-grid,
  .dd1-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dd1-nav-toggle {
    display: inline-block;
  }

  .dd1-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(21, 8, 37, 0.98);
    border: 1px solid rgba(255, 215, 0, 0.14);
  }

  .dd1-nav.dd1-nav--open {
    display: flex;
  }

  .dd1-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dd1-card-actions .dd1-link-button {
    width: 100%;
  }

  .dd1-stats,
  .dd1-glossary-grid {
    grid-template-columns: 1fr;
  }

  .dd1-cookie-banner {
    inset: auto 10px 10px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 550px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  body { overflow-x: hidden; }
  .dd1-page, .dd1-page * { max-width: 100%; }
  .dd1-page { width: min(1180px, calc(100% - 12px)); }
  .dd1-header-inner { padding: 0.65rem 0.75rem; gap: 0.5rem; position: relative; }
  .dd1-logo { min-width: 0; align-items: center; }
  .dd1-logo-text { font-size: clamp(0.58rem, 2.9vw, 0.78rem); letter-spacing: 0.05em; word-break: break-word; overflow-wrap: anywhere; }
  .dd1-logo-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; }
  .dd1-nav { left: 8px; right: 8px; padding: 12px; }
  .dd1-nav a { font-size: 0.72rem; letter-spacing: 0.1em; padding-block: 0.2rem; }
  .dd1-hero, .dd1-page-hero { padding: 4.75rem 0.6rem 2.5rem; }
  .dd1-hero h1, .dd1-page-hero h1 { font-size: clamp(1.05rem, 5.8vw, 2rem); letter-spacing: 0.055em; word-break: break-word; overflow-wrap: anywhere; }
  .dd1-kicker { font-size: 0.65rem; letter-spacing: 0.12em; max-width: 100%; }
  .dd1-cta-row { gap: 0.65rem; margin-top: 1.35rem; }
  .dd1-button, .dd1-link-button, .dd1-form button, .dd1-age-actions button, .dd1-cookie-banner button, .dd1-back-top { padding: 0.72rem 1rem; font-size: 0.88rem; max-width: 100%; white-space: normal; word-break: break-word; overflow-wrap: anywhere; min-width: 0; }
  .dd1-hero p, .dd1-hero .dd1-subline, .dd1-page-hero p, .dd1-page-hero .dd1-subline { white-space: normal; word-break: break-word; overflow-wrap: anywhere; max-width: 100%; }
  .dd1-section { padding: 0.95rem 0.75rem; border-radius: 18px; margin-bottom: 1.25rem; }
  .dd1-section h2 { font-size: clamp(1.02rem, 4.8vw, 1.55rem); letter-spacing: 0.06em; word-break: break-word; overflow-wrap: anywhere; }
  .dd1-methodology-table, table { font-size: 0.78rem; table-layout: auto; width: max-content; min-width: 100%; }
  .dd1-methodology-table thead th, table thead th { white-space: nowrap; }
  .dd1-methodology-table th, .dd1-methodology-table td, table th, table td { padding: 0.5rem 0.4rem; word-break: normal; overflow-wrap: break-word; hyphens: none; }
  .dd1-table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dd1-card { padding: 0.95rem 0.75rem; border-radius: 18px; }
  .dd1-card:hover, .dd1-card[data-hover="active"] { transform: none; }
  .dd1-card-top { flex-wrap: wrap; align-items: center; gap: 0.75rem; padding-bottom: 0.85rem; }
  .dd1-score { margin-left: auto; text-align: right; flex: 0 0 auto; min-width: 0; max-width: 100%; word-break: break-word; overflow-wrap: anywhere; }
  .dd1-badge { font-size: 0.65rem; padding: 0.32rem 0.55rem; max-width: 100%; white-space: normal; text-align: left; }
  .dd1-score strong { font-size: 1.35rem; word-break: break-word; overflow-wrap: anywhere; }
  .dd1-card, .dd1-card * { min-width: 0; max-width: 100%; }
  .dd1-card h3, .dd1-card p, .dd1-card a, .dd1-card .dd1-bonus, .dd1-card .dd1-offer { word-break: break-word; overflow-wrap: anywhere; }
  .dd1-logo-wrap { width: min(108px, 34vw); max-width: 100%; height: auto; min-height: 3.75rem; }
  .dd1-brand-meta { min-width: 0; width: auto; flex: 1 1 120px; }
  .dd1-bonus { padding: 0.75rem 0.8rem; font-size: 0.88rem; }
  .dd1-card-actions { gap: 0.85rem; }
  .dd1-cookie-banner { padding: 10px; gap: 10px; font-size: 0.84rem; }
  .dd1-cookie-banner p { margin: 0; flex: 1 1 100%; text-align: center; }
  .dd1-footer-box { padding: 1.15rem 0.75rem; border-radius: 20px; }
  .dd1-age-overlay { padding: 0.65rem; }
  .dd1-age-box { padding: 1.1rem 0.75rem; }
  .dd1-age-box h2 { font-size: clamp(1rem, 4.5vw, 1.35rem); letter-spacing: 0.06em; word-break: break-word; }
  .dd1-rg-item { min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
  .dd1-rg-checklist { gap: 0.55rem; padding-inline: 0; }
  .dd1-rg-checklist li, .dd1-rg-checklist p { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; min-width: 0; }
}

@media (max-width: 380px) {
  .dd1-page { width: min(1180px, calc(100% - 8px)); }
  .dd1-logo-text { font-size: 0.52rem; letter-spacing: 0.02em; }
  .dd1-hero h1, .dd1-page-hero h1 { font-size: clamp(1rem, 5.2vw, 1.75rem); }
  .dd1-header-inner { padding: 0.55rem 0.55rem; }
  .dd1-section, .dd1-card, .dd1-footer-box { padding-inline: 0.65rem; }
  .dd1-methodology-table th, .dd1-methodology-table td, table th, table td { padding: 0.42rem 0.32rem; font-size: 0.72rem; }
}

@media (max-width: 900px) {
  .dd1-header-inner { position: relative; }
}
