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

:root {
  --navy: #020810;
  --deep: #050e1f;
  --steel: #0b2a5e;
  --horizon: #1340a0;
  --azure: #2563eb;
  --mist: #60a5fa;
  --pearl: #dbeafe;
  --white: #ffffff;
  --gold: #b8860b;
  --gold-rich: #d4a017;
  --gold-light: #f0c040;
  --gold-glow: rgba(212,160,23,0.70);
  --gold-glow-soft: rgba(212,160,23,0.30);
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --violet-glow: rgba(124,58,237,0.55);
  --teal: #0d9488;
  --teal-light: #2dd4bf;
  --teal-glow: rgba(13,148,136,0.55);
  --sapphire: #1d4ed8;
  --text-dark: #0a1628;
  --text-mid: #1e3a5f;
  --text-muted: rgba(10,22,40,0.55);
  --glass-white: rgba(240,245,255,0.82);
  --glass-border: rgba(180,200,255,0.52);
  --shadow-soft: 0 8px 40px rgba(5,14,50,0.16), 0 2px 8px rgba(5,14,50,0.10);
  --shadow-deep: 0 24px 70px rgba(2,8,16,0.32), 0 6px 20px rgba(2,8,16,0.18);
}

html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  background: #e8eeff;
  overscroll-behavior-y: none;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(160deg, #e8eeff 0%, #d4dcf8 30%, #c8d2f4 60%, #d0d8f8 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.65;
  overscroll-behavior-y: none;
}

/* CUSTOM SCROLLBAR — thin gold + violet accent */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(29,78,216,0.04); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(29,78,216,0.42), rgba(124,58,237,0.42));
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(212,160,23,0.65), rgba(124,58,237,0.65));
  background-clip: content-box;
}
* { scrollbar-width: thin; scrollbar-color: rgba(29,78,216,0.42) rgba(29,78,216,0.04); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* HEADINGS — Cormorant Garamond with italic accents */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--steel);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
}

h1 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 400; }
h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 400; }
h3 { font-size: clamp(18px, 1.6vw, 24px); }
h4 { font-size: clamp(16px, 1.15vw, 19px); font-weight: 600; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--sapphire);
  text-shadow: 0 0 22px rgba(37,99,235,0.55);
}

h1 strong, h2 strong {
  font-weight: 500;
  color: var(--gold-rich);
  text-shadow: 0 0 22px var(--gold-glow-soft);
}

p { margin: 0 0 14px; font-size: clamp(13.5px, 0.95vw, 15px); color: var(--text-mid); line-height: 1.75; }

/* EYEBROW — the signature blog-page dash + teal glow */
.page-eyebrow, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--teal-light);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  text-shadow: 0 0 14px var(--teal-glow);
}

.eyebrow::before, .page-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--teal-light);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--teal-glow);
}

/* HEADING WITH DECORATIVE UNDERBAR — makes titles pop */
.h-decor { position: relative; padding-bottom: 18px; margin-bottom: 22px; display: inline-block; }
.h-decor::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 62px; height: 3px;
  background: linear-gradient(90deg, var(--gold-rich), var(--sapphire));
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(212,160,23,0.28);
}
.h-decor.center { display: block; padding-bottom: 22px; }
.h-decor.center::after { left: 50%; transform: translateX(-50%); }

.lede { font-size: clamp(14px, 1.05vw, 17px); line-height: 1.7; color: var(--text-mid); margin-bottom: 22px; max-width: 720px; font-weight: 400; }

.text-italic-violet { font-style: italic; color: var(--sapphire); text-shadow: 0 0 22px rgba(37,99,235,0.55); }
.text-gold { color: var(--gold-rich); text-shadow: 0 0 18px var(--gold-glow-soft); }

/* LAYOUT */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 52px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 52px; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 52px; }

.section { padding: clamp(60px, 7vw, 110px) 0; }
.section-tight { padding: clamp(40px, 5vw, 80px) 0; }

.hero {
  padding: clamp(56px, 6vw, 90px) 0 clamp(40px, 5vw, 70px);
  position: relative;
}

