/* ============================================================
   RAGHUKULA OTT — Netflix-style dark + gold theme
   ============================================================ */
:root {
  --bg: #0a0805;
  --bg-2: #141009;
  --panel: #1a150d;
  --gold: #f5a623;
  --gold-bright: #ffd27a;
  --gold-deep: #b8860b;
  --amber: #e8b923;
  --text: #f3ece0;
  --muted: #9c9486;
  --line: rgba(245, 166, 35, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  --row-gap: 0.55rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

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

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.25); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,166,35,0.45); }

/* ---------- Splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, #1a1305 0%, #060402 70%);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.splash.hide { opacity: 0; visibility: hidden; }
.splash-mark {
  font-family: "Cinzel", serif; font-weight: 900;
  font-size: clamp(2.2rem, 8vw, 6rem); letter-spacing: 0.35em;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,0.55), 0 0 90px rgba(245,166,35,0.25);
  animation: riseGlow 2.4s ease forwards;
  padding-left: 0.35em;
}
.splash-sub {
  margin-top: 1rem; font-size: clamp(0.7rem, 2vw, 1rem);
  letter-spacing: 0.7em; color: var(--muted); padding-left: 0.7em;
  opacity: 0; animation: fadeIn 1.2s ease 1s forwards;
}
@keyframes riseGlow { 0% { opacity: 0; transform: translateY(30px) scale(0.96); filter: blur(8px);} 100% { opacity: 1; transform: none; filter: blur(0);} }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(6,4,2,0.95) 0%, rgba(6,4,2,0) 100%);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(8,6,3,0.96); border-bottom: 1px solid var(--line); }
.nav-left { display: flex; align-items: center; gap: 2.4rem; }
.brand {
  font-family: "Cinzel", serif; font-weight: 900; font-size: 1.5rem;
  letter-spacing: 0.22em; color: var(--gold); padding-left: 0.22em;
  text-shadow: 0 0 24px rgba(245,166,35,0.4);
}
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
  font-size: 0.86rem; color: var(--muted); font-weight: 500;
  letter-spacing: 0.03em; transition: color 0.2s ease; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.icon-btn {
  background: none; border: none; color: var(--text); font-size: 1.3rem;
  cursor: pointer; line-height: 1; transition: color 0.2s; padding: 0.2rem;
}
.icon-btn:hover { color: var(--gold); }
.search-input {
  width: 0; padding: 0; opacity: 0; border: 1px solid var(--line);
  background: rgba(0,0,0,0.6); color: var(--text); border-radius: 4px;
  transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease; font-size: 0.85rem;
}
.search-input.open { width: 200px; padding: 0.5rem 0.7rem; opacity: 1; }
.avatar {
  width: 34px; height: 34px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1305; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: "Cinzel", serif; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  padding: 0 clamp(1rem, 4vw, 3.5rem) clamp(3rem, 8vh, 7rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 2%, rgba(10,8,5,0.2) 45%, rgba(10,8,5,0.5) 100%),
    linear-gradient(90deg, rgba(6,4,2,0.92) 0%, rgba(6,4,2,0.35) 55%, transparent 100%);
}
.hero-sun {
  position: absolute; right: 8%; top: 18%; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 35%, rgba(245,166,35,0.25) 60%, transparent 72%);
  filter: blur(2px); animation: pulseSun 7s ease-in-out infinite; z-index: 0;
}
@keyframes pulseSun { 0%,100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.06); opacity: 1; } }
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem;
  letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase;
  border: 1px solid var(--line); padding: 0.35rem 0.8rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: "Cinzel", serif; font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.hero-sub { margin-top: 0.6rem; font-size: clamp(1rem, 2vw, 1.4rem); color: var(--gold-bright); font-style: italic; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.2rem 0; font-size: 0.85rem; color: var(--muted); align-items: center; }
.hero-meta .pill { border: 1px solid var(--line); padding: 0.2rem 0.6rem; border-radius: 4px; }
.hero-meta .rk { color: var(--gold); font-weight: 700; }
.hero-desc { font-size: 1rem; line-height: 1.6; color: #d8cfc0; max-width: 560px; margin-bottom: 1.6rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer;
  border: none; border-radius: 6px; font-size: 1rem; font-weight: 600;
  padding: 0.8rem 1.8rem; transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-play { background: var(--gold); color: #1a1305; box-shadow: 0 8px 24px rgba(245,166,35,0.3); }
.btn-play:hover { background: var(--gold-bright); }
.btn-info { background: rgba(80,70,50,0.45); color: var(--text); backdrop-filter: blur(4px); }
.btn-info:hover { background: rgba(110,98,70,0.6); }

/* ---------- Rows ---------- */
.rows { position: relative; z-index: 3; margin-top: -6vh; padding-bottom: 3rem; }
.row { margin: 2.2rem 0; }
.row-head {
  display: flex; align-items: baseline; gap: 0.8rem;
  padding: 0 clamp(1rem, 4vw, 3.5rem); margin-bottom: 0.7rem;
}
.row-title { font-family: "Inter", sans-serif; font-size: 1.15rem; font-weight: 600; letter-spacing: .01em; color: var(--text); }
.row-title .accent { color: var(--gold); }
.row-track-wrap { position: relative; }
.row-track {
  display: flex; gap: var(--row-gap); overflow-x: auto; scroll-behavior: smooth;
  padding: 0.4rem clamp(1rem, 4vw, 3.5rem); scrollbar-width: none;
}
.row-track::-webkit-scrollbar { display: none; }
.row-arrow {
  position: absolute; top: 0; bottom: 0; width: clamp(1rem, 4vw, 3.5rem); z-index: 6;
  background: rgba(6,4,2,0.7); border: none; color: var(--text); font-size: 1.6rem;
  cursor: pointer; opacity: 0; transition: opacity 0.2s; display: flex; align-items: center; justify-content: center;
}
.row-track-wrap:hover .row-arrow { opacity: 1; }
.row-arrow.left { left: 0; } .row-arrow.right { right: 0; }
.row-arrow:hover { color: var(--gold); }

