/* =============================================================================
   TSA Tech Career & Skills Discovery Day — discovery.css
   August 21–22, 2026 · Onipanu, Lagos

   A page-specific layer built on the design tokens in app.css.
   Load AFTER app.css. Everything here is namespaced with `dd-` so it can never
   collide with the previous open-house landing page.

   Layers:  1. Tokens & primitives   2. Nav & announcement bar   3. Hero
            4. Marquee / trust        5. Section furniture       6. Cost section
            7. Skill explorer         8. Value cards             9. Fit checklist
           10. Proof & gallery       11. Agenda timeline        12. Compare
           13. Sessions & venue      14. Registration form      15. FAQ
           16. Final CTA & footer    17. Floating UI            18. Motion
           19. Responsive            20. Reduced motion / print
   ============================================================================= */


/* ============================================================================
   1. TOKENS & PRIMITIVES
   ============================================================================ */
.dd {
  /* Path accent colours — one per demonstration track */
  --dm:        #F2760C;   /* Digital Marketing  */
  --dm-soft:   #FFF3E8;
  --ai:        #7C3AED;   /* AI Automation      */
  --ai-soft:   #F3EDFF;
  --da:        #0E9F6E;   /* Data Analysis      */
  --da-soft:   #E7F8F1;
  --fe:        #195EF6;   /* Frontend Dev       */
  --fe-soft:   #E8F0FF;

  /* Page rhythm */
  --dd-gutter: clamp(20px, 4vw, 40px);
  --dd-sec:    clamp(64px, 8vw, 112px);
  --dd-ink:    #0A1736;
  --dd-ink-60: #5A6478;
  --dd-ink-40: #8A93A6;
  --dd-line:   #E5EAF4;
  --dd-line-2: #EFF3FA;

  --dd-serif: 'Plus Jakarta Sans', system-ui, sans-serif;
  --dd-mono:  'JetBrains Mono', ui-monospace, monospace;

  color: var(--dd-ink);
  background: #fff;
}

.dd .wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--dd-gutter);
}
.dd .wrap-narrow { max-width: 860px; }

/* Grid items default to `min-width: auto`, so a single wide descendant can
   stretch a track past the viewport. Opt every grid child out of that. */
.dd-hero-grid > *, .dd-cost-grid > *, .dd-proof-grid > *, .dd-reg-grid > *,
.dd-explorer > *, .dd-value > *, .dd-compare > *, .dd-days > *,
.dd-fit-grid > *, .dd-field-row > *, .dd-radio-grid > * { min-width: 0; }
.dd fieldset { min-inline-size: 0; }

/* Eyebrow label */
.dd .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--dd-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.dd .eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  opacity: .55;
}
.dd .eyebrow.on-dark { color: var(--gold); }

/* Display headings */
.dd h1, .dd h2, .dd h3, .dd h4 {
  font-family: var(--dd-serif);
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--dd-ink);
  font-weight: 800;
  text-wrap: balance;
}
.dd .h-xl  { font-size: clamp(2rem, 3.8vw, 3.25rem); line-height: 1.1; }
.dd .h-lg  { font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.14; }
.dd .h-md  { font-size: clamp(1.3rem, 2.3vw, 1.7rem);  line-height: 1.18; }
.dd .lede  { font-size: clamp(1.02rem, 1.35vw, 1.16rem); line-height: 1.68; color: var(--dd-ink-60); }
.dd .lede strong { color: var(--dd-ink); font-weight: 650; }

.dd .ink-soft { color: var(--dd-ink-60); }
.dd .accent   { color: var(--blue); }

/* Underline flourish on key words */
.dd .mark {
  position: relative;
  white-space: nowrap;
}
.dd .mark::after {
  content: "";
  position: absolute;
  left: -.04em; right: -.04em; bottom: .04em;
  height: .34em;
  background: linear-gradient(90deg, rgba(255,200,61,.55), rgba(255,200,61,.28));
  border-radius: 3px;
  z-index: -1;
}

/* Buttons — extends .btn from app.css with page-specific sizes */
.dd .btn-xl {
  padding: 21px 38px;
  font-size: 1.06rem;
  border-radius: 999px;
}
.dd .btn-ghost-light {
  background: rgba(255,255,255,.07);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.24);
  backdrop-filter: blur(6px);
}
.dd .btn-ghost-light:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.42);
  transform: translateY(-2px);
}
.dd .btn .arrow { transition: transform .25s ease; }
.dd .btn:hover .arrow { transform: translateX(4px); }

/* Micro-note under CTAs */
.dd .cta-note {
  font-size: .865rem;
  color: var(--dd-ink-40);
  line-height: 1.55;
  margin-top: 14px;
  max-width: 460px;
}
.dd .cta-note.centered { margin-left: auto; margin-right: auto; text-align: center; }
.dd .cta-note.on-dark  { color: rgba(255,255,255,.52); }

/* Divider */
.dd .rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dd-line) 18%, var(--dd-line) 82%, transparent);
  border: 0;
}


/* ============================================================================
   2. ANNOUNCEMENT BAR & NAV
   ============================================================================ */
.dd-topbar {
  background: linear-gradient(90deg, #0A1736 0%, #16307E 48%, #0A1736 100%);
  color: #fff;
  font-size: .855rem;
  padding: 11px var(--dd-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.4;
}
.dd-topbar .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255,200,61,.75);
  animation: ddPulse 2s infinite;
  flex: 0 0 auto;
}
.dd-topbar strong { color: var(--gold); font-weight: 700; }
.dd-topbar .sep { opacity: .35; }

.dd-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.dd-nav.stuck {
  border-bottom-color: rgba(10,23,54,.08);
  box-shadow: 0 6px 28px rgba(10,23,54,.06);
}
.dd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--dd-gutter);
  max-width: 1180px;
  margin: 0 auto;
}
.dd-nav-inner .brand img { height: 38px; width: auto; display: block; }
.dd-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.dd-nav-links a {
  font-size: .905rem;
  font-weight: 500;
  color: var(--dd-ink-60);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.dd-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--blue);
  transition: right .28s cubic-bezier(.2,.8,.3,1);
}
.dd-nav-links a:hover { color: var(--blue); }
.dd-nav-links a:hover::after { right: 0; }
.dd-nav-cta .btn { padding: 13px 24px; font-size: .92rem; }