/* HERO with cinematic full-bleed background image */
.hero-cinema {
  padding: clamp(110px, 12vw, 200px) 0 clamp(80px, 9vw, 150px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: #050e1f;
}
.hero-cinema .hero-bg {
  position: absolute;
  inset: -6% -3% -6% -3%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.02) translate3d(0,0,0);} to { transform: scale(1.08) translate3d(-2%, -1%, 0);} }
.hero-cinema::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,8,16,0.14) 0%, rgba(2,8,16,0.48) 60%, rgba(2,8,16,0.86) 100%),
    radial-gradient(ellipse at top right, rgba(212,160,23,0.24), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(124,58,237,0.22), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero-cinema h1, .hero-cinema .lede, .hero-cinema p { color: #ffffff; }
.hero-cinema h1 em { color: var(--gold-light); text-shadow: 0 0 28px var(--gold-glow); }
.hero-cinema .lede { color: rgba(240,245,255,0.86); }
.hero-cinema .eyebrow { color: var(--gold-light); text-shadow: 0 0 14px var(--gold-glow); }
.hero-cinema .eyebrow::before { background: var(--gold-light); box-shadow: 0 0 10px var(--gold-glow); }
.hero-cinema .btn-ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.24); color: #fff; }
.hero-cinema .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: var(--gold-light); color: var(--gold-light); }
.hero-cinema .badge { color: rgba(240,245,255,0.9); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }
.hero-cinema .badge-gold, .hero-cinema .badge-unique { color: var(--gold-light); background: rgba(212,160,23,0.14); border-color: rgba(212,160,23,0.55); }
.hero-cinema .badge-violet, .hero-cinema .badge-rare { color: var(--mist); background: rgba(96,165,250,0.14); border-color: rgba(96,165,250,0.55); }
.hero-cinema .badge-few { color: var(--pearl); background: rgba(37,99,235,0.18); border-color: rgba(96,165,250,0.55); }

@media (max-width: 768px) {
  .wrap, .wrap-narrow, .wrap-wide { padding: 0 24px; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  border: 0;
  transition: transform .22s, box-shadow .22s, background .22s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--steel) 0%, var(--sapphire) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(29,78,216,0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(124,58,237,0.42); background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire) 100%); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-light) 100%);
  color: var(--deep);
  box-shadow: 0 8px 24px rgba(212,160,23,0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(240,192,64,0.42); }

.btn-ghost {
  background: rgba(240,245,255,0.6);
  color: var(--steel);
  border: 1.5px solid rgba(29,78,216,0.22);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(240,245,255,0.9); border-color: var(--sapphire); color: var(--sapphire); }

.acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* CARDS — glass style from blog */
.card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(5,14,50,0.20), 0 0 40px rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.45); }
.card h3 { margin-top: 0; margin-bottom: 12px; }
.card:hover h3 { color: var(--sapphire); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* BADGES — pill style from blog filter chip */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(235,240,255,0.6);
  border: 1.5px solid rgba(29,78,216,0.18);
  color: var(--text-mid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge-gold { background: linear-gradient(135deg, rgba(212,160,23,0.14), rgba(124,58,237,0.10)); border-color: rgba(212,160,23,0.55); color: var(--gold); box-shadow: 0 0 18px rgba(212,160,23,0.14); }
.badge-violet { background: rgba(124,58,237,0.10); border-color: rgba(124,58,237,0.35); color: var(--sapphire); }
.badge-teal { background: rgba(13,148,136,0.10); border-color: rgba(45,212,191,0.42); color: var(--teal); }
.badge-unique { background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(240,192,64,0.14)); border-color: rgba(212,160,23,0.55); color: var(--gold); box-shadow: 0 0 18px rgba(212,160,23,0.20); }
.badge-rare { background: rgba(124,58,237,0.10); border-color: rgba(124,58,237,0.40); color: var(--sapphire); }
.badge-few { background: rgba(37,99,235,0.10); border-color: rgba(37,99,235,0.35); color: var(--sapphire); }

#nav-slot { position: fixed; top: 0; left: 0; right: 0; z-index: 500; display: block; }
/*body { padding-top: 66px; }*/

/* NAV — blog-style sticky glass */
.nav {
  position: relative; z-index: 500;
  width: 100%;
  padding: 12px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(235,240,255,0.92);
  backdrop-filter: blur(32px) saturate(2.0);
  -webkit-backdrop-filter: blur(32px) saturate(2.0);
  border-bottom: 1px solid rgba(180,200,255,0.55);
  box-shadow: 0 4px 40px rgba(5,14,50,0.10);
  gap: 30px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 34px; height: 34px; object-fit: contain; border-radius: 6px; }
.nav-logo-txt { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; letter-spacing: .16em; color: var(--steel); text-transform: uppercase; }
.nav-logo-sub { font-size: 8.5px; letter-spacing: .18em; color: var(--text-muted); text-transform: uppercase; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0 auto 0 8px; }
.nav-links li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  transition: color .16s, background .16s;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--sapphire); background: rgba(124,58,237,0.06); }

