/* DAI Brand — Destination AI Forum */

:root {
  --dai-blue: #4361ee;
  --dai-blue-dark: #1e3fdb;
  --dai-blue-light: #eef1fd;
  --dai-black: #0d0d0d;
  --dai-dark: #000000;
  --dai-white: #ffffff;
  --dai-gray: #f5f6fa;
  --dai-gray-mid: #9fa0a7;
  --dai-text: #000000;
  --dai-text-light: #9fa0a7;
  --dai-border: #e0e0f2;
  --dai-footer-bg: #0d1117;
  --ref-font-head: halyard-display, sans-serif;
  --ref-font-body: "DM Sans", sans-serif;
  /* exact reference weights/line-heights */
  --ref-h-weight: 500;
  --ref-h1-lh: 1em;
  --ref-h2-lh: 1.021em;
  --ref-h3-lh: 1.029em;
  --ref-body-lh: 1.68em;

  /* component brand tokens */
  --dai-green: #1ce67e;
  --dai-mint: #bcefdc;
  --dai-cta-blue: #5353f2;
  --dai-lavender: #f8f8ff;
}

/* ── Global ─────────────────────────────────────── */

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

a {
  color: var(--dai-blue);
  text-decoration: none;
}
a:hover {
  color: var(--dai-blue-dark);
}

/* ── Buttons ─────────────────────────────────────── */

.dai-btn {
  display: inline-block;
  padding: 18px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    border-color 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: "DM Sans", sans-serif;
}

.dai-btn-primary {
  background: var(--dai-blue);
  color: var(--dai-white);
  border-color: var(--dai-blue);
}

.dai-btn-primary:hover {
  background: var(--dai-blue-dark);
  border-color: var(--dai-blue-dark);
  color: var(--dai-white);
  transform: translateY(-1px);
}

.dai-btn-outline-dark {
  background: transparent;
  color: var(--dai-dark);
  border-color: var(--dai-dark);
}

.dai-btn-outline-dark:hover {
  background: var(--dai-dark);
  color: var(--dai-white);
}

/* ── Section Shared ──────────────────────────────── */

.dai-section-gray {
  background: var(--dai-gray);
}

.dai-section-lead {
  font-size: 1rem;
  line-height: 1.7;
}

.dai-label {
  display: inline-block;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dai-blue);
  margin-bottom: 0.5rem;
}

/* ── Navbar ──────────────────────────────────────── */

.dai-navbar-logo {
  display: flex;
  align-items: center;
}

/* Center column — nav links */
.dai-navbar-center {
  display: flex;
  justify-content: end;
}

.dai-navbar-links,
.dai-navbar-links li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dai-navbar-links li::before,
.dai-navbar-links li::marker {
  display: none !important;
  content: "" !important;
}

.dai-navbar-links {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 80px;
}

/* Right column — CTA button */

.dai-navbar-cta a:hover {
  background: var(--dai-blue-dark);
  color: #ffffff !important;
}

.dai-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 1279px) {
  .dai-navbar-inner {
    padding: 0 15px;
  }
  .dai-navbar-links li a {
    padding: 0px 10px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .dai-navbar {
    padding: 8px 18px;
  }
  body.has-dai-navbar {
    padding-top: 92px;
  }
  .dai-navbar-inner {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 0;
  }
  .dai-navbar-center {
    display: none;
  }
  .dai-navbar-cta {
    display: none;
  }
  .dai-mobile-toggle {
    display: block;
    margin-left: auto;
  }
  .dai-navbar-center.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 16px 24px;
    border-top: 1px solid var(--dai-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .dai-navbar-center.open .dai-navbar-links {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .dai-navbar-center.open .dai-navbar-links li a {
    height: auto;
    padding: 10px 0;
  }
  /* no animated underline inside the stacked mobile menu */
  .dai-navbar-center.open .dai-navbar-links li a::after {
    display: none;
  }
}

/* ── Marquee Ticker ──────────────────────────────── */

.dai-ticker {
  background: #ffffff;
  overflow: hidden;
  padding: 105px 0 85px;
  width: 100%;
}

.dai-ticker-row {
  overflow: hidden;
  width: 100%;
  display: block;
  line-height: 1;
  margin: 0;
  padding: 5px;
}

.dai-ticker-row + .dai-ticker-row {
  margin-top: -4px;
}

.dai-ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll 50s linear infinite;
}

.dai-ticker-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Spacing between ticker phrases — change this one value to tune the gap */
  margin: 0 var(--dai-ticker-gap, 64px);
  line-height: 1;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Hero ────────────────────────────────────────── */

.dai-hero {
  background: var(--dai-white);
  padding: 60px 0 80px;
}

@media (max-width: 991px) {
  .dai-hero {
    padding: 60px 0 0;
  }

  .dai-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dai-hero-photo {
    order: -1;
  }
}

/* Photo slider */

.dai-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.dai-hero-slide.active {
  opacity: 1;
}

.dai-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.dai-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.dai-slide-dot.active {
  background: var(--dai-white);
}

/* Hero text */
.dai-hero-text {
}

.dai-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dai-text-light);
  margin-bottom: 1rem;
}

.dai-hero-body {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.dai-hero-body strong {
  color: var(--dai-dark);
}

.dai-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;

  .dai-btn-primary {
    background: rgb(174, 245, 235);
    border: 2px solid rgb(174, 245, 235);
    font-size: 20px;
    color: black;
    padding: 10px 32px;
  }
}

/* ── Why Attend ──────────────────────────────────── */

/* Left-aligned header, like the original */
.dai-why-head {
  text-align: left;
  max-width: 500px;
}
.dai-why-head .dai-section-title {
  font-size: 54px;
  margin-bottom: 1.25rem;
}

.dai-why-lead {
  font-size: 1.05rem;
  color: var(--dai-text);
  line-height: 1.6;
  margin: 0;
}

/* Six pre-rendered illustration cards in a single row */

.dai-why-card {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}

.dai-why-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Reflow on smaller screens */
@media (max-width: 1100px) {
  .dai-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .dai-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .dai-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Video Section ───────────────────────────────── */

.dai-video-section {
  padding: 100px 0 0;
  background: #ffffff;
  text-align: center;
}
.dai-video-section .dai-section-title {
  margin: 0;
}

/* Full-width banner with blue overlay + PLAY circle */
.dai-video-banner {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 56px;
  overflow: hidden;
}
.dai-video-banner img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}
.dai-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(67, 97, 238, 0.55);
}
.dai-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 132px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  transition:
    transform 0.25s,
    background 0.25s;
}
.dai-video-banner:hover .dai-video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 767px) {
  .dai-video-banner img {
    height: 360px;
  }
  .dai-video-play-btn {
    width: 100px;
    height: 100px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
}

/* ── Speakers ────────────────────────────────────── */

@media (max-width: 991px) {
  .dai-speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .dai-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dai-speakers-footer {
  text-align: center;
  margin-top: 3rem;
}

.dai-speakers-footer a {
  background-color: #0df13e;
  font-family: "Roboto", Sans-serif;
  font-size: 21px;
  font-weight: 600;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #0df13e;
  border-radius: 8px 8px 8px 8px;
  padding: 10px 14px;
}

/* ── Sponsorship CTA ─────────────────────────────── */

@media (max-width: 767px) {
}

.dai-sponsor-cta-text .dai-contact-note {
  font-size: 0.82rem;
  color: var(--dai-text-light);
  margin-top: 1.25rem;
}

.dai-sponsor-cta-text .dai-contact-note a {
  font-weight: 600;
}

@media (max-width: 767px) {
}

.dai-testimonial-card {
  border: 1px solid var(--dai-border);
  border-radius: 10px;
  padding: 28px;
  background: #bbf1ea;
}

.dai-testimonial-meta strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dai-dark);
}