/* ============================================================================
   3. HERO
   ============================================================================ */
.dd-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 7vw, 88px);
  background:
    radial-gradient(1100px 620px at 88% -12%, rgba(25,94,246,.11), transparent 62%),
    radial-gradient(760px 520px at -8% 108%, rgba(255,200,61,.14), transparent 58%),
    linear-gradient(180deg, #FBFCFF 0%, #FFFFFF 62%);
}
.dd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,23,54,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,23,54,.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}
.dd-hero .wrap { position: relative; z-index: 1; }

.dd-hero-grid {
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  gap: clamp(36px, 4.5vw, 60px);
  align-items: center;
}

.dd-hero h1 { margin: 20px 0 20px; }
.dd-hero h1 .line-2 { color: var(--blue); display: block; }
.dd-hero .lede { max-width: 545px; }

/* Free-to-attend chip */
.dd-freechip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #DDE7FF;
  border-radius: 999px;
  padding: 7px 8px 7px 7px;
  box-shadow: 0 4px 18px rgba(10,23,54,.06);
  font-size: .845rem;
  font-weight: 600;
  color: var(--dd-ink);
}
.dd-freechip .tag {
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.dd-freechip .txt { padding-right: 10px; color: var(--dd-ink-60); font-weight: 550; }

/* Key facts row under the headline */
.dd-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}
.dd-facts .fact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 12px;
  padding: 10px 15px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dd-ink);
  box-shadow: 0 2px 8px rgba(10,23,54,.045);
}
.dd-facts .fact svg { width: 16px; height: 16px; color: var(--blue); flex: 0 0 auto; }

.dd-hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; }

/* --- Hero visual: photo + floating ticket ---------------------------------- */
.dd-hero-visual { position: relative; }

.dd-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(10,23,54,.20);
  isolation: isolate;
}
.dd-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Portrait crop so the visual column reads at a similar height to the
     headline column — a landscape crop leaves a large void beside the copy. */
  aspect-ratio: 4 / 4.6;
}
.dd-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Darkens the top edge only — the bottom-left is occupied by the ticket card. */
  background: linear-gradient(180deg, rgba(10,23,54,.62) 0%, rgba(10,23,54,.08) 34%, rgba(10,23,54,0) 55%);
  pointer-events: none;
}
.dd-photo .caption {
  position: absolute;
  /* Right inset clears the floating rating badge that sits over this corner. */
  left: 22px; top: 20px; right: 152px;
  z-index: 2;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(10,23,54,.55);
}

/* Floating "ticket" card */
.dd-ticket {
  position: absolute;
  left: -26px;
  bottom: -34px;
  z-index: 3;
  width: min(278px, 74%);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--dd-line);
  box-shadow: 0 26px 60px rgba(10,23,54,.20);
  overflow: hidden;
  animation: ddFloaty 7s ease-in-out infinite;
}
.dd-ticket .t-head {
  background: linear-gradient(120deg, var(--navy), #172E63);
  color: #fff;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.dd-ticket .t-head .lbl {
  font-family: var(--dd-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.dd-ticket .t-head .cost {
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--gold);
}
.dd-ticket .t-body { padding: 16px 18px 18px; }
.dd-ticket .t-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--dd-line);
  font-size: .845rem;
}
.dd-ticket .t-row:last-child { border-bottom: 0; }
.dd-ticket .t-row .k { color: var(--dd-ink-40); font-weight: 500; }
.dd-ticket .t-row .v { color: var(--dd-ink); font-weight: 700; text-align: right; }
.dd-ticket .t-notch {
  height: 1px;
  margin: 0 -1px;
  border-top: 1.5px dashed var(--dd-line);
  position: relative;
}
.dd-ticket .t-notch::before,
.dd-ticket .t-notch::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #FBFCFF;
  box-shadow: inset 0 0 0 1px var(--dd-line);
}
.dd-ticket .t-notch::before { left: -10px; }
.dd-ticket .t-notch::after  { right: -10px; }

/* Rating badge floating top-right of the photo */
.dd-rating {
  position: absolute;
  right: -14px;
  top: -18px;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 15px;
  padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(10,23,54,.15);
  text-align: center;
  animation: ddFloaty 8.5s ease-in-out infinite reverse;
}
.dd-rating .score {
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dd-ink);
}
.dd-rating .stars { color: var(--gold); font-size: .8rem; letter-spacing: 2px; margin: 4px 0 2px; }
.dd-rating .who   { font-size: .705rem; color: var(--dd-ink-40); font-weight: 600; }


/* ============================================================================
   4. TRUST STRIP
   ============================================================================ */
.dd-trust {
  border-top: 1px solid var(--dd-line-2);
  border-bottom: 1px solid var(--dd-line-2);
  background: #FBFCFF;
  padding: 22px 0;
}
.dd-trust .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  flex-wrap: wrap;
}
.dd-trust .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .89rem;
  font-weight: 650;
  color: var(--dd-ink);
}
.dd-trust .item .n {
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--blue);
  line-height: 1;
}
.dd-trust .item .stars { color: var(--gold); letter-spacing: 1px; }
.dd-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--dd-line); }


/* ============================================================================
   5. SECTION FURNITURE
   ============================================================================ */