.nav-links .caret { font-size: 9px; opacity: .6; transition: transform .18s; }
.nav-links li:hover .caret { transform: rotate(180deg); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--steel), var(--sapphire));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(29,78,216,0.28);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(124,58,237,0.36); background: linear-gradient(135deg, var(--sapphire), var(--sapphire)); }

.nav-mode-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(212,160,23,0.10);
  border: 1.5px solid rgba(212,160,23,0.42);
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s;
}
.nav-mode-chip:hover { background: rgba(212,160,23,0.20); }

.nav-hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--steel); border-radius: 2px; }

/* MEGA-MENU */
.megamenu {
  position: fixed;
  top: 62px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 82px);
  overflow-y: auto;
  background: rgba(245,248,255,0.98);
  backdrop-filter: blur(28px) saturate(2.0);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
  padding: 26px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s, transform .26s, visibility .26s;
  transition-delay: 0s, 0s, .4s;
  z-index: 510;
}
.megamenu::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -28px;
  height: 32px;
  background: transparent;
  pointer-events: auto;
}
.nav-links li:hover .megamenu,
.nav-links li:focus-within .megamenu,
.nav-links li.mm-hold .megamenu,
.megamenu:hover { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition-delay: 0s; }

.mm-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(180,200,255,0.55); gap: 30px; }
.mm-head h4 { margin: 0 0 4px; font-size: 22px; font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--steel); }
.mm-head h4 em { font-style: italic; color: var(--sapphire); }
.mm-head p { margin: 0; font-size: 12.5px; color: var(--text-muted); font-weight: 400; }
.mm-head a { display: inline-flex; align-items: center; gap: 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: var(--steel); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 8px 16px; border-radius: 20px; background: rgba(29,78,216,0.08); transition: background .18s; }
.mm-head a:hover { background: rgba(124,58,237,0.15); color: var(--sapphire); }

.mm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.mm-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .16s, border-color .16s, transform .16s;
  color: var(--text-dark);
}
.mm-card:hover { background: rgba(240,245,255,0.9); border-color: var(--glass-border); transform: translateY(-1px); }

.mm-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(29,78,216,0.10), rgba(124,58,237,0.10));
  border: 1px solid rgba(29,78,216,0.16);
  display: grid; place-items: center;
  color: var(--steel);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .04em;
}
.mm-card.unique .mm-ico { background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(240,192,64,0.14)); border-color: rgba(212,160,23,0.42); color: var(--gold); }
.mm-card.rare .mm-ico { background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(37,99,235,0.12)); border-color: rgba(124,58,237,0.35); color: var(--sapphire); }

