/* =========================
   HERO — PURPLE PREMIUM
   Drop-in replacement
   ========================= */

.hero{
  padding: 22px 0 10px;
}

.heroCard{
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 420px;

  /* base surface */
  background: #0b1220;

  /* premium depth */
  box-shadow:
    0 28px 90px rgba(24, 12, 40, .14),
    0 0 0 1px rgba(17,12,26,.10);
}

/* media */
.heroMedia{
  position:absolute;
  inset:0;
}
.heroMedia img,
.heroMedia video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03);
}

/* purple readability overlay (balanced, not “black fog”) */
.heroShade{
  position:absolute;
  inset:0;
  background:
    /* top-left glow */
    radial-gradient(1100px 560px at 18% 24%,
      rgba(90,46,145,.55),
      rgba(90,46,145,0) 58%),

    /* cyan accent glow (very subtle, matches your other cards) */
    radial-gradient(900px 520px at 65% 18%,
      rgba(47,209,255,.14),
      rgba(47,209,255,0) 56%),

    /* main readable band (left-to-right) */
    linear-gradient(90deg,
      rgba(15,11,28,.72) 0%,
      rgba(15,11,28,.40) 42%,
      rgba(15,11,28,.14) 70%,
      rgba(15,11,28,0) 100%),

    /* bottom vignette for polish */
    linear-gradient(180deg,
      rgba(15,11,28,.06) 0%,
      rgba(15,11,28,.34) 100%);
}

/* content */
.heroContent{
  position:relative;
  z-index:2;
  padding: 44px 44px 56px;
  max-width: 780px;
}

/* kicker */
.heroKicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.82);
}

/* headline */
.heroTitle{
  margin: 10px 0 10px;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color:#fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.22);
}

/* sub */
.heroSub{
  margin: 0;
  color: rgba(255,255,255,.82);
  max-width: 64ch;
  line-height: 1.75;
  font-size: 15.8px;
  text-shadow: 0 10px 28px rgba(0,0,0,.18);
}

