/*
Theme Name: Sanctum Landing
Description: Dark front page for sanctum-chamber.net — Cosmos violet & rose accents.
Version: 3.3.7
Author: Sanctum
*/

:root {
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Newsreader", Georgia, serif;
  --font-ui: "DM Sans", system-ui, -apple-system, sans-serif;
  --bg-deep: #0c0b0f;
  --bg-mid: #121016;
  --text: #eceaf0;
  --text-muted: #9c96a8;
  --text-dim: #6e6878;
  --surface: rgba(22, 20, 28, 0.72);
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-glow: rgba(124, 58, 237, 0.06);
  --shadow: rgba(0, 0, 0, 0.45);
  --cosmos-primary: #7c3aed;
  --cosmos-secondary: #db2777;
  --cosmos-primary-soft: rgba(124, 58, 237, 0.35);
  --cosmos-secondary-soft: rgba(219, 39, 119, 0.3);
  --focus-ring: rgba(167, 139, 250, 0.5);
  --link: #c4b5fd;
  --link-hover: #ddd6fe;
  --sl-display: "Outfit", system-ui, sans-serif;
}

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

html {
  font-size: clamp(15px, 2.5vw, 18px);
  scroll-behavior: smooth;
}

body.sanctum-landing-page {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-optical-sizing: auto;
  color: var(--text);
  --surface: rgba(24, 18, 38, 0.82);
  --surface-border: rgba(139, 92, 246, 0.32);
  background:
    radial-gradient(ellipse 100% 60% at 50% -8%, rgba(124, 58, 237, 0.38), transparent 55%),
    radial-gradient(ellipse 75% 50% at 100% 18%, rgba(219, 39, 119, 0.12), transparent 52%),
    radial-gradient(ellipse 60% 48% at 0% 42%, rgba(91, 33, 182, 0.18), transparent 54%),
    radial-gradient(ellipse 70% 50% at 50% 112%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 92% 72%, rgba(219, 39, 119, 0.1), transparent 50%),
    linear-gradient(180deg, #1a1028 0%, #15101c 28%, var(--bg-mid) 52%, #08060e 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 120;
  padding: 0.5rem 0.9rem;
  background: var(--cosmos-primary);
  color: #fafafa;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.landing-ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.landing-ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}

.landing-ambient__orb--a {
  width: min(52vw, 28rem);
  height: min(52vw, 28rem);
  top: -8%;
  left: -12%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55) 0%, transparent 68%);
  animation: sanctum-orb-a 22s ease-in-out infinite alternate;
}

.landing-ambient__orb--b {
  width: min(42vw, 22rem);
  height: min(42vw, 22rem);
  top: 28%;
  right: -10%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.32) 0%, transparent 70%);
  animation: sanctum-orb-b 18s ease-in-out infinite alternate;
}

.landing-ambient__orb--c {
  width: min(60vw, 32rem);
  height: min(48vw, 26rem);
  bottom: -15%;
  left: 20%;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.4) 0%, rgba(167, 139, 250, 0.2) 45%, transparent 72%);
  animation: sanctum-orb-c 26s ease-in-out infinite alternate;
}

@keyframes sanctum-orb-a {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(6%, 4%) scale(1.08);
  }
}

@keyframes sanctum-orb-b {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-5%, 8%) scale(1.12);
  }
}

@keyframes sanctum-orb-c {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-4%, -5%) scale(1.06);
  }
}

.sc-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* —— Header + nav —— */
.sc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: var(--font-ui);
  background: rgba(10, 9, 12, 0.52);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--surface-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

body.sanctum-landing-page .sc-header {
  background: rgba(18, 12, 32, 0.58);
  border-bottom-color: rgba(139, 92, 246, 0.32);
  box-shadow:
    0 1px 0 rgba(196, 181, 253, 0.06) inset,
    0 8px 32px rgba(124, 58, 237, 0.08);
}

body.sanctum-landing-page .sc-header__logo-muted {
  color: #c4b5fd;
}

.sc-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sc-header__brand {
  flex-shrink: 0;
}

