/* Sharkheji — premium ocean-ink theme (unique layout & motion) */
:root {
  --sh-ink: #05080f;
  --sh-ink-2: #0a1220;
  --sh-panel: rgba(14, 28, 48, 0.72);
  --sh-panel-solid: #0e1c30;
  --sh-line: rgba(125, 211, 252, 0.14);
  --sh-text: #e8f4ff;
  --sh-muted: #8aa0b8;
  --sh-cyan: #22d3ee;
  --sh-cyan-deep: #0891b2;
  --sh-amber: #f5b942;
  --sh-sun: #ffcc33;
  --sh-teal: #2dd4bf;
  --sh-glow: 0 0 60px rgba(34, 211, 238, 0.22);
  --sh-radius: 22px;
  --sh-radius-sm: 14px;
  --sh-font: 'Manrope', system-ui, sans-serif;
  --sh-display: 'Sora', system-ui, sans-serif;
  --sh-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --sh-max: 1180px;
  --nav-h: 76px;
  --sh-promo-h: 0px;
}

body.theme-sharkheji {
  --bg: var(--sh-ink);
  --bg-elevated: var(--sh-ink-2);
  --surface: var(--sh-panel-solid);
  --surface-2: #132337;
  --border: var(--sh-line);
  --text: var(--sh-text);
  --text-muted: var(--sh-muted);
  --saffron: var(--sh-cyan);
  --saffron-bright: #67e8f9;
  --saffron-deep: var(--sh-cyan-deep);
  --gold: var(--sh-amber);
  --gradient-btn: linear-gradient(120deg, #0891b2 0%, #22d3ee 45%, #f5b942 100%);
  --gradient-text: linear-gradient(120deg, #67e8f9, #2dd4bf 40%, #f5b942);
  font-family: var(--sh-font);
  background: var(--sh-ink);
  color: var(--sh-text);
  overflow-x: hidden;
}

body.theme-sharkheji::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(8, 145, 178, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(245, 185, 66, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(45, 212, 191, 0.08), transparent 55%),
    linear-gradient(180deg, #05080f 0%, #070d18 100%);
}

body.theme-sharkheji .container-wide,
body.theme-sharkheji .container-narrow {
  max-width: var(--sh-max);
  margin-inline: auto;
  padding-inline: var(--sh-gutter);
}

/* —— Mesh canvas —— */
.sh-mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(from 120deg at 30% 40%, rgba(34, 211, 238, 0.18), transparent 40%),
    conic-gradient(from 280deg at 70% 30%, rgba(245, 185, 66, 0.12), transparent 45%);
  filter: blur(40px);
  animation: shMeshDrift 18s ease-in-out infinite alternate;
}

@keyframes shMeshDrift {
  from { transform: translate3d(-2%, 0, 0) scale(1); }
  to { transform: translate3d(3%, 4%, 0) scale(1.08); }
}

.sh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: shOrbFloat 9s ease-in-out infinite;
}
.sh-orb--1 { width: 180px; height: 180px; top: 12%; right: 8%; background: radial-gradient(circle, rgba(34,211,238,.45), transparent 70%); }
.sh-orb--2 { width: 120px; height: 120px; bottom: 18%; left: 6%; background: radial-gradient(circle, rgba(245,185,66,.35), transparent 70%); animation-delay: -3s; }
.sh-orb--3 { width: 90px; height: 90px; top: 48%; left: 42%; background: radial-gradient(circle, rgba(45,212,191,.3), transparent 70%); animation-delay: -5s; }

@keyframes shOrbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

/* —— Promo / Nav (fixed menu) —— */
body.theme-sharkheji.has-promo {
  --sh-promo-h: 36px;
}

body.theme-sharkheji .at-promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--sh-promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #0c1929, #0e7490 55%, #b45309);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--sh-font);
  letter-spacing: 0.02em;
  padding: 0 16px;
}
body.theme-sharkheji .at-promo-bar span {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
  font-size: 0.8rem;
  font-weight: 600;
}

body.theme-sharkheji .site-nav {
  top: var(--sh-promo-h) !important;
  height: var(--nav-h);
  background: rgba(5, 8, 15, 0.82);
  backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--sh-line);
  box-shadow: none;
  transition: background .3s ease, border-color .3s ease;
}
body.theme-sharkheji .site-nav.scrolled {
  background: rgba(5, 8, 15, 0.96);
  border-bottom-color: rgba(34, 211, 238, 0.28);
}