.dd-sec { padding: var(--dd-sec) 0; position: relative; }
.dd-sec.tint { background: #FBFCFF; }
.dd-sec.tint-blue { background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%); }
.dd-sec.ink {
  background: linear-gradient(165deg, #0A1736 0%, #101F47 55%, #0A1736 100%);
  color: #fff;
  overflow: hidden;
}
.dd-sec.ink h2, .dd-sec.ink h3, .dd-sec.ink h4 { color: #fff; }
.dd-sec.ink .lede { color: rgba(255,255,255,.72); }
.dd-sec.ink .lede strong { color: #fff; }
.dd-sec.ink::after {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: -280px; right: -240px;
  background: radial-gradient(circle, rgba(25,94,246,.30), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}

.dd-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 58px); }
.dd-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.dd-head h2 { margin: 15px 0 16px; }
.dd-head .lede { margin: 0; }
.dd-head.centered .lede { margin-left: auto; margin-right: auto; }


/* ============================================================================
   6. COST-OF-WRONG-CHOICE SECTION
   ============================================================================ */
.dd-cost-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(34px, 5vw, 62px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.dd-cost-grid p { color: rgba(255,255,255,.78); line-height: 1.72; margin-bottom: 15px; font-size: 1.02rem; }
.dd-cost-grid p:last-of-type { margin-bottom: 0; }
.dd-cost-grid p strong { color: #fff; font-weight: 650; }

.dd-getlist {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 30px 32px;
  backdrop-filter: blur(6px);
}
.dd-getlist h4 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: var(--dd-mono);
  font-weight: 600;
}
.dd-getlist ul { list-style: none; padding: 0; margin: 14px 0 0; }
.dd-getlist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.5;
}
.dd-getlist li:last-child { border-bottom: 0; padding-bottom: 0; }
.dd-getlist li .tick {
  flex: 0 0 auto;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: rgba(25,94,246,.22);
  border: 1px solid rgba(110,160,255,.45);
  color: #9DC0FF;
  display: grid;
  place-items: center;
  font-size: .66rem;
  font-weight: 800;
  margin-top: 2px;
}

.dd-cost-close {
  margin-top: clamp(34px, 4vw, 50px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
  position: relative;
  z-index: 1;
}
.dd-cost-close .kicker {
  font-family: var(--dd-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.42;
  max-width: 720px;
  margin: 0 auto 26px;
  letter-spacing: -.02em;
}
.dd-cost-close .kicker span { color: var(--gold); }


/* ============================================================================
   7. SKILL EXPLORER (four live demonstrations)
   ============================================================================ */
/* Buttons and panels are interleaved in the source (path, panel, path, panel…)
   so the layout can flip from a two-column tab UI to a stacked accordion
   without duplicating markup. On desktop, buttons occupy column 1 (one row
   each) and every panel is pinned to column 2 spanning all four rows. */
.dd-explorer {
  display: grid;
  grid-template-columns: 340px 1fr;
  /* Four auto rows for the buttons + a flexible fifth row that absorbs any
     extra height from the (taller) panel, so the buttons stay compact. */
  grid-template-rows: repeat(4, auto) 1fr;
  column-gap: 26px;
  row-gap: 10px;
  align-items: start;
}
.dd-path  { grid-column: 1; }
.dd-panel { grid-column: 2; grid-row: 1 / 6; align-self: start; }

.dd-path {
  --c: var(--blue);
  --c-soft: var(--blue-ultra);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--dd-line);
  border-radius: 16px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .25s, background .25s;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.dd-path::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.dd-path:hover { border-color: #CFDCF7; transform: translateX(3px); }
.dd-path[aria-selected="true"] {
  border-color: var(--c);
  background: var(--c-soft);
  box-shadow: 0 10px 30px rgba(10,23,54,.09);
}
.dd-path[aria-selected="true"]::before { transform: scaleY(1); }
.dd-path .p-ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-soft);
  color: var(--c);
  display: grid;
  place-items: center;
  transition: background .25s, color .25s;
}
.dd-path .p-ico svg { width: 21px; height: 21px; }
.dd-path[aria-selected="true"] .p-ico { background: var(--c); color: #fff; }
.dd-path .p-txt { min-width: 0; flex: 1; }
.dd-path .p-name {
  display: block;
  font-family: var(--dd-serif);
  font-weight: 750;
  font-size: 1.01rem;
  color: var(--dd-ink);
  letter-spacing: -.015em;
  line-height: 1.25;
}
.dd-path .p-sub { display: block; font-size: .8rem; color: var(--dd-ink-40); margin-top: 3px; line-height: 1.35; }
.dd-path .p-num {
  flex: 0 0 auto;
  font-family: var(--dd-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--dd-ink-40);
  opacity: .6;
}
.dd-path[aria-selected="true"] .p-num { color: var(--c); opacity: 1; }

/* Right panel — path detail */
.dd-panel {
  --c: var(--blue);
  --c-soft: var(--blue-ultra);
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 24px;
  padding: clamp(26px, 3.2vw, 40px);
  box-shadow: 0 16px 46px rgba(10,23,54,.07);
  position: relative;
  overflow: hidden;
  min-height: 430px;
}
.dd-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c), color-mix(in srgb, var(--c) 45%, #fff));
}
.dd-panel[hidden] { display: none; }
.dd-panel.enter { animation: ddPanelIn .42s cubic-bezier(.2,.8,.3,1) both; }

.dd-panel .p-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.dd-panel .p-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-soft);
  color: var(--c);
  font-family: var(--dd-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}
.dd-panel h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); width: 100%; margin: 0; }
.dd-panel .p-lede {
  font-size: 1.04rem;
  line-height: 1.68;
  color: var(--dd-ink-60);
  margin: 0 0 12px;
  max-width: 640px;
}
.dd-panel .p-lede strong { color: var(--dd-ink); font-weight: 650; }

/* "You will see" demo strip */
.dd-demo {
  background: linear-gradient(135deg, #FAFBFF, #F4F7FF);
  border: 1px solid var(--dd-line);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 22px 0;
}
.dd-demo .d-lbl {
  font-family: var(--dd-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dd-ink-40);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.dd-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.dd-flow .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--dd-ink);
  box-shadow: 0 2px 8px rgba(10,23,54,.05);
  white-space: nowrap;
}
.dd-flow .step .n {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--c-soft);
  color: var(--c);
  display: grid; place-items: center;
  font-family: var(--dd-mono);
  font-size: .66rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.dd-flow .sep { color: var(--c); font-weight: 800; opacity: .5; }