.sc-header__logo {
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.sc-header__logo:hover {
  opacity: 0.9;
}

.sc-header__logo:focus-visible {
  outline: 2px solid var(--cosmos-primary);
  outline-offset: 4px;
}

body.sanctum-landing-page .sc-header__logo-text,
.sanctum-interior .sc-header__logo-text {
  font-family: var(--font-display);
}

.sc-header__logo-text {
  font-weight: 600;
  font-size: clamp(1.125rem, 2.8vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.sc-header__logo-muted {
  color: var(--text-muted);
  font-weight: 500;
  font-style: normal;
}

.sc-header__tools {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sc-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.sc-menu-toggle:hover {
  border-color: var(--cosmos-primary-soft);
  background: rgba(124, 58, 237, 0.12);
}

.sc-menu-toggle:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.sc-menu-toggle__bars {
  position: relative;
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow:
    0 -5px 0 currentColor,
    0 5px 0 currentColor;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.sc-menu-toggle__bars::before,
.sc-menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  top: 50%;
  margin-top: -1px;
  opacity: 0;
  transform: rotate(0deg);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.sc-menu-toggle[aria-expanded="true"] .sc-menu-toggle__bars {
  background: transparent;
  box-shadow: none;
}

.sc-menu-toggle[aria-expanded="true"] .sc-menu-toggle__bars::before,
.sc-menu-toggle[aria-expanded="true"] .sc-menu-toggle__bars::after {
  opacity: 1;
}

.sc-menu-toggle[aria-expanded="true"] .sc-menu-toggle__bars::before {
  transform: rotate(45deg);
}

.sc-menu-toggle[aria-expanded="true"] .sc-menu-toggle__bars::after {
  transform: rotate(-45deg);
}

.sc-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sc-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.5rem;
}

.sc-nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 10rem;
  background: rgba(18, 16, 14, 0.96);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  box-shadow: 0 16px 40px var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 10;
}

.sc-nav__list li:hover > .sub-menu,
.sc-nav__list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sc-nav__list .sub-menu .sc-nav__link,
.sc-nav__list .sub-menu a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.sc-nav__list .sub-menu li:first-child .sc-nav__link,
.sc-nav__list .sub-menu li:first-child a {
  padding-top: 0.65rem;
}

.sc-nav__list .sub-menu li:last-child .sc-nav__link,
.sc-nav__list .sub-menu li:last-child a {
  padding-bottom: 0.65rem;
}

.sc-nav__item,
.sc-nav__list > li {
  position: relative;
}

.sc-nav__link,
.sc-nav__list > li > a {
  display: inline-block;
  padding: 0.45rem 0.2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.sc-nav__link:hover,
.sc-nav__link:focus-visible,
.sc-nav__list > li > a:hover,
.sc-nav__list > li > a:focus-visible {
  color: var(--text);
}

body.sanctum-landing-page .sc-nav__link:hover,
body.sanctum-landing-page .sc-nav__link:focus-visible,
body.sanctum-landing-page .sc-nav__list > li > a:hover,
body.sanctum-landing-page .sc-nav__list > li > a:focus-visible {
  color: var(--link-hover);
}

.sc-nav__list > .current-menu-item > a,
.sc-nav__list > .current_page_item > a {
  color: var(--link);
}

.sc-menu-backdrop {
  display: none;
}

@media (max-width: 767.98px) {
  .sc-menu-toggle {
    display: inline-flex;
  }

  .sc-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(19rem, 88vw);
    margin: 0;
    padding: 4.5rem 1.25rem 1.5rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: rgba(12, 10, 9, 0.97);
    border-left: 1px solid var(--surface-border);
    box-shadow: -12px 0 48px var(--shadow);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 110;
    overflow-y: auto;
  }

  body.sanctum-landing-page .sc-nav {
    background: rgba(14, 10, 24, 0.98);
    border-left-color: rgba(139, 92, 246, 0.35);
  }

  body.sanctum-landing-page .sc-nav__link,
  body.sanctum-landing-page .sc-nav__list > li > a {
    border-bottom-color: rgba(124, 58, 237, 0.14);
  }

  body.sc-menu-open .sc-nav {
    transform: translateX(0);
  }

  .sc-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .sc-nav__link,
  .sc-nav__list > li > a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .sc-nav__list .sub-menu {
    position: static;
    transform: none;
    left: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0.5rem 0.75rem;
  }

  .sc-nav__list .sub-menu .sc-nav__link,
  .sc-nav__list .sub-menu a {
    padding: 0.45rem 0;
    border-bottom: none;
    font-size: 0.95rem;
    color: var(--text-dim);
  }

  .sc-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  body.sc-menu-open .sc-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

body.sc-menu-open {
  overflow: hidden;
  padding-right: var(--sc-scrollbar-gap, 0);
}

/* Sanctum landing — full card UI (injected after header/nav). v3.2 */

main {
  display: block;
}

body.sanctum-landing-page main.landing-main.scl-page {
  margin: 0;
  padding: 0;
  max-width: none;
  position: relative;
}

body.sanctum-landing-page {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 58, 237, 0.45), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 10%, rgba(219, 39, 119, 0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(91, 33, 182, 0.28), transparent 52%),
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(124, 58, 237, 0.28), transparent 58%),
    linear-gradient(185deg, #12081c 0%, #0a0612 35%, #06040a 100%);
}

.scl-page {
  overflow-x: clip;
}

.scl-page__bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.scl-page__grid {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(rgba(196, 181, 253, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.22) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 88% 78% at 50% 8%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 88% 78% at 50% 8%, black 0%, transparent 70%);
  opacity: 1;
  animation: scl-grid-drift 20s linear infinite;
  will-change: background-position;
}

.scl-page__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(196, 181, 253, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 35%, rgba(219, 39, 119, 0.08), transparent 50%),
    radial-gradient(ellipse 55% 40% at 0% 65%, rgba(124, 58, 237, 0.1), transparent 50%);
}

.scl-page__aurora {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(124, 58, 237, 0.32) 52deg,
    rgba(244, 114, 182, 0.16) 92deg,
    transparent 128deg,
    rgba(219, 39, 119, 0.26) 198deg,
    transparent 238deg,
    rgba(167, 139, 250, 0.3) 292deg,
    rgba(34, 211, 238, 0.1) 328deg,
    transparent 360deg
  );
  animation: scl-aurora 18s linear infinite;
  opacity: 0.94;
  will-change: transform;
}

@keyframes scl-aurora {
  0% {
    transform: rotate(0deg) scale(1);
  }
  35% {
    transform: rotate(126deg) scale(1.08);
  }
  68% {
    transform: rotate(245deg) scale(1.04);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes scl-grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 48px 48px, 48px 48px;
  }
}

.scl-page__beams {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 72px,
      rgba(124, 58, 237, 0.075) 72px,
      rgba(124, 58, 237, 0.075) 73px
    ),
    repeating-linear-gradient(
      18deg,
      transparent,
      transparent 132px,
      rgba(219, 39, 119, 0.055) 132px,
      rgba(219, 39, 119, 0.055) 133px
    );
  mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 38%, black, transparent);
  opacity: 0.9;
  animation: scl-beams-shift 14s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@keyframes scl-beams-shift {
  from {
    opacity: 0.78;
    transform: translateX(-1.5%) scale(1.01);
  }

  to {
    opacity: 0.98;
    transform: translateX(1.5%) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scl-page__grid,
  .scl-page__aurora,
  .scl-page__beams {
    animation: none !important;
  }
}

body.sanctum-landing-page .site-footer,
body.sanctum-landing-page main.scl-page > :not(.scl-page__bg) {
  position: relative;
  z-index: 1;
}

.scl-wrap {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.scl-surface {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  background: linear-gradient(
    160deg,
    rgba(42, 28, 72, 0.55) 0%,
    rgba(18, 12, 32, 0.92) 38%,
    rgba(12, 8, 22, 0.95) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55) inset,
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 32px 90px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(124, 58, 237, 0.18),
    0 0 1px rgba(196, 181, 253, 0.35);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  overflow: hidden;
}

.scl-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 35%,
    transparent 65%,
    rgba(219, 39, 119, 0.15) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

.scl-surface--hero {
  padding: clamp(1.85rem, 4vw, 2.65rem) clamp(1.5rem, 4vw, 2.35rem);
}

.scl-surface--cta {
  padding: clamp(2.15rem, 5vw, 3.25rem);
  border-color: rgba(233, 213, 255, 0.28);
  background: linear-gradient(
    150deg,
    rgba(88, 28, 168, 0.45) 0%,
    rgba(16, 8, 28, 0.94) 40%,
    rgba(100, 20, 60, 0.35) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(124, 58, 237, 0.25);
}

.scl-surface__shine {
  position: absolute;
  top: -45%;
  left: -25%;
  width: 75%;
  height: 90%;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(196, 181, 253, 0.1) 40%,
    transparent 70%
  );
  transform: rotate(-14deg);
  pointer-events: none;
}

.scl-surface__shine--cta {
  top: -55%;
  left: 5%;
  width: 95%;
  opacity: 0.95;
}

.scl-hero {
  padding: clamp(1.35rem, 3vw, 2rem) 0 clamp(2.75rem, 7vw, 4rem);
}

.scl-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .scl-hero__grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 1.65rem;
  }
}