body.theme-sharkheji .nav-inner {
  gap: 12px;
  min-height: var(--nav-h);
}

body.theme-sharkheji .site-logo img {
  height: 44px;
  max-width: 200px;
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.25));
}

body.theme-sharkheji .nav-links {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.theme-sharkheji .nav-links > li {
  position: relative;
  list-style: none;
}

body.theme-sharkheji .nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 8px 12px;
  color: #d7e8f7 !important;
  font-family: var(--sh-font);
  font-weight: 650;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
}

body.theme-sharkheji .nav-links > li > a:hover,
body.theme-sharkheji .nav-links > li > a:focus,
body.theme-sharkheji .nav-links > li.show > a {
  color: #fff !important;
  background: rgba(34, 211, 238, 0.14);
}

/* Bootstrap shop dropdown — dark readable */
body.theme-sharkheji .nav-links .dropdown-menu {
  display: none;
  margin-top: 8px !important;
  padding: 8px;
  min-width: 220px;
  background: #0b1524 !important;
  border: 1px solid rgba(34, 211, 238, 0.28) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  z-index: 1100;
}
body.theme-sharkheji .nav-links .dropdown-menu.show {
  display: block !important;
}
body.theme-sharkheji .nav-links .dropdown-item {
  color: #d7e8f7 !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 12px;
}
body.theme-sharkheji .nav-links .dropdown-item:hover,
body.theme-sharkheji .nav-links .dropdown-item:focus {
  background: rgba(34, 211, 238, 0.16) !important;
  color: #fff !important;
}
body.theme-sharkheji .nav-links .dropdown-divider {
  border-color: rgba(125, 211, 252, 0.15);
}

body.theme-sharkheji .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sh-line);
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.08);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

body.theme-sharkheji .mobile-drawer {
  position: fixed;
  top: calc(var(--sh-promo-h) + var(--nav-h));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  overflow-y: auto;
  background: rgba(5, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
body.theme-sharkheji .mobile-drawer[hidden] {
  display: none !important;
}
body.theme-sharkheji .mobile-drawer.open {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}
body.theme-sharkheji .mobile-drawer a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--sh-line);
  background: rgba(14, 28, 48, 0.85);
  color: #e8f4ff !important;
  font-family: var(--sh-font);
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
}
body.theme-sharkheji .mobile-drawer a:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(8, 145, 178, 0.2);
}
body.theme-sharkheji .mobile-drawer .drawer-label {
  margin: 10px 4px 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-amber);
}
body.theme-sharkheji body.nav-open,
body.theme-sharkheji.nav-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  body.theme-sharkheji .nav-links {
    display: none !important;
  }
  body.theme-sharkheji .nav-toggle {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  body.theme-sharkheji .mobile-drawer,
  body.theme-sharkheji .mobile-drawer.open {
    display: none !important;
  }
}

body.theme-sharkheji .btn-primary,
body.theme-sharkheji .btn-accent {
  background: var(--gradient-btn);
  border: none;
  color: #041018;
  font-weight: 700;
  font-family: var(--sh-font);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
body.theme-sharkheji .btn-primary:hover,
body.theme-sharkheji .btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.4);
  color: #041018;
}
body.theme-sharkheji .btn-outline-light {
  border: 1px solid rgba(232, 244, 255, 0.35);
  color: var(--sh-text);
  border-radius: 999px;
  background: transparent;
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .25s;
}
body.theme-sharkheji .btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--sh-cyan);
  color: #fff;
  transform: translateY(-2px);
}

/* —— Reveal motion —— */
body.theme-sharkheji .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
body.theme-sharkheji .reveal.visible {
  opacity: 1;
  transform: none;
}
body.theme-sharkheji .reveal-delay-1 { transition-delay: .1s; }
body.theme-sharkheji .reveal-delay-2 { transition-delay: .2s; }
body.theme-sharkheji .reveal-delay-3 { transition-delay: .3s; }

/* —— HERO + सूर मंडल —— */
.sh-hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: center;
  padding: calc(var(--sh-promo-h) + var(--nav-h) + 2.5rem) 0 3.5rem;
  isolation: isolate;
  overflow: hidden;
}
.sh-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
}
@media (min-width: 992px) {
  .sh-hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.sh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 185, 66, 0.4);
  background: rgba(245, 185, 66, 0.1);
  color: var(--sh-amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: shPulseSoft 2.8s ease-in-out infinite;
}
@keyframes shPulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,185,66,.35); }
  50% { box-shadow: 0 0 0 10px rgba(245,185,66,0); }
}