/* CTAs */
.heroCtas{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;

  backdrop-filter: blur(12px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

/* primary: white pill with purple accent ring */
.btn--primary{
  background: rgba(255,255,255,.95);
  color: rgba(15,11,28,.96);
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 18px 50px rgba(0,0,0,.24), 0 0 0 1px rgba(90,46,145,.06) inset;
}
.btn--primary:hover{
  background:#fff;
  border-color:#fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

/* ghost: purple glass */
.btn--ghost{
  background: rgba(90,46,145,.16);
  border-color: rgba(255,255,255,.16);
}
.btn--ghost:hover{
  background: rgba(90,46,145,.22);
  border-color: rgba(255,255,255,.22);
}

/* quick lines */
.heroQuick{
  margin-top: 18px;
  display:grid;
  gap: 8px;
}

.quickLine{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.80);
  font-size: 14px;
}

.quickLine .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;

  /* purple accent dot */
  background: rgba(255,255,255,.70);
  box-shadow: 0 0 0 3px rgba(90,46,145,.22);
}

/* play button */
.heroPlay{
  position:absolute;
  left: 44px;
  bottom: 22px;
  z-index: 2;

  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;

  color: rgba(255,255,255,.92);
  background: rgba(90,46,145,.18);
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 12px;
  border-radius: 999px;
  backdrop-filter: blur(12px);

  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.heroPlay:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.26);
  background: rgba(90,46,145,.24);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.playIcon{
  width: 30px;
  height: 30px;
  border-radius: 999px;

  /* white with subtle purple tint */
  background: rgba(255,255,255,.95);
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.playIcon::after{
  content:"";
  position:absolute;
  left: 12px;
  top: 9px;
  width: 0;
  height: 0;
  border-left: 10px solid rgba(90,46,145,.95);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.playText{
  font-weight: 950;
  font-size: 13.5px;
}

/* responsive */
@media (max-width: 900px){
  .heroCard{ border-radius: 26px; min-height: 460px; }
  .heroContent{ padding: 34px 22px 56px; max-width: 92%; }
  .heroPlay{ left: 22px; }
  .heroShade{
    background:
      radial-gradient(900px 520px at 28% 22%, rgba(90,46,145,.52), rgba(90,46,145,0) 58%),
      radial-gradient(820px 520px at 70% 18%, rgba(47,209,255,.12), rgba(47,209,255,0) 56%),
      linear-gradient(180deg, rgba(15,11,28,.66) 0%, rgba(15,11,28,.24) 55%, rgba(15,11,28,0) 100%);
  }
}


/* ===================================
   ARTICLE — PURPLE PREMIUM SYSTEM
   Drop-in replacement (same HTML)
   Uses brand purple: #5a2e91
   =================================== */

/* -----------------------------------
   ARTICLE WRAP
----------------------------------- */
.article{
  padding: 28px 0 10px;
  position: relative;
}

/* subtle background glow (matches other sections) */
.article::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(90,46,145,.10), transparent 60%),
    radial-gradient(820px 520px at 88% 18%, rgba(47,209,255,.08), transparent 60%);
  opacity: .9;
}

/* -----------------------------------
   ARTICLE HEAD
----------------------------------- */
.articleHead{
  position: relative;
  max-width: 980px;
  padding: 12px 0 18px;
}

.articleTitle{
  margin:0;
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: rgba(15,11,28,.96);
}

.articleLead{
  margin: 10px 0 0;
  color: rgba(15,11,28,.70);
  line-height: 1.75;
  max-width: 78ch;
  font-size: 15.8px;
}

/* -----------------------------------
   BLOCKS (text + aside)
----------------------------------- */
.block{
  position: relative;
  padding: 24px 0;
}

/* replace hard border with soft divider */
.block + .block{
  border-top: 1px solid rgba(17,12,26,.08);
}

/* structure improvement: tighter + consistent */
.blockRow{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 20px;
  align-items: start;
}

/* reverse */
.blockRow--reverse{
  grid-template-columns: .65fr 1.35fr;
}
.blockRow--reverse .blockText{ order: 2; }
.blockRow--reverse .blockAside{ order: 1; }

/* section title */
.blockH{
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: rgba(15,11,28,.96);
  font-weight: 950;
}

/* add a small purple accent rule */
.blockH::after{
  content:"";
  display:block;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(90,46,145,1), rgba(123,67,196,.55));
  opacity: .95;
}

.blockP{
  margin: 12px 0 0;
  color: rgba(15,11,28,.72);
  line-height: 1.85;
  font-size: 15.5px;
  max-width: 78ch;
}

/* -----------------------------------
   MINI GRID (story section)
----------------------------------- */
.miniGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.miniCard{
  border-radius: 18px;
  padding: 12px 12px 12px;

  background:
    radial-gradient(520px 240px at 18% 0%, rgba(47,209,255,.06), rgba(47,209,255,0) 55%),
    rgba(255,255,255,.86);

  border: 1px solid rgba(17,12,26,.10);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(24,12,40,.07);
}

.miniCard__k{
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(90,46,145,.92);
  font-weight: 950;
}

.miniCard__t{
  margin-top: 6px;
  font-weight: 950;
  font-size: 14.8px;
  letter-spacing: -.01em;
  color: rgba(15,11,28,.96);
}

.miniCard__p{
  margin: 6px 0 0;
  color: rgba(15,11,28,.72);
  line-height: 1.65;
  font-size: 13.8px;
}

/* -----------------------------------
   ASIDE STACK
----------------------------------- */
.blockAside{
  display:grid;
  gap: 12px;
}

/* media card */
.asideMedia{
  border-radius: 22px;
  overflow:hidden;

  border: 1px solid rgba(17,12,26,.10);
  background: #0b1220;

  box-shadow: 0 18px 55px rgba(24,12,40,.12);
  position: relative;
}

/* purple overlay for brand consistency */
.asideMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(720px 420px at 18% 18%, rgba(123,67,196,.18), rgba(123,67,196,0) 60%),
    linear-gradient(180deg, rgba(15,11,28,.06) 50%, rgba(15,11,28,.22) 100%);
  pointer-events:none;
}

.asideMedia img{
  width:100%;
  height: 250px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03);
}

