:root {
  --dd14-bg-start: #fef3e2;
  --dd14-bg-mid: #f7dfb6;
  --dd14-bg-end: #e8c98c;
  --dd14-card: #fffaef;
  --dd14-amber: #e8a040;
  --dd14-amber-deep: #d48820;
  --dd14-coral: #f0795a;
  --dd14-coral-deep: #d6603e;
  --dd14-sand: #d4b06a;
  --dd14-text: #4a3018;
  --dd14-muted: #8a6840;
  --dd14-border: rgba(232, 160, 64, 0.32);
  --dd14-shadow:
    0 10px 24px rgba(232, 160, 64, 0.14), 0 2px 6px rgba(232, 160, 64, 0.08);
  --dd14-max: 1220px;
  --dd14-radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dd14-text);
  background: linear-gradient(
    180deg,
    var(--dd14-bg-start) 0%,
    var(--dd14-bg-mid) 45%,
    var(--dd14-bg-end) 100%
  );
}

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

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

button,
input,
select {
  font: inherit;
}

.dd14-page {
  min-height: 100vh;
}

.dd14-main {
  position: relative;
  z-index: 1;
}

.dd14-section {
  position: relative;
  padding: 88px 24px;
  overflow: hidden;
}

.dd14-section::before,
.dd14-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dd14-section::before {
  top: 0;
  right: 0;
  width: 320px;
  height: 160px;
  border-radius: 50% 50% 0 0;
  background: rgba(232, 160, 64, 0.3);
}

.dd14-section::after {
  left: -40px;
  bottom: -30px;
  width: 220px;
  height: 120px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 176, 106, 0.35),
    rgba(212, 176, 106, 0) 70%
  );
  border-bottom-left-radius: 120px 80px;
  border-bottom-right-radius: 140px 70px;
}

.dd14-container {
  width: min(100%, var(--dd14-max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dd14-section-title {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.dd14-section-title em {
  color: var(--dd14-coral);
  font-style: italic;
}

.dd14-section-intro {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--dd14-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.dd14-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--dd14-amber);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dd14-eyebrow::before {
  content: "☀";
  font-size: 0.9rem;
}

.dd14-btn,
.dd14-cta,
.dd14-chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dd14-btn,
.dd14-cta {
  padding: 14px 22px;
  background: var(--dd14-coral);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(240, 121, 90, 0.32);
}

.dd14-btn:hover,
.dd14-btn:focus-visible,
.dd14-cta:hover,
.dd14-cta:focus-visible {
  background: var(--dd14-amber);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 160, 64, 0.34);
}

.dd14-skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--dd14-coral);
  color: #fff;
  z-index: 3000;
}

.dd14-skip-link:focus {
  top: 16px;
}

.dd14-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    padding-top 0.25s ease;
}

.dd14-header-scrolled {
  background: rgba(254, 243, 226, 0.95);
  box-shadow: 0 2px 16px rgba(232, 160, 64, 0.15);
}

.dd14-header-inner {
  position: relative;
  width: min(100%, var(--dd14-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
}

.dd14-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.dd14-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dd14-coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.dd14-brand-text strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.dd14-brand-text span {
  display: block;
  font-size: 0.69rem;
  font-style: italic;
  font-weight: 500;
  color: var(--dd14-amber);
}

.dd14-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--dd14-border);
  background: rgba(255, 250, 239, 0.9);
  color: var(--dd14-text);
}

.dd14-nav-toggle span,
.dd14-nav-toggle span::before,
.dd14-nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 2px;
  content: "";
}

.dd14-nav-toggle span::before {
  top: -6px;
}

.dd14-nav-toggle span::after {
  top: 4px;
}

.dd14-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.dd14-nav a {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dd14-text);
}

.dd14-nav a:hover,
.dd14-nav a:focus-visible {
  color: var(--dd14-coral);
}

.dd14-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--dd14-coral);
  transition: right 0.2s ease;
}

.dd14-nav a:hover::after,
.dd14-nav a:focus-visible::after,
.dd14-nav a[aria-current="page"]::after {
  right: 0;
}

.dd14-nav a[aria-current="page"]::before {
  content: "☀";
  margin-right: 6px;
  font-family: "Inter", sans-serif;
  color: var(--dd14-amber);
}

.dd14-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: 24px;
}

.dd14-hero-split {
  display: flex;
  min-height: calc(100vh - 120px);
  background: rgba(255, 250, 239, 0.45);
  border: 1px solid rgba(232, 160, 64, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(160, 102, 35, 0.1);
}

.dd14-hero-left,
.dd14-hero-right {
  position: relative;
  min-height: 560px;
}

.dd14-hero-left {
  width: 58%;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 239, 0.96),
    rgba(247, 223, 182, 0.86)
  );
  padding: 72px 90px 72px 56px;
  display: flex;
  align-items: center;
}