/* Suits-you block */
.dd-suits {
  border-top: 1px dashed var(--dd-line);
  padding-top: 20px;
  margin-top: 4px;
}
.dd-suits .s-lbl {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dd-ink);
  display: block;
  margin-bottom: 11px;
}
.dd-suits .tags { display: flex; flex-wrap: wrap; gap: 7px; }
.dd-suits .tags span {
  background: var(--c-soft);
  color: color-mix(in srgb, var(--c) 78%, #0A1736);
  border-radius: 8px;
  padding: 6px 11px;
  font-size: .83rem;
  font-weight: 600;
}

/* Mobile accordion fallback header (hidden on desktop) */
.dd-panel .p-mobile-head { display: none; }

.dd-explorer-note {
  margin-top: 30px;
  background: var(--blue-ultra);
  border: 1px solid #DDE7FF;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dd-explorer-note h4 { font-size: 1.14rem; margin: 0 0 5px; }
.dd-explorer-note p  { color: var(--dd-ink-60); font-size: .95rem; margin: 0; max-width: 560px; line-height: 1.6; }


/* ============================================================================
   8. VALUE CARDS ("you will leave with more")
   ============================================================================ */
.dd-value {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.dd-vcard {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.dd-vcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(10,23,54,.10);
  border-color: #CFDCF7;
}
.dd-vcard .v-ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--blue-ultra);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 17px;
}
.dd-vcard .v-ico svg { width: 22px; height: 22px; }
.dd-vcard h3 { font-size: 1.17rem; margin: 0 0 9px; }
.dd-vcard p  { color: var(--dd-ink-60); font-size: .94rem; line-height: 1.62; margin: 0; }

/* Wide feature card — the 90-day roadmap */
.dd-vcard.feature {
  grid-column: span 3;
  background: linear-gradient(140deg, #0A1736 0%, #152652 58%, #0A1736 100%);
  border-color: var(--navy);
  color: #fff;
}
.dd-vcard.feature h3 { color: #fff; font-size: 1.34rem; }
.dd-vcard.feature p  { color: rgba(255,255,255,.72); }
.dd-vcard.feature .v-ico { background: rgba(255,200,61,.16); color: var(--gold); }
.dd-vcard.feature:hover { border-color: var(--navy); }
.dd-roadmap { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; }
.dd-roadmap li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  line-height: 1.5;
}
.dd-roadmap li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex: 0 0 auto;
  line-height: 1.45;
}

/* Gold "no obligation" card */
.dd-vcard.gold {
  grid-column: span 3;
  background: linear-gradient(140deg, #FFF9EA, #FFF3D6);
  border-color: #F5E3B4;
}
.dd-vcard.gold .v-ico { background: rgba(255,200,61,.35); color: #96690A; }
.dd-vcard.gold .no-ob {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
  font-size: .9rem;
  color: #7A5405;
}
.dd-vcard.gold .no-ob .badge {
  background: var(--gold);
  color: var(--navy);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}


/* ============================================================================
   9. FIT CHECKLIST ("is this for you?")
   ============================================================================ */
.dd-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dd-fit {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.dd-fit:hover {
  transform: translateY(-3px);
  border-color: #C7D6F5;
  box-shadow: 0 12px 30px rgba(10,23,54,.08);
}
.dd-fit .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-size: .66rem;
  font-weight: 800;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(25,94,246,.3);
}
.dd-fit span { font-size: .945rem; line-height: 1.5; color: var(--dd-ink); font-weight: 550; }

.dd-fit-foot {
  margin-top: 34px;
  text-align: center;
}
.dd-fit-foot .big {
  font-family: var(--dd-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.48rem);
  font-weight: 750;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.dd-fit-foot p { color: var(--dd-ink-60); margin-bottom: 26px; }


/* ============================================================================
   10. PROOF & GALLERY
   ============================================================================ */
.dd-proof-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
}
.dd-proof-grid p { color: var(--dd-ink-60); line-height: 1.72; margin-bottom: 14px; }
.dd-proof-grid p strong { color: var(--dd-ink); font-weight: 650; }

.dd-reviewcard {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 22px;
  padding: 30px 32px;
  box-shadow: 0 18px 46px rgba(10,23,54,.08);
}
.dd-reviewcard .rc-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dd-line-2);
}
.dd-reviewcard .g-logo {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--dd-line);
  display: grid; place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 2px 10px rgba(10,23,54,.06);
}
.dd-reviewcard .g-logo svg { width: 24px; height: 24px; }
.dd-reviewcard .rc-score {
  font-family: var(--dd-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
.dd-reviewcard .rc-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-top: 4px; }
.dd-reviewcard .rc-meta { font-size: .85rem; color: var(--dd-ink-40); margin-top: 4px; }

/* Three verifiable facts about the academy — no invented review breakdown. */
.dd-facts-mini { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dd-facts-mini .f {
  background: #FAFBFF;
  border: 1px solid var(--dd-line-2);
  border-radius: 13px;
  padding: 15px 14px;
  text-align: center;
}
.dd-facts-mini .f .v {
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.02em;
}
.dd-facts-mini .f .k {
  font-size: .765rem;
  color: var(--dd-ink-40);
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.35;
}
@media (max-width: 520px) { .dd-facts-mini { grid-template-columns: 1fr; } }

.dd-reviewcard .rc-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--dd-line-2);
  font-size: .9rem;
  color: var(--dd-ink-60);
  line-height: 1.6;
}
.dd-reviewcard .rc-foot strong { color: var(--dd-ink); }