/* callout card */
.asideCallout{
  border-radius: 22px;
  border: 1px solid rgba(17,12,26,.10);

  background:
    radial-gradient(520px 240px at 18% 0%, rgba(47,209,255,.06), rgba(47,209,255,0) 55%),
    rgba(255,255,255,.90);

  padding: 14px 14px 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(24,12,40,.08);
}

.asideCallout__k{
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(90,46,145,.92);
  font-weight: 950;
}

.asideCallout__t{
  margin-top: 6px;
  font-weight: 950;
  font-size: 15.8px;
  letter-spacing: -.01em;
  color: rgba(15,11,28,.96);
}

.asideCallout__p{
  margin: 8px 0 0;
  color: rgba(15,11,28,.72);
  line-height: 1.7;
  font-size: 14.2px;
}

.asideLink{
  margin-top: 10px;
  display:inline-flex;
  gap: 10px;
  align-items:center;
  text-decoration:none;
  font-weight: 950;

  color: rgba(90,46,145,.98);
  padding: 10px 12px;
  border-radius: 999px;

  background: rgba(90,46,145,.10);
  border: 1px solid rgba(90,46,145,.16);

  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.asideLink:hover{
  transform: translateY(-1px);
  background: rgba(90,46,145,.14);
  border-color: rgba(90,46,145,.22);
}

/* -----------------------------------
   BULLETS / FEATURES / TWOUP
   (unify into same purple glass card system)
----------------------------------- */
.bulletCols,
.featureList,
.twoUp{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.bulletH,
.feat__t,
.twoUp__t{
  margin: 0;
  font-size: 14.8px;
  font-weight: 950;
  letter-spacing: -.01em;
  color: rgba(15,11,28,.96);
}

/* turn list containers into cards without markup changes */
.bulletCols{
  padding: 0; /* keep clean */
}

.bulletList,
.feat__ul,
.twoUp__ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,11,28,.74);
  line-height: 1.8;
  font-size: 14.2px;
}

/* existing cards */
.feat,
.twoUp__card{
  border-radius: 18px;
  padding: 14px;

  background:
    radial-gradient(520px 240px at 18% 0%, rgba(47,209,255,.06), rgba(47,209,255,0) 55%),
    rgba(255,255,255,.90);

  border: 1px solid rgba(17,12,26,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(24,12,40,.07);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feat:hover,
.twoUp__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(24,12,40,.10);
  border-color: rgba(90,46,145,.18);
}

/* -----------------------------------
   TAGS + NOTE
----------------------------------- */
.tagRow{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  padding: 8px 10px;
  border-radius: 999px;

  border: 1px solid rgba(90,46,145,.16);
  background: rgba(90,46,145,.08);

  font-weight: 900;
  color: rgba(90,46,145,.98);
  font-size: 12.8px;
  letter-spacing: .02em;
}

.note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;

  border: 1px solid rgba(17,12,26,.10);
  background:
    radial-gradient(520px 240px at 18% 0%, rgba(47,209,255,.06), rgba(47,209,255,0) 55%),
    rgba(255,255,255,.90);

  color: rgba(15,11,28,.74);
  line-height: 1.75;
  box-shadow: 0 14px 44px rgba(24,12,40,.06);
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 980px){
  .articleHead{ max-width: 100%; }
  .blockRow{ grid-template-columns: 1fr; }
  .blockRow--reverse{ grid-template-columns: 1fr; }
  .blockRow--reverse .blockText{ order: 1; }
  .blockRow--reverse .blockAside{ order: 2; }
  .asideMedia img{ height: 240px; }
  .miniGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .bulletCols,
  .featureList,
  .twoUp{
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   HERITAGE CARDS GRID + END CTA (PURPLE)
   Drop-in replacement (same HTML)
   Brand: #5a2e91
   ========================================== */

/* -----------------------------------
   HERITAGE CARDS GRID
----------------------------------- */
.cards{
  padding: 26px 0 6px;
  border-top: 1px solid rgba(17,12,26,.08);
  position: relative;
}

.cardsHead{
  display:grid;
  gap: 8px;
  max-width: 980px;
  margin-bottom: 14px;
}

.cardsTitle{
  margin:0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.02em;
  color: rgba(15,11,28,.96);
}

/* add subtle purple underline accent */
.cardsTitle::after{
  content:"";
  display:block;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(90,46,145,1), rgba(123,67,196,.55));
}

.cardsSub{
  margin:0;
  color: rgba(15,11,28,.70);
  line-height: 1.75;
  font-size: 15.2px;
}

/* grid */
.cardGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

/* -----------------------------------
   PLACE CARD (image + purple body)
----------------------------------- */

.placeCard{
  position: relative;
  display: grid;
  grid-template-rows: 210px 1fr;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: radial-gradient(520px 260px at 20% 0%, rgba(47, 209, 255, .14), rgba(47, 209, 255, 0) 55%), linear-gradient(135deg, #5a2e91 0%, #7b43c4 55%, #2b1550 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 84px rgba(24, 12, 40, .20);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
}

.placeCard:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 32px 100px rgba(24,12,40,.24);
  filter: saturate(1.05);
}

/* image */
.placeCard__img{
  position: relative;
  overflow:hidden;
}

.placeCard__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;

  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.06);
  transition: transform .35s ease, filter .35s ease;
}