/* ---------- Card ---------- */
.card {
  position: relative; flex: 0 0 auto; width: 290px; aspect-ratio: 16 / 9;
  border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1), box-shadow 0.28s, z-index 0s;
  border: 1px solid rgba(255,255,255,0.04);
}
.card:hover { transform: scale(1.09); z-index: 20; box-shadow: var(--shadow); border-color: var(--line); }
.card-art { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s ease; }
.card:hover .card-art { transform: scale(1.06); }
.card-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%); }
.card-sun { position: absolute; right: -30px; top: -30px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), transparent 70%); opacity: 0.5; }
.card-id {
  position: absolute; top: 0.6rem; left: 0.7rem; font-family: "Cinzel", serif; font-weight: 900;
  font-size: 1.1rem; color: rgba(255,255,255,0.9); letter-spacing: 0.05em; z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.card-feat {
  position: absolute; top: 0.6rem; right: 0.7rem; z-index: 2; font-size: 0.6rem; letter-spacing: 0.15em;
  background: var(--gold); color: #1a1305; padding: 0.15rem 0.45rem; border-radius: 3px; font-weight: 800;
}
.card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.8rem 0.9rem; z-index: 2; }
.card-title { font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.95rem; line-height: 1.2; letter-spacing: .01em; }
.card-era { font-size: 0.72rem; color: var(--gold-bright); margin-top: 0.2rem; }
.card-hover {
  position: absolute; inset: 0; z-index: 3; padding: 0.9rem; display: flex; flex-direction: column;
  justify-content: flex-end; gap: 0.4rem; opacity: 0; transition: opacity 0.25s;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), rgba(0,0,0,0.2));
}
.card:hover .card-hover { opacity: 1; }
.card:hover .card-body { opacity: 0; }
.card-hover-meta { font-size: 0.7rem; color: var(--muted); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.card-hover-syms { font-size: 0.85rem; letter-spacing: 0.1em; }
.card-hover-actions { display: flex; gap: 0.4rem; margin-top: 0.3rem; }
.mini-btn { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5); color: #fff; cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.mini-btn.play { background: var(--gold); color: #1a1305; border-color: var(--gold); }
.mini-btn:hover { border-color: var(--gold); }

/* ---------- Top 10 row (Netflix-style ranked) ---------- */
.row.top10 .row-track { align-items: flex-end; gap: 0.2rem; }
.card.rank {
  display: flex; align-items: flex-end; width: auto; aspect-ratio: auto;
  background: none; border: none; overflow: visible; border-radius: 0;
}
.card.rank:hover { transform: none; box-shadow: none; }
.rank-num {
  font-family: "Cinzel", serif; font-weight: 900; font-size: clamp(5rem, 10vw, 8.5rem);
  line-height: 0.72; color: #0a0703; -webkit-text-stroke: 3px rgba(245,166,35,0.85);
  letter-spacing: -0.04em; margin-right: -0.35em; flex: 0 0 auto; user-select: none;
  text-shadow: 0 0 30px rgba(245,166,35,0.12);
}
.rank-poster {
  position: relative; flex: 0 0 auto; width: 230px; aspect-ratio: 16 / 9;
  border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.28s cubic-bezier(.2,.7,.3,1), box-shadow 0.28s;
}
.card.rank:hover .rank-poster { transform: scale(1.07); z-index: 20; box-shadow: var(--shadow); border-color: var(--line); }
.card.rank:hover .card-hover { opacity: 1; }
.card.rank:hover .card-body { opacity: 0; }

/* ---------- Cinematic polish: hero motion + global vignette ---------- */
.hero-bg { animation: heroZoom 30s ease-in-out infinite alternate; transform-origin: 70% 35%; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.12); } }
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 140;
  background: radial-gradient(ellipse at 50% 38%, transparent 58%, rgba(0,0,0,0.38) 100%);
}
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; } }

