@font-face {
  font-family: "Raaz Noto";
  src: url("/assets/fonts/noto-sans-raaz60-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raaz Noto";
  src: url("/assets/fonts/noto-sans-raaz60-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0610;
  --ink-soft: #13091d;
  --surface: rgba(28, 14, 39, 0.72);
  --surface-solid: #1b0d27;
  --surface-bright: #2a1238;
  --paper: #ffffff;
  --muted: #c5b8cb;
  --dim: #8f7e99;
  --gold: #f6bf42;
  --gold-hot: #ffd96c;
  --pink: #ff3fa4;
  --violet: #a44cff;
  --blue: #4b8cff;
  --cyan: #20d4da;
  --red: #ff344c;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(246, 191, 66, 0.34);
  --radius-sm: 0.9rem;
  --radius: 1.45rem;
  --radius-lg: 2rem;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shell: min(1160px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--violet) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 12%, rgba(130, 34, 158, 0.22), transparent 29rem),
    radial-gradient(circle at 88% 28%, rgba(34, 83, 211, 0.15), transparent 34rem),
    linear-gradient(180deg, #0e0714 0%, #0b0610 58%, #12081a 100%);
  font-family: "Raaz Noto", "Noto Sans Devanagari", "Nirmala UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-hot);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  color: #16061f;
  background: var(--gold-hot);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.16;
}

.ambient-one {
  top: -13rem;
  right: -8rem;
  background: var(--pink);
}

.ambient-two {
  left: -13rem;
  top: 48%;
  background: var(--blue);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(11, 6, 16, 0.55);
  backdrop-filter: blur(20px) saturate(130%);
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 6, 16, 0.9);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 31, 119, 0.65), rgba(20, 9, 29, 0.9));
  box-shadow: 0 0 24px rgba(246, 191, 66, 0.1);
}

.brand-mark img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.brand-name {
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-name b {
  color: var(--gold-hot);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav > a {
  position: relative;
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--paper);
}

.site-nav > a[aria-current="page"]::after {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  content: "";
}

.site-nav .nav-watch {
  margin-left: 0.8rem;
  padding-inline: 1.1rem;
  border: 1px solid rgba(255, 52, 76, 0.5);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 52, 76, 0.08);
}

.site-nav .nav-watch:hover {
  background: var(--red);
  border-color: var(--red);
}

.nav-toggle {
  width: 2.9rem;
  height: 2.9rem;
  display: none;
  place-content: center;
  gap: 0.3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--paper);
  background: var(--surface);
}

.nav-toggle i {
  width: 1.2rem;
  height: 2px;
  display: block;
  border-radius: 5px;
  background: currentColor;
}

.section-pad {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 2.25rem;
  overflow: clip;
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 62rem;
  height: 23rem;
  right: -18rem;
  bottom: 3rem;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(87, 34, 149, 0.22), rgba(255, 63, 164, 0.16), rgba(75, 140, 255, 0.15));
  filter: blur(70px);
  transform: rotate(-12deg);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  padding-block: 1rem;
}

.eyebrow,
.kicker {
  color: var(--gold-hot);
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.eyebrow span {
  width: 2.4rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
}

.hero h1,
.page-hero h1,
.story-detail-copy h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em,
.about-hero h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--gold-hot), #ff9e36 42%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-copy > p {
  max-width: 39rem;
  margin: 1.65rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.85;
}

.hero-actions,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #1a0a18;
  background: linear-gradient(105deg, var(--gold-hot), #ffad31);
  box-shadow: 0 12px 30px rgba(246, 191, 66, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(246, 191, 66, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.button-youtube {
  background: linear-gradient(110deg, #fe2844, #dd1231);
  box-shadow: 0 12px 30px rgba(255, 40, 68, 0.2);
}

.play-dot {
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  padding-left: 0.12rem;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 0.64rem;
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  color: var(--dim);
  font-size: 0.85rem;
}

.promise-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}

.promise-row b {
  color: var(--paper);
  font-size: 1.25rem;
}

.promise-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-stage {
  position: relative;
  width: min(100%, 23rem);
  justify-self: center;
  perspective: 1100px;
}

.feature-glow {
  position: absolute;
  inset: 13% -13% 8%;
  border-radius: 50%;
  background: conic-gradient(from 80deg, var(--pink), var(--violet), var(--blue), var(--gold), var(--pink));
  opacity: 0.44;
  filter: blur(65px);
  animation: glow-breathe 5s ease-in-out infinite;
}

.feature-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid rgba(246, 191, 66, 0.38);
  border-radius: 2rem;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms ease;
}

.feature-stage:hover .feature-card {
  transform: rotate(0deg) translateY(-0.5rem);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56);
}

.feature-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 4, 15, 0.23) 55%, rgba(10, 4, 15, 0.98) 100%);
  content: "";
}