.sh-hero h1 {
  font-family: var(--sh-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}
.sh-hero h1 .sh-grad {
  background: linear-gradient(120deg, #ffe566 0%, #f5b942 35%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}
.sh-hero-lead {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--sh-muted);
  max-width: 38ch;
  margin: 0 0 1.75rem;
  line-height: 1.65;
  font-weight: 500;
}
.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.sh-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sh-line);
}
.sh-hero-meta strong {
  display: block;
  font-family: var(--sh-display);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
}
.sh-hero-meta span {
  font-size: 0.78rem;
  color: var(--sh-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Animated Surya Mandal */
.sh-mandala-wrap {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.sh-mandala {
  position: relative;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.sh-mandala-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 51, 0.45) 0%, rgba(245, 185, 66, 0.15) 35%, transparent 70%);
  filter: blur(8px);
  animation: shSunPulse 3.2s ease-in-out infinite;
}
@keyframes shSunPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.sh-mandala-rays {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 204, 51, 0.55) 0deg 3deg,
    transparent 3deg 15deg
  );
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 46%, #000 58%, transparent 62%);
  mask-image: radial-gradient(circle, transparent 42%, #000 46%, #000 58%, transparent 62%);
  animation: shSpin 28s linear infinite;
}
.sh-mandala-rays--slow {
  inset: -10%;
  opacity: 0.35;
  background: repeating-conic-gradient(
    from 8deg,
    rgba(34, 211, 238, 0.4) 0deg 2deg,
    transparent 2deg 18deg
  );
  -webkit-mask-image: radial-gradient(circle, transparent 48%, #000 52%, #000 68%, transparent 72%);
  mask-image: radial-gradient(circle, transparent 48%, #000 52%, #000 68%, transparent 72%);
  animation: shSpinRev 40s linear infinite;
}

.sh-mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 204, 51, 0.28);
  pointer-events: none;
}
.sh-mandala-ring.a {
  inset: 6%;
  border-style: dashed;
  animation: shSpin 22s linear infinite;
}
.sh-mandala-ring.b {
  inset: 16%;
  border-color: rgba(34, 211, 238, 0.35);
  animation: shSpinRev 16s linear infinite;
}
.sh-mandala-ring.c {
  inset: 26%;
  border: 2px solid rgba(245, 185, 66, 0.4);
  box-shadow: 0 0 24px rgba(245, 185, 66, 0.2), inset 0 0 24px rgba(245, 185, 66, 0.08);
}
.sh-mandala-ring.d {
  inset: 34%;
  border-style: dotted;
  border-color: rgba(255, 255, 255, 0.25);
  animation: shSpin 12s linear infinite;
}

.sh-mandala-core {
  position: relative;
  z-index: 2;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff6c8 0%, #ffcc33 28%, #f59e0b 62%, #b45309 100%);
  box-shadow:
    0 0 40px rgba(255, 204, 51, 0.7),
    0 0 80px rgba(245, 158, 11, 0.35),
    inset 0 -8px 16px rgba(180, 83, 9, 0.35);
  animation: shSunPulse 3.2s ease-in-out infinite;
}