/* --- Google review quote cards -------------------------------------------- */
.dd-quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(38px, 5vw, 56px);
}
.dd-quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s, border-color .3s;
}
.dd-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(10,23,54,.10);
  border-color: #CFDCF7;
}
.dd-quote .q-mark {
  font-family: var(--dd-serif);
  font-size: 3rem;
  line-height: .8;
  color: var(--blue);
  opacity: .16;
  margin-bottom: 4px;
}
.dd-quote blockquote {
  margin: 0 0 20px;
  font-size: .955rem;
  line-height: 1.62;
  color: var(--dd-ink);
  font-weight: 500;
}
.dd-quote figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--dd-line-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dd-quote .q-av {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
/* Coloured initial, used when a reviewer has no self-hosted photo. Each card
   picks a different hue via :nth-child so the row doesn't look repetitive. */
.dd-quote .q-av-initial {
  display: grid;
  place-items: center;
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #6FA7FF);
  letter-spacing: -.02em;
}
.dd-quote:nth-child(2) .q-av-initial { background: linear-gradient(135deg, #7C3AED, #A780FF); }
.dd-quote:nth-child(3) .q-av-initial { background: linear-gradient(135deg, #0E9F6E, #4FD1A5); }
.dd-quote:nth-child(4) .q-av-initial { background: linear-gradient(135deg, #F2760C, #FFA95C); }

.dd-quote .q-who { min-width: 0; }
.dd-quote .q-name {
  display: block;
  font-family: var(--dd-serif);
  font-weight: 750;
  font-size: .93rem;
  color: var(--dd-ink);
  letter-spacing: -.015em;
}
.dd-quote .q-src {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dd-ink-40);
}
.dd-quote .q-src svg { width: 13px; height: 13px; flex: 0 0 auto; }

/* --- Student story cards --------------------------------------------------- */
.dd-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dd-story {
  background: linear-gradient(180deg, #fff 0%, #FAFCFF 100%);
  border: 1px solid var(--dd-line);
  border-radius: 22px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s, border-color .3s;
}
.dd-story::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.3,1);
}
.dd-story:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(10,23,54,.11);
  border-color: #CFDCF7;
}
.dd-story:hover::before { transform: scaleX(1); }
.dd-story blockquote {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--dd-ink);
  font-weight: 500;
  quotes: "\201C" "\201D";
}
.dd-story blockquote::before { content: open-quote; color: var(--blue); }
.dd-story blockquote::after  { content: close-quote; color: var(--blue); }
.dd-story footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--dd-line-2);
  display: flex;
  align-items: center;
  gap: 14px;
}
.dd-story .s-photo {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.dd-story .s-initials {
  background: linear-gradient(135deg, var(--blue), #6FA7FF);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.08rem;
}
.dd-story .s-meta { min-width: 0; flex: 1; }
.dd-story .s-name {
  display: block;
  font-family: var(--dd-serif);
  font-weight: 750;
  font-size: .96rem;
  color: var(--dd-ink);
  letter-spacing: -.015em;
}
.dd-story .s-prog {
  display: block;
  font-size: .82rem;
  color: var(--dd-ink-40);
  margin-top: 2px;
  line-height: 1.4;
}
.dd-story .s-link {
  flex: 0 0 auto;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.dd-story .s-link:hover { text-decoration: underline; }

/* Mosaic gallery */
.dd-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 178px;
  gap: 13px;
  grid-auto-flow: dense;
  margin-top: clamp(38px, 5vw, 56px);
}
.dd-gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--dd-line-2);
  box-shadow: 0 4px 16px rgba(10,23,54,.07);
}
.dd-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.2,.8,.3,1);
}
.dd-gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,23,54,.28));
  opacity: 0;
  transition: opacity .35s;
}
.dd-gallery figure:hover img { transform: scale(1.07); }
.dd-gallery figure:hover::after { opacity: 1; }
/* One wide tile + six standard tiles = exactly eight cells across two rows,
   so the mosaic never leaves a hole at the end. */
.dd-gallery .g-wide { grid-column: span 2; }


/* ============================================================================
   11. AGENDA TIMELINE
   ============================================================================ */