/* ── Footer ──────────────────────────────────────── */

.dai-footer-logo {
  margin-bottom: 1rem;
}

.dai-footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.dai-footer-links li {
  margin-bottom: 0.55rem;
}

.dai-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.dai-footer-links a:hover {
  color: var(--dai-white);
}

.dai-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.dai-footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  margin-left: 20px;
  transition: color 0.2s;
}

.dai-footer-bottom a:hover {
  color: var(--dai-white);
}

/* ════════════════════════════════════════════════════
   EXACT-MATCH OVERRIDES — homepage rebuild
   ════════════════════════════════════════════════════ */

/* ── Upcoming Events ─────────────────────────────── */

.dai-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dai-event-card {
  display: grid;
  grid-template-columns: 90px 220px 1fr;
  align-items: center;
  gap: 24px;
  background: var(--dai-white);
  border: 1px solid var(--dai-border);
  border-radius: 12px;
  padding: 18px 24px;
}
.dai-event-card:has(.dai-event-info:only-of-type):not(:has(.dai-event-thumb)) {
  grid-template-columns: 90px 1fr;
}
.dai-event-date {
  text-align: center;
  line-height: 1.1;
}
.dai-event-day {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dai-blue);
}
.dai-event-mon {
  display: block;
  font-size: 0.85rem;
  color: var(--dai-text-light);
}
.dai-event-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.dai-event-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.dai-event-info h4 a {
  color: var(--dai-black);
}
.dai-event-time {
  font-size: 0.9rem;
  color: var(--dai-text-light);
  margin: 0 0 4px;
}
.dai-event-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dai-black);
  margin: 0;
}
.dai-upcoming-more {
  margin-top: 1.75rem;
}
@media (max-width: 767px) {
  .dai-event-card,
  .dai-event-card:has(.dai-event-info:only-of-type):not(
      :has(.dai-event-thumb)
    ) {
    grid-template-columns: 70px 1fr;
  }
  .dai-event-thumb {
    display: none;
  }
}

/* ── Speakers (photo cards) ──────────────────────── */

@media (max-width: 991px) {
  .dai-speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .dai-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dai-speaker-card {
  border: 0;
  border-radius: 10px;
  overflow: visible;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: none;
  text-align: center;
}
.dai-speaker-card:hover {
  border-color: var(--dai-blue);
  box-shadow: none;
  transform: none;
}

.dai-speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dai-speaker-name {
  font-size: 25px;
  font-weight: 700;
  color: var(--dai-black);
  margin-bottom: 3px;
  margin: 0 0 2px;
}
.dai-speaker-org {
  font-size: 1rem;
  color: var(--dai-blue);
  font-weight: 600;
  margin: 0 0 2px;
}
.dai-speaker-role {
  font-size: 1rem;
  color: var(--dai-text-light);
  font-weight: 500;
  margin-bottom: 2px;
  margin: 0;
  line-height: 1.4;
}
.dai-speakers-footer,
.dai-speakers-more {
  margin-top: 2.5rem;
}

/* ── Who Attends (graphs) ────────────────────────── */
.dai-attendees-graphs {
  display: flex;
  margin-top: 2.5rem;
}
.dai-attendees-graphs img {
  width: 100%;
  height: auto;
  display: block;
}

.dai-attendees-more {
  margin-top: 2.5rem;

  a {
    color: white;
    background-color: #0df13e;
    font-family: "Roboto", Sans-serif;
    font-size: 21px;
    font-weight: 600;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0df13e;
    border-radius: 8px 8px 8px 8px;
    padding: 10px 14px;
  }
}
@media (max-width: 767px) {
  .dai-attendees-graphs {
    grid-template-columns: 1fr;
  }
}
.dai-logo-cell {
  background: var(--dai-white);
  border-radius: 10px;
  height: 153px;
  align-items: center;
  justify-content: center;
}
.dai-logo-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.dai-logo-cell:hover img {
  filter: none;
  opacity: 1;
}
.dai-sponsors-more {
  margin-top: 2.5rem;

  a {
    color: white;
    background-color: #0df13e;
    font-family: "Roboto", Sans-serif;
    font-size: 21px;
    font-weight: 600;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0df13e;
    border-radius: 8px 8px 8px 8px;
    padding: 16px 14px;
  }
}

@media (max-width: 991px) {
}
@media (max-width: 575px) {
}
.dai-contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 575px) {
}
.dai-contact-form input,
.dai-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--dai-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--dai-white);
}
.dai-contact-form input:focus,
.dai-contact-form textarea:focus {
  outline: none;
  border-color: var(--dai-blue);
}
.dai-contact-form button {
  align-self: flex-start;
}
@media (max-width: 767px) {
}
.dai-testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.dai-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dai-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dai-testimonial-meta span {
  font-size: 0.8rem;
  display: block;
  line-height: 1.4;
}
@media (max-width: 767px) {
}

/* ── Footer CTA band ─────────────────────────────── */
.dai-footer-cta {
  background: var(--dai-blue-light);
  padding: 70px 0;
  text-align: center;
}
.dai-footer-cta-logo {
  height: 54px;
  width: auto;
  margin-bottom: 1.25rem;
}
.dai-footer-cta-title {
  font-family: halyard-display, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--dai-black);
}

/* ── Footer newsletter consent ───────────────────── */
.dai-footer-consent {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.dai-footer-consent a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

/* ════════════════════════════════════════════════════
   REFERENCE TYPE SYSTEM — values extracted verbatim from
   the original site's stylesheets (--theme-font-* tokens).
   This is the source of truth; do not eyeball these.
   ════════════════════════════════════════════════════ */

/* Body copy: DM Sans 400, line-height 1.68 (was eyeballed) */

/* All display headings: halyard-display WEIGHT 500 (reference uses 500, not 700–900) */
.dai-section-title,
.dai-hero-date,
.dai-upcoming-title,
.dai-footer-cta-title,
.dai-sponsor-cta-text h2,
.dai-sponsor-cta-text h3,
.dai-video-title,
.dai-stats-text h2 {
  font-family: var(--ref-font-head);
  font-weight: var(--ref-h-weight);
}
.dai-section-title {
  font-family: halyard-display, sans-serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: var(--ref-h2-lh);
} /* section titles are H2-scale */
/* hero date is H1-scale */
/* "Upcoming events" is H3 */

/* Nav menu: halyard-display 17px / 500 / MIXED-CASE (reference text-transform:none) */

/* ── EXACT pixel values (measured via getComputedStyle on live site) ── */
/* Base body: DM Sans 400, 18px, line-height 1.68 */
body {
  font-family: var(--ref-font-body);
  color: var(--dai-text);
  background: var(--dai-white);
  margin: 0;
  padding: 0;
  line-height: 1.68;
  font-size: 18px;
}

/* Lead / body paragraphs: 18px */
.dai-section-lead,
.dai-why-lead,
.dai-hero-body p,
.dai-event-time,
.dai-testimonial-quote {
  font-size: 18px;
  line-height: 1.68;
}

/* Eyebrows / labels: halyard 500, 14px, letter-spacing 1.8px, UPPERCASE, BLACK */
.dai-label,
.dai-hero-eyebrow {
  font-family: var(--ref-font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 18px;
  color: #000000;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Big section titles ("Why Attend DAI?", "2026 Speakers", etc.): 60px / lh 1.0 */
.dai-section-title,
.dai-why-head .dai-section-title,
.dai-footer-cta-title {
  line-height: 1;
  font-weight: 500;
}

/* Hero date ("September 29th – 30th, 2026"): 57px / lh 52px */
.dai-hero-date {
  font-family: halyard-display, sans-serif;
  font-size: 57px;
  font-weight: 500;
  line-height: 52px;
  color: var(--dai-dark);
  margin-bottom: 1.25rem;
}

/* Smaller section title ("Upcoming events"): 37px */
.dai-upcoming-title {
  font-family: halyard-display, sans-serif;
  font-size: 37px;
  font-weight: 500;
  margin-bottom: 1.75rem;
  line-height: 40px;
}

/* Responsive scale-down for large display type */
@media (max-width: 767px) {
  .dai-section-title,
  .dai-why-head .dai-section-title,
  .dai-footer-cta-title {
    font-size: 40px;
  }
  .dai-hero-date {
    font-size: 40px;
    line-height: 1.05;
  }
  .dai-upcoming-title {
    font-size: 28px;
  }
}

/* ════════════════════════════════════════════════════
   EXACT SPACING — measured on live reference @1440px
   (content width 1320, grid gaps 20, section pad ~100)
   ════════════════════════════════════════════════════ */

/* Boxed content width = 1320px (override Bootstrap's 1140) */
.container {
  max-width: 1300px !important;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Section vertical rhythm */
.dai-section {
  padding: 80px 0;
}

/* All grid gaps = 20px */
.dai-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.dai-speakers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px 20px;
  margin-top: 2.5rem;
}

/* Speaker photos: 1:1 (reference 238×238 in a 1320 row) */
.dai-speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .dai-section {
    padding: 70px 0;
  }
  .dai-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dai-speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .dai-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dai-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Logo marquee (sponsors + media partners scroll as one row) ── */
.dai-logo-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 2.5rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.dai-logo-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: dai-marquee 45s linear infinite;
}
.dai-logo-track-rev {
  animation-direction: reverse;
}
.dai-logo-marquee:hover .dai-logo-track {
  animation-play-state: paused;
}
.dai-logo-marquee .dai-logo-cell {
  flex: 0 0 auto;
  width: 250px;
  height: 150px;
}
@keyframes dai-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
}
@media (max-width: 575px) {
}
.dai-testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* ════════════════════════════════════════════════════
   NAVBAR — measured on live reference (height ~96, no border,
   nav links mixed-case 17px, REGISTER button UPPERCASE 14/700)
   ════════════════════════════════════════════════════ */
body.has-dai-navbar {
  padding-top: 124px;
}
.dai-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 0;
  padding: 10px 40px;
}
.dai-navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 96px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
}

