@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F5F0E6;
  --dark: #1C1C1C;
  --purple: #6C4FD4;
  --purple-light: #7B5DE8;
  --orange: #E8762A;
  --border: #DDD5C4;
  --white: #fff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--dark); overflow-x: hidden; font-size: 15px; }
a { text-decoration: none; color: inherit; }

/* LANG BAR */
.lang-bar { background: #1A1A2E; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; padding: 7px 24px; font-size: 12px; font-weight: 500; }
.lang-bar .label { color: rgba(255,255,255,0.4); margin-right: 6px; }
.lang-bar a { color: rgba(255,255,255,0.65); padding: 2px 10px; border-radius: 4px; transition: color 0.2s; }
.lang-bar a:hover { color: #fff; }

/* NAVBAR */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,5,25,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0; height: 60px;
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; width: 100%;
}
nav.nav-light { background: var(--bg); border-bottom: 1px solid var(--border); }

.nav-logo { display: flex; align-items: center; }
.nav-wordmark { height: 28px; width: auto; filter: brightness(0) invert(1); transition: filter 0.3s; }
nav.nav-light .nav-wordmark { filter: none; }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75); padding: 7px 11px; border-radius: 8px; display: flex; align-items: center; gap: 3px; transition: background 0.15s, color 0.15s; }
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
nav.nav-light .nav-links a { color: #555; }
nav.nav-light .nav-links a:hover { background: rgba(0,0,0,0.05); color: var(--dark); }
.caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: 0.45; margin-top: 1px; }