.mm-body { min-width: 0; }
.mm-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 15px; color: var(--steel); line-height: 1.2; }
.mm-card:hover .mm-name { color: var(--sapphire); }
.mm-desc { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.mm-tag { font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 4px; }
.mm-card.unique .mm-tag { color: var(--gold); }
.mm-card.rare .mm-tag { color: var(--sapphire); }
.mm-card.few .mm-tag { color: var(--sapphire); }

.mm-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(180,200,255,0.55); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); }
.mm-foot strong { color: var(--steel); font-weight: 700; }
.mm-foot a { font-weight: 600; color: var(--sapphire); text-decoration: none; letter-spacing: .12em; text-transform: uppercase; font-size: 10px; }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  max-width: min(340px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(2,8,16,0.28), 0 6px 18px rgba(2,8,16,0.14);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s, transform .18s, visibility .18s;
  z-index: 505;
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-links li:nth-last-child(-n+3) .dropdown { left: auto; right: 0; }

.dropdown a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--steel);
  transition: background .14s, color .14s, text-shadow .14s;
}
.dropdown a:hover { background: rgba(37,99,235,0.10); color: var(--sapphire); text-shadow: 0 0 12px rgba(96,165,250,0.5); }
.dropdown a small { display: block; font-size: 11px; color: var(--text-mid); font-weight: 400; margin-top: 3px; letter-spacing: .02em; text-transform: none; opacity: 0.78; }

/* MOBILE NAV */
@media (max-width: 1100px) {
  .nav-links, .nav-cta, .nav-mode-chip { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 12px 24px; }
}

.mnav {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, #e8eeff 0%, #c8d2f4 100%);
  z-index: 600;
  padding: 80px 30px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.mnav.open { transform: translateX(0); }
.mnav-close { position: absolute; top: 20px; right: 22px; width: 44px; height: 44px; background: transparent; border: 0; font-size: 24px; color: var(--steel); cursor: pointer; }
.mnav h4 { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin: 22px 0 10px; font-weight: 600; }
.mnav a { display: block; padding: 12px 8px; font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; color: var(--steel); border-bottom: 1px solid rgba(180,200,255,0.4); }

/* FOOTER */
.foot {
  background: linear-gradient(180deg, var(--deep) 0%, var(--navy) 100%);
  color: #a0b3d0;
  padding: 70px 0 34px;
  margin-top: 80px;
  position: relative;
}
.foot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,160,23,0.4) 30%, rgba(124,58,237,0.5) 70%, transparent 100%);
}

.foot h5 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 15px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.foot a { color: #7a8ba8; font-size: 12.5px; display: block; padding: 4px 0; transition: color .14s; }
.foot a:hover { color: var(--gold-light); }

.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 50px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand-name { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 24px; letter-spacing: .12em; color: #fff; margin: 0 0 10px; text-transform: uppercase; }
.foot-brand-sub { font-size: 12.5px; color: #7a8ba8; margin: 0 0 18px; line-height: 1.7; }
.foot-lang-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; background: rgba(212,160,23,0.14); border: 1px solid rgba(212,160,23,0.42); color: var(--gold-light); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  color: #536278; font-size: 11.5px;
}
.foot-bottom-links { display: flex; gap: 22px; }
.foot-bottom-links a { display: inline; padding: 0; font-size: 11.5px; }

/* TRUST STRIP */
.trust {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px;
  padding: 28px 40px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2, 1fr); } }

.trust-item { text-align: center; }
.trust-n { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(24px, 2.4vw, 34px); color: var(--steel); line-height: 1; }
.trust-n em { font-style: italic; color: var(--gold-rich); text-shadow: 0 0 18px var(--gold-glow-soft); }
.trust-l { font-size: 10px; color: var(--text-muted); margin-top: 8px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }

/* CTA STRIP */
.ctastrip {
  padding: 60px 50px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at top left, rgba(124,58,237,0.42), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(212,160,23,0.34), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.ctastrip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(2,8,16,0.28) 100%);
  pointer-events: none;
}
.ctastrip > * { position: relative; z-index: 1; }
.ctastrip h2 { color: #fff; margin-bottom: 12px; }
.ctastrip h2 em { color: var(--gold-light); text-shadow: 0 0 26px var(--gold-glow); }
.ctastrip p { color: rgba(255,255,255,0.78); margin: 0 auto 24px; max-width: 620px; font-size: 14px; }
.ctastrip .acts { justify-content: center; margin-top: 0; }
.ctastrip .eyebrow { color: var(--gold-light); text-shadow: 0 0 14px var(--gold-glow); }
.ctastrip .eyebrow::before { background: var(--gold-light); box-shadow: 0 0 10px var(--gold-glow); }

/* INTEGRATION DIAGRAM */
.integration {
  padding: 40px 40px 44px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.integration::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(45,212,191,0.06), transparent 60%);
  pointer-events: none;
}
.integration > * { position: relative; z-index: 1; }
.integration-hub {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 38px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--steel), var(--sapphire));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(29,78,216,0.34), 0 0 24px rgba(124,58,237,0.30);
  margin: 20px 0 26px;
}
.integration-arms { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.integration-chip {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(235,240,255,0.85);
  border: 1px solid rgba(29,78,216,0.16);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--text-mid);
  transition: border-color .16s, color .16s;
}
.integration-chip:hover { border-color: var(--sapphire); color: var(--sapphire); }