.dai-navbar-logo img {
  max-height: 38px;
  width: auto;
  display: block;
  height: 38px;
}
.dai-navbar-cta a {
  display: inline-block;
  background: var(--dai-blue);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ref-font-head);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════════
   HERO + TICKER — measured on live reference
   ticker 70px/700 uppercase · slider 505×577 square · cols 505/1fr
   ════════════════════════════════════════════════════ */
.dai-ticker-phrase {
  display: inline-block;
  white-space: nowrap;
  font-family: halyard-display, sans-serif;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  line-height: 1;
}
.dai-ticker-star img {
  height: 60px;
  width: auto;
  display: block;
}

/* Footer link lists: no bullets */
.dai-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 0;
}
.dai-footer-links li::before,
.dai-footer-links li::marker {
  content: none;
}

.dai-hero-inner {
  display: grid;
  grid-template-columns: 505px 1fr;
  gap: 60px;
  align-items: center;
}
.dai-hero-slider {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 505 / 577;
  background: var(--dai-gray);
}
.dai-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (max-width: 991px) {
  .dai-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dai-ticker-phrase {
    font-size: 46px;
  }
}

/* ════════════════════════════════════════════════════
   SPONSOR CTA + CONTACT — blue band, two columns
   (matches reference: bg var(--dai-cta-blue), white text, green button)
   ════════════════════════════════════════════════════ */
.dai-sponsor-cta {
  background: var(--dai-cta-blue);
  padding: 100px 0;
  color: #ffffff;
}
.dai-sponsor-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 991px) {
  .dai-sponsor-cta-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Eyebrows + headings on blue → white */
.dai-sponsor-cta .dai-label {
  color: #ffffff;
  display: block;
  text-transform: none;
  font-size: 18px;
}
.dai-sponsor-cta .dai-section-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Body + contact note */
.dai-sponsor-cta-body {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.68;
  margin-bottom: 1.75rem;
}
.dai-sponsor-cta .dai-contact-note {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.68;
  margin-bottom: 2.5rem;
}
.dai-sponsor-cta .dai-contact-note a {
  color: #ffffff;
  text-decoration: none;
}

/* Two event photos side by side */
.dai-sponsor-cta-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dai-sponsor-cta-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Contact form — bordered box, white fields, green submit */
.dai-sponsor-cta-right .dai-section-title {
  margin-bottom: 1.75rem;
}
.dai-sponsor-cta .dai-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 40px;
}
.dai-sponsor-cta .dai-contact-form input,
.dai-sponsor-cta .dai-contact-form textarea {
  width: 100%;
  margin: 0; /* kill any inherited field margin so gap controls spacing */
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 20px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.3;
  color: #0d0d0d;
  text-align: left; /* placeholders + text left-aligned */
}
.dai-sponsor-cta .dai-contact-form input::placeholder,
.dai-sponsor-cta .dai-contact-form textarea::placeholder {
  color: #9aa0a6;
  text-align: left;
}
.dai-sponsor-cta .dai-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.dai-send-inquiry {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dai-green);
  color: #ffffff; /* white label, vertically centered */
  border: 0;
  border-radius: 8px;
  padding: 18px 34px;
  font-family: var(--ref-font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s;
}
.dai-send-inquiry:hover {
  filter: brightness(1.05);
}

/* ── Media Partners: left-aligned header, dark lead, green button ── */
.dai-media-head {
  margin-bottom: 1rem;
}
.dai-media-partners .dai-section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}
.dai-media-partners .dai-section-lead {
  max-width: 1000px;
  margin: 0;
  text-align: left;
  color: #0d0d0d;
}
.dai-media-partners .dai-sponsors-more {
  margin-top: 2.5rem;
}

/* Green filled button (matches reference CTA buttons) */
.dai-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dai-green);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 16px 30px;
  font-weight: 700;
  line-height: 1;
  transition: filter 0.2s;
}
.dai-btn-green:hover {
  filter: brightness(1.05);
  color: #ffffff;
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS SLIDER — 2 mint cards per view, auto-advance
   ════════════════════════════════════════════════════ */
.dai-tslide {
  position: relative;
  margin-top: 3.5rem;
}
.dai-tslide-viewport {
  overflow: hidden;
}
.dai-tslide-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card */
.dai-tslide .dai-testimonial-card {
  flex: 0 0 calc(50% - 12px);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: var(--dai-mint);
  border: 0;
  border-radius: 14px;
  padding: 36px 40px 56px;
  text-align: left;
}
@media (max-width: 767px) {
  .dai-tslide .dai-testimonial-card {
    flex: 0 0 100%;
  }
}

/* Author row */
.dai-tslide .dai-testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
}
.dai-tslide .dai-testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 64px;
}
.dai-tslide .dai-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dai-tslide .dai-testimonial-meta strong {
  display: block;
  font-family: var(--ref-font-head);
  font-size: 20px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.2;
}
.dai-tslide .dai-testimonial-meta span {
  display: block;
  font-size: 15px;
  color: #4a5550;
  margin-top: 2px;
}

/* Divider */
.dai-tslide .dai-testimonial-card hr {
  border: 0;
  border-top: 1px solid rgba(13, 13, 13, 0.12);
  margin: 0 0 20px;
}

/* Quote */
.dai-tslide .dai-testimonial-quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Big quote mark, bottom-right */
.dai-tslide .dai-testimonial-mark {
  position: absolute;
  right: 28px;
  bottom: -40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 130px;
  line-height: 1;
  color: rgba(13, 70, 50, 0.18);
  pointer-events: none;
}

