:root {
  color-scheme: light;
  /* ---- Brand palette (from logo) ---- */
  --navy:        #234058;   /* primary brand navy — hexagon outline + "D" */
  --navy-dark:   #182E44;   /* hover/footer */
  --blue:        #2F5780;   /* secondary navy */
  --sky:         #426F9F;   /* tertiary navy */
  --cyan:        #BB924C;   /* (legacy var, now mapped to gold) */
  --gold:        #BB924C;   /* primary brand gold — arrow + accent "D" */
  --gold-dark:   #9C7838;   /* hover gold */
  --gold-light:  #D6B380;   /* light gold accent */
  --gold-pale:   #EDE0C8;   /* pale gold tint */
  --charcoal:    #1A2D45;
  --slate:       #4A5F78;
  --slate-2:     #5A708E;
  --panel-1:     #F0E4CD;
  --panel-2:     #EEF1F6;
  --bg:          #F7F4ED;   /* warm cream section background */
  --card:        #FFFFFF;
  --border:      #E8E2D6;   /* warm border */
  --border-2:    #D5CBB8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', 'Helvetica Neue', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-weight: 300;
  color: var(--slate);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6, strong, b { font-weight: 700; letter-spacing: -0.01em; }
.dd-cta, .dd-eyebrow, .dd-eyebrow-w, .dd-eyebrow-x, .dd-num-big, .dd-eng-tag, .dd-feature-tag, .dd-cs-tag, .dd-cs-meta, .dd-week-100, .dd-post-cat, .dd-label-svc, .dd-section-label, .dd-num-svc, .dd-num-meth, .dd-num-100, .dd-eng-num { font-weight: 700; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--sky); }
h1, h2, h3, h4 { color: var(--charcoal); margin: 0 0 12px; line-height: 1.25; letter-spacing: -0.3px; }

/* ---------- Header ---------- */
.dd-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.dd-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 24px;
}
.dd-brand {
  font-size: 20px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.4px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
}
.dd-brand-mark {
  width: 22px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}
.dd-nav {
  flex: 1; display: flex; gap: 22px; justify-content: center;
}
.dd-nav a {
  color: var(--charcoal); font-size: 14px; font-weight: 500;
  padding: 6px 0; position: relative;
}
.dd-nav a:hover { color: var(--blue); }
.dd-nav a.active { color: var(--navy); font-weight: 600; }
.dd-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -16px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.dd-cta {
  display: inline-block;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--navy);
  transition: background .15s;
}
.dd-cta:hover { background: var(--blue); color: #fff; }
.dd-cta-secondary {
  background: transparent; color: var(--navy);
}
.dd-cta-secondary:hover { background: var(--gold-pale); color: var(--navy); }
.dd-burger { display: none; }
@media (max-width: 900px) {
  .dd-nav { display: none; }
  .dd-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 1px solid var(--border);
    border-radius: 8px; cursor: pointer; background: #fff;
    flex-direction: column; gap: 4px;
  }
  .dd-burger span { display: block; width: 16px; height: 2px; background: var(--charcoal); }
  .dd-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 24px; gap: 0;
  }
  .dd-nav.open a { padding: 10px 0; border-bottom: 1px solid var(--panel-2); }
  .dd-nav.open a:last-child { border-bottom: none; }
}

/* ---------- Page system ---------- */
.dd-page { display: none; }
.dd-page.active { display: block; }

/* ---------- Heroes ---------- */
.dd-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--sky) 100%);
  color: #fff; padding: 88px 24px 96px; position: relative; overflow: hidden;
}
.dd-hero::after {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(187,146,76,0.32), transparent 65%);
  pointer-events: none;
}
.dd-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.dd-eyebrow-w {
  font-size: 11px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 14px;
}
.dd-hero h1 {
  color: #fff; font-size: 46px; font-weight: 800;
  line-height: 1.08; letter-spacing: -1px;
  margin: 0 0 16px; max-width: 880px;
}
.dd-hero .dd-sub-w {
  font-size: 18px; color: rgba(255,255,255,0.92);
  max-width: 760px; line-height: 1.55; margin-bottom: 28px;
}
.dd-hero .dd-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.dd-hero .dd-cta {
  background: #fff; color: var(--navy); border-color: #fff;
  padding: 13px 22px; font-size: 14.5px;
}
.dd-hero .dd-cta:hover { background: var(--panel-2); color: var(--navy); }
.dd-hero .dd-cta-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.dd-hero .dd-cta-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
@media (max-width: 700px) {
  .dd-hero { padding: 60px 20px 70px; }
  .dd-hero h1 { font-size: 34px; }
  .dd-hero .dd-sub-w { font-size: 16px; }
}