/* DROPDOWNS */
.has-dropdown { position: relative; }
/* Invisible bridge fills the gap so cursor doesn't exit hover zone */
.has-dropdown::after { content: ''; position: absolute; bottom: -12px; left: 0; right: 0; height: 12px; }
.dropdown { display: none; position: absolute; top: calc(100% + 12px); left: -14px; background: #fff; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06); min-width: 210px; padding: 8px 0; z-index: 300; }
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 16px; font-size: 13px; font-weight: 500; color: var(--dark) !important; background: transparent !important; transition: background 0.12s, color 0.12s; border-radius: 0; }
.dropdown a:hover { background: var(--bg) !important; color: var(--purple) !important; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-insta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 7px 14px; transition: all 0.15s; }
.btn-insta:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-insta svg { width: 14px; height: 14px; }
nav.nav-light .btn-insta { color: #555; border-color: var(--border); }
nav.nav-light .btn-insta:hover { border-color: #aaa; color: var(--dark); }
.btn-ask { background: #fff; color: var(--dark); border: none; border-radius: 100px; padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s, color 0.2s; }
.btn-ask:hover { background: rgba(255,255,255,0.85); }
nav.nav-light .btn-ask { background: var(--dark); color: #fff; }
nav.nav-light .btn-ask:hover { background: #333; }
/* Sign In / Register free nav buttons (Option B) */
.btn-signin { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); padding: 7px 4px; transition: color 0.15s; }
.btn-signin:hover { color: #fff; }
nav.nav-light .btn-signin { color: var(--purple); }
nav.nav-light .btn-signin:hover { color: var(--purple-light); }
.btn-register { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.28); border-radius: 100px; padding: 7px 15px; transition: all 0.15s; }
.btn-register:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
nav.nav-light .btn-register { color: var(--purple); border-color: var(--purple); }
nav.nav-light .btn-register:hover { background: var(--purple); color: #fff; }
/* Footer auth links */
.foot-auth-link { color: var(--purple) !important; font-weight: 600; }
.foot-auth-link:hover { opacity: 0.8; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }
nav.nav-light .hamburger span { background: var(--dark); }

/* HERO — full bleed */
.hero-full { position: relative; min-height: calc(100vh - 60px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-layer { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,4,20,0.62) 0%, rgba(8,4,20,0.44) 45%, rgba(8,4,20,0.86) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 60px 24px 72px; max-width: 600px; width: 100%; }
.hero-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 14px; }
.hero-title { font-family: 'Fraunces', serif; font-size: clamp(2.6rem, 8vw, 3.8rem); font-weight: 800; line-height: 1.04; letter-spacing: -1.5px; color: #fff; margin-bottom: 14px; }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.58); line-height: 1.65; margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* Q&A PREVIEW */
.hero-qa-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-qa { background: rgba(255,255,255,0.09); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.15); border-radius: 18px; padding: 14px 16px; margin-bottom: 0; flex: 1; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.hqa-nav { display: none; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 50%; width: 36px; height: 36px; flex-shrink: 0; cursor: pointer; font-size: 16px; line-height: 1; transition: background 0.2s; }
.hqa-nav:hover { background: rgba(255,255,255,0.25); }
@media (min-width: 681px) { .hqa-nav { display: flex; align-items: center; justify-content: center; } }
.hqa-q, .hqa-a { display: flex; align-items: flex-start; gap: 10px; transition: opacity 0.4s, transform 0.4s; }
.hqa-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.hqa-av-q { background: rgba(255,255,255,0.15); }
.hqa-av-a { background: var(--purple); color: #fff; font-size: 10px; font-weight: 800; }
.hqa-text { font-size: 13px; color: rgba(255,255,255,0.88); font-weight: 500; line-height: 1.5; padding-top: 4px; }
.hqa-a { background: rgba(108,79,212,0.35); border-radius: 12px; padding: 10px 12px; }
.hqa-a-body { flex: 1; min-width: 0; }
.hqa-a-text { font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.5; display: block; }
.hqa-dots { display: flex; gap: 5px; justify-content: center; margin-top: 4px; }
.hqa-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.hqa-dot.active { background: #fff; }

/* TOPIC PILLS */
.hero-topics { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.hero-topic { display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 100px; font-size: 12.5px; font-weight: 600; cursor: pointer; text-decoration: none; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border: 1.5px solid rgba(255,255,255,0.2); transition: background 0.15s, transform 0.15s; }
.hero-topic:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* HERO ASK CTA */
.hero-ask-btn { background: #fff; color: var(--dark); border: none; border-radius: 100px; padding: 13px 30px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s; margin-bottom: 10px; }
.hero-ask-btn:hover { background: rgba(255,255,255,0.88); }
.hero-ask-sub { font-size: 11.5px; color: rgba(255,255,255,0.35); }


/* SECTIONS */
.section { padding: 52px 20px; max-width: 960px; margin: 0 auto; }
.sec-label { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; color: var(--purple); text-transform: uppercase; margin-bottom: 8px; text-align: center; }
.sec-title { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 5vw, 2.4rem); font-weight: 800; letter-spacing: -0.8px; color: var(--dark); text-align: center; margin-bottom: 30px; }

/* VIDEO SECTION */
.pl-tabs-wrap { position: relative; margin-bottom: 28px; }
.pl-tabs-wrap::after { content: ''; position: absolute; right: 0; top: 0; bottom: 4px; width: 56px; background: linear-gradient(to right, transparent, var(--bg)); pointer-events: none; }
.pl-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; padding-bottom: 4px; }
.pl-tabs::-webkit-scrollbar { display: none; }
.pl-tab { background: transparent; border: 1.5px solid #DDD5C4; border-radius: 100px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: #666; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.18s; white-space: nowrap; flex-shrink: 0; }
.pl-tab:hover { border-color: var(--purple); color: var(--purple); }
.pl-tab.active { background: var(--purple); border-color: var(--purple); color: #fff; }
.soc-body { display: flex; gap: 20px; align-items: flex-start; }
.player-col { flex: 0 0 260px; }
.player-shell { width: 260px; border-radius: 18px; overflow: hidden; background: #000; aspect-ratio: 9/16; position: relative; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.player-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.player-meta { margin-top: 12px; }
.player-title { font-size: 13.5px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.player-sub { font-size: 12px; color: #888; margin-top: 3px; }
.yt-ext { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 600; color: #E52D27; background: #FEF0EF; padding: 6px 14px; border-radius: 100px; text-decoration: none; transition: background 0.15s; }
.yt-ext:hover { background: #fcd9d7; }
.yt-ext svg { width: 14px; flex-shrink: 0; }
.strip-col { flex: 1; min-width: 0; }
.vid-strip { display: flex; flex-direction: column; gap: 8px; max-height: 508px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(108,79,212,0.2) transparent; padding-right: 2px; }
.vid-strip::-webkit-scrollbar { width: 3px; }
.vid-strip::-webkit-scrollbar-thumb { background: rgba(108,79,212,0.3); border-radius: 4px; }
.vid-card { display: flex; gap: 10px; align-items: center; cursor: pointer; padding: 8px 10px; border-radius: 12px; border: 1.5px solid transparent; transition: all 0.15s; }
.vid-card:hover { background: rgba(0,0,0,0.04); }
.vid-card.active { background: #F0ECFF; border-color: var(--purple); }
.vc-num { font-size: 11px; color: #bbb; width: 16px; text-align: right; flex-shrink: 0; }
.vc-thumb { width: 50px; height: 88px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #222; position: relative; }
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vc-thumb .vc-over { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0); border-radius: 8px; transition: background 0.15s; }
.vid-card:hover .vc-over, .vid-card.active .vc-over { background: rgba(108,79,212,0.5); }
.vc-over svg { width: 16px; fill: #fff; opacity: 0; transition: opacity 0.15s; }
.vid-card:hover .vc-over svg, .vid-card.active .vc-over svg { opacity: 1; }
.vc-info { flex: 1; min-width: 0; }
.vc-title { font-size: 12.5px; font-weight: 600; color: var(--dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vc-meta { font-size: 11px; color: #aaa; margin-top: 3px; }
.soc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.soc-count { font-size: 13px; color: #888; }
.soc-count b { color: var(--dark); }
.btn-yt-pl { display: inline-flex; align-items: center; gap: 7px; background: #E52D27; color: #fff; border: none; border-radius: 100px; padding: 10px 20px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; transition: background 0.18s; }
.btn-yt-pl:hover { background: #c4201c; }
.btn-yt-pl svg { width: 14px; }

/* READS GRID */
.reads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.read-card { display: block; color: inherit; background: var(--white); border-radius: 14px; padding: 16px; border: 1px solid var(--border); cursor: pointer; position: relative; transition: transform 0.15s, box-shadow 0.15s; }
.rc-sep { margin: 0 5px; color: #ddd; }
.read-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.07); }
.rc-arrow { position: absolute; top: 13px; right: 13px; font-size: 14px; color: #aaa; }
.rc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.tag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.t-blue { background: #EEF3FF; color: #3458C4; }
.t-orange { background: #FFF0E6; color: #C45A10; }
.t-teal { background: #E4F5F0; color: #1A6E58; }
.t-purple { background: #F0ECFF; color: #5C38C8; }
.t-green { background: #E8F5EC; color: #1A6E3A; }
.read-card h3 { font-size: 14px; font-weight: 600; line-height: 1.45; color: var(--dark); margin-bottom: 14px; padding-right: 18px; }
.rc-meta { display: flex; gap: 12px; font-size: 12px; color: #999; }
.rc-meta span { display: flex; align-items: center; gap: 4px; }

/* DEMO DAY */
.dday-section { background: #0F0C1E; padding: 72px 24px; }
.dday-inner { max-width: 960px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.dday-left { flex: 1; min-width: 0; }
.dday-right { flex: 0 0 300px; display: flex; flex-direction: column; gap: 10px; }

.dday-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.dday-title { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; line-height: 1.08; letter-spacing: -1px; color: #fff; margin-bottom: 18px; }
.dday-sub { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; max-width: 420px; }

.dday-stats { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.dday-stat { display: flex; flex-direction: column; gap: 2px; }
.dday-num { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -1px; font-family: 'Inter', sans-serif; }
.dday-label { font-size: 11.5px; color: rgba(255,255,255,0.4); font-weight: 500; }

.dday-cta { display: inline-block; background: var(--orange); color: #fff; border-radius: 100px; padding: 13px 28px; font-size: 14px; font-weight: 700; text-decoration: none; transition: filter 0.15s; }
.dday-cta:hover { filter: brightness(1.1); }
.dday-cta-note { font-size: 11.5px; color: rgba(255,255,255,0.3); margin-top: 10px; }

.dday-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.dday-card-icon { font-size: 20px; flex-shrink: 0; }
.dday-card-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.45; font-weight: 500; }

@media (max-width: 720px) {
  .dday-inner { flex-direction: column; gap: 36px; }
  .dday-right { flex: none; width: 100%; }
}

/* CTA DARK */
.cta-section { background: #1E1E2C; padding: 72px 24px; text-align: center; margin-top: 20px; }
.cta-section h2 { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 28px; }
.btn-purple { background: var(--purple); color: #fff; border: none; border-radius: 100px; padding: 14px 32px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.btn-purple:hover { background: var(--purple-light); transform: translateY(-2px); }
.cta-sub { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* BTN OUTLINE */
.view-all { text-align: center; margin-top: 28px; }
.btn-outline { display: inline-block; background: transparent; color: var(--purple); border: 1.5px solid var(--purple); border-radius: 100px; padding: 12px 34px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.btn-outline:hover { background: var(--purple); color: #fff; }

/* FOOTER */
footer { background: #1E1E2C; padding: 56px 24px 28px; }
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
.footer-brand {}
.foot-logo-img { height: 22px; width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 14px; }
.foot-tagline { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; margin-bottom: 20px; max-width: 220px; }
.foot-social { display: flex; flex-direction: column; gap: 10px; }
.foot-insta, .foot-yt { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.52); transition: color 0.2s; text-decoration: none; }
.foot-insta:hover, .foot-yt:hover { color: #fff; }
.foot-insta svg, .foot-yt svg { flex-shrink: 0; }
.footer-col-label { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.58); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: center; }
.foot-copy { font-size: 11px; color: rgba(255,255,255,0.22); }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.45); align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 20px; padding: 30px; max-width: 380px; width: 92%; position: relative; }
.modal-x { position: absolute; top: 14px; right: 14px; background: var(--bg); border: none; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 14px; color: #888; display: flex; align-items: center; justify-content: center; }
.modal-step { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; color: #aaa; margin-bottom: 6px; text-transform: uppercase; }
.modal-h { font-family: 'Fraunces', serif; font-size: 1.45rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.modal-sub { font-size: 12.5px; color: #999; margin-bottom: 18px; }
.modal-ta { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif; resize: none; outline: none; min-height: 90px; transition: border-color 0.2s; }
.modal-ta:focus { border-color: var(--purple); }
.modal-btn { width: 100%; background: var(--purple); color: #fff; border: none; border-radius: 100px; padding: 13px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 12px; transition: background 0.2s; }
.modal-btn:hover { background: var(--purple-light); }
.modal-note { font-size: 11.5px; color: #bbb; text-align: center; margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 720px) { .reads-grid { grid-template-columns: 1fr 1fr; } .curated-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) {
  .nav-links { display: none; } .btn-insta { display: none; } .hamburger { display: flex; }
  .hero-full { min-height: 100svh; }
  .hero-content { padding: 48px 18px 60px; }
  .hero-title { font-size: 2.5rem; }
  .hero-sub { font-size: 14px; }
  .hero-ask-btn { width: 100%; }

  /* Mobile nav drawer */
  nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: rgba(10,5,25,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0 20px;
    z-index: 190;
  }
  nav.mobile-open .nav-links > li > a {
    padding: 13px 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.85) !important;
    background: none !important;
  }
  nav.mobile-open .nav-links > li > a:hover { color: #fff !important; }
  /* Show dropdowns inline on mobile */
  nav.mobile-open .dropdown {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
  }
  nav.mobile-open .dropdown a {
    padding: 9px 24px 9px 40px !important;
    font-size: 13.5px !important;
    color: rgba(255,255,255,0.48) !important;
    background: transparent !important;
  }
  nav.mobile-open .dropdown a:hover { color: rgba(255,255,255,0.85) !important; }
  /* Hamburger → X animation */
  .hamburger span { transition: transform 0.22s, opacity 0.22s; }
  nav.mobile-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.mobile-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.mobile-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 600px) {
  .soc-body { flex-direction: column; }
  .player-col { width: 100%; }
  .player-shell { width: 100%; max-width: 300px; margin: 0 auto; }
  .strip-col { width: 100%; overflow: hidden; }
  .vid-strip { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: visible; padding-bottom: 6px; width: 100%; }
  .vid-card { flex-direction: column; align-items: flex-start; min-width: 70px; padding: 6px; }
  .vc-num { display: none; }
  .vc-thumb { width: 58px; height: 102px; }
  .vc-meta { display: none; }
}
@media (max-width: 420px) { .reads-grid { grid-template-columns: 1fr 1fr; } }

/* PERSON SVG reused */
svg.ps { display: block; }