.dd14-hero-copy {
  max-width: 580px;
}

.dd14-kicker {
  margin: 0 0 18px;
  color: var(--dd14-amber);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.dd14-headline,
.dd14-hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -1px;
}

.dd14-headline em {
  color: var(--dd14-coral);
  font-style: italic;
}

.dd14-hero-bar {
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--dd14-coral);
  margin: 22px 0 20px;
}

.dd14-hero p {
  margin: 0 0 28px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--dd14-muted);
}

.dd14-hero-right {
  width: 42%;
  background:
    repeating-linear-gradient(
      160deg,
      transparent 0%,
      transparent 40%,
      rgba(244, 120, 90, 0.25) 40%,
      rgba(244, 120, 90, 0.25) 41%
    ),
    linear-gradient(180deg, #f7dfb6 0%, #e8a040 60%, #f0795a 100%);
}

.dd14-hero-right::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 320px;
  height: 160px;
  border-radius: 50% 50% 0 0;
  background: rgba(232, 160, 64, 0.45);
}

.dd14-hero-right::after {
  content: "";
  position: absolute;
  inset: auto 20px 24px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 239, 0.35);
}

.dd14-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dd14-spotlight-card,
.dd14-panel,
.dd14-team-card,
.dd14-rg-item,
.dd14-legal-card {
  background: var(--dd14-card);
  border: 1px solid var(--dd14-border);
  border-radius: var(--dd14-radius);
  box-shadow: var(--dd14-shadow);
}

.dd14-spotlight-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dd14-logo-wrap {
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 56px;
  border-radius: 8px;
  padding: 6px 8px;
  flex-shrink: 0;
}

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

.dd14-spotlight-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dd14-spotlight-head h3,
.dd14-card-name,
.dd14-team-card h3,
.dd14-rg-item h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
}

.dd14-spotlight-card p,
.dd14-team-card p,
.dd14-rg-copy,
.dd14-legal-card p {
  margin: 0;
  color: var(--dd14-muted);
  line-height: 1.7;
}

.dd14-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
}

.dd14-table-wrap {
  overflow-x: auto;
  background: rgba(255, 250, 239, 0.82);
  border: 1px solid rgba(232, 160, 64, 0.3);
  border-radius: 18px;
  padding: 18px;
}

.dd14-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 340px;
}

.dd14-table th,
.dd14-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(232, 160, 64, 0.18);
  text-align: left;
}

.dd14-table th {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
}

.dd14-table td:last-child,
.dd14-table th:last-child {
  text-align: right;
}

.dd14-method-copy {
  background: rgba(255, 250, 239, 0.72);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(232, 160, 64, 0.2);
}

.dd14-method-copy p {
  margin: 0 0 16px;
  color: var(--dd14-muted);
  line-height: 1.8;
}

.dd14-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.dd14-panel {
  padding: 28px;
}

.dd14-form-grid {
  display: grid;
  gap: 16px;
}

.dd14-label {
  display: grid;
  gap: 8px;
  color: var(--dd14-text);
  font-weight: 600;
}

.dd14-input,
.dd14-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(232, 160, 64, 0.5);
  background: rgba(255, 250, 239, 0.96);
  color: var(--dd14-text);
  font-family: "Outfit", sans-serif;
}

.dd14-input:focus,
.dd14-select:focus {
  outline: 2px solid rgba(240, 121, 90, 0.25);
  outline-offset: 2px;
}

.dd14-results {
  display: grid;
  gap: 14px;
}

.dd14-result {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(232, 160, 64, 0.12);
}

.dd14-result strong {
  display: block;
  margin-top: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
}

.dd14-disclaimer {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--dd14-muted);
}

.dd14-cards-grid {
  display: grid;
  gap: 24px;
}

.dd14-card {
  background: var(--dd14-card);
  border: 1px solid #e8a040;
  border-radius: 16px;
  box-shadow:
    0 10px 24px rgba(232, 160, 64, 0.14),
    0 2px 6px rgba(232, 160, 64, 0.08);
  overflow: hidden;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-width 0.18s ease;
}

.dd14-card-banner {
  position: relative;
  height: 130px;
  background: linear-gradient(135deg, #f7dfb6 0%, #e8a040 60%, #f0795a 100%);
}

.dd14-card-banner::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dd14-amber);
}

.dd14-card-body {
  padding: 0 24px 24px;
}

.dd14-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 18px auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--dd14-amber);
  color: var(--dd14-text);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd14-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 24px;
}