.placeCard:hover .placeCard__img img{
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.08);
}

/* subtle purple overlay */
.placeCard__img::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(720px 420px at 18% 18%, rgba(123,67,196,.22), rgba(123,67,196,0) 60%),
    linear-gradient(180deg, rgba(15,11,28,.10) 55%, rgba(15,11,28,.35) 100%);
}

/* body */
.placeCard__b{
  padding: 16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

/* kicker */
.placeCard__k{
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  font-weight: 900;
}

/* title */
.placeCard__t{
  margin:0;
  font-weight: 950;
  font-size: 16.6px;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: #fff;
}

/* description */
.placeCard__d{
  margin:0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-size: 14.2px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

/* CTA line */
.placeCard__cta{
  margin-top: auto; /* forces CTA to bottom */
  font-weight: 900;
  display:inline-flex;
  align-items:center;
  gap: 10px;

  color: #fff;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);

  transition: transform .16s ease,
              background .16s ease,
              border-color .16s ease;
}

.placeCard:hover .placeCard__cta{
  transform: translateY(-1px);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.30);
}

/* -----------------------------------
   FOOT LINKS
----------------------------------- */
.cardsFoot{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.linkBtn{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;

  border: 1px solid rgba(17,12,26,.10);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);

  font-weight: 950;
  color: rgba(15,11,28,.92);
  box-shadow: 0 12px 40px rgba(24,12,40,.08);

  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.linkBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(90,46,145,.18);
  background: rgba(90,46,145,.06);
  box-shadow: 0 18px 54px rgba(24,12,40,.10);
}

/* purple primary */
.linkBtn--primary{
  background: linear-gradient(135deg, #5a2e91, #3b1b6a 58%, #24123f 100%);
  border-color: rgba(90,46,145,.28);
  color:#fff;
  box-shadow: 0 18px 60px rgba(24,12,40,.16);
}

.linkBtn--primary:hover{
  background: linear-gradient(135deg, #6a35a9, #421e79 58%, #24123f 100%);
  border-color: rgba(90,46,145,.34);
}

/* -----------------------------------
   END CTA
----------------------------------- */
.endCta{
  padding: 26px 0 0;
}

.endCta__card{
  border-radius: 26px;
  border: 1px solid rgba(17,12,26,.10);

  background:
    radial-gradient(900px 320px at 18% 0%, rgba(47,209,255,.08), rgba(47,209,255,0) 60%),
    radial-gradient(820px 320px at 88% 30%, rgba(90,46,145,.12), rgba(90,46,145,0) 60%),
    rgba(255,255,255,.86);

  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(24,12,40,.10);

  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.endCta__text h3{
  margin:0;
  font-size: 18.5px;
  font-weight: 950;
  letter-spacing: -.02em;
  color: rgba(15,11,28,.96);
}

.endCta__text p{
  margin: 8px 0 0;
  color: rgba(15,11,28,.72);
  line-height: 1.75;
  max-width: 70ch;
  font-size: 14.8px;
}

.endCta__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 1100px){
  .cardGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px){
  .cardGrid{ grid-template-columns: 1fr; }
  .endCta__card{ flex-direction: column; align-items: flex-start; }
}