.scl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0.45rem 1.1rem 0.45rem 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5f3ff;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.5);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(219, 39, 119, 0.12));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 0 32px rgba(124, 58, 237, 0.35);
}

.scl-badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #86efac, #22c55e);
  box-shadow: 0 0 16px rgba(74, 222, 128, 1);
  animation: scl-pulse 2.2s ease-in-out infinite;
}

@keyframes scl-pulse {
  50% {
    opacity: 0.7;
    transform: scale(0.88);
  }
}

.scl-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--sl-display);
  font-weight: 800;
  font-size: clamp(2.65rem, 6.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
  background: linear-gradient(
    118deg,
    #ffffff 0%,
    #e9d5ff 18%,
    #c084fc 42%,
    #a855f7 62%,
    #f472b6 82%,
    #fbcfe8 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 36px rgba(124, 58, 237, 0.45));
}

.scl-hero__tagline {
  margin: 0 0 1.05rem;
  font-family: var(--sl-display);
  font-weight: 600;
  font-size: clamp(1.08rem, 2.3vw, 1.28rem);
  line-height: 1.48;
  color: #ede9fe;
  max-width: 38rem;
}

.scl-hero__body {
  margin: 0 0 1rem;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #c4b8dc;
  max-width: 40rem;
}

.scl-hero__janice {
  margin: 0 0 1.85rem;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #c8e8f0;
  max-width: 40rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: linear-gradient(
    130deg,
    rgba(34, 211, 238, 0.1) 0%,
    rgba(124, 58, 237, 0.12) 55%,
    rgba(10, 6, 18, 0.85) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 12px 40px rgba(0, 0, 0, 0.25);
}

.scl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.scl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.65rem 1.85rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    filter 0.25s ease,
    border-color 0.25s ease;
}

.scl-btn::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 48%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 65%
  );
  transform: translateX(-100%) rotate(12deg);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}