/* Arrows */
.dai-tslide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #9aa0a6;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s;
}
.dai-tslide-arrow:hover {
  color: #0d0d0d;
}
.dai-tslide-prev {
  left: -46px;
}
.dai-tslide-next {
  right: -46px;
}
@media (max-width: 1430px) {
  .dai-tslide-prev {
    left: -8px;
  }
  .dai-tslide-next {
    right: -8px;
  }
}

/* Dots */
.dai-tslide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dai-tslide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d2d5da;
  cursor: pointer;
  transition: background 0.2s;
}
.dai-tslide-dot.active {
  background: #6b7280;
}

/* ════════════════════════════════════════════════════
   MOMENTS SLIDER — 3 photos per view, auto-advance
   ════════════════════════════════════════════════════ */
.dai-mslide {
  position: relative;
  margin-top: 3.5rem;
}
.dai-mslide-viewport {
  overflow: hidden;
}
.dai-mslide-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.dai-mslide-cell {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .dai-mslide-cell {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 700px) {
  .dai-mslide-cell {
    flex: 0 0 100%;
  }
}

.dai-mslide-cell img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .dai-mslide-cell img {
    height: 460px;
  }
}

/* Arrows */
.dai-mslide-arrow {
  position: absolute;
  top: calc(50% + 14px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s;
}
.dai-mslide-arrow:hover {
  opacity: 0.8;
}
.dai-mslide-prev {
  left: 14px;
}
.dai-mslide-next {
  right: 14px;
}

/* Dots */
.dai-mslide-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.dai-mslide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d2d5da;
  cursor: pointer;
  transition: background 0.2s;
}
.dai-mslide-dot.active {
  background: var(--dai-green);
}

/* ════════════════════════════════════════════════════
   FOOTER — light, logo + headline top row, 4 columns
   (overrides the earlier dark footer styles)
   ════════════════════════════════════════════════════ */
.dai-footer {
  background: var(--dai-lavender);
  color: #0d0d0d;
  padding: 120px 0 40px;
}

/* Top: logo + headline */
.dai-footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 90px;
}
.dai-footer-logo img {
  height: 56px;
  width: auto;
  filter: none;
  display: block;
  opacity: 1;
}
.dai-footer-headline {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 54px;
  line-height: 1.05;
  color: #0d0d0d;
  margin: 0;
  white-space: nowrap;
}

/* Columns */
.dai-footer-cols {
  display: grid;
  grid-template-columns: 2.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}
.dai-footer .dai-footer-heading {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 24px;
  color: #0d0d0d;
  text-transform: none; /* title case, not uppercase */
  letter-spacing: 0;
}
.dai-footer .dai-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dai-footer .dai-footer-links li {
  margin-bottom: 18px;
}
.dai-footer .dai-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9aa0a6;
  font-size: 17px;
  transition: color 0.2s;
}
.dai-footer .dai-footer-links a:hover {
  color: #0d0d0d;
}
.dai-soc-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: #9aa0a6;
}

/* Newsletter form (underlined input + arrow) */
.dai-footer-news {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #d2d3e3;
  padding-bottom: 18px;
  max-width: 92%;
}
.dai-news-mail {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: #6b7280;
}
.dai-news-mail svg {
  width: 26px;
  height: 26px;
  display: block;
}
.dai-footer-news input {
  text-align: left;
  line-height: normal;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  color: #0d0d0d;
  outline: none;
}
.dai-footer-news input::placeholder {
  color: #9aa0a6;
}
.dai-news-submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #0d0d0d;
  cursor: pointer;
  padding: 0;
}
.dai-news-submit svg {
  width: 30px;
  height: 20px;
  display: block;
}
.dai-footer .dai-footer-consent {
  display: block;
  margin-top: 22px;
  color: #9aa0a6;
  font-size: 15px;
  line-height: 1.6;
}
.dai-footer .dai-footer-consent a {
  color: #6b7280;
  text-decoration: underline;
}

/* Bottom copyright */
.dai-footer .dai-footer-bottom {
  display: block;
  border: 0;
  margin-top: 30px;
  color: black;
  font-size: 20px;
}

@media (max-width: 991px) {
  .dai-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }
  .dai-footer-headline {
    font-size: 34px;
    white-space: normal;
  }
  .dai-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 575px) {
  .dai-footer-headline {
    font-size: 28px;
  }
  .dai-footer-news {
    max-width: 100%;
  }
  .dai-footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ── Split section header: title left, paragraph right (Who Attends, Sponsors, …) ── */
.dai-attendees-head,
.dai-split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
  margin-bottom: 4rem;
}
.dai-attendees-head .dai-section-title,
.dai-split-head .dai-section-title {
  margin-bottom: 0;
}
.dai-attendees-head .dai-section-lead,
.dai-split-head .dai-section-lead {
  max-width: none;
  margin: 0;
  text-align: left;
  color: #0d0d0d;
}
@media (max-width: 991px) {
  .dai-attendees-head,
  .dai-split-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 2rem;
  }
}

/* ════════════════════════════════════════════════════
   NAVBAR — animated underline (active = shown, hover = wipe L→R)
   ════════════════════════════════════════════════════ */
.dai-navbar-links li a {
  display: flex;
  align-items: center;
  height: 96px;
  padding: 0px 15px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ref-font-head);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0;
}
/* keep nav text black (no gray on hover/active) */
.dai-navbar-links li a:hover,
.dai-navbar-links > li.active > a {
  color: #000000;
}
.dai-navbar-links li a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: calc(50% + 14px);
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}
.dai-navbar-links li a:hover::after,
.dai-navbar-links li a:focus-visible::after,
.dai-navbar-links > li.active > a::after {
  transform: scaleX(1);
}

/* The final top-level item from "My Custom Menu" is the navbar CTA. */
.dai-custom-navbar-links > li:last-child {
  margin-left: 12px !important;
}
.dai-custom-navbar-links > li:last-child > a {
  display: inline-flex;
  height: auto;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--dai-blue);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.dai-custom-navbar-links > li:last-child > a:hover,
.dai-custom-navbar-links > li:last-child.active > a {
  background: var(--dai-blue-dark);
  color: #ffffff !important;
}
.dai-custom-navbar-links > li:last-child > a::after {
  display: none;
}

@media (max-width: 991px) {
  .dai-navbar-center.open .dai-custom-navbar-links > li:last-child {
    margin: 8px 0 0 !important;
  }
  .dai-navbar-center.open .dai-custom-navbar-links > li:last-child > a {
    padding: 12px 22px;
  }
}

/* ════════════════════════════════════════════════════
   MOBILE POLISH (<= 767px)
   ════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Ticker: tighten gap + size so phrases aren't far apart on phones */
  .dai-ticker {
    --dai-ticker-gap: 26px;
    padding: 0;
  }
  .dai-ticker-phrase {
    font-size: 34px;
  }
  .dai-ticker-star img {
    height: 1.4rem;
  }

  /* Carousel arrows overlap full-width cards on phones — rely on dots + auto-advance */
  .dai-tslide-arrow {
    display: none;
  }

  /* Smaller quote mark so it doesn't crowd the card */
  .dai-tslide .dai-testimonial-mark {
    font-size: 90px;
    right: 18px;
  }

  /* Sponsor CTA: stack the two photos, ease the form padding */
  .dai-sponsor-cta-photos {
    grid-template-columns: 1fr;
  }
  .dai-sponsor-cta .dai-contact-form {
    padding: 24px;
  }

  /* Big display titles a touch smaller on phones */
  .dai-section-title,
  .dai-why-head .dai-section-title {
    font-size: 34px;
  }
}

/* ════════════════════════════════════════════════════
   SUBPAGES (page-*.php templates)
   ════════════════════════════════════════════════════ */