.dd-agenda { position: relative; max-width: 880px; margin: 0 auto; }
.dd-agenda::before {
  content: "";
  position: absolute;
  left: 25px; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, #C7D6F5 55%, transparent 100%);
}
.dd-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding-bottom: 26px;
  position: relative;
}
.dd-step:last-child { padding-bottom: 0; }
.dd-step .s-dot {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: #fff;
  border: 1.5px solid var(--dd-line);
  color: var(--blue);
  display: grid; place-items: center;
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(10,23,54,.07);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.dd-step:hover .s-dot {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: scale(1.06);
}
.dd-step .s-body {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 16px;
  padding: 19px 24px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.dd-step:hover .s-body {
  border-color: #C7D6F5;
  box-shadow: 0 14px 34px rgba(10,23,54,.09);
  transform: translateX(3px);
}
.dd-step h4 { font-size: 1.08rem; margin: 0 0 6px; }
.dd-step p  { color: var(--dd-ink-60); font-size: .94rem; line-height: 1.6; margin: 0; }
.dd-step .s-chip {
  display: inline-block;
  background: var(--blue-ultra);
  color: var(--blue-dark);
  font-family: var(--dd-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  margin-left: 9px;
  vertical-align: 2px;
}

.dd-duration {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 650;
  font-size: .92rem;
  margin-bottom: 8px;
}
.dd-duration svg { width: 17px; height: 17px; color: var(--gold); }


/* ============================================================================
   12. SHORT COURSE vs CAREER PROGRAM
   ============================================================================ */
.dd-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
}
.dd-cmp {
  background: #fff;
  border: 1.5px solid var(--dd-line);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.dd-cmp:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(10,23,54,.10); }
.dd-cmp .c-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-family: var(--dd-mono);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.dd-cmp.short .c-tag { background: var(--blue-ultra); color: var(--blue-dark); }
.dd-cmp.core  .c-tag { background: rgba(255,200,61,.22); color: #8A6008; }
.dd-cmp.short:hover { border-color: var(--blue); }
.dd-cmp.core {
  background: linear-gradient(160deg, #0A1736, #14244B);
  border-color: #0A1736;
  color: #fff;
}
.dd-cmp.core h3 { color: #fff; }
.dd-cmp.core p  { color: rgba(255,255,255,.72); }
.dd-cmp h3 { font-size: 1.4rem; margin: 0 0 9px; }
.dd-cmp p  { color: var(--dd-ink-60); font-size: .96rem; line-height: 1.62; margin: 0 0 20px; }
.dd-cmp ul { list-style: none; padding: 0; margin: 0 0 8px; display: grid; gap: 10px; }
.dd-cmp li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 11px;
  background: #FAFBFF;
  border: 1px solid var(--dd-line-2);
  font-size: .945rem;
  font-weight: 600;
  color: var(--dd-ink);
}
.dd-cmp.core li {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.10);
  color: #fff;
}
.dd-cmp li .m {
  flex: 0 0 auto;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.dd-cmp.core li .m { background: var(--gold); }

.dd-compare-foot {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-left: 3px solid var(--blue);
  border-radius: 14px;
  padding: 22px 26px;
  color: var(--dd-ink-60);
  line-height: 1.68;
  font-size: .98rem;
  max-width: 900px;
}
.dd-compare-foot strong { color: var(--dd-ink); font-weight: 650; }


/* ============================================================================
   13. SESSIONS & VENUE
   ============================================================================ */
.dd-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.dd-day {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(10,23,54,.06);
}
.dd-day .d-head {
  background: linear-gradient(120deg, var(--navy), #16274F);
  color: #fff;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.dd-day .d-head .d-name {
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}
.dd-day .d-head .d-date { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 3px; }
.dd-day .d-head .d-num {
  font-family: var(--dd-serif);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: .9;
  letter-spacing: -.04em;
}
.dd-day .d-head .d-mon {
  font-family: var(--dd-mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-top: 4px;
}
.dd-day .d-body { padding: 18px 20px 20px; display: grid; gap: 11px; }

.dd-slot {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  background: #FAFBFF;
  border: 1.5px solid var(--dd-line-2);
  border-radius: 14px;
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
  font-family: inherit;
}
.dd-slot:hover {
  border-color: var(--blue);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(25,94,246,.12);
}
.dd-slot .s-time {
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.16rem;
  color: var(--dd-ink);
  letter-spacing: -.02em;
  line-height: 1.1;
  flex: 0 0 auto;
  min-width: 88px;
}
.dd-slot .s-info { min-width: 0; flex: 1; }
.dd-slot .s-label { display: block; font-size: .87rem; font-weight: 650; color: var(--dd-ink); }
.dd-slot .s-cap { display: block; font-size: .79rem; color: var(--dd-ink-40); margin-top: 2px; }
.dd-slot .s-go {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-ultra);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: .95rem;
  font-weight: 700;
  transition: background .25s, color .25s, transform .25s;
}
.dd-slot:hover .s-go { background: var(--blue); color: #fff; transform: translateX(2px); }

/* Venue card */
.dd-venue {
  background: linear-gradient(135deg, #FAFBFF, #F1F5FF);
  border: 1px solid #DDE7FF;
  border-radius: 22px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.dd-venue .v-pin {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(25,94,246,.32);
  flex: 0 0 auto;
}
.dd-venue .v-pin svg { width: 24px; height: 24px; }
.dd-venue h4 { font-size: 1.1rem; margin: 0 0 5px; }
.dd-venue address {
  font-style: normal;
  color: var(--dd-ink-60);
  font-size: .95rem;
  line-height: 1.55;
}
.dd-capnote {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFBEE;
  border: 1px solid #F5E3B4;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: .92rem;
  color: #6E4E05;
  line-height: 1.6;
}
.dd-capnote .ico { flex: 0 0 auto; font-size: 1rem; line-height: 1.4; }
.dd-capnote strong { color: #4E3703; }


/* ============================================================================
   14. REGISTRATION FORM
   ============================================================================ */
.dd-reg {
  background:
    radial-gradient(800px 500px at 15% 0%, rgba(25,94,246,.16), transparent 60%),
    linear-gradient(165deg, #0A1736, #101F47 60%, #0A1736);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.dd-reg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 10%, transparent 75%);
  pointer-events: none;
}
.dd-reg .wrap { position: relative; z-index: 1; }
.dd-reg-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}
.dd-reg h2 { color: #fff; }
.dd-reg .lede { color: rgba(255,255,255,.72); }

.dd-reg-side ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.dd-reg-side li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: rgba(255,255,255,.86);
  font-size: .95rem;
  line-height: 1.55;
}
.dd-reg-side li .n {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 8px;
  background: rgba(255,200,61,.16);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--dd-mono);
  font-size: .7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* The card */
.dd-form-card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(26px, 3.2vw, 38px);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
  color: var(--dd-ink);
}
.dd-form-card h3 { font-size: 1.42rem; margin: 0 0 7px; }
.dd-form-card .fc-sub { color: var(--dd-ink-60); font-size: .93rem; line-height: 1.6; margin: 0 0 24px; }

.dd-field { margin-bottom: 17px; }
.dd-field > label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dd-ink);
  margin-bottom: 7px;
  letter-spacing: -.005em;
}
.dd-field > label .opt { color: var(--dd-ink-40); font-weight: 500; }
.dd-field input,
.dd-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--dd-line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .965rem;
  color: var(--dd-ink);
  background: #FBFCFF;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}
.dd-field input::placeholder { color: #A9B2C4; }
.dd-field input:focus,
.dd-field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(25,94,246,.13);
}
.dd-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6478' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
  padding-right: 44px;
  cursor: pointer;
}
.dd-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Session radio cards */
.dd-sessions-field { margin: 22px 0 18px; }
.dd-sessions-field > .lbl {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.dd-sessions-field > .hint { font-size: .82rem; color: var(--dd-ink-40); margin-bottom: 12px; }
.dd-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dd-radio { position: relative; }
.dd-radio input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.dd-radio .box {
  display: block;
  border: 1.5px solid var(--dd-line);
  border-radius: 13px;
  padding: 13px 15px;
  background: #FBFCFF;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
  height: 100%;
}
.dd-radio input:hover + .box { border-color: #C0D2F7; }
.dd-radio input:checked + .box {
  border-color: var(--blue);
  background: var(--blue-ultra);
  box-shadow: 0 0 0 3px rgba(25,94,246,.11);
}
.dd-radio input:focus-visible + .box { box-shadow: 0 0 0 4px rgba(25,94,246,.25); }
.dd-radio .box .r-day {
  display: block;
  font-size: .74rem;
  font-family: var(--dd-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dd-ink-40);
  font-weight: 600;
}
.dd-radio input:checked + .box .r-day { color: var(--blue); }
.dd-radio .box .r-time {
  display: block;
  font-family: var(--dd-serif);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--dd-ink);
  margin-top: 3px;
  letter-spacing: -.02em;
}
.dd-radio .box .r-cap { display: block; font-size: .76rem; color: var(--dd-ink-40); margin-top: 2px; }

.dd-submit { width: 100%; margin-top: 6px; }
.dd-submit[disabled] { opacity: .65; cursor: not-allowed; transform: none !important; }
.dd-form-note {
  display: block;
  margin-top: 14px;
  font-size: .81rem;
  color: var(--dd-ink-40);
  line-height: 1.55;
  text-align: center;
}
.dd-form-error {
  display: none;
  margin-top: 14px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: 11px;
  padding: 12px 15px;
  font-size: .89rem;
  line-height: 1.5;
}
.dd-form-error.show { display: block; }

.dd-form-success { text-align: center; padding: 14px 4px 6px; }
.dd-form-success .ok {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: 0 16px 40px rgba(16,185,129,.35);
  animation: ddPop .55s cubic-bezier(.34,1.56,.64,1) both;
}
.dd-form-success h3 { margin-bottom: 9px; }
.dd-form-success p { color: var(--dd-ink-60); font-size: .95rem; line-height: 1.65; margin-bottom: 22px; }


/* ============================================================================
   15. FAQ
   ============================================================================ */
.dd-faq { max-width: 840px; margin: 0 auto; }
.dd-faq-item {
  border-bottom: 1px solid var(--dd-line);
  transition: border-color .25s;
}
.dd-faq-item:first-child { border-top: 1px solid var(--dd-line); }
.dd-faq-item.open { border-color: #C7D6F5; }
.dd-faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 8px 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--dd-serif);
  font-weight: 700;
  font-size: 1.045rem;
  color: var(--dd-ink);
  letter-spacing: -.015em;
  line-height: 1.4;
  transition: color .2s;
  cursor: pointer;
}
.dd-faq-q:hover { color: var(--blue); }
.dd-faq-item.open .dd-faq-q { color: var(--blue); }
.dd-faq-q .pm {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-ultra);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .32s cubic-bezier(.2,.8,.3,1), background .25s, color .25s;
  margin-top: 1px;
}
.dd-faq-item.open .pm {
  background: var(--blue);
  color: #fff;
  transform: rotate(135deg);
}
.dd-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.2,.8,.3,1);
}
.dd-faq-item.open .dd-faq-a { grid-template-rows: 1fr; }
.dd-faq-a > div { overflow: hidden; }
.dd-faq-a p {
  color: var(--dd-ink-60);
  font-size: .965rem;
  line-height: 1.72;
  padding: 0 52px 24px 0;
  margin: 0;
}


/* ============================================================================
   16. FINAL CTA & FOOTER
   ============================================================================ */
.dd-final {
  background:
    radial-gradient(900px 560px at 50% 0%, rgba(25,94,246,.26), transparent 62%),
    linear-gradient(175deg, #0A1736, #08122B);
  color: #fff;
  text-align: center;
  padding: clamp(72px, 9vw, 116px) 0;
  position: relative;
  overflow: hidden;
}
.dd-final::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  left: 50%; bottom: -420px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,200,61,.16), transparent 62%);
  border-radius: 50%;
  pointer-events: none;
}
.dd-final .wrap { position: relative; z-index: 1; }
.dd-final h2 { color: #fff; margin: 16px auto 18px; max-width: 900px; }
.dd-final .lede { color: rgba(255,255,255,.72); max-width: 640px; margin: 0 auto 32px; }

.dd-final-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.dd-final-list span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .89rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.dd-final-meta {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px clamp(16px, 3vw, 34px);
}
.dd-final-meta .m { text-align: center; }
@media (max-width: 860px) { .dd-final-meta { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .dd-final-meta { grid-template-columns: 1fr; } }
.dd-final-meta .m .k {
  font-family: var(--dd-mono);
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 7px;
}
.dd-final-meta .m .v {
  font-family: var(--dd-serif);
  font-weight: 750;
  font-size: 1.01rem;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -.015em;
}

/* Footer */
.dd-footer {
  background: #08122B;
  color: rgba(255,255,255,.62);
  padding: 58px 0 26px;
}
.dd-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* The logo is a full-colour mark — inverting it flattens the diamond into a
   white blob, so it sits on a light chip instead. */
.dd-footer .f-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 9px 14px;
}
.dd-footer .f-logo img { height: 32px; width: auto; display: block; }
.dd-footer p { font-size: .91rem; line-height: 1.68; margin-top: 15px; max-width: 380px; }
.dd-footer h5 {
  font-family: var(--dd-serif);
  color: #fff;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.dd-footer ul { list-style: none; padding: 0; margin: 0; }
.dd-footer li { margin-bottom: 11px; font-size: .91rem; line-height: 1.5; }
.dd-footer a { transition: color .2s; }
.dd-footer a:hover { color: #fff; }
.dd-footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
}


/* ============================================================================
   17. FLOATING UI
   ============================================================================ */
.dd-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.42);
  transition: transform .25s, box-shadow .25s, bottom .3s;
}
.dd-wa:hover { transform: scale(1.09); box-shadow: 0 16px 40px rgba(37,211,102,.55); }
.dd-wa svg { width: 28px; height: 28px; }
.dd-wa.lifted { bottom: 92px; }