.scl-btn > * {
  position: relative;
  z-index: 2;
}

.scl-btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.scl-btn--violet {
  color: #fafafa;
  border-color: rgba(233, 213, 255, 0.45);
  background: linear-gradient(165deg, #c4b5fd 0%, var(--cosmos-primary) 35%, #5b21b6 100%);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 40px rgba(124, 58, 237, 0.55),
    0 0 0 1px rgba(124, 58, 237, 0.5),
    0 0 48px rgba(167, 139, 250, 0.35);
}

.scl-btn--violet:hover {
  filter: brightness(1.08) saturate(1.05);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 52px rgba(124, 58, 237, 0.65),
    0 0 0 1px rgba(196, 181, 253, 0.6),
    0 0 64px rgba(167, 139, 250, 0.45);
}

.scl-btn--rose {
  color: #fff;
  border-color: rgba(253, 164, 175, 0.55);
  background: linear-gradient(165deg, #fb7185 0%, var(--cosmos-secondary) 45%, #9d174d 100%);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.15) inset,
    0 12px 40px rgba(219, 39, 119, 0.45),
    0 0 40px rgba(244, 114, 182, 0.25);
}

.scl-btn--rose:hover {
  filter: brightness(1.07);
  border-color: rgba(254, 205, 211, 0.75);
}

.scl-btn--janice {
  color: #ecfeff;
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(
    165deg,
    rgba(34, 211, 238, 0.22) 0%,
    rgba(124, 58, 237, 0.2) 50%,
    rgba(15, 10, 28, 0.95) 100%
  );
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 36px rgba(34, 211, 238, 0.18),
    0 0 36px rgba(124, 58, 237, 0.2);
}

.scl-btn--janice:hover {
  filter: brightness(1.06);
  border-color: rgba(165, 243, 252, 0.75);
  color: #fff;
}

.scl-btn--quiet {
  color: #ede9fe;
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(124, 58, 237, 0.15);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.12);
}

.scl-btn--quiet:hover {
  background: rgba(124, 58, 237, 0.28);
  border-color: rgba(196, 181, 253, 0.55);
  color: #fff;
}

.scl-btn--wide {
  min-width: min(100%, 15rem);
}

@media (prefers-reduced-motion: no-preference) {
  .scl-btn:hover {
    transform: translateY(-3px) scale(1.02);
  }

  .scl-btn:hover::after {
    transform: translateX(100%) rotate(12deg);
  }
}

.scl-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.scl-mini {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: linear-gradient(165deg, rgba(20, 14, 36, 0.92) 0%, rgba(6, 4, 14, 0.88) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(124, 58, 237, 0.12);
  overflow: hidden;
}

.scl-mini::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.scl-mini--chat {
  transform: rotate(-1deg);
}

.scl-mini--blog {
  transform: rotate(1.2deg);
  border-color: rgba(244, 114, 182, 0.35);
}

.scl-mini--accent {
  padding: 1.25rem 1.3rem;
  background: linear-gradient(
    155deg,
    rgba(124, 58, 237, 0.35) 0%,
    rgba(14, 8, 24, 0.95) 100%
  );
  border-color: rgba(196, 181, 253, 0.4);
}

.scl-mini--janice.scl-mini--accent {
  background: linear-gradient(
    155deg,
    rgba(34, 211, 238, 0.16) 0%,
    rgba(124, 58, 237, 0.28) 48%,
    rgba(14, 8, 24, 0.96) 100%
  );
  border-color: rgba(34, 211, 238, 0.38);
}

@media (max-width: 1023.98px) {
  .scl-mini--chat,
  .scl-mini--blog {
    transform: none;
  }
}

.scl-mini__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.28);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.06) 100%);
}