.feature-overlay {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
}

.feature-overlay > span {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(246, 191, 66, 0.45);
  border-radius: 999px;
  color: var(--gold-hot);
  background: rgba(18, 7, 25, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
}

.feature-overlay h2 {
  margin: 0.75rem 0 0.15rem;
  font-size: 1.55rem;
  line-height: 1.2;
}

.feature-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-seal {
  position: absolute;
  z-index: 3;
  right: -2.6rem;
  top: 10%;
  width: 7.3rem;
  height: 7.3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 191, 66, 0.55);
  border-radius: 50%;
  background: rgba(24, 10, 33, 0.92);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.42), inset 0 0 30px rgba(246, 191, 66, 0.05);
  transform: rotate(7deg);
}

.feature-seal img {
  position: absolute;
  width: 4.6rem;
  height: 4.6rem;
  opacity: 0.22;
}

.feature-seal span {
  position: relative;
  z-index: 1;
  color: var(--gold-hot);
  font-size: 0.77rem;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}

.social-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.hero > .shell > .social-rail {
  margin-top: 4.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.social-rail a {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-rail a:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.social-rail a span {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
}

.social-facebook span { background: #1877f2; }
.social-instagram span { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-youtube span { background: #ff0033; }

.latest {
  position: relative;
}

.latest::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(54, 18, 70, 0.14), rgba(14, 7, 20, 0.18));
  content: "";
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.section-heading h2,
.mood-copy h2,
.watch-card h2,
.follow-inner h2,
.value-card h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > a,
.text-link {
  flex: 0 0 auto;
  color: var(--gold-hot);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-heading > a span,
.text-link span,
.story-link i {
  display: inline-block;
  transition: transform 180ms ease;
}

.section-heading > a:hover span,
.text-link:hover span,
.story-card:hover .story-link i {
  transform: translateX(0.3rem);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(38, 17, 52, 0.74), rgba(17, 8, 24, 0.86));
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.17);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), border-color 280ms ease, box-shadow 280ms ease;
}

.story-card:hover {
  border-color: var(--line-gold);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-0.55rem);
}

.story-card[hidden] {
  display: none;
}

.story-card > a {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.78fr) minmax(0, 1.22fr);
}

.story-visual {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  background: #1a0c22;
}

.story-visual::after {
  position: absolute;
  inset: 0;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 42%, rgba(11, 5, 15, 0.34));
  content: "";
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.2,.8,.2,1), filter 350ms ease;
}

.story-card:hover .story-visual img {
  transform: scale(1.045);
  filter: saturate(1.12);
}

.story-id,
.story-duration {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(11, 5, 15, 0.74);
  backdrop-filter: blur(8px);
  font-size: 0.64rem;
  font-weight: 700;
}

.story-id {
  left: 0.65rem;
  top: 0.65rem;
  color: var(--gold-hot);
}

.story-duration {
  right: 0.65rem;
  bottom: 0.65rem;
  color: white;
}

.story-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 1.15rem 1.2rem;
}