/* ---------- Generic page shells ---------- */
.page { padding: 7rem clamp(1rem, 4vw, 3.5rem) 4rem; min-height: 80vh; }
.page-title { font-family: "Inter", sans-serif; font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--text); letter-spacing: -.01em; margin-bottom: 0.4rem; }
.page-sub { color: var(--muted); margin-bottom: 2.2rem; max-width: 640px; line-height: 1.6; }

/* grid of season cards */
.season-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1rem; }

/* ---------- Family page ---------- */
.fam-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; }
.fam-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; }
.fam-real { font-family: "Cinzel", serif; font-size: 1.1rem; color: var(--gold); }
.fam-role { color: var(--gold-bright); font-size: 0.9rem; margin: 0.5rem 0; }
.fam-note { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.fam-appears { margin-top: 0.7rem; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gold); border-top: 1px solid var(--line); padding-top: 0.6rem; }

/* ---------- Symbols page ---------- */
.sym-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; }
.sym-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 1.6rem; transition: transform 0.2s, border-color 0.2s; }
.sym-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.sym-icon { font-size: 2.6rem; }
.sym-name { font-family: "Cinzel", serif; font-size: 1.3rem; color: var(--gold); margin: 0.5rem 0 0.2rem; }
.sym-mean { color: var(--gold-bright); font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.sym-desc { color: #d2c9ba; font-size: 0.9rem; line-height: 1.55; }
.sym-forms { margin-top: 0.8rem; font-size: 0.75rem; color: var(--muted); font-style: italic; }

/* ---------- About page ---------- */
.about-hero { font-size: 1.15rem; line-height: 1.8; color: #d8cfc0; max-width: 760px; }
.about-hero .hl { color: var(--gold); font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; margin: 2.4rem 0; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; text-align: center; }
.stat-num { font-family: "Cinzel", serif; font-size: 2rem; color: var(--gold); }
.stat-lbl { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }
.tools { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.tool { border: 1px solid var(--line); border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.82rem; color: var(--gold-bright); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.85);
  display: none; align-items: flex-start; justify-content: center; padding: 4vh 1rem; overflow-y: auto;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  position: relative; width: min(920px, 100%); background: var(--bg-2);
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.7); border: 1px solid var(--line); color: #fff; cursor: pointer; font-size: 1rem;
}
.modal-close:hover { color: var(--gold); }

/* video player area */
.player {
  position: relative; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.player::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-2) 1%, transparent 40%); }
.player-sun { position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), var(--gold) 40%, transparent 70%); filter: blur(1px);
  animation: pulseSun 6s ease-in-out infinite; }