.scl-mini__top--rose {
  border-bottom-color: rgba(219, 39, 119, 0.3);
  background: linear-gradient(180deg, rgba(219, 39, 119, 0.18) 0%, rgba(219, 39, 119, 0.05) 100%);
}

.scl-mini__dots {
  display: flex;
  gap: 6px;
}

.scl-mini__dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.scl-mini__dots i:nth-child(1) {
  background: #f87171;
}

.scl-mini__dots i:nth-child(2) {
  background: #fbbf24;
}

.scl-mini__dots i:nth-child(3) {
  background: #4ade80;
}

.scl-mini__label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e9d5ff;
}

.scl-mini__top--rose .scl-mini__label {
  color: #fce7f3;
}

.scl-mini__body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.scl-mini__bubble {
  max-width: 92%;
  padding: 0.5rem 0.7rem;
  border-radius: 14px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  line-height: 1.45;
  color: #f0ebf8;
}

.scl-mini__bubble--in {
  align-self: flex-start;
  background: rgba(124, 58, 237, 0.35);
  border: 1px solid rgba(196, 181, 253, 0.3);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.scl-mini__bubble--out {
  align-self: flex-end;
  background: rgba(219, 39, 119, 0.28);
  border: 1px solid rgba(251, 113, 133, 0.35);
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.12);
}

.scl-mini__body--lines {
  gap: 0.5rem;
  padding: 1.1rem 1rem 1.2rem;
}

.scl-mini__line {
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.55), rgba(167, 139, 250, 0.35));
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

.scl-mini__line--full {
  width: 100%;
}

.scl-mini__line--mid {
  width: 78%;
}

.scl-mini__line--short {
  width: 52%;
}