.story-category {
  color: var(--gold-hot);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.story-copy h3 {
  margin: 0.55rem 0 0;
  font-size: 1.32rem;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.story-copy p {
  margin: 0.45rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.story-link {
  margin-top: auto;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.story-link i {
  margin-left: 0.3rem;
  color: var(--gold-hot);
  font-style: normal;
}

.accent-magenta { box-shadow: inset 0 4px 0 var(--pink); }
.accent-blue { box-shadow: inset 0 4px 0 var(--blue); }
.accent-gold { box-shadow: inset 0 4px 0 var(--gold); }
.accent-violet { box-shadow: inset 0 4px 0 var(--violet); }
.accent-orange { box-shadow: inset 0 4px 0 #ff793f; }
.accent-cyan { box-shadow: inset 0 4px 0 var(--cyan); }

.mood-section {
  overflow: clip;
}

.mood-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.mood-copy p {
  max-width: 35rem;
  margin: 1.25rem 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.mood-cloud {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, minmax(9rem, 1fr));
  gap: 0.85rem;
  transform: rotate(1.5deg);
}

.mood {
  position: relative;
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 700;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, filter 220ms ease;
}

.mood::before {
  position: absolute;
  width: 9rem;
  height: 9rem;
  top: -4rem;
  right: -3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 1.8rem rgba(255, 255, 255, 0.025), 0 0 0 3.5rem rgba(255, 255, 255, 0.015);
  content: "";
}

.mood:hover {
  transform: translateY(-0.35rem);
  filter: saturate(1.12) brightness(1.06);
}

.mood small {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 400;
}

.mood-large {
  grid-row: 1 / 4;
}

.mood-purple { background: linear-gradient(150deg, #6d1a89, #321344); }
.mood-pink { background: linear-gradient(150deg, #b31369, #4b1239); }
.mood-blue { background: linear-gradient(150deg, #2454a8, #171f4e); }
.mood-gold { background: linear-gradient(150deg, #a85d0d, #4b250c); }

.watch-section {
  padding-top: 0;
}

.watch-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 50%, rgba(246, 191, 66, 0.12), transparent 17rem),
    radial-gradient(circle at 85% 0%, rgba(255, 63, 164, 0.13), transparent 20rem),
    linear-gradient(120deg, rgba(38, 16, 50, 0.97), rgba(20, 8, 29, 0.96));
  box-shadow: var(--shadow);
}

.watch-card::after {
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -8rem;
  bottom: -10rem;
  border: 1px solid rgba(246, 191, 66, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(246, 191, 66, 0.025), 0 0 0 4rem rgba(246, 191, 66, 0.015);
  content: "";
}

.watch-icon {
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 34, 124, 0.68), rgba(20, 8, 29, 0.8));
  box-shadow: 0 0 45px rgba(246, 191, 66, 0.08);
}

.watch-icon img {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
}

.watch-card h2 {
  max-width: 43rem;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.watch-card p {
  max-width: 44rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.watch-card .button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.follow-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.follow-inner {
  text-align: center;
}

.follow-inner h2 {
  max-width: 48rem;
  margin-inline: auto;
}

.follow-inner .social-rail {
  justify-content: center;
  margin-top: 2rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 63, 164, 0.16), transparent 26rem),
    radial-gradient(circle at 20% 70%, rgba(75, 140, 255, 0.14), transparent 24rem);
}

.compact-hero .shell {
  max-width: 54rem;
  text-align: center;
}

.compact-hero h1 {
  margin-top: 0.65rem;
}

.compact-hero p {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-box {
  position: relative;
  width: min(100%, 20rem);
  flex: 0 0 auto;
}

.search-box svg {
  position: absolute;
  width: 1.15rem;
  left: 1rem;
  top: 50%;
  fill: none;
  stroke: var(--dim);
  stroke-linecap: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.search-box input {
  width: 100%;
  height: 3.25rem;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.search-box input::placeholder {
  color: var(--dim);
}

.search-box input:focus {
  border-color: rgba(246, 191, 66, 0.62);
  box-shadow: 0 0 0 4px rgba(246, 191, 66, 0.08);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.filter-chips button {
  min-height: 2.6rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-chips button:hover,
.filter-chips button.is-active {
  border-color: var(--line-gold);
  color: #1a0a18;
  background: var(--gold-hot);
}

.results-count {
  margin: 0 0 1.2rem;
  color: var(--dim);
  font-size: 0.84rem;
}

.empty-state {
  padding: 5rem 1.5rem;
  text-align: center;
}

.empty-state span {
  color: var(--gold);
  font-size: 4rem;
}

.empty-state h2 {
  margin: 0.5rem 0;
  font-size: 1.8rem;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.story-page {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--dim);
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--gold-hot);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--muted);
}

.story-detail-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.story-player {
  width: min(100%, 27rem);
  justify-self: center;
}

.video-coming,
.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 2rem;
  background: #160a20;
  box-shadow: var(--shadow);
}

.video-coming > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-coming::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 3, 12, 0.06), rgba(8, 3, 12, 0.76));
  content: "";
}

.video-coming > div {
  position: absolute;
  z-index: 2;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.6rem;
  text-align: center;
}

.video-coming p {
  margin: 0.8rem 0 1rem;
  font-weight: 700;
}

.play-orb {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-inline: auto;
  padding-left: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.story-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--gold-hot);
  font-size: 0.82rem;
  font-weight: 700;
}

.story-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.story-detail-copy h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.story-lead {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.fiction-note {
  max-width: 41rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.fiction-note img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.fiction-note p {
  margin: 0;
  color: var(--dim);
  font-size: 0.8rem;
  line-height: 1.55;
}

.fiction-note b {
  color: var(--paper);
  font-size: 0.9rem;
}

.share-feedback {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  color: var(--gold-hot);
  font-size: 0.8rem;
}

.related {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(40, 14, 52, 0.12);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.65fr);
  align-items: center;
  gap: 4rem;
}

.about-hero h1 {
  margin-top: 0.7rem;
  font-size: clamp(2.8rem, 5.6vw, 5.3rem);
}

.about-hero p {
  max-width: 44rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-mark {
  display: grid;
  place-items: center;
}

.about-mark > div {
  position: relative;
  width: min(100%, 21rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 36, 135, 0.45), rgba(21, 8, 29, 0.1) 67%);
  box-shadow: 0 0 80px rgba(179, 44, 190, 0.15), inset 0 0 50px rgba(246, 191, 66, 0.06);
}

.about-mark > div::before,
.about-mark > div::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.about-mark > div::before { inset: -1.2rem; }
.about-mark > div::after { inset: -2.4rem; }

.about-mark img {
  width: 14rem;
  height: 14rem;
  object-fit: contain;
  opacity: 0.82;
}

.about-mark span {
  position: absolute;
  z-index: 1;
  color: var(--gold-hot);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(44, 18, 59, 0.68), rgba(20, 8, 29, 0.76));
}

.value-card > span {
  color: var(--gold-hot);
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.value-card h2 {
  margin-top: 3.8rem;
  font-size: 1.55rem;
}

.value-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.about-note {
  padding-top: 0;
}

.not-found {
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.not-found img {
  width: 8rem;
  height: 8rem;
  margin-inline: auto;
}

.not-found > div > span {
  display: block;
  margin-top: 1rem;
  color: var(--gold-hot);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.not-found h1 {
  margin-top: 0.6rem;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.not-found p {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.site-footer {
  padding-top: 4.5rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 2, 8, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) repeat(2, minmax(9rem, 0.55fr));
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand > p {
  margin: 1rem 0 0;
  color: var(--gold-hot);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-brand .disclaimer {
  max-width: 35rem;
  color: var(--dim);
  font-size: 0.77rem;
  font-weight: 400;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 0 0 0.85rem;
  color: var(--paper);
  font-size: 0.88rem;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 0.5rem;
  color: var(--dim);
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--gold-hot);
}

.footer-bottom {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.34; transform: scale(0.96) rotate(0deg); }
  50% { opacity: 0.5; transform: scale(1.04) rotate(7deg); }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 6.8vw, 4.7rem);
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mood-grid {
    grid-template-columns: 1fr;
  }

  .mood-copy {
    max-width: 44rem;
  }

  .watch-card {
    grid-template-columns: auto 1fr;
  }

  .watch-card > .button {
    grid-column: 2;
    width: max-content;
  }

  .filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-box {
    width: min(100%, 28rem);
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.5fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 1.25rem, 42rem);
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    top: calc(100% + 0.35rem);
    display: grid;
    gap: 0.2rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: rgba(18, 8, 25, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > a {
    padding: 0.85rem 0.9rem;
    border-radius: 0.7rem;
  }

  .site-nav > a:hover,
  .site-nav > a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.055);
  }

  .site-nav > a[aria-current="page"]::after {
    display: none;
  }

  .site-nav .nav-watch {
    margin: 0.2rem 0 0;
    justify-content: center;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.3rem;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .promise-row {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .feature-stage {
    width: min(79vw, 22rem);
  }

  .feature-seal {
    right: -1.3rem;
    width: 6.5rem;
    height: 6.5rem;
  }

  .hero > .shell > .social-rail {
    justify-content: center;
    margin-top: 3.5rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card > a {
    grid-template-columns: minmax(8.5rem, 0.72fr) minmax(0, 1.28fr);
  }

  .story-visual {
    min-height: 18rem;
  }

  .mood-cloud {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(9rem, 1fr));
  }

  .watch-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .watch-icon {
    width: 6.8rem;
    height: 6.8rem;
    margin-inline: auto;
  }

  .watch-icon img {
    width: 5.5rem;
    height: 5.5rem;
  }

  .watch-card > .button {
    grid-column: auto;
    width: max-content;
    margin-inline: auto;
  }

  .story-detail-grid,
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .story-detail-copy {
    text-align: center;
  }

  .story-meta,
  .story-actions {
    justify-content: center;
  }

  .fiction-note {
    text-align: left;
  }

  .about-hero-grid {
    text-align: center;
  }

  .about-hero p {
    margin-inline: auto;
  }

  .about-mark > div {
    width: min(72vw, 19rem);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .value-card h2 {
    margin-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .page-hero h1,
  .story-detail-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero-actions,
  .story-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .story-actions .button {
    width: 100%;
  }

  .promise-row {
    gap: 0.55rem;
    font-size: 0.73rem;
  }

  .promise-row b {
    font-size: 1.05rem;
  }

  .story-card > a {
    grid-template-columns: minmax(7.6rem, 0.72fr) minmax(0, 1.28fr);
  }

  .story-visual {
    min-height: 17rem;
  }

  .story-copy {
    padding: 1rem 0.9rem;
  }

  .story-copy h3 {
    font-size: 1.14rem;
  }

  .story-copy p {
    font-size: 0.8rem;
  }

  .mood-cloud {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    transform: none;
  }

  .mood-large {
    grid-row: auto;
  }

  .mood {
    min-height: 8rem;
  }

  .filter-chips {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
  }

  .filter-chips button {
    flex: 0 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Video hub --------------------------------------------------------------- */
.video-page-hero h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--gold-hot), #ff9e36 42%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.video-hub {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.video-feature-card {
  display: grid;
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 40%, rgba(255, 63, 164, 0.12), transparent 22rem),
    linear-gradient(135deg, rgba(40, 17, 53, 0.96), rgba(17, 8, 25, 0.98));
  box-shadow: var(--shadow);
}

.video-feature-player {
  width: min(100%, 25rem);
  margin-inline: auto;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.4rem;
  background: #08040c;
  box-shadow: 0 20px 55px rgba(0,0,0,.36);
}

.video-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: inherit;
  content: "";
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
  background: #000;
}

.video-feature-copy h2 {
  max-width: 34rem;
  margin: .6rem 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.video-feature-copy p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.video-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
  margin-top: 1.5rem;
}

.video-library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin: clamp(4rem, 8vw, 7rem) 0 1.6rem;
}

.video-library-heading h2 {
  margin: .45rem 0 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(29, 13, 40, .72);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.video-card .video-frame {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.video-card-copy {
  padding: 1.2rem 1.25rem 1.4rem;
}

.video-card-copy h3 {
  margin: 0;
  font-size: 1.15rem;
}

.video-card-copy p {
  margin: .6rem 0 1rem;
  color: var(--muted);
  font-size: .88rem;
}

.video-empty {
  padding: 2.3rem;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: var(--radius);
  text-align: center;
  background: rgba(255,255,255,.025);
}

.video-empty-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  padding-left: .16rem;
  border-radius: 50%;
  background: var(--red);
}

.video-empty h3 {
  margin: 0;
  font-size: 1.3rem;
}

.video-empty p {
  max-width: 34rem;
  margin: .7rem auto 0;
  color: var(--muted);
}

.video-loading {
  grid-column: 1 / -1;
  padding: 3rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .video-feature-card {
    grid-template-columns: 1fr;
  }

  .video-feature-copy {
    text-align: center;
  }

  .video-feature-copy h2,
  .video-feature-copy p {
    margin-inline: auto;
  }

  .video-feature-actions {
    justify-content: center;
  }

  .video-library-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-feature-card {
    padding: 1rem;
  }
}