.dd14-logo-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  margin-top: -40px;
  flex-shrink: 0;
}

.dd14-logo-orb .dd14-logo-wrap {
  width: 78px;
  height: 48px;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.dd14-card-grid {
  display: grid;
  gap: 24px;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.dd14-card-col {
  min-width: 0;
}

.dd14-card-name {
  margin-bottom: 10px;
}

.dd14-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.dd14-sun {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dd14-amber);
  box-shadow:
    0 0 0 2px rgba(232, 160, 64, 0.18),
    0 0 0 5px rgba(232, 160, 64, 0.08);
}

.dd14-sun.is-muted {
  background: rgba(212, 176, 106, 0.35);
  box-shadow:
    0 0 0 2px rgba(212, 176, 106, 0.2),
    0 0 0 5px rgba(212, 176, 106, 0.08);
}

.dd14-rating-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--dd14-muted);
}

.dd14-bonus {
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: #f0795a;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.dd14-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dd14-pill {
  background: rgba(232, 160, 64, 0.12);
  color: #4a3018;
  border-radius: 999px;
  padding: 4px 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
}

.dd14-card-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 100%;
}

.dd14-card-cta .dd14-cta {
  width: 100%;
}

.dd14-card small {
  display: block;
  margin-top: 14px;
  color: var(--dd14-muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

@media (min-width: 551px) {
  .dd14-card:hover {
    transform: translateY(-3px);
    border-width: 1.5px;
    box-shadow: 0 16px 32px rgba(232, 160, 64, 0.22);
  }
}

.dd14-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dd14-team-card {
  padding: 28px;
}

.dd14-team-role {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(232, 160, 64, 0.14);
  font-size: 0.84rem;
  font-weight: 600;
}

.dd14-faq-list {
  display: grid;
  gap: 16px;
}

.dd14-faq-item {
  background: rgba(255, 250, 239, 0.9);
  border: 1px solid rgba(232, 160, 64, 0.28);
  border-radius: 18px;
  overflow: hidden;
}

.dd14-faq-q {
  width: 100%;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--dd14-text);
  font-family: "Outfit", sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dd14-faq-q span:last-child {
  font-size: 1.4rem;
  color: var(--dd14-coral);
}

.dd14-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.dd14-faq-a-inner {
  padding: 0 24px 22px;
  color: var(--dd14-muted);
  line-height: 1.75;
}

.dd14-rg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 26px;
}

.dd14-rg-item {
  padding: 22px;
  border-left: 3px solid var(--dd14-amber);
}

.dd14-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.dd14-chip-link {
  padding: 10px 14px;
  background: rgba(255, 250, 239, 0.85);
  border: 1px solid rgba(232, 160, 64, 0.3);
  border-radius: 999px;
  color: var(--dd14-text);
  font-weight: 600;
}

.dd14-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dd14-text);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dd14-footer {
  background: #fef3e2;
  border-top: 1px solid rgba(232, 160, 64, 0.3);
  padding: 20px 32px 28px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #8a6840;
}

.dd14-footer-inner {
  width: min(100%, var(--dd14-max));
  margin: 0 auto;
}

.dd14-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 160, 64, 0.22);
}

.dd14-footer-top a:hover,
.dd14-footer-top a:focus-visible,
.dd14-footer-bottom a:hover,
.dd14-footer-bottom a:focus-visible {
  color: var(--dd14-coral);
}

.dd14-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.dd14-footer-brand svg {
  width: 28px;
  height: 28px;
}

.dd14-footer-brand img {
  width: 28px;
  height: 28px;
}

.dd14-footer-bottom {
  padding-top: 14px;
  display: grid;
  gap: 6px;
  line-height: 1.65;
}

.dd14-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100% !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fef3e2 !important;
  overflow: hidden !important;
}

.dd14-age-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  background: #fffaef;
  border: 1px solid #e8a040;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(232, 160, 64, 0.18);
  max-width: 400px;
  width: 90%;
  margin-block: auto;
  font-family: "Inter", sans-serif;
  color: #4a3018;
  text-align: center;
}

.dd14-age-box h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
}

.dd14-age-actions {
  width: 100%;
  display: grid;
  gap: 12px;
}

.dd14-age-leave {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(232, 160, 64, 0.35);
  background: transparent;
  color: var(--dd14-text);
  font-weight: 600;
}

.dd14-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #fef3e2;
  border-top: 1px solid rgba(232, 160, 64, 0.35);
  padding: 16px 24px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #8a6840;
}