.scl-mini__quote {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #faf5ff;
}

.scl-mini__cite {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d8b4fe;
}

.scl-strip {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.06) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(219, 39, 119, 0.04) 100%
  );
  border-top: 1px solid rgba(167, 139, 250, 0.25);
  border-bottom: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.06);
}

.scl-section-head {
  margin-bottom: clamp(1.65rem, 4vw, 2.25rem);
  max-width: 42rem;
}

.scl-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 46rem;
}

.scl-section-head__eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f0abfc;
  text-shadow: 0 0 24px rgba(219, 39, 119, 0.35);
}

.scl-section-head__title {
  margin: 0;
  font-family: var(--sl-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.038em;
  color: #faf5ff;
  text-shadow: 0 4px 40px rgba(124, 58, 237, 0.2);
}

.scl-chip-row {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .scl-chip-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .scl-chip-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.scl-chip {
  position: relative;
  padding: 1.65rem 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(167, 139, 250, 0.32);
  background: linear-gradient(
    155deg,
    rgba(124, 58, 237, 0.22) 0%,
    rgba(10, 8, 20, 0.92) 48%,
    rgba(219, 39, 119, 0.08) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(124, 58, 237, 0.1);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.scl-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 42%,
    transparent 58%,
    rgba(244, 114, 182, 0.25) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .scl-chip:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(196, 181, 253, 0.55);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.35) inset,
      0 1px 0 rgba(255, 255, 255, 0.1) inset,
      0 32px 70px rgba(0, 0, 0, 0.55),
      0 0 60px rgba(124, 58, 237, 0.22);
  }
}

.scl-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  font-size: 1.35rem;
  line-height: 1;
  color: #ede9fe;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.4), rgba(30, 20, 50, 0.9));
  border: 1px solid rgba(196, 181, 253, 0.35);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.scl-chip__icon--rose {
  background: linear-gradient(145deg, rgba(219, 39, 119, 0.4), rgba(40, 10, 28, 0.9));
  border-color: rgba(251, 113, 133, 0.4);
  color: #fce7f3;
  box-shadow: 0 8px 24px rgba(219, 39, 119, 0.2);
}

.scl-chip__icon--blend {
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.35), rgba(219, 39, 119, 0.15));
  border-color: rgba(233, 213, 255, 0.35);
}

.scl-chip__icon--janice {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.38), rgba(15, 35, 48, 0.92));
  border-color: rgba(103, 232, 249, 0.45);
  color: #ecfeff;
  box-shadow: 0 8px 26px rgba(34, 211, 238, 0.2);
}

.scl-chip--janice {
  border-color: rgba(34, 211, 238, 0.32);
  background: linear-gradient(
    155deg,
    rgba(34, 211, 238, 0.14) 0%,
    rgba(10, 8, 20, 0.92) 48%,
    rgba(124, 58, 237, 0.12) 100%
  );
}

.scl-chip__title {
  margin: 0 0 0.5rem;
  font-family: var(--sl-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.scl-chip__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.62;
  color: #b0a3c4;
}

.scl-mosaic-section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.scl-mosaic {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .scl-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }

  .scl-tile--xl {
    grid-column: 1 / -1;
  }
}

.scl-tile {
  position: relative;
  border-radius: 22px;
  min-height: 12rem;
  border: 1px solid rgba(167, 139, 250, 0.35);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 28px 70px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.scl-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  pointer-events: none;
  z-index: 2;
}

.scl-tile__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scl-tile--violet .scl-tile__bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 88% 85%, rgba(124, 58, 237, 0.55) 0%, transparent 42%),
    linear-gradient(160deg, #3b0764 0%, #0c0518 55%, #1a0a32 100%);
}

.scl-tile--rose .scl-tile__bg {
  background:
    radial-gradient(circle at 85% 12%, rgba(251, 113, 133, 0.45) 0%, transparent 38%),
    linear-gradient(170deg, #831843 0%, #0a0508 100%);
}

.scl-tile--mid .scl-tile__bg {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 181, 253, 0.35) 0%, transparent 52%),
    linear-gradient(185deg, #2a1a4a 0%, #050308 100%);
}