.dai-subpage {
  padding-top: 96px; /* clear the fixed navbar */
  background: var(--dai-white);

  .subtitle {
    font-family: var(--ref-font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 28px;
    color: #000000;
    margin-bottom: 14px;
  }
}

/* Advisory board grid (About Us) */
.dai-advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dai-advisor-card {
  background: var(--dai-gray);
  border: 1px solid var(--dai-border);
  border-radius: 14px;
  padding: 28px;
}
.dai-advisor-name {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 22px;
  color: var(--dai-black);
  margin: 0 0 6px;
}
.dai-advisor-role {
  font-size: 14px;
  color: var(--dai-blue);
  margin: 0 0 14px;
  line-height: 1.4;
}
.dai-advisor-org {
  display: block;
  font-weight: 700;
  color: var(--dai-black);
}
.dai-advisor-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5550;
  margin: 0;
}
@media (max-width: 991px) {
  .dai-advisors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .dai-advisors-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal / long-form text pages */
.dai-legal {
  max-width: 820px;
}
.dai-legal .dai-section-title {
  margin-bottom: 1.5rem;
}
.dai-legal h3 {
  font-family: var(--ref-font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--dai-black);
  margin: 2.25rem 0 0.75rem;
}
.dai-legal p {
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
  margin: 0 0 1rem;
}
.dai-legal ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.dai-legal li {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 0.5rem;
}

/* Sponsor tiers (Sponsors & Partners page) */
.dai-tier-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dai-blue);
  margin: 3rem 0 1.25rem;
}
.dai-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .dai-tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .dai-tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Company list (2025 Company List page) */
.dai-complist-block {
  margin-bottom: 3rem;
}
.dai-complist-cat {
  font-family: var(--ref-font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--dai-black);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--dai-border);
}
.dai-company-cols {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 4;
  column-gap: 32px;
}
.dai-company-cols li {
  break-inside: avoid;
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .dai-company-cols {
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .dai-company-cols {
    column-count: 1;
  }
}

/* Ticket pricing cards (Tickets page) */
.dai-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1.5rem;
}
.dai-ticket-card {
  background: var(--dai-white);
  border: 1px solid var(--dai-border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.dai-ticket-card.is-featured {
  border-color: var(--dai-blue);
  box-shadow: 0 8px 30px rgba(67, 97, 238, 0.12);
}
.dai-ticket-name {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 24px;
  color: var(--dai-black);
  margin: 0 0 6px;
}
.dai-ticket-window {
  font-size: 14px;
  font-weight: 600;
  color: var(--dai-blue);
  margin: 0 0 18px;
}
.dai-ticket-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.dai-ticket-perks li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 10px;
}
.dai-ticket-perks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--dai-green);
  font-weight: 700;
}
.dai-ticket-card .dai-btn-green {
  align-self: flex-start;
}
.dai-ticket-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 14px;
  color: var(--dai-text-light);
}
@media (max-width: 767px) {
  .dai-ticket-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   TICKETS PAGE — dark hero + Individual/Group toggle + phase cards
   ════════════════════════════════════════════════════ */
.dai-tickets {
  background: var(--dai-white);
}

/* Hero */
.dai-tickets-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      900px 500px at 80% 40%,
      rgba(43, 80, 220, 0.45),
      transparent 60%
    ),
    linear-gradient(135deg, #0a0e1f 0%, #11152e 60%, #0c1024 100%);
  padding: 0;

  .container {
    padding: 180px 0 80px;
  }
}
.dai-tk-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.dai-tk-open {
  border: 1px solid rgba(28, 230, 126, 0.5);
  background: rgba(28, 230, 126, 0.08);
  color: var(--dai-green);
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dai-tk-summit {
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.dai-tickets-title {
  font-family: var(--ref-font-head);
  font-weight: 800;
  font-size: 72px;
  line-height: 1.02;
  margin: 0 0 24px;
  color: #ffffff;
  max-width: 900px;
}
.dai-tickets-title .grad {
  background: linear-gradient(90deg, #3fe89e, #29b8cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dai-tickets-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 0 36px;
}
.dai-tickets-sub strong {
  color: #ffffff;
  font-weight: 700;
}
.dai-tickets-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.dai-tk-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}
.dai-tk-fact svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
  flex: 0 0 auto;
}
.dai-tk-fact strong {
  color: #ffffff;
  font-weight: 700;
}

/* Pricing */
.dai-tickets-pricing {
  background: #f6f7fb;
  padding: 70px 0 90px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #3fe89e, #29b8cf) 1;
}
.dai-tk-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}
.dai-tk-toggle {
  display: inline-flex;
  background: #e9ebf1;
  border-radius: 999px;
  padding: 5px;
}
.dai-tk-tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: none;
}
.dai-tk-tab.is-active {
  background: #ffffff;
  color: #0d0d0d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dai-tk-toggle-note {
  color: var(--dai-text-light);
  font-size: 16px;
}

.dai-tk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.dai-tk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--dai-border);
  border-radius: 18px;
  padding: 32px 30px;
}
.dai-tk-card.is-featured {
  border: 2px solid var(--dai-blue);
}
.dai-tk-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}
.badge-best {
  background: var(--dai-blue);
}
.badge-standard {
  background: #0d1117;
}
.badge-final {
  background: #7c3aed;
}
.dai-tk-phase {
  margin: 16px 0 6px;
  color: var(--dai-blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dai-tk-name {
  font-family: var(--ref-font-head);
  font-weight: 800;
  font-size: 26px;
  color: #0d0d0d;
}
.dai-tk-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  min-height: 56px;
}
.dai-tk-price .cur {
  font-size: 26px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 6px;
}
.dai-tk-price .amt {
  font-family: var(--ref-font-head);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: #0d0d0d;
}
.dai-tk-pricepill {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.pill-save {
  background: rgba(28, 230, 126, 0.16);
  color: #0a8f4f;
}
.pill-neutral {
  background: #eceef3;
  color: #6b7280;
}
.pill-warn {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}
.dai-tk-window {
  font-size: 14px;
  color: var(--dai-text-light);
  margin: 0 0 22px;
}
.dai-tk-window strong {
  color: #0d0d0d;
}
.dai-tk-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.dai-tk-perks {
  list-style: none !important;
}
.dai-tk-perks li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 14px;
  color: #0d0d0d;
  list-style: none !important;
}
.dai-tk-perks li::marker {
  content: "" !important;
}
.dai-tk-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: url("../images/check-ul.svg") no-repeat center / 22px 22px;
}
.dai-tk-perks li.off {
  color: #9aa0a6;
}
.dai-tk-perks li.off::before {
  content: "\2013";
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9aa0a6;
}
.dai-tk-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
}
.dai-tk-btn.btn-primary {
  background: var(--dai-blue);
  color: #ffffff;
}
.dai-tk-btn.btn-primary:hover {
  background: var(--dai-blue-dark);
}
.dai-tk-btn.btn-outline {
  background: #ffffff;
  color: #0d0d0d;
  border: 1.5px solid var(--dai-border);
}
.dai-tk-btn.btn-outline:hover {
  border-color: var(--dai-blue);
  color: var(--dai-blue);
}

@media (max-width: 991px) {
  .dai-tickets-title {
    font-size: 48px;
  }
  .dai-tk-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .dai-tickets-title {
    font-size: 38px;
  }
  .dai-tickets-hero {
    padding: 120px 0 60px;
  }
}