/* Page hero (smaller) */
.dd-phero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 64px 24px 56px; }
.dd-phero-inner { max-width: 1100px; margin: 0 auto; }
.dd-phero h1 { color: #fff; font-size: 38px; font-weight: 800; margin: 0 0 10px; }
.dd-phero .dd-sub-w { color: rgba(255,255,255,0.92); font-size: 16.5px; max-width: 780px; }

/* ---------- Sections ---------- */
.dd-section { padding: 64px 24px; }
.dd-section.alt { background: var(--bg); }
.dd-section-inner { max-width: 1200px; margin: 0 auto; }
.dd-section-head { text-align: center; margin-bottom: 32px; }
.dd-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.dd-section-head h2 { font-size: 28px; font-weight: 800; color: var(--charcoal); margin-bottom: 6px; }
.dd-section-head .dd-sub { color: var(--slate-2); font-size: 15px; max-width: 760px; margin: 0 auto; }

/* ---------- Numbers band ---------- */
.dd-numbers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.dd-num-tile {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 22px; text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.dd-num-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(31,73,125,0.10); }
.dd-num-big {
  font-size: 42px; font-weight: 800; color: var(--navy);
  letter-spacing: -1.5px; line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.dd-num-label { font-size: 13px; color: var(--slate); line-height: 1.45; }
@media (max-width: 900px) { .dd-numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dd-numbers { grid-template-columns: 1fr; } }

/* ---------- Closing band ---------- */
.dd-closing {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff; text-align: center; padding: 64px 24px;
}
.dd-closing h2 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.dd-closing p { color: rgba(255,255,255,0.9); font-size: 16px; max-width: 720px; margin: 0 auto 24px; }
.dd-closing .dd-cta { background: #fff; color: var(--navy); border-color: #fff; }
.dd-closing .dd-cta-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.dd-closing .dd-cta-row { justify-content: center; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.dd-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.88);
  padding: 56px 24px 24px;
}
.dd-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.dd-footer h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.dd-footer-tag { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.dd-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.dd-chip {
  background: rgba(214,179,128,0.22); color: #fff;
  font-size: 11.5px; padding: 6px 12px; border-radius: 999px;
  font-weight: 500;
}
.dd-footer ul { list-style: none; padding: 0; margin: 0; }
.dd-footer ul li { margin-bottom: 8px; }
.dd-footer ul li a { color: rgba(255,255,255,0.85); font-size: 14px; }
.dd-footer ul li a:hover { color: #fff; }
.dd-footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.dd-footer-bottom a { color: rgba(255,255,255,0.92); text-decoration: underline; }
@media (max-width: 700px) {
  .dd-footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Featured case card ---------- */
.dd-feature-case {
  max-width: 1100px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  overflow: hidden;
}
.dd-feature-body { padding: 36px 36px; }
.dd-feature-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.dd-feature-body h3 { font-size: 24px; font-weight: 800; color: var(--charcoal); margin-bottom: 14px; }
.dd-feature-body p { font-size: 14.5px; color: var(--slate); margin-bottom: 18px; line-height: 1.6; }
.dd-feature-art {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--gold));
  color: #fff; padding: 36px 30px;
  display: flex; flex-direction: column; justify-content: center;
}
.dd-feature-stat { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 4px; }
.dd-feature-stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
@media (max-width: 800px) { .dd-feature-case { grid-template-columns: 1fr; } }

/* ---------- Methodology teaser strip ---------- */
.dd-meth-teaser {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border-radius: 14px; overflow: hidden; max-width: 1000px; margin: 0 auto 24px;
}
.dd-meth-teaser .ph { padding: 22px 20px; color: #fff; }
.dd-meth-teaser .ph1 { background: linear-gradient(135deg, #234058, #2F5780); }
.dd-meth-teaser .ph2 { background: linear-gradient(135deg, #2F5780, #426F9F); }
.dd-meth-teaser .ph3 { background: linear-gradient(135deg, #2F5780, #BB924C); }
.dd-meth-teaser .num { font-size: 12px; opacity: 0.7; margin-bottom: 4px; letter-spacing: 1.4px; }
.dd-meth-teaser .nm { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.dd-meth-teaser .ds { font-size: 12.5px; opacity: 0.92; line-height: 1.5; }
@media (max-width: 700px) { .dd-meth-teaser { grid-template-columns: 1fr; } }

/* ---------- Insights teaser cards ---------- */
.dd-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.dd-post-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px;
  transition: transform .15s, box-shadow .15s;
}
.dd-post-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,73,125,0.08); border-color: var(--border-2); }
.dd-post-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.dd-post-card h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; }
.dd-post-card p { font-size: 13px; color: var(--slate); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .dd-posts-grid { grid-template-columns: 1fr; } }

/* ---------- Founder line ---------- */
.dd-founder-line {
  text-align: center; max-width: 880px; margin: 0 auto;
  padding: 36px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  font-size: 15.5px; color: var(--slate);
}
.dd-founder-line strong { color: var(--charcoal); font-weight: 600; }

/* ---------- Engagement detail blocks ---------- */
.dd-eng {
  max-width: 1100px; margin: 0 auto 40px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 36px;
}
.dd-eng-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.dd-eng-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; flex-shrink: 0;
}
.dd-eng-header h3 { font-size: 24px; font-weight: 800; color: var(--charcoal); margin: 0 0 4px; }
.dd-eng-header .dd-eng-tag { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); }
.dd-eng h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-dark); margin: 22px 0 10px; }
.dd-eng ul { padding-left: 20px; margin: 0 0 14px; color: var(--slate); }
.dd-eng ul li { margin-bottom: 6px; font-size: 14.5px; line-height: 1.55; }
.dd-eng .dd-pricing-block {
  background: var(--panel-2); border-left: 3px solid var(--gold);
  padding: 16px 18px; border-radius: 8px; margin-top: 14px;
  font-size: 14px; color: var(--charcoal); line-height: 1.65;
}
.dd-eng .dd-pricing-block strong { color: var(--navy); }

/* ---------- Comparison table ---------- */
.dd-table-wrap { max-width: 1100px; margin: 0 auto; overflow-x: auto; }
.dd-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.dd-table th, .dd-table td { padding: 14px 16px; text-align: left; vertical-align: top; font-size: 13.5px; }
.dd-table th { background: var(--panel-2); color: var(--charcoal); font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.dd-table tbody tr { border-top: 1px solid var(--border); }
.dd-table td { color: var(--slate); }
.dd-table td:first-child { color: var(--navy); font-weight: 700; }

/* ---------- Three-roles & generic 3-card row ---------- */
.dd-three-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.dd-rcard {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px;
  border-top: 4px solid var(--navy);
}
.dd-rcard.r2 { border-top-color: var(--blue); }
.dd-rcard.r3 { border-top-color: var(--gold); }
.dd-rcard h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.dd-rcard p { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .dd-three-cards { grid-template-columns: 1fr; } }

/* Pull-quote panel */
.dd-pull {
  max-width: 900px; margin: 0 auto;
  background: var(--panel-2); border-left: 4px solid var(--gold);
  padding: 24px 28px; border-radius: 8px;
  font-size: 15.5px; color: var(--charcoal); line-height: 1.65;
}
.dd-pull strong { color: var(--navy); }

/* ---------- Case study cards ---------- */
.dd-cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.dd-cs-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.dd-cs-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,73,125,0.10); }
.dd-cs-art { padding: 20px 24px; color: #fff; min-height: 80px; }
.dd-cs-art.a1 { background: linear-gradient(135deg, #a06000, #d28000); }
.dd-cs-art.a2 { background: linear-gradient(135deg, #1e7d44, #2ba360); }
.dd-cs-art.a3 { background: linear-gradient(135deg, #2F5780, #426F9F); }
.dd-cs-art.a4 { background: linear-gradient(135deg, #C8102E, #E54264); }
.dd-cs-tag { font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; opacity: 0.9; }
.dd-cs-co { font-size: 18px; font-weight: 800; margin-top: 4px; }
.dd-cs-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.dd-cs-body h3 { font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.3; }
.dd-cs-body p { font-size: 13.5px; color: var(--slate); flex: 1; margin-bottom: 14px; line-height: 1.55; }
.dd-cs-link { font-size: 13px; font-weight: 700; color: var(--gold-dark); }
@media (max-width: 800px) { .dd-cs-grid { grid-template-columns: 1fr; } }

/* ---------- Case study detail block ---------- */
.dd-cs-detail {
  max-width: 880px; margin: 0 auto 40px; background: #fff;
  border: 1px solid var(--border); border-radius: 14px; padding: 32px;
}
.dd-cs-detail h3 { font-size: 22px; font-weight: 800; color: var(--charcoal); margin-bottom: 6px; }
.dd-cs-detail .dd-cs-meta { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; font-weight: 700; }
.dd-cs-detail h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-dark); margin: 18px 0 8px; }
.dd-cs-detail ul { padding-left: 20px; margin: 0 0 12px; }
.dd-cs-detail ul li { font-size: 14px; color: var(--slate); margin-bottom: 5px; line-height: 1.55; }
.dd-cs-detail .dd-cs-outcome {
  background: linear-gradient(135deg, var(--panel-2), #fff);
  border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 8px;
  font-size: 14px; color: var(--charcoal); line-height: 1.6;
}

/* ---------- Insights page ---------- */
.dd-feature-post {
  max-width: 1100px; margin: 0 auto 28px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden;
}
.dd-feature-post-art {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--gold));
  color: #fff; padding: 36px; display: flex; flex-direction: column; justify-content: center;
}
.dd-feature-post-art .lbl { font-size: 11px; letter-spacing: 1.6px; opacity: 0.85; text-transform: uppercase; margin-bottom: 12px; }
.dd-feature-post-art h3 { color: #fff; font-size: 24px; font-weight: 800; margin-bottom: 12px; line-height: 1.25; }
.dd-feature-post-art p { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.55; }
.dd-feature-post-meta { padding: 32px; }
.dd-feature-post-meta .dd-post-cat { margin-bottom: 12px; }
.dd-feature-post-meta h4 { font-size: 16px; color: var(--charcoal); margin-bottom: 12px; }
.dd-feature-post-meta p { font-size: 14px; color: var(--slate); margin-bottom: 12px; line-height: 1.6; }
@media (max-width: 800px) { .dd-feature-post { grid-template-columns: 1fr; } }
.dd-cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 20px auto 28px; }
.dd-cat-chip { background: var(--gold-pale); color: var(--gold-dark); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.dd-newsletter {
  max-width: 760px; margin: 28px auto 0; background: var(--panel-2);
  border-radius: 14px; padding: 28px 32px; text-align: center;
}
.dd-newsletter h3 { font-size: 20px; color: var(--charcoal); margin-bottom: 6px; }
.dd-newsletter p { color: var(--slate); margin-bottom: 16px; font-size: 14px; }
.dd-newsletter .row { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.dd-newsletter input[type=email] {
  flex: 1; padding: 11px 14px; border: 1px solid var(--border-2);
  border-radius: 8px; font: inherit; background: #fff; color: var(--charcoal);
}
.dd-newsletter input[type=email]:focus { outline: 2px solid var(--blue); outline-offset: -1px; border-color: var(--blue); }

/* ---------- About / Engage forms ---------- */
.dd-prose { max-width: 880px; margin: 0 auto; }
.dd-prose .blk { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; margin-bottom: 18px; }
.dd-prose h3 { font-size: 18px; color: var(--charcoal); margin-bottom: 8px; }
.dd-prose p { font-size: 15px; color: var(--slate); margin-bottom: 10px; line-height: 1.65; }
.dd-prose ul { padding-left: 20px; color: var(--slate); }
.dd-prose ul li { margin-bottom: 8px; font-size: 14.5px; line-height: 1.55; }

.dd-form { max-width: 700px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px 32px; }
.dd-form .row { margin-bottom: 14px; }
.dd-form label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.4px; color: var(--charcoal); margin-bottom: 6px; }
.dd-form input[type=text], .dd-form input[type=email], .dd-form select, .dd-form textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border-2); border-radius: 8px;
  font: inherit; color: var(--charcoal); background: #fff;
}
.dd-form textarea { min-height: 120px; resize: vertical; }
.dd-form .radio-row { display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--slate); }
.dd-form .radio-row label { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.dd-form .row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .dd-form .row.two { grid-template-columns: 1fr; } }
.dd-form button {
  background: var(--navy); color: #fff; border: none; border-radius: 8px;
  padding: 12px 22px; font: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer; margin-top: 8px;
}
.dd-form button:hover { background: var(--blue); }

.dd-direct {
  max-width: 880px; margin: 24px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.dd-direct .item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; text-align: center;
}
.dd-direct .label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 6px; }
.dd-direct .val { font-size: 14px; color: var(--charcoal); font-weight: 600; }
@media (max-width: 700px) { .dd-direct { grid-template-columns: 1fr; } }

.dd-calendly-stub {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, var(--panel-2), #fff);
  border: 1px dashed var(--border-2); border-radius: 14px;
  text-align: center; padding: 48px 32px; color: var(--slate);
}
.dd-calendly-stub .lbl { font-size: 11px; letter-spacing: 1.4px; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.dd-calendly-stub h4 { font-size: 18px; color: var(--charcoal); margin-bottom: 8px; }

/* ---------- Cross-cutting / observation list ---------- */
.dd-obs-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.dd-obs-list .item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; font-size: 14.5px; color: var(--slate); line-height: 1.6;
  border-left: 3px solid var(--gold);
}

/* ---------- Embeds (scoped from uploaded files) ---------- */
.dd-svc { font-family: inherit; box-sizing: border-box; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 8px; }
.dd-svc *, .dd-svc *::before, .dd-svc *::after { box-sizing: border-box; }
.dd-svc .dd-eyebrow-x { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.dd-svc .dd-headline-x { text-align: center; font-size: 24px; font-weight: 800; color: var(--charcoal); margin-bottom: 4px; letter-spacing: -0.3px; }
.dd-svc .dd-sub-x { text-align: center; font-size: 14px; color: var(--slate-2); margin-bottom: 22px; }
.dd-svc .dd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dd-svc .dd-card-svc {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 22px 22px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.dd-svc .dd-card-svc:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(31,73,125,0.10); }
.dd-svc .dd-card-svc::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 4px; border-radius: 0 0 4px 4px; }
.dd-svc .dd-c1::before { background: linear-gradient(90deg, #234058, #2F5780); }
.dd-svc .dd-c2::before { background: linear-gradient(90deg, #2F5780, #426F9F); }
.dd-svc .dd-c3::before { background: linear-gradient(90deg, #426F9F, #BB924C); }
.dd-svc .dd-icon-svc { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.dd-svc .dd-c1 .dd-icon-svc { background: linear-gradient(135deg, #e8f1fa, #cce0f5); }
.dd-svc .dd-c2 .dd-icon-svc { background: linear-gradient(135deg, #d6eaf8, #aac9e8); }
.dd-svc .dd-c3 .dd-icon-svc { background: linear-gradient(135deg, #F0E4CD, #D9B989); }
.dd-svc .dd-num-svc { position: absolute; top: 18px; right: 22px; font-size: 36px; font-weight: 800; color: var(--navy); opacity: 0.06; line-height: 1; user-select: none; }
.dd-svc .dd-label-svc { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.dd-svc .dd-title-svc { font-size: 17px; font-weight: 700; color: var(--charcoal); line-height: 1.3; margin-bottom: 8px; }
.dd-svc .dd-desc-svc { font-size: 13px; color: var(--slate); line-height: 1.55; margin-bottom: 14px; flex-grow: 1; }
.dd-svc .dd-meta-svc { border-top: 1px solid var(--panel-2); padding-top: 10px; display: flex; justify-content: space-between; gap: 8px; font-size: 11.5px; }
.dd-svc .dd-meta-svc div { display: flex; flex-direction: column; }
.dd-svc .dd-meta-svc .dd-k { font-size: 9.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #6f819b; margin-bottom: 2px; }
.dd-svc .dd-meta-svc .dd-v { font-size: 12.5px; font-weight: 600; color: var(--charcoal); }
@media (max-width: 900px) { .dd-svc .dd-grid { grid-template-columns: 1fr; } }

.dd-meth-emb { font-family: inherit; box-sizing: border-box; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 8px; }
.dd-meth-emb *, .dd-meth-emb *::before, .dd-meth-emb *::after { box-sizing: border-box; }
.dd-meth-emb .dd-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.dd-meth-emb .dd-phase { color: #fff; padding: 28px 26px 24px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.dd-meth-emb .dd-p1 { background: linear-gradient(135deg, #234058, #2F5780); }
.dd-meth-emb .dd-p2 { background: linear-gradient(135deg, #2F5780, #426F9F); }
.dd-meth-emb .dd-p3 { background: linear-gradient(135deg, #2F5780, #BB924C); }
.dd-meth-emb .dd-phase::after { content: ''; position: absolute; top: 50%; right: -16px; transform: translateY(-50%); width: 0; height: 0; border-top: 18px solid transparent; border-bottom: 18px solid transparent; border-left: 16px solid; z-index: 2; }
.dd-meth-emb .dd-p1::after { border-left-color: #2F5780; }
.dd-meth-emb .dd-p2::after { border-left-color: #BB924C; }
.dd-meth-emb .dd-p3::after { display: none; }
.dd-meth-emb .dd-num-meth { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.dd-meth-emb .dd-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; color: #fff; }
.dd-meth-emb .dd-weeks { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 14px; letter-spacing: 0.5px; }
.dd-meth-emb .dd-obj { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.95); font-style: italic; margin-bottom: 16px; }
.dd-meth-emb .dd-section-label { font-size: 9.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.dd-meth-emb .dd-list { list-style: none; padding: 0; margin: 0 0 14px; }
.dd-meth-emb .dd-list li { font-size: 12px; line-height: 1.5; padding-left: 14px; position: relative; margin-bottom: 4px; color: rgba(255,255,255,0.95); }
.dd-meth-emb .dd-list li::before { content: ''; position: absolute; left: 2px; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.7); }
.dd-meth-emb .dd-deliverable { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; padding: 10px 12px; font-size: 11.5px; line-height: 1.45; color: #fff; }
@media (max-width: 900px) {
  .dd-meth-emb .dd-row { grid-template-columns: 1fr; }
  .dd-meth-emb .dd-phase::after { top: auto; bottom: -16px; right: 50%; transform: translateX(50%); border-top: 16px solid; border-left: 18px solid transparent; border-right: 18px solid transparent; border-bottom: none; }
  .dd-meth-emb .dd-p1::after { border-top-color: #2F5780; border-left-color: transparent; }
  .dd-meth-emb .dd-p2::after { border-top-color: #BB924C; border-left-color: transparent; }
}

.dd-100 { font-family: inherit; box-sizing: border-box; width: 100%; max-width: 880px; margin: 0 auto; padding: 0 8px; }
.dd-100 *, .dd-100 *::before, .dd-100 *::after { box-sizing: border-box; }
.dd-100 .dd-track { position: relative; padding-left: 56px; border-left: 2px solid var(--border-2); margin-left: 14px; }
.dd-100 .dd-stage { position: relative; margin-bottom: 22px; }
.dd-100 .dd-stage:last-child { margin-bottom: 4px; }
.dd-100 .dd-num-100 { position: absolute; left: -68px; top: 0; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #234058, #2F5780); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--border-2); }
.dd-100 .dd-stage:nth-child(2) .dd-num-100 { background: linear-gradient(135deg, #234058, #2F5780); }
.dd-100 .dd-stage:nth-child(3) .dd-num-100 { background: linear-gradient(135deg, #2F5780, #426F9F); }
.dd-100 .dd-stage:nth-child(4) .dd-num-100 { background: linear-gradient(135deg, #2F5780, #426F9F); }
.dd-100 .dd-stage:nth-child(5) .dd-num-100 { background: linear-gradient(135deg, #426F9F, #BB924C); }
.dd-100 .dd-card-100 { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; }
.dd-100 .dd-name-100 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.dd-100 .dd-week-100 { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.dd-100 .dd-desc-100 { font-size: 13px; color: var(--slate); line-height: 1.55; }
.dd-100 .dd-desc-100 strong { color: var(--charcoal); }

.dd-ind { font-family: inherit; box-sizing: border-box; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 8px; }
.dd-ind *, .dd-ind *::before, .dd-ind *::after { box-sizing: border-box; }
.dd-ind .dd-grid-ind { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.dd-ind .dd-tile { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px 18px; position: relative; transition: transform .15s, box-shadow .15s, border-color .15s; }
.dd-ind .dd-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(31,73,125,0.10); border-color: var(--border-2); }
.dd-ind .dd-icon-ind { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.dd-ind .t1 .dd-icon-ind { background: linear-gradient(135deg, #fdf3e3, #fce3b2); }
.dd-ind .t2 .dd-icon-ind { background: linear-gradient(135deg, #f0eafc, #ddd0f7); }
.dd-ind .t3 .dd-icon-ind { background: linear-gradient(135deg, #e4f5ec, #c3e8d3); }
.dd-ind .t4 .dd-icon-ind { background: linear-gradient(135deg, #e8f1fa, #cce0f5); }
.dd-ind .t5 .dd-icon-ind { background: linear-gradient(135deg, #fde8e8, #f7c1c1); }
.dd-ind .dd-name-ind { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; line-height: 1.25; }
.dd-ind .dd-clients { font-size: 11px; font-weight: 600; color: var(--slate-2); margin-bottom: 8px; letter-spacing: 0.2px; }
.dd-ind .dd-work { font-size: 11.5px; color: var(--slate); line-height: 1.5; }
@media (max-width: 1100px) { .dd-ind .dd-grid-ind { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .dd-ind .dd-grid-ind { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .dd-ind .dd-grid-ind { grid-template-columns: 1fr; } }


/* ---------- Brand wordmark (CamelCase with emphasized Ds) ---------- */
.dd-wordmark {
  font-family: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 700; letter-spacing: -0.2px;
  display: inline; white-space: nowrap;
  color: inherit;
}
.dd-wordmark .dd-d {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 1.05em;
}
.dd-brand .dd-wordmark { font-size: 21px; color: var(--navy); }
.dd-eyebrow-brand {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  font-family: 'Manrope', system-ui, sans-serif;
  margin-bottom: 18px !important;
}
.dd-eyebrow-brand .dd-wordmark { font-size: 22px; color: #fff; }
.dd-eyebrow-brand .dd-wordmark .dd-d { color: var(--gold-light); }
.dd-eyebrow-brand .dd-llc { font-size: 14px; opacity: 0.78; letter-spacing: 1.2px; font-weight: 400; margin-left: 4px; }
/* "About DirectionalData." — preserve gold Ds, but they sit in an h1 */
h1 .dd-wordmark { font-size: inherit; color: inherit; }
h1 .dd-wordmark .dd-d { color: var(--gold-light); }
/* Closing band & footer wordmark colors */
.dd-closing .dd-wordmark .dd-d { color: var(--gold-light); }
.dd-footer-bottom .dd-wordmark { color: rgba(255,255,255,0.92); }
.dd-footer-bottom .dd-wordmark .dd-d { color: var(--gold); }

/* Brand-mark SVG sizing */
.dd-brand .dd-brand-mark-svg { flex-shrink: 0; width: 32px; height: 32px; }

/* Inlined Logo (landscape) usage */
.dd-hero-mark { display: inline-block; line-height: 0; vertical-align: middle; }
.dd-hero-mark svg { height: 38px; width: auto; max-width: 320px; display: block; }
/* On navy backgrounds: turn the navy paths white, lighten the gold a touch */
.dd-hero-mark-light svg path[fill="#234058"],
.dd-hero-mark-light svg path[fill="#244058"] { fill: #FFFFFF; }
.dd-hero-mark-light svg path[fill="#BB924C"] { fill: #D6B380; }
.dd-footer-mark svg { height: 22px; width: auto; }
.dd-footer-mark svg path[fill="#234058"],
.dd-footer-mark svg path[fill="#244058"] { fill: #FFFFFF; }
.dd-footer-mark svg path[fill="#BB924C"] { fill: #BB924C; }
@media (max-width: 700px) {
  .dd-hero-mark svg { height: 28px; }
}

/* Header brand: real landscape wordmark — sized to match CTA button height */
.dd-brand-logo { display: flex; align-items: center; }
.dd-brand-logo svg { height: 44px; width: auto; display: block; }
@media (max-width: 700px) {
  .dd-brand-logo svg { height: 36px; }
}