  /* ══ CSS VARIABLE TOKENS (replicate style.css base) ══ */
    :root {
      --maroon: #6B1024;
      --maroon-deep: #2A0508;
      --maroon-light: #9B2235;
      --gold: #B8963E;
      --gold-light: #D4AF60;
      --gold-bright: #E6C060;
      --gold-pale: #F0D890;
      --text-muted: #5A4A50;

      /* DA page tokens */
      --da-hero-bg-start: #1E0208;
      --da-hero-bg-end: #5A0F1F;
      --da-card-bg: rgba(255, 255, 255, .07);
      --da-card-border: rgba(184, 150, 62, .22);
      --da-shadow-heavy: 0 32px 72px rgba(0, 0, 0, .42);
    }

    /* ══ RESET / BASE ══ */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #333;
      overflow-x: hidden
    }

    /* ══ SCROLL PROGRESS ══ */
    .scroll-progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--maroon), var(--gold), var(--gold-light));
      z-index: 9999;
      transition: width .1s linear
    }

    /* ══ NAV ══ */
    .aimd-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .9rem 2rem;
      background: rgba(26, 4, 9, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(184, 150, 62, .12);
      transition: all .3s
    }

    .aimd-nav.scrolled {
      padding: .65rem 2rem;
      background: rgba(18, 3, 7, .95)
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .7rem;
      text-decoration: none
    }

    .nav-logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(184, 150, 62, .35);
      background: rgba(184, 150, 62, .08);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .nav-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .12em
    }

    .nav-logo-sub {
      font-size: .5rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      font-family: 'Inter', sans-serif
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem
    }

    .nav-links a {
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(255, 255, 255, .65);
      text-decoration: none;
      transition: color .2s;
      font-family: 'Inter', sans-serif
    }

    .nav-links a:hover {
      color: var(--gold-light)
    }

    .btn-nav-apply {
      background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)) !important;
      color: #fff !important;
      padding: .45rem 1.1rem !important;
      border-radius: 2px !important;
      border: 1px solid rgba(184, 150, 62, .25) !important
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .25rem
    }

    .nav-toggle span {
      width: 22px;
      height: 2px;
      background: rgba(255, 255, 255, .7);
      border-radius: 1px
    }

    /* ══ SHARED SECTION UTILITIES ══ */
    .section-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .65rem;
      margin-bottom: 1rem;
      font-size: .62rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      font-family: 'Inter', sans-serif
    }

    .eyebrow-line {
      width: 28px;
      height: 1px;
      background: var(--gold)
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--maroon-deep);
      line-height: 1.15;
      margin-bottom: 1.25rem
    }

    .section-title em {
      font-style: italic;
      color: var(--maroon-light)
    }

    .section-sub {
      font-size: .88rem;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7
    }

    .section-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      margin-bottom: 1rem
    }

    .sd-line {
      width: 50px;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent)
    }

    .sd-line:last-child {
      background: linear-gradient(to left, var(--gold), transparent)
    }

    .sd-gem {
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0
    }

    .section-head {
      text-align: center;
      margin-bottom: 3.5rem
    }

    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ══ HERO BUTTONS ══ */
    .btn-hero-gold {
      display: inline-flex;
      align-items: center;
      padding: .75rem 1.6rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #1A0406;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      border: none;
      font-family: 'Inter', sans-serif;
      transition: all .28s
    }

    .btn-hero-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(184, 150, 62, .4);
      color: #1A0406
    }

    .btn-hero-outline {
      display: inline-flex;
      align-items: center;
      padding: .75rem 1.6rem;
      background: transparent;
      color: rgba(255, 255, 255, .8);
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      border: 1px solid rgba(255, 255, 255, .28);
      font-family: 'Inter', sans-serif;
      transition: all .28s
    }

    .btn-hero-outline:hover {
      background: rgba(255, 255, 255, .06);
      border-color: rgba(255, 255, 255, .5);
      color: #fff
    }

    /* ══ HERO DIVIDER ══ */
    .hero-divider-hero {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: 1.5rem
    }

    .hero-divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      max-width: 80px
    }

    .hero-divider-gem {
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0
    }

    .hero-eyebrow-line {
      width: 28px;
      height: 1px;
      background: var(--gold-light)
    }

    .news-cat-badge {
      font-size: .6rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      padding: .3rem .75rem;
      border-radius: 2px
    }

    .cat-announcement {
      background: rgba(90, 15, 31, .1);
      color: var(--maroon-light);
      border: 1px solid rgba(90, 15, 31, .2)
    }

    /* ══ FLOATING NOTES (from news.css) ══ */
    .nh-music-notes {
      position: absolute;
      inset: 0;
      pointer-events: none
    }

    .nh-note {
      position: absolute;
      color: rgba(184, 150, 62, .18);
      font-size: 2rem;
      animation: noteFloat 6s ease-in-out infinite
    }

    @keyframes noteFloat {

      0%,
      100% {
        transform: translateY(0) rotate(-5deg);
        opacity: .18
      }

      50% {
        transform: translateY(-18px) rotate(5deg);
        opacity: .32
      }
    }

    .nh-eyebrow {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1.5rem;
      font-size: .62rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 700;
      font-family: 'Inter', sans-serif
    }

    .nh-desc {
      font-size: .87rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 2.25rem
    }

    .nh-btns {
      display: flex;
      gap: .85rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem
    }

    .nh-stats {
      display: flex;
      align-items: center;
      gap: 1.5rem
    }

    .nh-stat {
      text-align: center
    }

    .nh-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1
    }

    .nh-stat-label {
      display: block;
      font-size: .62rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      font-family: 'Inter', sans-serif;
      margin-top: .25rem
    }

    .nh-stat-div {
      width: 1px;
      height: 32px;
      background: rgba(184, 150, 62, .25)
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-20px) scale(1.03)
      }
    }

    @keyframes mandalaSpin {
      to {
        transform: translateY(-50%) rotate(360deg)
      }
    }

    @keyframes cardFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    @keyframes spinRing {
      to {
        transform: rotate(360deg)
      }
    }

    @keyframes flashPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(.75)
      }
    }

    /* ══ DA-PAGE SPECIFIC ══ */
    .da-hero {
      min-height: 92vh;
      background: linear-gradient(145deg, #1E0208 0%, #3A080F 22%, var(--maroon) 52%, #9B2235 78%, #6A1420 100%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 6rem 0 4rem
    }

    .da-hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: .55
    }

    .da-mandala-wrap {
      position: absolute;
      right: 2%;
      top: 50%;
      transform: translateY(-50%);
      opacity: .06;
      animation: mandalaSpin 70s linear infinite;
      pointer-events: none;
      z-index: 1
    }

    .da-hero-inner,
    .da-hero .nh-music-notes {
      position: relative;
      z-index: 2
    }

    .da-news-flash-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: rgba(184, 150, 62, .14);
      border: 1px solid rgba(184, 150, 62, .35);
      color: var(--gold-light);
      font-size: .62rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      padding: .4rem .95rem;
      border-radius: 2px;
      margin-bottom: .5rem
    }

    .da-nfb-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-light);
      animation: flashPulse 1.6s ease-in-out infinite;
      flex-shrink: 0
    }

    .da-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 6.5vw, 5.6rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.06;
      letter-spacing: .03em;
      margin-bottom: 1.25rem
    }

    .da-hero-title em {
      font-style: italic;
      color: var(--gold-light)
    }

    .da-launch-pill {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(90, 15, 31, .55);
      border: 1px solid rgba(184, 150, 62, .3);
      color: var(--gold-light);
      font-size: .75rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      padding: .45rem 1rem;
      border-radius: 3px;
      margin-bottom: 1.4rem;
      letter-spacing: .04em;
      backdrop-filter: blur(8px)
    }

    .da-hero-right {
      padding: 2rem 0 2rem 2rem
    }

    .da-hero-card {
      background: var(--da-card-bg);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border: 1px solid var(--da-card-border);
      border-radius: 14px;
      padding: 2.25rem 2rem 2rem;
      box-shadow: var(--da-shadow-heavy), 0 0 0 1px rgba(255, 255, 255, .04);
      animation: cardFloat 5.5s ease-in-out infinite;
      transition: transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden
    }

    .da-hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent)
    }

    .da-hero-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 44px 90px rgba(0, 0, 0, .5)
    }

    .da-hc-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem
    }

    .da-hc-date {
      font-size: .68rem;
      color: rgba(255, 255, 255, .45);
      font-family: 'Inter', sans-serif
    }

    .da-hc-icon-ring {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 1px solid rgba(184, 150, 62, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      background: rgba(184, 150, 62, .08);
      position: relative
    }

    .da-hc-icon-ring::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1px dashed rgba(184, 150, 62, .18);
      animation: spinRing 20s linear infinite
    }

    .da-hc-icon-ring .bi {
      font-size: 1.65rem;
      color: var(--gold-light)
    }

    .da-hc-icon-inner {
      display: flex;
      align-items: center;
      justify-content: center
    }

    .da-hc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem;
      font-weight: 700;
      color: #fff;
      text-align: center;
      line-height: 1.2;
      margin-bottom: .6rem
    }

    .da-hc-sub {
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      text-align: center;
      font-family: 'Inter', sans-serif;
      margin-bottom: 1.25rem;
      line-height: 1.6
    }

    .da-hc-formats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      margin-bottom: 1.5rem
    }

    .da-hcf-item {
      display: flex;
      align-items: center;
      gap: .4rem;
      font-size: .72rem;
      color: rgba(255, 255, 255, .65);
      font-family: 'Inter', sans-serif
    }

    .da-hcf-item .bi {
      color: var(--gold-light);
      font-size: .82rem
    }

    .da-hcf-sep {
      color: rgba(184, 150, 62, .4);
      font-size: .9rem
    }

    .da-hc-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(184, 150, 62, .3), transparent);
      margin-bottom: 1.25rem
    }

    .da-hc-footer {
      text-align: center
    }

    .da-hcf-badge {
      font-size: .58rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      font-family: 'Inter', sans-serif
    }

    .da-hcf-badge .bi {
      color: var(--gold)
    }

    /* Options section */
    .da-options-section {
      padding: 5.5rem 0 5rem;
      background: #fdf8f2
    }

    .da-options-section .section-title {
      color: var(--maroon-deep)
    }

    .da-option-card {
      background: #fff;
      border: 1px solid rgba(184, 150, 62, .18);
      border-radius: 12px;
      padding: 2.25rem 2rem 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      box-shadow: 0 4px 24px rgba(90, 15, 31, .06), 0 1px 4px rgba(90, 15, 31, .04)
    }

    .da-option-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--maroon), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s
    }

    .da-option-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 24px 56px rgba(90, 15, 31, .14), 0 4px 12px rgba(184, 150, 62, .12);
      border-color: rgba(184, 150, 62, .35)
    }

    .da-option-card:hover::before {
      transform: scaleX(1)
    }

    .da-option-card--live {
      background: linear-gradient(to bottom right, #fff 60%, rgba(184, 150, 62, .04))
    }

    .da-oc-badge-live {
      position: absolute;
      top: 1.1rem;
      right: 1.1rem;
      background: rgba(184, 150, 62, .12);
      border: 1px solid rgba(184, 150, 62, .28);
      color: #8B6A20;
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      padding: .28rem .7rem;
      border-radius: 2px;
      display: flex;
      align-items: center
    }

    .da-oc-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.5rem
    }

    .da-oc-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      background: rgba(90, 15, 31, .07);
      border: 1px solid rgba(90, 15, 31, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s, border-color .3s
    }

    .da-oc-icon-wrap .bi {
      font-size: 1.5rem;
      color: var(--maroon);
      transition: color .3s
    }

    .da-oc-icon-wrap--live {
      background: rgba(184, 150, 62, .08);
      border-color: rgba(184, 150, 62, .18)
    }

    .da-oc-icon-wrap--live .bi {
      color: #8B6A20
    }

    .da-oc-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: rgba(184, 150, 62, .22);
      line-height: 1
    }

    .da-oc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem;
      font-weight: 700;
      color: var(--maroon-deep);
      line-height: 1.18;
      margin-bottom: .85rem
    }

    .da-oc-desc {
      font-size: .84rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1.5rem
    }

    .da-oc-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem;
      display: flex;
      flex-direction: column;
      gap: .55rem;
      flex-grow: 1
    }

    .da-oc-features li {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .81rem;
      color: var(--text-muted);
      font-family: 'Inter', sans-serif
    }

    .da-oc-features .bi-check-circle-fill {
      color: var(--maroon);
      font-size: .78rem;
      flex-shrink: 0
    }

    .da-option-card--live .da-oc-features .bi-check-circle-fill {
      color: #8B6A20
    }

    .da-oc-footer {
      margin-top: auto;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(184, 150, 62, .12)
    }

    .da-oc-btn {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .7rem 1.5rem;
      background: var(--maroon);
      color: #fff;
      font-size: .8rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      letter-spacing: .04em;
      border-radius: 3px;
      text-decoration: none;
      transition: background .25s, transform .25s
    }

    .da-oc-btn:hover {
      background: var(--maroon-deep);
      color: #fff;
      transform: translateX(3px)
    }

    .da-oc-btn--live {
      background: transparent;
      color: #8B6A20;
      border: 1.5px solid rgba(184, 150, 62, .4)
    }

    .da-oc-btn--live:hover {
      background: rgba(184, 150, 62, .08);
      color: #6B4A10;
      transform: translateX(3px)
    }

    /* Benefits section */
    .da-benefits-section {
      padding: 5rem 0;
      background: #fff
    }

    .da-benefits-section .section-title {
      color: var(--maroon-deep)
    }

    .da-benefit-card {
      background: #fdf8f2;
      border: 1px solid rgba(184, 150, 62, .14);
      border-radius: 10px;
      padding: 1.85rem 1.65rem;
      height: 100%;
      transition: transform .28s, box-shadow .28s, border-color .28s
    }

    .da-benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(90, 15, 31, .1);
      border-color: rgba(184, 150, 62, .3)
    }

    .da-bc-icon {
      width: 50px;
      height: 50px;
      border-radius: 6px;
      background: rgba(90, 15, 31, .07);
      border: 1px solid rgba(90, 15, 31, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.1rem;
      transition: background .25s
    }

    .da-bc-icon .bi {
      font-size: 1.25rem;
      color: var(--maroon)
    }

    .da-benefit-card:hover .da-bc-icon {
      background: rgba(90, 15, 31, .12)
    }

    .da-bc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--maroon-deep);
      margin-bottom: .6rem;
      line-height: 1.25
    }

    .da-bc-desc {
      font-size: .82rem;
      color: var(--text-muted);
      line-height: 1.78;
      margin: 0
    }

    /* Launch section */
    .da-launch-section {
      padding: 4.5rem 0;
      background: linear-gradient(145deg, #1E0208 0%, var(--maroon) 50%, #9B2235 100%);
      position: relative;
      overflow: hidden
    }

    .da-launch-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(90deg, rgba(184, 150, 62, .025) 0, rgba(184, 150, 62, .025) 1px, transparent 1px, transparent 80px), repeating-linear-gradient(0deg, rgba(184, 150, 62, .015) 0, rgba(184, 150, 62, .015) 1px, transparent 1px, transparent 80px);
      pointer-events: none
    }

    .da-launch-panel {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      text-align: center;
      z-index: 1
    }

    .da-lp-deco {
      position: relative;
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .da-lp-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(184, 150, 62, .25)
    }

    .da-lp-ring--1 {
      width: 80px;
      height: 80px
    }

    .da-lp-ring--2 {
      width: 56px;
      height: 56px;
      animation: spinRing 18s linear infinite
    }

    .da-lp-ring--3 {
      width: 30px;
      height: 30px;
      animation: spinRing 10s linear infinite reverse
    }

    .da-lp-star {
      position: relative;
      font-size: 1.2rem;
      color: rgba(184, 150, 62, .5);
      z-index: 1
    }

    .da-lp-content {
      flex: 0 1 580px
    }

    .da-lp-eyebrow {
      font-size: .62rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      margin-bottom: 1rem
    }

    .da-lp-date {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 1rem;
      letter-spacing: .03em
    }

    .da-lp-date em {
      font-style: italic;
      color: var(--gold-light)
    }

    .da-lp-sub {
      font-size: .84rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.75;
      max-width: 420px;
      margin: 0 auto 1.25rem
    }

    .da-lp-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      margin-bottom: 1rem
    }

    .da-lp-note {
      font-size: .75rem;
      color: rgba(255, 255, 255, .38);
      font-family: 'Inter', sans-serif;
      margin: 0
    }

    .da-lp-note .bi {
      color: var(--gold)
    }

    /* CTA section */
    .da-cta-section {
      padding: 5.5rem 0 6rem;
      background: #fdf8f2
    }

    .da-cta-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center
    }

    .da-cta-inner .section-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center
    }

    .da-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--maroon-deep);
      line-height: 1.15;
      margin-bottom: .75rem
    }

    .da-cta-title em {
      font-style: italic;
      color: var(--maroon-light)
    }

    .da-cta-sub {
      font-size: .87rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 540px;
      margin: 0 auto 2.25rem
    }

    .da-cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem
    }

    .da-cta-primary,
    .da-cta-secondary {
      font-size: .84rem;
      padding: .85rem 1.75rem
    }

    .da-cta-accred {
      font-size: .62rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(90, 15, 31, .45);
      font-family: 'Inter', sans-serif
    }

    .da-cta-accred .bi {
      color: var(--gold)
    }

    /* CTA section — fix outline btn for light bg */
    .da-cta-section .btn-hero-outline {
      color: var(--maroon);
      border-color: rgba(90, 15, 31, .35)
    }

    .da-cta-section .btn-hero-outline:hover {
      background: rgba(90, 15, 31, .06);
      color: var(--maroon-deep);
      border-color: var(--maroon)
    }

    /* Footer */
    .aimd-footer {
      background: linear-gradient(180deg, #1A0306 0%, #0D0104 100%);
      padding: 4rem 0 0;
      border-top: 1px solid rgba(184, 150, 62, .08)
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: .7rem;
      margin-bottom: 1.25rem
    }

    .footer-logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(184, 150, 62, .3);
      background: rgba(184, 150, 62, .07);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .footer-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: .12em
    }

    .footer-logo-sub {
      font-size: .46rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      font-family: 'Inter', sans-serif
    }

    .footer-about {
      font-size: .78rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.7;
      margin-bottom: 1.25rem
    }

    .footer-socials {
      display: flex;
      gap: .5rem
    }

    .footer-social-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(184, 150, 62, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .4);
      font-size: .78rem;
      text-decoration: none;
      transition: all .22s
    }

    .footer-social-btn:hover {
      border-color: var(--gold);
      color: var(--gold-light)
    }

    .footer-heading {
      font-size: .58rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--gold);
      font-family: 'Inter', sans-serif;
      margin-bottom: .75rem;
      padding-bottom: .4rem;
      border-bottom: 1px solid rgba(184, 150, 62, .1)
    }

    .footer-link {
      display: block;
      font-size: .76rem;
      color: rgba(255, 255, 255, .38);
      text-decoration: none;
      margin-bottom: .35rem;
      font-family: 'Inter', sans-serif;
      transition: color .2s
    }

    .footer-link:hover {
      color: rgba(255, 255, 255, .7)
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-size: .76rem;
      color: rgba(255, 255, 255, .38);
      font-family: 'Inter', sans-serif;
      margin-bottom: .55rem
    }

    .footer-contact-item .bi {
      color: var(--gold);
      font-size: .8rem
    }

    .footer-bottom-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0;
      margin-top: 3rem;
      border-top: 1px solid rgba(184, 150, 62, .08);
      flex-wrap: wrap;
      gap: .75rem
    }

    .footer-copy {
      font-size: .62rem;
      color: rgba(255, 255, 255, .2);
      font-family: 'Inter', sans-serif
    }

    .footer-legal {
      display: flex;
      gap: 1.25rem
    }

    .footer-legal a {
      font-size: .6rem;
      color: rgba(255, 255, 255, .18);
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      transition: color .2s
    }

    .footer-legal a:hover {
      color: rgba(255, 255, 255, .4)
    }

    .footer-top {
      padding-bottom: 3rem
    }

    /* Responsive */
    @media(max-width:991px) {
      .da-hero-right {
        padding: 2rem 0
      }

      .da-launch-panel {
        flex-direction: column;
        gap: 1.5rem
      }

      .da-lp-deco {
        display: none
      }

      .nav-links {
        display: none
      }

      .nav-toggle {
        display: flex
      }
    }

    @media(max-width:768px) {
      .da-hero {
        padding: 7rem 0 4rem
      }

      .da-hero-title {
        font-size: clamp(2.6rem, 9vw, 4rem)
      }

      .da-cta-btns {
        flex-direction: column;
        align-items: center
      }

      .da-cta-primary,
      .da-cta-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        display: flex
      }

      .nh-btns {
        flex-direction: column
      }

      .nh-btns a {
        justify-content: center
      }
    }

    @media(max-width:576px) {
      .da-option-card {
        padding: 1.75rem 1.4rem
      }

      .da-oc-title {
        font-size: 1.4rem
      }

      .da-benefit-card {
        padding: 1.4rem 1.2rem
      }
    }
  