/* Attendee stepper (group cards) */
.dai-tk-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f6fb;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.dai-tk-step-label {
  font-weight: 700;
  color: #0d0d0d;
  font-size: 15px;
  margin-right: auto;
}
.dai-tk-step {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--dai-border);
  background: #ffffff;
  border-radius: 8px;
  color: var(--dai-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.dai-tk-step:hover {
  border-color: var(--dai-blue);
}
.dai-tk-step-val {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #0d0d0d;
  border-bottom: 1px solid var(--dai-border);
  padding-bottom: 2px;
}

/* ── Sponsors & Partners page ──────────────────────── */
.dai-sponsor-tier {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 42px;
  color: var(--dai-black);
  text-align: left;
  margin: 3rem 0 1rem;
}
.dai-tier-grid-left {
  justify-items: stretch;
}
.dai-media-intro {
  max-width: 760px;
  margin: 1rem 0 0;
  text-align: left;
  color: #0d0d0d;
}
.dai-sponsor-cta-btn {
  color: white;
  background-color: #0df13e;
  font-size: 21px;
  font-weight: 600;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #0df13e;
  border-radius: 8px 8px 8px 8px;
  padding: 12px 14px;
}
.dai-sponsor-cta-btn:hover {
  filter: brightness(1.05);
  color: #ffffff;
}
@media (max-width: 575px) {
  .dai-sponsor-cta-btn {
    font-size: 18px;
    padding: 18px 28px;
  }
}

/* ════════════════════════════════════════════════════
   ABOUT US page — mission + quote, advisory board cards
   ════════════════════════════════════════════════════ */
.dai-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dai-mission-text .dai-section-title {
  font-size: 48px;
  margin: 0.5rem 0 1.5rem;
}
.dai-mission-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 1.25rem;
}

.dai-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 90px;
  line-height: 0.6;
  color: var(--dai-blue);
}
.dai-quote-text {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  color: #0d0d0d;
  margin: 12px 0 24px;
}
.dai-quote-text strong {
  font-weight: 800;
}
.dai-quote-by {
  font-weight: 700;
  font-size: 16px;
  color: #0d0d0d;
  margin: 0;
}
.dai-quote-img {
  max-width: 100%;
  height: 500px;
  display: block;
}

/* Advisor cards — 4 up, centered, green rounded photos */
.dai-advisors-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.dai-advisor-card {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
}
.dai-advisor-photo {
  width: 100%;
  border-radius: 24px 64px 24px 24px;
  overflow: hidden;
}
.dai-advisor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dai-advisor-name {
  font-family: var(--ref-font-head);
  line-height: normal;
  font-weight: 800;
  font-size: 22px;
  color: #0d0d0d;
  margin: 0 0 10px;
}
.dai-advisor-role {
  font-size: 15px;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.45;
  margin: 0 0 16px;
}
.dai-advisor-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6168;
  margin: 0;
}

@media (max-width: 991px) {
  .dai-mission {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dai-mission-text .dai-section-title {
    font-size: 40px;
  }
  .dai-advisors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .dai-advisors-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   AI START-UP COMPETITION page
   ════════════════════════════════════════════════════ */
.dai-startup-banner {
  width: 100%;
  height: auto;
  display: block;
}

.dai-startup-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

  h2 {
    font-size: 45px;
  }

  .dai-section-title {
    margin-bottom: 30px;
  }
}
.dai-startup-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.dai-startup-deadline {
  font-size: 16px;
  color: #0d0d0d;
}
.dai-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  padding: 16px 32px;
}
.dai-startup-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.dai-startup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dai-startup-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}
.dai-startup-photo-cap {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 22px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.dai-startup-photo-cap span {
  display: block;
  font-size: 15px;
  opacity: 0.85;
}
.dai-startup-photo-cap strong {
  font-family: var(--ref-font-head);
  font-weight: 700;
  font-size: 28px;
}
.dai-startup-center {
  text-align: center;
  margin-top: 2.5rem;
}

.dai-elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 2.5rem;
}
.dai-elig-card {
  background: #e9ebf3;
  border-radius: 18px;
  padding: 36px;
}
.dai-elig-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}
.dai-elig-num {
  font-family: var(--ref-font-head);
  font-weight: 800;
  font-size: 30px;
  color: #9aa0b5;
}
.dai-elig-head h3 {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 32px;
  color: #0d0d0d;
  margin: 0;
}
.dai-elig-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin: 0;
}
.dai-elig-note {
  font-style: italic;
  text-align: center;
  max-width: 1000px;
  margin: 2.5rem auto 0;
  color: #333;
  line-height: 1.7;
}

.dai-startup-winner {
  background: #3b4ad0;
  color: #fff;
  padding: 80px 0;
}
.dai-startup-winner .dai-section-title {
  color: #fff;
}
.dai-startup-winner p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 1.25rem 0 0;
  max-width: 1100px;
}
.dai-startup-winner strong {
  color: #fff;
}

.dai-pkg {
  margin-top: 2.5rem;
  border: 1px solid var(--dai-border);
  border-radius: 16px;
  overflow: hidden;
}
.dai-pkg-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--dai-border);
}
.dai-pkg-row:first-child {
  border-top: 0;
}
.dai-pkg-feature {
  padding: 22px 24px;
  font-size: 16px;
  color: #0d0d0d;
}
.dai-pkg-col {
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.dai-pkg-pop {
  background: #f0f0fb;
}
.dai-pkg-name {
  font-family: var(--ref-font-head);
  font-weight: 800;
  font-size: 22px;
  color: #0d0d0d;
}
.dai-pkg-name.accent {
  color: #3b4ad0;
}
.dai-pkg-price {
  font-family: var(--ref-font-head);
  font-size: 28px;
  line-height: normal;
  color: #0d0d0d;
}
.dai-pkg-pill {
  font-size: 12px;
  font-weight: 600;
  color: #0a8f4f;
  background: rgba(28, 230, 126, 0.16);
  border-radius: 999px;
  padding: 3px 8px;
  vertical-align: middle;
}
.dai-pkg-sub {
  font-size: 13px;
  color: var(--dai-text-light);
  margin-top: 4px;
}
.dai-pkg-badge {
  transform: translateX(-50%);
  background: #3b4ad0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.dai-pkg-yes,
.dai-pkg-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.dai-pkg-yes {
  background: #16a34a;
}
.dai-pkg-yes::before {
  content: "\2713";
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.dai-pkg-no {
  background: #e5e7eb;
}
.dai-pkg-no::before {
  content: "\2013";
  color: #9aa0a6;
  font-weight: 700;
}

.dai-startup-tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.dai-timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.dai-timeline li {
  position: relative;
  padding: 0 0 2.5rem 36px;
  list-style: none !important;
}
.dai-timeline li::marker {
  content: "" !important;
}
/* Connecting line: starts at the dot centre, runs down to the next dot */
.dai-timeline li::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 15px;
  height: 100%;
  width: 2px;
  background: #d2d5e2;
  z-index: 0;
}
.dai-timeline li:last-child {
  padding-bottom: 0;
}
.dai-timeline li:last-child::after {
  display: none;
}
.dai-timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d2d5e2;
  border: 3px solid #fff;
  z-index: 1;
}
.dai-timeline li.is-active::before {
  background: #61ce70;
  box-shadow: 0 0 0 4px rgba(28, 230, 126, 0.25);
}
.dai-tl-date {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #9aa0a6;
}
.dai-timeline li.is-active .dai-tl-date {
  color: #4054b2;
}
.dai-tl-title {
  font-family: var(--ref-font-head);
  font-weight: 500;
  font-size: 22px;
  color: #0d0d0d;
  margin: 6px 0 8px;
}
.dai-tl-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #5a6168;
  margin: 0;
}
.dai-loc {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 2rem;
}
.dai-loc-pin {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
}
.dai-loc-name {
  font-family: var(--ref-font-head);
  font-weight: 700;
  font-size: 22px;
  color: #0d0d0d;
  margin: 0 0 6px;
}
.dai-loc-addr {
  font-size: 16px;
  color: #5a6168;
  margin: 0;
  line-height: 1.5;
}
.dai-loc-map {
  margin-top: 1.75rem;
  border-radius: 16px;
  overflow: hidden;
}
.dai-loc-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .dai-startup-intro,
  .dai-elig-grid,
  .dai-startup-tl-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dai-pkg-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
  .dai-pkg-feature,
  .dai-pkg-col {
    padding: 14px 8px;
    font-size: 14px;
  }
  .dai-pkg-price {
    font-size: 20px;
  }
}