.dd-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 65;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--dd-line);
  box-shadow: 0 -8px 30px rgba(10,23,54,.09);
  padding: 12px var(--dd-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(105%);
  transition: transform .38s cubic-bezier(.2,.8,.3,1);
}
.dd-sticky.visible { transform: translateY(0); }
.dd-sticky .info { min-width: 0; flex: 1; }
.dd-sticky .info strong {
  display: block;
  font-family: var(--dd-serif);
  font-size: .94rem;
  font-weight: 750;
  color: var(--dd-ink);
  letter-spacing: -.015em;
}
.dd-sticky .info small {
  display: block;
  font-size: .8rem;
  color: var(--dd-ink-40);
  margin-top: 2px;
}
.dd-sticky .btn { flex: 0 0 auto; padding: 13px 24px; font-size: .92rem; }

/* Scroll progress bar */
.dd-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 80;
  transition: width .1s linear;
  pointer-events: none;
}


/* ============================================================================
   18. MOTION
   ============================================================================ */
.dd .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1);
}
.dd .rv.in { opacity: 1; transform: none; }
.dd .rv-d1 { transition-delay: .08s; }
.dd .rv-d2 { transition-delay: .16s; }
.dd .rv-d3 { transition-delay: .24s; }

@keyframes ddPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,200,61,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(255,200,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,200,61,0); }
}
@keyframes ddFloaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@keyframes ddPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ddPop {
  0%   { transform: scale(.3); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}


/* ============================================================================
   19. RESPONSIVE
   ============================================================================ */
@media (max-width: 1080px) {
  .dd-explorer { grid-template-columns: 290px 1fr; column-gap: 20px; }
  .dd-value { grid-template-columns: repeat(4, 1fr); }
  .dd-vcard { grid-column: span 2; }
  .dd-vcard.feature, .dd-vcard.gold { grid-column: span 4; }
  .dd-fit-grid { grid-template-columns: repeat(2, 1fr); }
  .dd-footer-grid { grid-template-columns: 1fr 1fr; }
  .dd-quotes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .dd-nav-links { display: none; }
  /* Copy leads on narrow screens — a photo above the fold with no headline
     above it gives the visitor nothing to read first. */
  .dd-hero-grid { grid-template-columns: 1fr; }
  .dd-hero-visual { margin-top: 20px; }
  .dd-photo img { aspect-ratio: 4 / 3.4; }
  .dd-ticket { left: 8px; bottom: -28px; }
  .dd-rating { right: 8px; top: -14px; }
  .dd-cost-grid,
  .dd-proof-grid,
  .dd-reg-grid { grid-template-columns: 1fr; }
  .dd-compare { grid-template-columns: 1fr; }
  .dd-days { grid-template-columns: 1fr; }
  .dd-stories { grid-template-columns: repeat(2, 1fr); }
  .dd-venue { grid-template-columns: auto 1fr; }
  .dd-venue .btn { grid-column: 1 / -1; justify-self: start; }
}

/* --- Explorer collapses to an accordion on small screens ------------------- */
@media (max-width: 860px) {
  .dd-explorer { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 12px; }
  .dd-path  { grid-column: 1; }
  .dd-panel { grid-column: 1; grid-row: auto; }
  .dd-panel {
    min-height: 0;
    border-radius: 18px;
    padding: 24px 22px 26px;
    box-shadow: none;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -12px;
  }
  .dd-panel::before { display: none; }
  .dd-panel .p-badge { display: none; }
  .dd-path { border-radius: 16px; }
  .dd-path[aria-selected="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
  }
  .dd-flow { gap: 8px; }
  .dd-flow .step { font-size: .81rem; padding: 8px 12px; }
}

@media (max-width: 720px) {
  .dd-topbar { font-size: .78rem; padding: 9px 16px; }
  .dd-topbar .sep { display: none; }
  .dd-hero h1 { font-size: clamp(1.95rem, 8.4vw, 2.6rem); }
  .dd-facts .fact { font-size: .82rem; padding: 9px 13px; }
  /* app.css sets `white-space: nowrap` on .btn — on a 375px screen the long
     CTA label is then wider than the viewport and drags the whole grid track
     with it, so let every button in this page wrap instead. */
  .dd .btn { white-space: normal; text-align: center; }
  .dd-hero-ctas { flex-direction: column; align-items: stretch; }
  .dd-hero-ctas .btn { width: 100%; }
  .dd .btn-xl { padding: 18px 22px; font-size: .98rem; }
  .dd-value { grid-template-columns: 1fr; }
  .dd-vcard, .dd-vcard.feature, .dd-vcard.gold { grid-column: span 1; }
  .dd-fit-grid { grid-template-columns: 1fr; }
  .dd-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 136px; }
  .dd-quotes  { grid-template-columns: 1fr; }
  .dd-stories { grid-template-columns: 1fr; }
  .dd-story footer { flex-wrap: wrap; }
  .dd-field-row { grid-template-columns: 1fr; }
  .dd-radio-grid { grid-template-columns: 1fr; }
  .dd-agenda::before { left: 19px; }
  .dd-step { grid-template-columns: 40px 1fr; gap: 15px; }
  .dd-step .s-dot { width: 40px; height: 40px; border-radius: 12px; font-size: .92rem; }
  .dd-step .s-body { padding: 16px 18px; }
  .dd-step .s-chip { display: none; }
  .dd-venue { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .dd-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .dd-final-meta .m { min-width: 120px; }
  .dd-faq-a p { padding-right: 20px; }
  .dd-slot { padding: 13px 15px; gap: 12px; }
  .dd-slot .s-time { min-width: 76px; font-size: 1.05rem; }
  .dd-sticky .info small { display: none; }
  .dd-sticky .info strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dd-explorer-note { flex-direction: column; align-items: flex-start; }
  .dd-explorer-note .btn { width: 100%; }
  /* Arrows read as stray glyphs once the chips wrap onto several lines. */
  .dd-flow .sep { display: none; }
  .dd-trust .dot { display: none; }
  .dd-trust .row { gap: 12px 22px; }
}

@media (max-width: 420px) {
  .dd-ticket { position: static; width: 100%; margin-top: 16px; animation: none; }
  .dd-rating { position: static; display: inline-block; margin-bottom: 14px; animation: none; }
  .dd-photo { border-radius: 20px; }
}


/* ============================================================================
   20. REDUCED MOTION & PRINT
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  .dd *, .dd *::before, .dd *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .dd .rv { opacity: 1; transform: none; }
}

@media print {
  .dd-nav, .dd-sticky, .dd-wa, .dd-progress, .dd-topbar { display: none !important; }
  .dd-sec.ink, .dd-reg, .dd-final { background: #fff !important; color: #000 !important; }
  .dd { font-size: 11pt; }
}