.player-center { position: relative; z-index: 3; text-align: center; }
.player-bigplay {
  width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--gold);
  background: rgba(0,0,0,0.45); color: var(--gold); font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; transition: transform 0.2s, background 0.2s;
}
.player-bigplay:hover { transform: scale(1.08); background: var(--gold); color: #1a1305; }
.player-label { font-family: "Cinzel", serif; letter-spacing: 0.2em; color: var(--gold-bright); font-size: 0.8rem; }
.player-prompt { color: var(--muted); font-size: 0.78rem; margin-top: 0.3rem; }
.player.playing .player-center { display: none; }
.player-progress { position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: var(--gold); z-index: 4; transition: width 0.2s linear; }

/* modal detail body */
.m-body { padding: 1.6rem clamp(1.2rem, 3vw, 2.4rem) 2rem; }
.m-title { font-family: "Cinzel", serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text); }
.m-meta { display: flex; flex-wrap: wrap; gap: 0.7rem; align-items: center; margin: 0.8rem 0; font-size: 0.84rem; color: var(--muted); }
.m-meta .ok { color: #6ec07a; font-weight: 600; }
.m-meta .pill { border: 1px solid var(--line); padding: 0.15rem 0.55rem; border-radius: 4px; }
.m-syms { font-size: 1.1rem; letter-spacing: 0.15em; }
.m-desc { color: #d8cfc0; line-height: 1.65; margin: 1rem 0; }
.m-quote { border-left: 3px solid var(--gold); padding: 0.6rem 0 0.6rem 1rem; margin: 1.2rem 0; font-style: italic; color: var(--gold-bright); }
.m-quote .who { display: block; font-style: normal; color: var(--muted); font-size: 0.75rem; letter-spacing: 0.1em; margin-top: 0.3rem; }
.m-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.m-tag { background: rgba(245,166,35,0.12); color: var(--gold-bright); font-size: 0.76rem; padding: 0.3rem 0.7rem; border-radius: 100px; }
.m-section-title { font-family: "Cinzel", serif; color: var(--gold); font-size: 1.15rem; margin: 1.6rem 0 0.8rem; }

/* episode list */
.ep { display: flex; gap: 1rem; padding: 1rem 0.4rem; border-top: 1px solid var(--line); cursor: pointer; transition: background 0.18s; border-radius: 6px; align-items: center; }
.ep:hover { background: rgba(245,166,35,0.06); }
.ep-num { font-family: "Cinzel", serif; font-size: 1.3rem; color: var(--muted); width: 2rem; text-align: center; flex: 0 0 auto; }
.ep-thumb { flex: 0 0 auto; width: 132px; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; position: relative; }
.ep-thumb .pl { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; opacity: 0; transition: opacity 0.2s; background: rgba(0,0,0,0.35); }
.ep:hover .ep-thumb .pl { opacity: 1; }
.ep-info { flex: 1; }
.ep-info .t { display: flex; justify-content: space-between; gap: 1rem; }
.ep-info .et { font-weight: 600; color: var(--text); }
.ep-info .rt { color: var(--muted); font-size: 0.8rem; flex: 0 0 auto; }
.ep-info .es { color: var(--muted); font-size: 0.84rem; margin-top: 0.3rem; line-height: 1.45; }

/* ---------- Watch-order toggle (Seasons page) ---------- */
.order-toggle { display: inline-flex; gap: 0.3rem; background: var(--panel); border: 1px solid var(--line); border-radius: 100px; padding: 0.3rem; margin-bottom: 1.2rem; }
.order-btn { background: none; border: none; color: var(--muted); font-family: inherit; font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1.1rem; border-radius: 100px; cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.order-btn:hover { color: var(--text); }
.order-btn.on { background: var(--gold); color: #1a1305; }

/* ---------- Founding Members band ---------- */
.founding { padding: 4rem clamp(1rem, 4vw, 3.5rem); background:
  radial-gradient(circle at 50% 0%, rgba(245,166,35,0.16) 0%, transparent 55%),
  linear-gradient(180deg, #120d05 0%, var(--bg) 100%);
  border-top: 1px solid var(--line); text-align: center; }
.founding-inner { max-width: 720px; margin: 0 auto; }
.founding-badge { display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); border: 1px solid var(--line); border-radius: 100px; padding: 0.35rem 0.9rem; text-transform: uppercase; margin-bottom: 1rem; }
.founding-title { font-family: "Cinzel", serif; font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--text); }
.founding-sub { color: #d2c9ba; line-height: 1.65; margin: 0.8rem auto 1.6rem; max-width: 600px; }
.founding-tiers { display: flex; justify-content: center; margin-bottom: 1.6rem; }
.founding-tier { background: var(--panel); border: 1px solid var(--gold); border-radius: 14px; padding: 1.2rem 2.4rem; }
.ft-price { font-family: "Cinzel", serif; font-size: 2.2rem; color: var(--gold); }
.ft-price span { font-size: 0.95rem; color: var(--muted); font-family: "Inter", sans-serif; }
.ft-note { color: var(--muted); font-size: 0.82rem; margin-top: 0.2rem; }
.join-form { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.4rem; }
.join-input { flex: 1; min-width: 220px; max-width: 320px; background: rgba(0,0,0,0.5); border: 1px solid var(--line); border-radius: 6px; padding: 0.8rem 1rem; color: var(--text); font-size: 1rem; font-family: inherit; }
.join-input:focus { outline: none; border-color: var(--gold); }
.hidden-bot { display: none; }
.join-thanks { background: rgba(110,192,122,0.1); border: 1px solid rgba(110,192,122,0.4); color: #aee0b6; border-radius: 10px; padding: 1rem 1.4rem; margin-bottom: 1.4rem; font-size: 1rem; }
.founding-pays { display: flex; gap: 0.7rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.fp-label { color: var(--muted); font-size: 0.85rem; }
.founder-pay.nudge { animation: nudge 0.6s ease; }
@keyframes nudge { 0%,100% { transform: none; } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.founding-fineprint { color: #6b6358; font-size: 0.76rem; margin-top: 1rem; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 3rem 1rem 4rem; border-top: 1px solid var(--line); margin-top: 2rem; }
.footer-tag { font-family: "Cinzel", serif; color: var(--gold-bright); font-style: italic; font-size: 1.05rem; }
.footer-ded { color: var(--muted); margin-top: 0.5rem; font-size: 0.9rem; }
.footer-meta { color: #6b6358; margin-top: 1rem; font-size: 0.75rem; letter-spacing: 0.04em; }

/* ---------- Profile gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 800; display: none;
  flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 35%, #160f04 0%, #050301 75%);
}
.gate.open { display: flex; }
.gate-title { font-family: "Cinzel", serif; font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 2.5rem; font-weight: 700; }
.gate-profiles { display: flex; gap: clamp(1rem, 4vw, 2.4rem); flex-wrap: wrap; justify-content: center; }
.gate-profile { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.gate-av {
  width: clamp(86px, 14vw, 130px); height: clamp(86px, 14vw, 130px); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-family: "Cinzel", serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem); color: #1a1305; border: 3px solid transparent; transition: border-color 0.2s, transform 0.2s;
}
.gate-profile:hover .gate-av { border-color: #fff; transform: scale(1.05); }
.gate-name { color: var(--muted); font-size: 1rem; transition: color 0.2s; }
.gate-profile:hover .gate-name { color: var(--text); }

/* ---------- Continue-watching card extras ---------- */
.card.cw .cw-play { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; text-shadow: 0 2px 12px #000; opacity: 0; transition: opacity 0.2s; }
.card.cw:hover .cw-play { opacity: 1; }
.cw-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,0.2); z-index: 4; }
.cw-bar span { display: block; height: 100%; background: var(--gold); }

/* My List mini-btn state */
.mini-btn.list.on { background: var(--gold); color: #1a1305; border-color: var(--gold); }
.mini-btn.list.big { width: 44px; height: 44px; font-size: 1.1rem; }

/* episode progress + watched */
.ep-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,0.2); }
.ep-bar span { display: block; height: 100%; background: var(--gold); }
.ep-watched { font-size: 0.66rem; letter-spacing: 0.06em; color: #6ec07a; border: 1px solid rgba(110,192,122,0.4); padding: 0.05rem 0.4rem; border-radius: 4px; margin-left: 0.5rem; vertical-align: middle; }
.ep-watched.resume { color: var(--gold-bright); border-color: var(--line); }

/* ---------- Modal hero header ---------- */
.m-hero { position: relative; aspect-ratio: 16/7; min-height: 200px; display: flex; align-items: flex-end; }
.m-hero-sun { position: absolute; right: 8%; top: 12%; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, var(--gold-bright), transparent 68%); opacity: 0.7; }
.m-hero-grad { position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-2) 2%, transparent 60%), linear-gradient(90deg, rgba(6,4,2,0.7), transparent 60%); }
.m-hero-content { position: relative; z-index: 2; padding: 1.6rem clamp(1.2rem, 3vw, 2.4rem); width: 100%; }
.m-hero-actions { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; }

/* ---------- VIDEO PLAYER ---------- */
.vp-overlay {
  position: fixed; inset: 0; z-index: 1000; background: #000; display: none;
  align-items: center; justify-content: center; overflow: hidden; cursor: default;
}
.vp-overlay.open { display: flex; }
.vp-overlay.playing:not(.show-ui) { cursor: none; }
.vp-video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.vp-preview { position: absolute; inset: 0; display: none; }
.vp-preview.show { display: block; }
.vp-preview-sun { position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%); width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, var(--gold-bright), var(--gold) 40%, transparent 70%); filter: blur(1px); animation: pulseSun 6s ease-in-out infinite; }
.vp-scrim { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.7) 100%); opacity: 0; transition: opacity 0.3s; }
.vp-overlay.show-ui .vp-scrim, .vp-overlay:not(.playing) .vp-scrim { opacity: 1; }

.vp-tap { position: absolute; inset: 0; z-index: 3; background: none; border: none; cursor: pointer; }

.vp-top { position: absolute; top: 0; left: 0; right: 0; z-index: 6; display: flex; align-items: center; gap: 1.2rem; padding: 1.4rem clamp(1rem,3vw,2.4rem); transform: translateY(-100%); transition: transform 0.3s; }
.vp-overlay.show-ui .vp-top, .vp-overlay:not(.playing) .vp-top { transform: none; }
.vp-back { background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer; font-weight: 600; }
.vp-back:hover { color: var(--gold); }
.vp-heading { font-family: "Cinzel", serif; color: var(--gold-bright); letter-spacing: 0.05em; }

.vp-center { position: absolute; z-index: 5; display: flex; align-items: center; gap: 2.4rem; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.vp-overlay.show-ui .vp-center, .vp-overlay:not(.playing) .vp-center { opacity: 1; pointer-events: auto; }
.vp-bigplay { width: 78px; height: 78px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.85); background: rgba(0,0,0,0.4); color: #fff; font-size: 1.6rem; cursor: pointer; transition: transform 0.2s, background 0.2s; }
.vp-bigplay:hover { transform: scale(1.08); background: var(--gold); color: #1a1305; border-color: var(--gold); }
.vp-skip { background: none; border: none; color: #fff; font-size: 0.95rem; cursor: pointer; font-weight: 600; opacity: 0.85; }
.vp-skip:hover { color: var(--gold); opacity: 1; }

.vp-bottom { position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; padding: 0 clamp(1rem,3vw,2.4rem) 1.4rem; transform: translateY(120%); transition: transform 0.3s; }
.vp-overlay.show-ui .vp-bottom, .vp-overlay:not(.playing) .vp-bottom { transform: none; }
.vp-seek { position: relative; height: 14px; display: flex; align-items: center; cursor: pointer; margin-bottom: 0.4rem; }
.vp-seek::before { content: ""; position: absolute; left: 0; right: 0; height: 4px; background: rgba(255,255,255,0.25); border-radius: 4px; }
.vp-buffered { position: absolute; left: 0; height: 4px; background: rgba(255,255,255,0.4); border-radius: 4px; width: 0; }
.vp-fill { position: absolute; left: 0; height: 4px; background: var(--gold); border-radius: 4px; width: 0; }
.vp-knob { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); left: 0; transform: translateX(-50%); box-shadow: 0 0 8px rgba(245,166,35,0.7); }
.vp-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.vp-left, .vp-right { display: flex; align-items: center; gap: 0.8rem; }
.vp-mid { font-family: "Cinzel", serif; color: #e9e0d2; font-size: 0.9rem; text-align: center; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vp-c { background: none; border: none; color: #fff; font-size: 1.05rem; cursor: pointer; font-weight: 600; }
.vp-c:hover { color: var(--gold); }
.vp-time { color: #d8cfc0; font-size: 0.82rem; font-variant-numeric: tabular-nums; }
.vp-vol { width: 80px; accent-color: var(--gold); cursor: pointer; }
.vp-demo { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(120px); z-index: 5; text-align: center; color: var(--muted); font-size: 0.78rem; display: none; }
.vp-demo.show { display: block; }
.vp-demo code { color: var(--gold-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero-sun { width: 280px; height: 280px; right: -40px; }
  .card { width: 220px; }
  .ep-thumb { width: 96px; }
}
@media (max-width: 520px) {
  .card { width: 180px; }
  .ep-thumb { display: none; }
  .hero { min-height: 86vh; }
}

/* ── Work With Me / Contact ───────────────────────────── */
.contact { padding: 4rem clamp(1rem, 4vw, 3.5rem); text-align: center;
  background: linear-gradient(180deg, rgba(212,175,55,.06), transparent 70%);
  border-top: 1px solid rgba(212,175,55,.18); }
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-links { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.contact-links .btn { text-decoration: none; }
.btn-ghost { background: transparent; color: var(--gold, #d4af37);
  border: 1px solid rgba(212,175,55,.5); padding: .8rem 1.4rem; border-radius: 6px;
  font-weight: 600; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-ghost:hover { background: rgba(212,175,55,.12); border-color: var(--gold, #d4af37); }

/* ---- Coming-soon badge + button ---- */
.card-soon { position: absolute; top: .55rem; right: .55rem; z-index: 3;
  background: rgba(0,0,0,.6); color: var(--gold, #d4af37); border: 1px solid rgba(212,175,55,.55);
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; padding: .2rem .5rem; border-radius: 4px; }
.btn-play.soon { background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(212,175,55,.08));
  color: var(--gold-bright, #f5c518); border: 1px solid rgba(212,175,55,.5); }

/* ---- Founder page ---- */
.founder-card { display: flex; flex-direction: column; align-items: center; gap: .35rem; margin: .5rem 0 2rem; }
.founder-avatar { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Cinzel", serif; font-size: 2.4rem; font-weight: 900; color: #1a1207;
  background: linear-gradient(135deg, var(--gold-bright, #f5c518), var(--gold-deep, #b8860b));
  box-shadow: 0 8px 30px rgba(212,175,55,.35); }
.founder-name { font-family: "Cinzel", serif; font-size: 1.5rem; font-weight: 700; color: var(--text, #f4efe6); }
.founder-role { color: var(--muted, #9a9488); font-size: .9rem; letter-spacing: .04em; }
.founder-values { max-width: 640px; margin: .8rem auto 0; color: var(--text, #f4efe6); line-height: 2; padding-left: 1.2rem; }
.founder-values li { list-style: "🌅  "; }

/* ---- Socials row (replaces Linktree) ---- */
.socials-row { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.2rem; }
.social-btn { text-decoration: none; color: var(--gold, #d4af37); border: 1px solid rgba(212,175,55,.45);
  background: rgba(212,175,55,.06); padding: .6rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: all .2s; }
.social-btn:hover { background: rgba(212,175,55,.16); border-color: var(--gold, #d4af37); transform: translateY(-1px); }

/* ---- Footer explore links ---- */
.footer-explore { margin: .6rem 0 1rem; font-size: .85rem; }
.footer-explore a { color: var(--muted, #9a9488); text-decoration: none; }
.footer-explore a:hover { color: var(--gold, #d4af37); }

/* ---------- Plans / Subscription page ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; margin-bottom: 2rem; }
.plan-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 1.7rem 1.4rem; display: flex; flex-direction: column; }
.plan-card.highlight { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 18px 50px rgba(0,0,0,.5); }
.plan-card.current { border-color: rgba(110,192,122,.5); }
.plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1305; font-size: .62rem; font-weight: 800; letter-spacing: .12em; padding: .25rem .7rem; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: "Cinzel", serif; font-size: 1.1rem; color: var(--gold-bright); }
.plan-price { font-family: "Cinzel", serif; font-size: 2.4rem; color: var(--text); margin-top: .4rem; }
.plan-price span { font-size: .9rem; color: var(--muted); font-family: "Inter", sans-serif; }
.plan-sub2 { color: var(--muted); font-size: .8rem; margin-bottom: .9rem; }
.plan-feats { list-style: none; margin: .6rem 0 1.3rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.plan-feats li { color: #d2c9ba; font-size: .88rem; padding-left: 1.4rem; position: relative; }
.plan-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.plan-cta { margin-top: auto; text-align: center; border-radius: 8px; padding: .7rem; font-weight: 600; font-size: .9rem; }
.plan-cta.active { color: #aee0b6; border: 1px solid rgba(110,192,122,.4); }
.plan-cta.soon { color: var(--muted); border: 1px dashed var(--line); }
.sub-notify { text-align: center; max-width: 620px; margin: 0 auto; padding-top: 1.5rem; }

/* ---------- General OTT footer (overrides earlier centered footer) ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 2rem; padding: 3rem clamp(1rem,4vw,3.5rem) 3rem; text-align: left; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 2.5rem; max-width: 1100px; margin: 0 auto 2rem; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; min-width: 130px; }
.footer-col:first-child { flex: 1 1 240px; }
.footer-brand { font-family: "Cinzel", serif; font-weight: 900; letter-spacing: .18em; color: var(--gold); font-size: 1.3rem; }
.footer-tagline { color: var(--muted); font-size: .86rem; line-height: 1.5; max-width: 280px; }
.footer-h { color: var(--text); font-weight: 600; font-size: .85rem; margin-bottom: .2rem; }
.footer-col a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-meta { text-align: center; color: #6b6358; font-size: .76rem; border-top: 1px solid var(--line); padding-top: 1.5rem; max-width: 1100px; margin: 0 auto; }

/* ---------- Legal pages ---------- */
.legal-banner { background: rgba(245,166,35,0.1); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 8px; padding: 0.9rem 1.1rem; color: var(--gold-bright); font-size: 0.85rem; margin-bottom: 1.8rem; }
.legal-body { max-width: 760px; color: #d2c9ba; line-height: 1.7; }
.legal-body h3 { font-family: "Cinzel", serif; color: var(--gold); font-size: 1.05rem; margin: 1.6rem 0 0.5rem; }
.legal-body p { margin-bottom: 0.8rem; }
.legal-body ul { margin: 0 0 0.9rem 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-body strong { color: var(--text); }
.legal-contact { margin-top: 2rem; color: var(--muted); font-size: 0.9rem; }
.legal-body a, .legal-contact a { color: var(--gold); }

/* ---------- Footer legal/AI note ---------- */
.footer-note { max-width: 1100px; margin: 0 auto 1.2rem; color: #8a8276; font-size: 0.76rem; line-height: 1.6; text-align: center; }
.footer-note a { color: var(--gold-deep); }

/* ---------- HDFC pay button on plan card ---------- */
button.plan-cta.pay { background: var(--gold); color: #1a1305; border: none; cursor: pointer; font-family: inherit; width: 100%; transition: background .2s, transform .15s; }
button.plan-cta.pay:hover { background: var(--gold-bright); transform: translateY(-1px); }
button.plan-cta.pay.nudge { animation: nudge 0.6s ease; }
.pay-note { text-align: center; color: var(--muted); font-size: .85rem; max-width: 620px; margin: 0 auto 1rem; line-height: 1.5; }
.pay-note strong { color: var(--gold-bright); }
.pay-soon { color: #8a8276; }

/* ---------- Launch promo line on plan card ---------- */
.plan-promo { background: rgba(110,192,122,0.12); border: 1px solid rgba(110,192,122,0.4); color: #aee0b6; font-size: 0.8rem; font-weight: 600; text-align: center; border-radius: 8px; padding: 0.5rem 0.6rem; margin-bottom: 0.9rem; }

/* ---------- Raghukula Originals branding ---------- */
.m-original { font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.card-hover-meta .orig { color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- More Like This (modal recommendations) ---------- */
.mlt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.8rem; margin-top: 0.6rem; }
.mlt-card { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.mlt-card:hover { transform: scale(1.04); box-shadow: var(--shadow); border-color: var(--line); }
.mlt-card .card-art { position: absolute; inset: 0; }
.mlt-card .card-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%); }
.mlt-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.5rem 0.6rem; z-index: 2; }
.mlt-title { font-family: "Cinzel", serif; font-weight: 700; font-size: 0.82rem; line-height: 1.15; }
.mlt-era { font-size: 0.66rem; color: var(--gold-bright); margin-top: 0.15rem; }

/* ---------- Up Next countdown (player) ---------- */
.vp-upnext { position: absolute; right: clamp(1rem,3vw,2.4rem); bottom: clamp(5rem,12vh,7rem); z-index: 8; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
.vp-upnext.show { opacity: 1; transform: none; pointer-events: auto; }
.un-card { background: rgba(12,9,4,0.94); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; max-width: 340px; box-shadow: var(--shadow); }
.un-label { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.un-title { font-family: "Cinzel", serif; color: var(--text); font-size: 1rem; margin: 0.3rem 0 0.8rem; }
.un-actions { display: flex; gap: 0.5rem; }
.un-actions .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* ---------- Founding 100 lifetime card ---------- */
.plan-card.founder { border-color: var(--gold-deep); }
.plan-card.founder .plan-sub2 s { color: var(--muted); }
.founder-spots { background: rgba(245,166,35,0.12); border: 1px solid var(--gold-deep); color: var(--gold-bright); font-size: 0.82rem; text-align: center; border-radius: 8px; padding: 0.5rem; margin-bottom: 0.9rem; }
.founder-spots strong { color: var(--gold); }

/* ---------- About "What we offer" cards ---------- */
.about-offer { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 0.5rem; }
.offer-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 1.3rem 1.4rem; }
.offer-h { font-family: "Cinzel", serif; color: var(--gold-bright); font-size: 1.05rem; margin-bottom: 0.35rem; }
.offer-d { color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* ---------- Footer "Questions?" contact (Netflix-style) ---------- */
.footer-contact { display: inline-block; color: var(--muted); font-size: 0.9rem; text-decoration: underline; margin: 0 auto 1.6rem; max-width: 1100px; }
.footer-contact:hover { color: var(--gold); }

/* ---------- Player "Coming Soon" state (episode not uploaded yet) ---------- */
.vp-overlay.soon .vp-bottom, .vp-overlay.soon .vp-center, .vp-overlay.soon .vp-tap, .vp-overlay.soon .vp-scrim { display: none; }
.vp-soon { position: absolute; inset: 0; z-index: 7; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.vp-soon.show { display: flex; }
.soon-card { max-width: 520px; text-align: center; background: rgba(10,8,5,0.8); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 2.2rem; }
.soon-badge { font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.soon-title { font-family: "Cinzel", serif; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); margin: 0.5rem 0 0.2rem; }
.soon-ep { color: var(--gold-bright); font-size: 0.95rem; margin-bottom: 0.9rem; }
.soon-msg { color: #d2c9ba; line-height: 1.6; margin-bottom: 1.4rem; }
.soon-actions { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Single-plan layout (Founding 100 focus) ---------- */
.plan-grid.one { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 2rem; }