/* ── Navbar dropdown (Past Events) ── */
.dai-has-sub {
  position: relative;
}
.dai-navbar-links .dai-submenu {
  position: absolute;
  /* Sit close to the nav underline instead of below the full 96px link box. */
  top: calc(50% + 24px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #1c2238;
  border-radius: 10px;
  padding: 6px;
  display: none;
  z-index: 200;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  list-style: none;
  margin: 0;
}
.dai-navbar-links .dai-has-sub:hover .dai-submenu {
  display: block;
}
.dai-navbar-links .dai-submenu li {
  padding: 0;
  margin: 0;
  display: block;
}
.dai-navbar-links .dai-submenu a {
  display: block;
  height: auto !important;
  min-height: 0 !important;
  padding: 11px 18px;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  border-radius: 6px;
}
.dai-navbar-links .dai-submenu li + li a {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
}
.dai-navbar-links .dai-submenu a:hover {
  color: var(--dai-green) !important;
  background: rgba(255, 255, 255, 0.06);
}

/* ── Destination AI 2024 recap page ── */
.dai-event-when {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #0d0d0d;
  margin-top: 14px;
}
.dai-event-hero {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.dai-event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.dai-event-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.dai-event-intro {
  margin: 38px auto 0;
  font-size: 20px;
  line-height: 1.7;
  color: #0d0d0d;
  max-width: 100%;
}
.dai-event-speakers .dai-speaker-photo {
  background: #5b6ef5;
}
.dai-event-2col {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: start;
}
.dai-schedule {
  margin-top: 1.5rem;
}
.dai-sch-item {
  padding: 15px 0;
  border-bottom: 1px solid #e9e9ee;
  font-size: 17px;
  line-height: 1.6;
  color: #0d0d0d;
}
.dai-sch-time {
  font-weight: 700;
}
.dai-sch-item em {
  color: #5a5a66;
  font-style: normal;
  display: inline-block;
  margin-top: 3px;
}
.dai-event-meta {
  font-size: 18px;
  line-height: 1.6;
  color: #0d0d0d;
  margin-top: 1rem;
}
.dai-event-next {
  color: var(--dai-blue);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .dai-navbar-links .dai-submenu {
    position: static;
    transform: none;
    display: block;
    background: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .dai-submenu a {
    color: inherit;
    text-align: left;
    padding: 8px 0 8px 18px;
    text-transform: none;
  }
  .dai-submenu li + li a {
    border-top: 0;
  }
}
@media (max-width: 768px) {
  .dai-event-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dai-event-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .dai-event-intro {
    font-size: 17px;
  }
}

/* ── Agenda 2026 ── */
.dai-ag-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 14px;
  color: #4a4a55;
}
.dai-ag-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dai-ag-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  color: #3a3a44;
  background: #eef0f4;
  border: 1px solid #e3e5ec;
  flex: 0 0 auto;
}

.dai-ag-toggle {
  display: inline-flex;
  background: #f1f1f6;
  border-radius: 999px;
  padding: 5px;
  margin: 0 auto 2rem;
  gap: 4px;
}
.dai-ag-toggle {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.dai-ag-tab {
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: #4a4a55;
  cursor: pointer;
  transition: all 0.2s;
}
.dai-ag-tab.is-active {
  background: #fff;
  color: var(--dai-blue, #4361ee);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Two-column layout: filter sidebar + agenda table */
.dai-ag-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.dai-ag-filters {
  position: sticky;
  top: 100px;
}
.dai-ag-fgroup {
  margin-bottom: 1.75rem;
}
.dai-ag-fhead {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a95;
  font-weight: 700;
  margin: 0 0 0.9rem;
}
.dai-ag-fitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: #2a2a33;
  cursor: pointer;
}
.dai-ag-fitem input {
  width: 16px;
  height: 16px;
  accent-color: var(--dai-blue, #4361ee);
  cursor: pointer;
  flex: 0 0 auto;
}

.dai-ag-day {
  margin-bottom: 3rem;
}
.dai-ag-day-date {
  font-family: var(--ref-font-head, halyard-display);
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  color: #0d0d0d;
  margin: 0 0 1.25rem;
}
.dai-ag-thead {
  display: grid;
  grid-template-columns: 140px 64px 1fr 200px;
  gap: 18px;
  padding: 0 6px 10px;
  border-bottom: 2px solid var(--dai-blue, #4361ee);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4a4a55;
}
.dai-ag-list {
}
.dai-ag-row {
  display: grid;
  grid-template-columns: 140px 64px 1fr 200px;
  gap: 18px;
  align-items: start;
  padding: 18px 6px;
  border-bottom: 1px solid #ececf0;
}
.dai-ag-time {
  font-weight: 700;
  font-size: 15px;
  color: #0d0d0d;
  white-space: nowrap;
}
.dai-ag-codecell {
  display: flex;
  justify-content: flex-start;
}
.dai-ag-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dai-ag-title {
  font-weight: 700;
  font-size: 16px;
  color: #0d0d0d;
  line-height: 1.4;
}
.dai-ag-speakers {
  font-style: italic;
  font-size: 14px;
  color: #5a5a66;
}
.dai-ag-room {
  font-size: 13px;
  color: #8a8a95;
  text-align: left;
}
.dai-ag-empty {
  color: #8a8a95;
  font-style: italic;
  padding: 18px 6px;
}

@media (max-width: 980px) {
  .dai-ag-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dai-ag-filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0 48px;
  }
}
@media (max-width: 720px) {
  .dai-ag-thead {
    display: none;
  }
  .dai-ag-row {
    grid-template-columns: 54px 1fr;
    grid-template-areas:
      "code time"
      "code main"
      "code room";
    gap: 2px 12px;
  }
  .dai-ag-codecell {
    grid-area: code;
  }
  .dai-ag-time {
    grid-area: time;
  }
  .dai-ag-main {
    grid-area: main;
    margin-top: 2px;
  }
  .dai-ag-room {
    grid-area: room;
    margin-top: 4px;
  }
}

/* ── Contact Form 7 form styled to match the Sponsor CTA contact form ── */
.dai-sponsor-cta-right .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 30px;
}
.dai-sponsor-cta-right .wpcf7-form > .hidden-fields-container {
  display: none;
}
.dai-sponsor-cta-right .wpcf7-form label {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.dai-sponsor-cta-right .wpcf7-form label .wpcf7-form-control-wrap {
  margin-top: 6px;
}
.dai-sponsor-cta-right .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.dai-sponsor-cta-right .wpcf7-form input[type="text"],
.dai-sponsor-cta-right .wpcf7-form input[type="email"],
.dai-sponsor-cta-right .wpcf7-form input[type="tel"],
.dai-sponsor-cta-right .wpcf7-form input[type="url"],
.dai-sponsor-cta-right .wpcf7-form textarea {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  color: #0d0d0d;
  text-align: left;
}
.dai-sponsor-cta-right .wpcf7-form input::placeholder,
.dai-sponsor-cta-right .wpcf7-form textarea::placeholder {
  color: #9aa0a6;
}
.dai-sponsor-cta-right .wpcf7-form textarea {
  display: block;
  resize: vertical;
  min-height: 110px;
}
.dai-sponsor-cta-right .wpcf7-form input.wpcf7-not-valid,
.dai-sponsor-cta-right .wpcf7-form textarea.wpcf7-not-valid {
  border: 2px solid #ffb8b8;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(255, 184, 184, 0.18);
}
.dai-sponsor-cta-right .wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(20, 20, 55, 0.22);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.dai-sponsor-cta-right .wpcf7-not-valid-tip::before {
  content: "!";
  display: inline-flex;
  flex: 0 0 17px;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ffb8b8;
  color: #3b2255;
  font-size: 11px;
  font-weight: 800;
}
.dai-sponsor-cta-right .wpcf7-form input.wpcf7-submit {
  align-self: flex-start;
  width: auto;
  background: var(--dai-green);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 13px 26px;
  font-family: var(--ref-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s;
}
.dai-sponsor-cta-right .wpcf7-form input.wpcf7-submit:hover {
  filter: brightness(1.05);
}
.dai-sponsor-cta-right .wpcf7-spinner {
  margin: 0 0 0 8px;
}
.dai-sponsor-cta-right .wpcf7-response-output {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  background: rgba(20, 20, 55, 0.22);
  border: 0 !important;
  border-left: 4px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 6px;
  margin: 4px 0 0 !important;
  padding: 12px 14px !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}
.dai-sponsor-cta-right .wpcf7-response-output::before {
  content: "i";
  display: inline-flex;
  flex: 0 0 19px;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
}
.dai-sponsor-cta-right .wpcf7-form.invalid .wpcf7-response-output,
.dai-sponsor-cta-right .wpcf7-form.unaccepted .wpcf7-response-output,
.dai-sponsor-cta-right .wpcf7-form.spam .wpcf7-response-output,
.dai-sponsor-cta-right .wpcf7-form.failed .wpcf7-response-output {
  border-left-color: #ffb8b8 !important;
}
.dai-sponsor-cta-right .wpcf7-form.invalid .wpcf7-response-output::before,
.dai-sponsor-cta-right .wpcf7-form.unaccepted .wpcf7-response-output::before,
.dai-sponsor-cta-right .wpcf7-form.spam .wpcf7-response-output::before,
.dai-sponsor-cta-right .wpcf7-form.failed .wpcf7-response-output::before {
  content: "!";
  background: #ffb8b8;
  color: #3b2255;
}
.dai-sponsor-cta-right .wpcf7-form.sent .wpcf7-response-output {
  border-left-color: var(--dai-green) !important;
}
.dai-sponsor-cta-right .wpcf7-form.sent .wpcf7-response-output::before {
  content: "\2713";
  background: var(--dai-green);
  color: #ffffff;
}

/* ── CF7 newsletter (footer) styled to match the static subscribe design ── */
.dai-footer-news-cf7 .wpcf7-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 0;
  max-width: 92%;
}
.dai-footer-news-cf7 .hidden-fields-container {
  display: none;
}
.dai-footer-news-cf7 .wpcf7-form-control-wrap {
  min-width: 0;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
}
.dai-footer-news-cf7 .wpcf7-form-control-wrap::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%236b7280'%20stroke-width='1.6'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Crect%20x='2.5'%20y='5'%20width='19'%20height='14'%20rx='1.5'/%3E%3Cpath%20d='m3%206%209%206.5L21%206'/%3E%3C/svg%3E")
    no-repeat center / contain;
}
.dai-footer-news-cf7 input[type="email"],
.dai-footer-news-cf7 input.wpcf7-email {
  min-width: 0;
  width: auto;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  color: #0d0d0d;
  outline: none;
  box-shadow: none;
}
.dai-footer-news-cf7 input[type="email"]::placeholder {
  color: #9aa0a6;
}
.dai-footer-news-cf7 input.wpcf7-submit {
  align-self: start;
  margin-top: 2px;
  width: 30px;
  height: 22px;
  border: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2030%2020'%20fill='none'%20stroke='%230d0d0d'%20stroke-width='1.7'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M2%2010h25M19%203l8%207-8%207'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 20px;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.dai-footer-news-cf7 input.wpcf7-submit:hover {
  transform: translateX(3px);
}
.dai-footer-news-cf7 .wpcf7-spinner {
  position: absolute;
  margin: 0 0 0 6px;
}
.dai-footer-news-cf7 .wpcf7-form-control-wrap[data-name="insider-email"] .wpcf7-not-valid-tip {
  grid-column: 2;
  margin-top: 6px;
  color: #dc3232;
  font-size: 13px;
  line-height: 1.35;
}
.dai-footer-news-cf7 .wpcf7-form-control-wrap[data-name="newsletter-consent"] {
  grid-column: 1 / -1;
  display: block;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid #d2d3e3;
  color: #9aa0a6;
  font-size: 15px;
  line-height: 1.6;
}
.dai-footer-news-cf7 .wpcf7-form-control-wrap[data-name="newsletter-consent"]::before {
  display: none;
}
.dai-footer-news-cf7 .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0;
}
.dai-footer-news-cf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.dai-footer-news-cf7 .wpcf7-acceptance input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
  cursor: pointer;
}
.dai-footer-news-cf7 .wpcf7-acceptance a {
  color: #6b7280;
  text-decoration: underline;
}
.dai-footer-news-cf7 .wpcf7-form-control-wrap[data-name="newsletter-consent"] .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #dc3232;
  font-size: 13px;
}
.dai-footer-news-cf7 .wpcf7-response-output {
  grid-column: 1 / -1;
  color: #6b7280;
  font-size: 13px;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 1.35;
}
.dai-footer-news-cf7 .wpcf7-form.invalid .wpcf7-response-output,
.dai-footer-news-cf7 .wpcf7-form.unaccepted .wpcf7-response-output {
  display: none;
}

/* ── Mobile navbar fixes (placed last so they win over base rules) ── */
@media (max-width: 991px) {
  body.has-dai-navbar {
    padding-top: 88px;
  }
  .dai-navbar {
    padding: 8px 18px;
  }
  .dai-navbar-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    gap: 0;
  }
  .dai-navbar-center.open {
    top: 76px;
  }
}