.sh-orbit {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  animation: shSpin 18s linear infinite;
}
.sh-orbit span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #67e8f9, #0891b2);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.8);
}
.sh-orbit--2 {
  inset: 10%;
  animation-duration: 11s;
  animation-direction: reverse;
}
.sh-orbit--2 span {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  left: auto;
  right: 0;
  background: radial-gradient(circle at 30% 30%, #fde68a, #d97706);
  box-shadow: 0 0 14px rgba(245, 185, 66, 0.8);
}

@keyframes shSpin { to { transform: rotate(360deg); } }
@keyframes shSpinRev { to { transform: rotate(-360deg); } }

/* —— Marquee —— */
.sh-marquee {
  border-block: 1px solid var(--sh-line);
  background: rgba(10, 18, 32, 0.8);
  overflow: hidden;
  padding: 0.9rem 0;
}
.sh-marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: shMarquee 32s linear infinite;
}
.sh-marquee-track span {
  font-family: var(--sh-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-muted);
  white-space: nowrap;
}
.sh-marquee-track span em {
  font-style: normal;
  color: var(--sh-cyan);
}
@keyframes shMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Sections —— */
.sh-section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}
.sh-section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.sh-section-head .label {
  display: inline-block;
  color: var(--sh-amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.sh-section-head h2 {
  font-family: var(--sh-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.sh-section-head p {
  color: var(--sh-muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Pathway grid (not cards-as-dashboard) */
.sh-pathways {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .sh-pathways {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sh-pathway {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.5rem;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-line);
  background: linear-gradient(165deg, rgba(14,28,48,.7), rgba(5,8,15,.5));
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s;
}
.sh-pathway::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.2), transparent 70%);
  transition: transform .5s ease;
}
.sh-pathway:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), var(--sh-glow);
  color: inherit;
}
.sh-pathway:hover::after { transform: scale(1.4) translate(-10%, -10%); }
.sh-pathway i {
  font-size: 1.6rem;
  color: var(--sh-cyan);
  margin-bottom: 1.25rem;
}
.sh-pathway strong {
  font-family: var(--sh-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.sh-pathway small {
  color: var(--sh-muted);
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
}

/* Story band */
.sh-story {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .sh-story {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.sh-story-visual {
  position: relative;
  border-radius: calc(var(--sh-radius) + 4px);
  aspect-ratio: 4/3;
  background:
    linear-gradient(145deg, rgba(8,145,178,.35), rgba(5,8,15,.2)),
    radial-gradient(circle at 70% 30%, rgba(245,185,66,.35), transparent 45%);
  border: 1px solid var(--sh-line);
  overflow: hidden;
}
.sh-story-visual .ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(34,211,238,.35);
  animation: shSpin 28s linear infinite;
}
.sh-story-visual .ring-2 {
  inset: 22%;
  animation-direction: reverse;
  animation-duration: 18s;
  border-style: solid;
  border-color: rgba(245,185,66,.25);
}
@keyframes shSpin { to { transform: rotate(360deg); } }
.sh-story-visual .core {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, #22d3ee, #0891b2 55%, #0c1929);
  box-shadow: 0 0 60px rgba(34,211,238,.5);
  display: grid;
  place-items: center;
  font-family: var(--sh-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #041018;
}
.sh-story-copy h2 {
  font-family: var(--sh-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.sh-story-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.sh-story-list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--sh-line);
  color: var(--sh-muted);
}
.sh-story-list li i {
  color: var(--sh-amber);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.sh-story-list li strong {
  display: block;
  color: #fff;
  margin-bottom: 0.15rem;
}

/* Expert runway (horizontal scroll) */
.sh-runway-wrap { overflow: hidden; margin-inline: calc(var(--sh-gutter) * -1); }
.sh-runway {
  display: flex;
  gap: 1rem;
  padding-inline: var(--sh-gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.sh-runway::-webkit-scrollbar { display: none; }
.sh-expert {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  padding: 1.35rem;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-line);
  background: rgba(14, 28, 48, 0.65);
  text-decoration: none;
  color: inherit;
  transition: border-color .3s, transform .3s;
}
.sh-expert:hover {
  border-color: rgba(245, 185, 66, 0.45);
  transform: translateY(-4px);
  color: inherit;
}
.sh-expert-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.sh-expert-av {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(34,211,238,.25), rgba(245,185,66,.2));
  border: 1px solid var(--sh-line);
  position: relative;
}
.sh-expert-av .dot {
  position: absolute;
  right: -2px; bottom: -2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--sh-teal);
  border: 2px solid var(--sh-ink);
}
.sh-expert h3 {
  font-family: var(--sh-display);
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}
.sh-expert .skills {
  font-size: 0.82rem;
  color: var(--sh-muted);
  margin: 0;
}
.sh-expert-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--sh-line);
  font-size: 0.88rem;
}
.sh-expert-foot .price { color: var(--sh-amber); font-weight: 700; }

/* Zodiac constellation */
.sh-zodiac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
@media (min-width: 576px) {
  .sh-zodiac-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .sh-zodiac-grid { grid-template-columns: repeat(6, 1fr); }
}
.sh-zodi {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--sh-radius-sm);
  border: 1px solid var(--sh-line);
  background: rgba(14,28,48,.5);
  text-decoration: none;
  color: var(--sh-text);
  transition: transform .3s, border-color .3s, background .3s;
}
.sh-zodi:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--sh-cyan);
  background: rgba(8,145,178,.15);
  color: #fff;
}
.sh-zodi .sym { font-size: 1.5rem; line-height: 1; }
.sh-zodi .nm { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sh-muted); }
.sh-zodi:hover .nm { color: var(--sh-cyan); }