/* HERO SPLIT */
.hero-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 960px) { .hero-split { grid-template-columns: 1fr; gap: 30px; } }
.hero-vis {
  aspect-ratio: 4/3;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(235,240,255,0.85), rgba(220,225,248,0.75));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.hero-vis img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* MODULE INDEX GRID */
.mod-index { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .mod-index { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .mod-index { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .mod-index { grid-template-columns: 1fr; } }

.mod-card {
  padding: 22px 20px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  display: block;
  color: var(--text-dark);
}
.mod-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(5,14,50,0.20), 0 0 32px rgba(124,58,237,0.10); border-color: rgba(124,58,237,0.45); }
.mod-code { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.mod-title { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 19px; color: var(--steel); margin: 6px 0 8px; line-height: 1.2; }
.mod-card:hover .mod-title { color: var(--sapphire); }
.mod-tag { font-size: 12px; color: var(--text-mid); line-height: 1.55; }
.mod-card.unique { background: linear-gradient(180deg, rgba(240,192,64,0.08), var(--glass-white)); border-color: rgba(212,160,23,0.40); }
.mod-card.unique .mod-code { color: var(--gold); }
.mod-card.rare { background: linear-gradient(180deg, rgba(124,58,237,0.06), var(--glass-white)); border-color: rgba(124,58,237,0.30); }
.mod-card.rare .mod-code { color: var(--sapphire); }

/* FEAT LIST */
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--glass-white); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); border-radius: 14px; }
.feat-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-rich), var(--gold-light)); color: var(--deep); display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px; box-shadow: 0 0 12px var(--gold-glow-soft); }
.feat-item p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-mid); }

/* NUM GRID */
.numgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 34px 0; border-top: 1px solid rgba(29,78,216,0.14); border-bottom: 1px solid rgba(29,78,216,0.14); }
@media (max-width: 700px) { .numgrid { grid-template-columns: repeat(2, 1fr); } }
.numgrid-n { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(28px, 2.8vw, 40px); line-height: 1; color: var(--steel); }
.numgrid-n em { font-style: italic; color: var(--gold-rich); text-shadow: 0 0 22px var(--gold-glow-soft); }
.numgrid-l { color: var(--text-muted); font-size: 12px; margin-top: 8px; font-weight: 500; letter-spacing: .04em; }

/* PILL ROW */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }

.stack-gap-md > * + * { margin-top: 14px; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.divider { height: 1px; background: rgba(180,200,255,0.55); margin: 50px 0; border: 0; }

/* ══════════════════════════════════════════════════════════════
   SHARED SHOWCASE PRIMITIVES  (used across all standard pages)
   .vxs-hero   — sliding image hero banner
   .ovc        — image-overlay card, text always fully legible
   .vxs-stat   — animated counter tile (shell.js counts these up)
   ══════════════════════════════════════════════════════════════ */

/* ── SLIDING HERO BANNER ── */
.vxs-hero {
  position: relative;
  /* #nav-slot is position:fixed, so the hero must reserve its own clearance or
     the headline sits underneath it. Bottom padding keeps the slide dots off
     the section edge. */
  min-height: min(92vh, 820px);
  padding: clamp(124px, 15vh, 172px) 0 clamp(64px, 9vh, 100px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #050e1f;
}
.vxs-hero-slides { position: absolute; inset: 0; z-index: 0; }
.vxs-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s linear;
}
.vxs-slide.on { opacity: 1; transform: scale(1.12); }
.vxs-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(2,8,16,0.90) 0%, rgba(2,8,16,0.66) 42%, rgba(2,8,16,0.30) 100%),
    radial-gradient(ellipse at 78% 18%, rgba(212,160,23,0.24), transparent 58%),
    radial-gradient(ellipse at 12% 88%, rgba(124,58,237,0.26), transparent 60%);
  pointer-events: none;
}
.vxs-hero > .wrap, .vxs-hero > .wrap-wide { position: relative; z-index: 2; width: 100%; }
.vxs-hero h1, .vxs-hero p, .vxs-hero .lede { color: #fff; }
.vxs-hero h1 { font-size: clamp(30px, 4.1vw, 54px); margin-bottom: 16px; }
.vxs-hero h1 em { color: var(--gold-light); font-style: italic; text-shadow: 0 0 30px var(--gold-glow); }
.vxs-hero .lede { color: rgba(240,245,255,0.90); max-width: 700px; }
.vxs-hero .eyebrow { color: var(--gold-light); text-shadow: 0 0 14px var(--gold-glow); }
.vxs-hero .eyebrow::before { background: var(--gold-light); box-shadow: 0 0 10px var(--gold-glow); }

.vxs-hero-dots { display: flex; gap: 8px; margin-top: 30px; }
.vxs-hero-dot {
  width: 30px; height: 3px; border-radius: 3px; border: 0; padding: 0;
  background: rgba(255,255,255,0.28); cursor: pointer; transition: background .3s;
}
.vxs-hero-dot.on { background: var(--gold-light); box-shadow: 0 0 12px var(--gold-glow); }

/* ── IMAGE-OVERLAY CARD ── */
/* Fixed 3-up rather than auto-fill: with auto-fill a wide card leaves ragged
   holes at the end of the grid. A 3-column track plus full-width feature rows
   always tiles completely, at every breakpoint. */
.ovc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
}
@media (max-width: 1100px) { .ovc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .ovc-grid { grid-template-columns: 1fr; } }
.ovc {
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  text-decoration: none;
  border: 1px solid rgba(180,200,255,0.30);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  isolation: isolate;
}
.ovc-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
/* Strong bottom-weighted scrim: copy stays fully legible on ANY photo */
.ovc::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(2,8,16,0.18) 0%,
    rgba(2,8,16,0.52) 42%,
    rgba(2,8,16,0.86) 78%,
    rgba(2,8,16,0.94) 100%);
  transition: opacity .3s;
}
.ovc:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: rgba(212,160,23,0.55); }
.ovc:hover .ovc-bg { transform: scale(1.07); }

.ovc-code {
  font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-light);
  text-shadow: 0 0 14px var(--gold-glow); margin-bottom: 8px;
}
.ovc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 500; color: #fff; line-height: 1.16;
  margin-bottom: 8px; text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.ovc-desc {
  font-size: 13px; line-height: 1.62; color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5); margin: 0;
}
.ovc-more {
  margin-top: 14px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-light); display: inline-flex; align-items: center; gap: 6px;
}
.ovc-more::after { content: '→'; transition: transform .25s; }
.ovc:hover .ovc-more::after { transform: translateX(5px); }
.ovc-chip {
  position: absolute; top: 18px; right: 18px; z-index: 1;
  font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  padding: 5px 11px; border-radius: 20px;
  background: rgba(2,8,16,0.62); border: 1px solid rgba(212,160,23,0.55);
  color: var(--gold-light); backdrop-filter: blur(8px);
}
/* Feature cards take the full row so no cell is ever left empty. */
.ovc.wide { grid-column: 1 / -1; min-height: 340px; }
.ovc.wide .ovc-name { font-size: 30px; }
.ovc.wide .ovc-desc { max-width: 760px; }

/* ── ANIMATED COUNTER TILE ── */
.vxs-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px;
  padding: 32px 38px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.vxs-stat { text-align: center; }
.vxs-stat-n {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(30px, 3.1vw, 44px); line-height: 1;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vxs-stat-l {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 9px; font-weight: 600;
}