/* ── Event recap pages (2024/2025): smaller, denser logo grids like the reference ── */
.dai-event .dai-tier-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 44px 24px;
  align-items: center;
}
.dai-event .dai-logo-cell {
  height: 96px;
  background: transparent;
  border-radius: 0;
}
.dai-event .dai-logo-cell img {
  max-height: 48px;
  max-width: 78%;
}
@media (max-width: 991px) {
  .dai-event .dai-tier-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575px) {
  .dai-event .dai-tier-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── AI Start-Up Application — CF7 form ── */
.dai-app-form {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.dai-app-form h3 {
  font-family: var(--ref-font-head, halyard-display);
  font-size: 22px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 2.25rem 0 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--dai-blue, #4361ee);
}
.dai-app-form h3:first-child { margin-top: 0; }
.dai-app-form p { margin: 0 0 16px; }
.dai-app-form label { display: block; font-size: 14px; font-weight: 600; color: #0d0d0d; }
.dai-app-form input[type="text"],
.dai-app-form input[type="email"],
.dai-app-form input[type="tel"],
.dai-app-form input[type="url"],
.dai-app-form input[type="number"],
.dai-app-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #d2d5e2;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #0d0d0d;
  background: #fff;
}
.dai-app-form textarea { min-height: 110px; resize: vertical; }
.dai-app-form input:focus,
.dai-app-form textarea:focus { outline: none; border-color: var(--dai-blue, #4361ee); }
.dai-app-form .wpcf7-not-valid-tip { color: #d33; font-size: 13px; font-weight: 400; }
.dai-app-form .wpcf7-acceptance label { display: inline; font-weight: 400; }
.dai-app-form .wpcf7-submit {
  background: var(--dai-blue, #4361ee);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 14px 34px;
  font-family: var(--ref-font-head, halyard-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s;
}
.dai-app-form .wpcf7-submit:hover { filter: brightness(1.06); }
.dai-app-form .wpcf7-response-output { border-radius: 8px; margin: 1rem 0 0; }