/* Products override for dark theme */
body.theme-sharkheji .product-card {
  background: rgba(14, 28, 48, 0.6);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
body.theme-sharkheji .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,211,238,.4);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}
body.theme-sharkheji .product-body h3 { color: #fff; }
body.theme-sharkheji .product-price { color: var(--sh-amber); }
body.theme-sharkheji .product-badge {
  background: linear-gradient(120deg, #0891b2, #f5b942);
  color: #041018;
}

/* Testimonials */
.sh-quotes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .sh-quotes { grid-template-columns: repeat(3, 1fr); }
}
.sh-quote {
  padding: 1.5rem;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-line);
  background: linear-gradient(180deg, rgba(14,28,48,.75), rgba(5,8,15,.4));
}
.sh-quote .stars { color: var(--sh-amber); letter-spacing: 2px; margin-bottom: 0.85rem; font-size: 0.85rem; }
.sh-quote p { color: #c5d5e8; margin: 0 0 1.25rem; font-size: 0.98rem; line-height: 1.6; }
.sh-quote footer {
  font-size: 0.85rem;
  color: var(--sh-muted);
}
.sh-quote footer strong { color: #fff; display: block; }

/* CTA finale */
.sh-finale {
  position: relative;
  margin: 2rem var(--sh-gutter) 4rem;
  max-width: calc(var(--sh-max) + 2 * var(--sh-gutter));
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: calc(var(--sh-radius) + 8px);
  border: 1px solid rgba(34,211,238,.3);
  background:
    linear-gradient(125deg, rgba(8,145,178,.35), rgba(5,8,15,.9) 45%, rgba(180,83,9,.25)),
    var(--sh-ink-2);
  overflow: hidden;
  text-align: center;
}
.sh-finale::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(34,211,238,.15), transparent 30%);
  animation: shSpin 14s linear infinite;
}
.sh-finale > * { position: relative; z-index: 1; }
.sh-finale h2 {
  font-family: var(--sh-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.sh-finale p {
  color: var(--sh-muted);
  max-width: 36ch;
  margin: 0 auto 1.5rem;
}

/* Page chrome for inner pages */
body.theme-sharkheji .page-hero {
  background: transparent;
  border-bottom: 1px solid var(--sh-line);
  padding-top: 2.5rem;
}
body.theme-sharkheji .page-hero h1 {
  font-family: var(--sh-display);
  font-weight: 800;
}
body.theme-sharkheji .card-panel {
  background: rgba(14, 28, 48, 0.7);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  color: var(--sh-text);
}
body.theme-sharkheji .site-footer {
  background: #03060c;
  border-top: 1px solid var(--sh-line);
  color: var(--sh-muted);
}
body.theme-sharkheji .site-footer a { color: #c5d5e8; }
body.theme-sharkheji .site-footer a:hover { color: var(--sh-cyan); }
body.theme-sharkheji .at-bottom-nav {
  background: rgba(5, 8, 15, 0.94);
  border-top: 1px solid var(--sh-line);
  backdrop-filter: blur(16px);
}
body.theme-sharkheji .at-bottom-nav a.active,
body.theme-sharkheji .at-bottom-nav .chat-fab {
  color: var(--sh-cyan);
}

/* Form controls */
body.theme-sharkheji .form-control,
body.theme-sharkheji .form-select {
  background: rgba(5, 8, 15, 0.6);
  border-color: var(--sh-line);
  color: var(--sh-text);
}
body.theme-sharkheji .form-control:focus,
body.theme-sharkheji .form-select:focus {
  background: rgba(5, 8, 15, 0.85);
  border-color: var(--sh-cyan);
  box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.15);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .sh-mesh, .sh-orb, .sh-marquee-track,
  .sh-mandala-rays, .sh-mandala-rays--slow, .sh-mandala-ring,
  .sh-orbit, .sh-mandala-glow, .sh-mandala-core, .sh-finale::before,
  .sh-kicker, .sh-story-visual .ring {
    animation: none !important;
  }
  body.theme-sharkheji .reveal {
    opacity: 1;
    transform: none;
  }
}