.scl-tile--deep .scl-tile__bg {
  background:
    radial-gradient(circle at 0% 100%, rgba(219, 39, 119, 0.28) 0%, transparent 42%),
    linear-gradient(140deg, #1c1030 0%, #05040a 100%);
}

.scl-tile--janice .scl-tile__bg {
  background:
    radial-gradient(circle at 72% 18%, rgba(34, 211, 238, 0.35) 0%, transparent 38%),
    radial-gradient(circle at 12% 88%, rgba(124, 58, 237, 0.45) 0%, transparent 42%),
    linear-gradient(155deg, #0c4a6e 0%, #0a0618 52%, #1e1b4b 100%);
}

a.scl-tile {
  text-decoration: none;
  color: inherit;
}

a.scl-tile:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
}

.scl-tile__cta {
  margin: 1rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 243, 252, 0.95);
}

.scl-tile__content {
  position: relative;
  z-index: 3;
  padding: 1.65rem 1.45rem 1.85rem;
}

.scl-tile__title {
  margin: 0 0 0.55rem;
  font-family: var(--sl-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.scl-tile__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.68;
  color: rgba(248, 245, 255, 0.88);
  max-width: 52ch;
}

.scl-tile--xl {
  min-height: 14rem;
}

.scl-tile--xl .scl-tile__title {
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
}

@media (prefers-reduced-motion: no-preference) {
  .scl-tile:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(233, 213, 255, 0.5);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 36px 90px rgba(0, 0, 0, 0.55),
      0 0 60px rgba(124, 58, 237, 0.15);
  }
}

/* —— Most-read Sanctum Blogs (landing) —— */
.scl-top-blogs {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1rem, 4vw, 2rem);
}

.scl-top-blogs__lede {
  margin: 0.5rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #a89bc4;
}

.scl-top-blogs__list {
  list-style: none;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.scl-top-blogs__card {
  display: grid;
  grid-template-columns: minmax(6.5rem, 32%) 1fr;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.14) 0%,
    rgba(12, 8, 22, 0.92) 45%,
    rgba(219, 39, 119, 0.06) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 16px 44px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.scl-top-blogs__card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .scl-top-blogs__card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 181, 253, 0.45);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 24px 56px rgba(0, 0, 0, 0.45),
      0 0 48px rgba(124, 58, 237, 0.12);
  }

  .scl-top-blogs__card:hover .scl-top-blogs__img,
  .scl-top-blogs__card:hover .scl-top-blogs__placeholder {
    transform: scale(1.04);
  }
}

.scl-top-blogs__media {
  position: relative;
  min-height: 6.5rem;
  overflow: hidden;
  background: #0a0612;
}

.scl-top-blogs__img,
.scl-top-blogs__placeholder {
  width: 100%;
  height: 100%;
  min-height: 6.5rem;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.scl-top-blogs__placeholder {
  background-image: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.5) 0%,
    rgba(219, 39, 119, 0.12) 55%,
    #06040a 100%
  );
}

.scl-top-blogs__rank {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.35rem;
  border-radius: 10px;
  font-family: var(--sl-display);
  font-weight: 800;
  font-size: 0.98rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.88), rgba(30, 15, 48, 0.95));
  border: 1px solid rgba(196, 181, 253, 0.45);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.scl-top-blogs__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  padding: 1rem 1.15rem 1.15rem;
}

.scl-top-blogs__post-title {
  font-family: var(--sl-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #f5f3ff;
}

.scl-top-blogs__excerpt {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #9d8fb8;
}

.scl-top-blogs__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7b6f94;
}

.scl-top-blogs__views {
  color: #a78bfa;
}

.scl-top-blogs__more {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0 0;
  text-align: center;
}

@media (max-width: 519.98px) {
  .scl-top-blogs__card {
    grid-template-columns: 1fr;
  }

  .scl-top-blogs__media {
    min-height: 10rem;
    max-height: 12rem;
  }

  .scl-top-blogs__img,
  .scl-top-blogs__placeholder {
    min-height: 10rem;
    max-height: 12rem;
  }
}

@media (min-width: 720px) {
  .scl-top-blogs__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.15rem;
  }
}