.dd14-cookie-banner-inner {
  width: min(100%, var(--dd14-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.dd14-cookie-banner p {
  margin: 0;
  line-height: 1.6;
}

.dd14-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.dd14-cookie-banner .dd14-cookie-ghost {
  background: transparent;
  color: var(--dd14-text);
  border: 1px solid rgba(232, 160, 64, 0.4);
  box-shadow: none;
}

.dd14-header[data-dd14-cookie-state="visible"] {
  padding-top: 66px;
}

.dd14-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: var(--dd14-coral);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(232, 160, 64, 0.22);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.dd14-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.dd14-legal-hero {
  padding-top: 120px;
  padding-bottom: 48px;
}

.dd14-legal-hero .dd14-section-title {
  max-width: 800px;
}

.dd14-legal-grid {
  display: grid;
  gap: 18px;
}

.dd14-legal-card {
  padding: 26px;
}

.dd14-legal-card h2 {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
}

.dd14-legal-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--dd14-muted);
  line-height: 1.7;
}

.dd14-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.dd14-inline-links a {
  color: var(--dd14-coral);
  font-weight: 600;
}

.dd14-legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1100px) {
  .dd14-spotlight-grid,
  .dd14-team-grid,
  .dd14-rg-grid,
  .dd14-legal-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dd14-method-grid,
  .dd14-calculator {
    grid-template-columns: 1fr;
  }

  .dd14-hero-left {
    padding-right: 70px;
  }
}

@media (max-width: 900px) {
  .dd14-header[data-dd14-cookie-state="visible"] {
    padding-top: 74px;
  }

  .dd14-nav-toggle {
    display: inline-flex;
  }

  .dd14-header-inner {
    position: relative;
  }

  .dd14-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: #fef3e2;
    border: 1px solid rgba(232, 160, 64, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .dd14-nav.dd14-nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dd14-hero {
    min-height: auto;
  }

  .dd14-hero-split {
    min-height: auto;
  }

  .dd14-hero-left,
  .dd14-hero-right {
    min-height: 420px;
  }

  .dd14-hero-left {
    padding: 56px 54px 56px 34px;
  }

  .dd14-card-grid {
    grid-template-columns: 1fr;
  }

  .dd14-card-cta {
    gap: 16px;
  }

  .dd14-cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== ULTRA-NARROW ≤550px ===== */
@media (max-width: 550px) {
  body {
    overflow-x: hidden;
  }

  .dd14-hero h1,
  .dd14-headline {
    font-size: clamp(1.4rem, 6.5vw, 2.5rem) !important;
    letter-spacing: -0.01em !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal !important;
  }

  .dd14-logo-wrap {
    width: min(82px, 100%) !important;
    height: auto !important;
    min-height: 3rem !important;
  }

  /* Hero 11 Diagonal: stack panels on mobile */
  .dd14-hero-split {
    flex-direction: column !important;
    clip-path: none !important;
  }
  .dd14-hero-left,
  .dd14-hero-right {
    width: 100% !important;
    clip-path: none !important;
  }
  .dd14-hero-right {
    height: 80px !important;
    min-height: 80px !important;
  }

  /* Layout 7: stack banner card columns */
  .dd14-card-grid {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
  }
  .dd14-card-col {
    width: 100% !important;
  }

  .dd14-card-top {
    flex-wrap: wrap !important;
    gap: 0.55rem !important;
  }

  .dd14-card:hover {
    transform: none !important;
  }

  .dd14-btn,
  .dd14-cta {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    width: 100% !important;
  }

  .dd14-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100% !important;
  }

  .dd14-cards-grid,
  .dd14-grid,
  .dd14-method-grid {
    grid-template-columns: 1fr !important;
  }

  .dd14-logo-orb {
    width: 64px !important;
    height: 64px !important;
    margin-top: -32px !important;
  }
  .dd14-logo-orb .dd14-logo-wrap {
    width: 62px !important;
    height: 38px !important;
  }

  [class*="dd14-"] {
    min-width: 0 !important;
  }

  .dd14-section {
    padding: 72px 18px;
  }

  .dd14-header-inner,
  .dd14-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dd14-spotlight-grid,
  .dd14-team-grid,
  .dd14-rg-grid,
  .dd14-legal-summary {
    grid-template-columns: 1fr !important;
  }

  .dd14-card-body {
    padding: 0 18px 18px;
  }

  .dd14-card-badge {
    margin-left: 0;
  }
}

/* ===== ULTRA-NARROW ≤380px ===== */
@media (max-width: 380px) {
  .dd14-headline {
    font-size: clamp(1.15rem, 6vw, 1.9rem) !important;
  }

  .dd14-logo-wrap {
    width: min(68px, 100%) !important;
    min-height: 2.5rem !important;
  }

  .dd14-age-box {
    padding: 24px 16px !important;
    width: 95% !important;
  }
}