.scl-cta-wrap {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(3.25rem, 9vw, 5rem);
}

.scl-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.scl-cta__title {
  margin: 0 0 0.75rem;
  font-family: var(--sl-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.038em;
  color: #fff;
  text-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
}

.scl-cta__text {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  line-height: 1.68;
  color: #e4dcfa;
}

.scl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
}

@media (prefers-reduced-motion: no-preference) {
  .scl-hero__grid,
  .scl-strip,
  .scl-mosaic-section,
  .scl-vip,
  .scl-top-blogs,
  .scl-cta-wrap {
    animation: scl-fade-up 1.08s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .scl-hero__grid {
    animation-delay: 0.04s;
  }

  .scl-strip {
    animation-delay: 0.11s;
  }

  .scl-mosaic-section {
    animation-delay: 0.17s;
  }

  .scl-vip {
    animation-delay: 0.21s;
  }

  .scl-top-blogs {
    animation-delay: 0.26s;
  }

  .scl-cta-wrap {
    animation-delay: 0.33s;
  }
}

@keyframes scl-fade-up {
  0% {
    opacity: 0;
    transform: translateY(2rem) scale(0.93);
    filter: blur(14px);
  }

  55% {
    opacity: 1;
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.stack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stack li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-dim);
  font-size: 0.98rem;
}

.stack li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cosmos-primary-soft);
}

.stack strong {
  color: var(--text);
  font-weight: 500;
}

body.sanctum-landing-page .grain--landing {
  opacity: 0.07;
}
}

.site-footer .copy {
  font-style: normal;
}

.site-footer .admin-link {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer .admin-link a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer .admin-link a:hover {
  color: var(--link);
  border-bottom-color: var(--cosmos-secondary-soft);
}

/* Interior pages (Journal / single) */
body.sanctum-interior {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(124, 58, 237, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(219, 39, 119, 0.1), transparent 45%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  line-height: 1.6;
}

.sanctum-interior .wrap {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem) 4rem;
}

.sanctum-interior .wrap > h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.sanctum-interior .back {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sanctum-interior .back a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sanctum-interior .back a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--cosmos-secondary-soft);
}

.sanctum-interior article h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.sanctum-interior article h2 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.sanctum-interior article h2 a:hover {
  color: var(--link);
}

.sanctum-interior .entry-content {
  color: var(--text-muted);
}

.sanctum-interior .entry-content a {
  color: var(--link);
}

.sanctum-interior .entry-content a:hover {
  color: var(--link-hover);
}

.sanctum-interior .navigation,
.sanctum-interior .nav-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-border);
}

.sanctum-interior .navigation a,
.sanctum-interior .nav-links a {
  color: var(--link);
  text-decoration: none;
}

.sanctum-interior .navigation a:hover,
.sanctum-interior .nav-links a:hover {
  color: var(--link-hover);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .landing-ambient__orb {
    animation: none;
    opacity: 0.35;
  }

  .scl-page__aurora,
  .scl-page__grid,
  .scl-page__beams {
    animation: none !important;
  }

  .scl-hero__grid,
  .scl-strip,
  .scl-mosaic-section,
  .scl-vip,
  .scl-top-blogs,
  .scl-cta-wrap {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .scl-badge__dot {
    animation: none;
  }

  .skip-link,
  .sc-header__logo,
  .sc-menu-toggle,
  .scl-btn {
    transition: none;
  }

  .scl-btn:hover {
    transform: none;
  }

  .scl-btn::after {
    transition: none;
  }

  .scl-chip,
  .scl-tile {
    transition: none;
  }

  .scl-chip:hover,
  .scl-tile:hover {
    transform: none;
  }

  .scl-top-blogs__card {
    transition: none;
  }

  .scl-top-blogs__card:hover {
    transform: none;
  }

  .scl-top-blogs__img,
  .scl-top-blogs__placeholder {
    transition: none;
  }

  .scl-top-blogs__card:hover .scl-top-blogs__img,
  .scl-top-blogs__card:hover .scl-top-blogs__placeholder {
    transform: none;
  }

  .sc-nav {
    transition: none;
  }

  .sc-menu-backdrop {
    transition: none;
  }
}
