/* ============================================================
   Organism Chart — Stylesheet
   ============================================================ */

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

:root {
    --purple:  #7c3aed;
    --purple2: #6d28d9;
    --yellow:  #fbbf24;
    --yellow2: #f59e0b;
    --white:   #ffffff;
    --off:     #f8f7ff;
    --dark:    #1e1b4b;
    --dark2:   #2d2969;
    --muted:   #6b7280;
    --border:  #e5e7eb;
    --text:    #1f2937;
    --success: #22c55e;

    --radius:    14px;
    --radius-sm: 8px;
    --shadow:    0 4px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
    --max-w:     1180px;
    --font:      'Inter', system-ui, sans-serif;
    --otmp-h:    36px;
    --bar-h:     36px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow); color: var(--dark);
    font-weight: 800; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid var(--yellow); cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--yellow2); border-color: var(--yellow2); box-shadow: 0 6px 24px rgba(251,191,36,.4); transform: translateY(-1px); }

.btn-ghost {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,.9);
    font-weight: 700; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,.35); cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.75); color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--text);
    font-weight: 700; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid var(--border); cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.btn-outline-purple {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: var(--purple);
    font-weight: 700; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid var(--purple); cursor: pointer;
    transition: background .2s, color .2s;
}
.btn-outline-purple:hover { background: var(--purple); color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-nav {
    background: var(--yellow); color: var(--dark);
    font-weight: 800; font-size: .9rem;
    padding: 10px 22px; border-radius: var(--radius-sm);
    transition: background .2s;
}
.btn-nav:hover { background: var(--yellow2); }

/* ---------- Contact Bars ---------- */
.otmp-banner {
    background: #0d1b2a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 20px;
    width: 100%;
}
.otmp-banner-top {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1003;
}
.contact-band {
    background: var(--dark); color: rgba(255,255,255,.75);
    text-align: center; font-size: .88rem; padding: 18px 16px;
}
.contact-band a { color: var(--yellow); font-weight: 600; }
.contact-band a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.light-section { background: var(--off); }
.dark-section { background: var(--dark); color: var(--white); position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; margin: 16px 0 20px; color: var(--text); }
.dark-section .section-header h2, .section-header.light h2 { color: var(--white); }

.section-tag {
    display: inline-block; background: rgba(124,58,237,.12); color: var(--purple);
    font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
}
.dark-section .section-tag, .section-header.light .section-tag { background: rgba(251,191,36,.2); color: var(--yellow); }

.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-header.light .section-sub, .dark-section .section-sub { color: rgba(255,255,255,.6); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: var(--otmp-h); left: 0; right: 0;
    z-index: 1000; padding: 16px 0;
    background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--border);
    transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
    background: rgba(30,27,75,.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
    padding: 12px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-brand { display: flex; align-items: center; gap: 12px; color: var(--dark); font-size: 1.4rem; font-weight: 900; flex-shrink: 0; letter-spacing: -.02em; transition: color .3s; }
.nav-brand .brand-name { color: var(--dark); transition: color .3s; }
.navbar.scrolled .nav-brand,
.navbar.scrolled .nav-brand .brand-name { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links li a { color: var(--text); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links li a:hover { color: var(--purple); }
.navbar.scrolled .nav-links li a { color: rgba(255,255,255,.8); }
.navbar.scrolled .nav-links li a:hover { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .25s, opacity .25s, background .3s; }
.navbar.scrolled .nav-toggle span { background: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh; background: var(--white);
    display: flex; flex-direction: column; justify-content: center;
    padding: 160px 0 80px; position: relative; overflow: hidden;
}

.hero-bg { display: none; }

.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px; position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124,58,237,.1); color: var(--purple);
    font-size: .85rem; font-weight: 600; padding: 8px 16px;
    border-radius: 100px; border: 1px solid rgba(124,58,237,.2);
    margin-bottom: 24px; width: fit-content;
}
.badge-dot { width: 8px; height: 8px; background: var(--purple); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900;
    line-height: 1.08; color: var(--dark); letter-spacing: -.025em;
    margin-bottom: 24px;
}
.accent { color: var(--purple); }

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--muted);
    max-width: 500px; line-height: 1.7; margin-bottom: 36px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hero character art */
.hero-art { display: flex; align-items: center; justify-content: center; }

.hero-one-sheet {
    max-width: 100%; width: 480px;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

.hero-scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(30,27,75,.3); font-size: .75rem; letter-spacing: .08em; z-index: 2;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid rgba(30,27,75,.2); border-bottom: 2px solid rgba(30,27,75,.2);
    transform: rotate(45deg); animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 0; overflow: hidden; position: relative; z-index: 2;
}
.marquee-row { display: flex; overflow: hidden; width: 100%; }
.marquee-inner {
    display: flex; align-items: center; gap: 0;
    flex-shrink: 0; min-width: 100%;
}
.marquee-row-left .marquee-inner { animation: marquee-left 30s linear infinite; }
@keyframes marquee-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.scroll-img {
    height: 56px; width: auto; flex-shrink: 0;
    display: block;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }

.about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
    line-height: 1.2; margin: 16px 0 24px; color: var(--text);
}
.about-text p {
    font-size: .98rem; color: var(--muted); line-height: 1.8;
    margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--purple); font-weight: 700; }

.tagline-quote {
    font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900;
    color: var(--dark); line-height: 1.3; letter-spacing: -.02em;
    border-left: 5px solid var(--yellow); padding-left: 24px;
    font-style: italic;
}

/* ============================================================
   CAST
   ============================================================ */
.cast-grid {
    display: flex; justify-content: center; align-items: flex-start;
    gap: 24px; flex-wrap: wrap;
}

.cast-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius); padding: 20px 16px; text-align: center;
    flex: 0 0 calc(25% - 18px);
    transition: background .2s, border-color .2s, transform .25s;
}
.cast-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }

.cast-img-wrap {
    width: 100%; max-width: 200px; aspect-ratio: 1; margin: 0 auto 16px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid rgba(255,255,255,.1);
    background: white;
    transition: border-color .25s;
}
.cast-card:hover .cast-img-wrap { border-color: var(--yellow); }
.cast-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 10px; box-sizing: border-box; display: block; }

.cast-role {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--yellow); margin-bottom: 6px;
}
.cast-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cast-card p  { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.cast-barkley:hover   { border-color: rgba(180,140,60,.4); }
.cast-sterling:hover  { border-color: rgba(200,100,50,.4); }
.cast-jene:hover      { border-color: rgba(100,130,180,.4); }
.cast-whitmore:hover  { border-color: rgba(251,191,36,.4); }

/* ============================================================
   LATEST STRIP
   ============================================================ */
.strip-preview {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow);
}

.strip-free-badge {
    display: inline-block; background: rgba(124,58,237,.1); color: var(--purple);
    font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
    border: 1px solid rgba(124,58,237,.2);
}

.strip-panels {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px; border-radius: 8px; overflow: hidden; height: 150px;
}
.sp { border-radius: 4px; }
.sp-1 { background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%); }
.sp-2 { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.sp-3 { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }

.strip-label {
    margin-top: 12px; font-size: .78rem; font-weight: 600; color: var(--muted);
    text-align: center; letter-spacing: .06em; text-transform: uppercase;
}

.strip-episode {
    display: inline-block; background: rgba(251,191,36,.15); color: var(--yellow2);
    font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.strip-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -.02em; }
.strip-info > p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.strip-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.strip-member-note {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; color: var(--muted); background: var(--off);
    padding: 10px 14px; border-radius: var(--radius-sm);
}
.strip-member-note svg { width: 16px; height: 16px; color: var(--purple); flex-shrink: 0; }
.strip-member-note strong { color: var(--purple); }

/* ============================================================
   MEMBER PERKS
   ============================================================ */
.perks-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.perk-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius); padding: 40px 28px; text-align: center;
    transition: background .2s, border-color .2s, transform .25s;
}
.perk-card:hover { background: rgba(255,255,255,.08); border-color: rgba(251,191,36,.3); transform: translateY(-4px); }

.perk-icon-wrap { position: relative; width: 60px; height: 60px; margin: 0 auto 20px; }
.perk-icon {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1; transition: transform .2s;
}
.perk-card:hover .perk-icon { transform: scale(1.08); }
.perk-icon svg { width: 26px; height: 26px; }

.perk-early   { background: rgba(251,191,36,.18);  color: var(--yellow); }
.perk-archive { background: rgba(167,139,250,.18); color: #a78bfa; }
.perk-mail    { background: rgba(244,114,182,.18); color: #f472b6; }

.perk-icon-wrap::before,
.perk-icon-wrap::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.4); opacity: 0; pointer-events: none;
}
.perk-card:hover .perk-icon-wrap::before { animation: ring-out 1.3s ease-out infinite; }
.perk-card:hover .perk-icon-wrap::after  { animation: ring-out 1.3s 0.32s ease-out infinite; }
@keyframes ring-out { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(2.4); opacity: 0; } }

.perk-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.perk-card p  { font-size: .92rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
    display: flex; align-items: flex-start; gap: 16px;
    max-width: 960px; margin: 0 auto;
}
.step {
    flex: 1; text-align: center; padding: 32px 24px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.step-num {
    width: 52px; height: 52px; background: var(--purple);
    border-radius: 50%; font-size: 1.4rem; font-weight: 900; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p  { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--purple); opacity: .4; flex-shrink: 0; margin-top: 52px; }

/* ============================================================
   PRICING
   ============================================================ */
.plans-row-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
    max-width: 1060px; margin: 0 auto;
}
.plan-card {
    background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 36px 28px;
    position: relative; transition: box-shadow .25s;
}
.plan-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.25); }
.plan-card.plan-popular {
    border-color: var(--yellow); background: rgba(251,191,36,.06);
    box-shadow: 0 8px 40px rgba(251,191,36,.15);
}

.popular-badge, .annual-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.popular-badge { background: var(--yellow); color: var(--dark); }
.annual-badge  { background: var(--success); color: var(--white); }

.plan-card.plan-annual {
    border-color: var(--success); background: rgba(34,197,94,.06);
    box-shadow: 0 8px 40px rgba(34,197,94,.15);
}
.plan-annual .plan-tier { color: var(--success); }

.btn-annual {
    display: flex; align-items: center; justify-content: center;
    width: 100%; background: var(--success); color: var(--white);
    font-weight: 800; font-size: .95rem;
    padding: 13px 28px; border-radius: var(--radius-sm);
    border: 2px solid var(--success); cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-annual:hover { background: #16a34a; border-color: #16a34a; box-shadow: 0 6px 24px rgba(34,197,94,.35); transform: translateY(-1px); }
.plan-tier { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.plan-popular .plan-tier { color: var(--yellow); }
.plan-price { font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 12px; }
.plan-mo { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.4); }
.plan-desc { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.55; margin-bottom: 20px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.feat-yes { color: rgba(255,255,255,.85); }
.feat-yes::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.feat-no  { color: rgba(255,255,255,.25); }
.feat-no::before  { content: '✗'; color: rgba(255,255,255,.2); flex-shrink: 0; }
.plan-card .btn-primary, .plan-card .btn-outline { width: 100%; justify-content: center; }
.plan-card .btn-outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.plan-card .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.plan-cancel { font-size: .78rem; color: rgba(255,255,255,.3); text-align: center; margin-top: 10px; }

/* ============================================================
   MERCH BANNER
   ============================================================ */
.merch-banner {
    background: linear-gradient(135deg, var(--purple) 0%, #4c1d95 100%);
    padding: 80px 0;
}
.merch-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.merch-text .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.merch-text h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
    color: var(--white); margin: 12px 0 8px; letter-spacing: -.02em;
}
.merch-text p { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 400px; }
.btn-merch {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--yellow); color: var(--dark);
    font-weight: 800; font-size: 1.05rem;
    padding: 18px 36px; border-radius: var(--radius-sm);
    border: none; cursor: pointer; white-space: nowrap;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-merch:hover { background: var(--yellow2); box-shadow: 0 8px 32px rgba(251,191,36,.4); transform: translateY(-2px); }
.btn-merch svg { width: 18px; height: 18px; transition: transform .2s; }
.btn-merch:hover svg { transform: translateX(3px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px; background: none; border: none;
    font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text);
    cursor: pointer; text-align: left; transition: color .2s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--purple); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--purple); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 24px; }
.faq-a.open { max-height: 220px; padding-bottom: 20px; }
.faq-a p { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.1rem; font-weight: 800; }
.footer-logo { width: 28px; height: 28px; object-fit: contain; }
.footer-brand .brand-name { color: var(--white); }
.footer-email { font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-email a { color: var(--yellow); font-weight: 600; }
.footer-email a:hover { text-decoration: underline; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.38); font-style: italic; }
.footer-links { font-size: .88rem; }
.footer-links a { color: var(--yellow); font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.22); }

/* ============================================================
   ON THE MAP PRO BANNER
   ============================================================ */
.otmp-banner-logo-wrap {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    perspective: 500px;
}
.otmp-banner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transform-style: preserve-3d;
}
@keyframes otmp-logo-drop {
    0%   { opacity: 0; transform: translateY(-14px) scale(.7); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes otmp-logo-spin {
    0%   { transform: rotateY(0deg);    }
    30%  { transform: rotateY(900deg);  }
    58%  { transform: rotateY(1170deg); }
    78%  { transform: rotateY(1296deg); }
    91%  { transform: rotateY(1350deg); }
    100% { transform: rotateY(1440deg); }
}
.otmp-banner-text {
    font-size: .76rem;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
    margin-right: 2px;
}
.otmp-banner-name {
    font-weight: 900;
    font-size: .82rem;
    white-space: nowrap;
}
.otmp-name-map { color: #ff6b35; }
.otmp-name-pro { color: #ffffff; }
.otmp-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}
.otmp-banner-email {
    font-size: .74rem;
    color: #ff6b35;
    text-decoration: none;
    white-space: nowrap;
}
.otmp-banner-email:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-art { display: flex; justify-content: center; margin-top: 8px; }
    .hero-one-sheet { width: 320px; }
    .about-inner { grid-template-columns: 1fr; gap: 32px; }
    .perks-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .strip-preview { grid-template-columns: 1fr; gap: 32px; }
    .cast-card { flex: 0 0 calc(50% - 12px); max-width: none; }
}

@media (max-width: 560px) {
    .cast-card { flex: 0 0 100%; max-width: none; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Hide email + divider on mobile so banner stays single-line */
    .otmp-divider { display: none; }
    .otmp-banner-email { display: none; }

    /* Remove backdrop-filter on mobile — it traps fixed children in a stacking context */
    .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; background: #ffffff; }
    .navbar.scrolled { background: #1e1b4b; }

    .nav-links {
        display: none;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: center; justify-content: center; gap: 40px;
        z-index: 998;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { font-size: 1.3rem; font-weight: 700; color: #1e1b4b; }
    .nav-links li a:hover { color: var(--purple); }
    .nav-links li .btn-nav { background: var(--yellow); color: var(--dark); padding: 12px 28px; border-radius: var(--radius-sm); }

    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .steps-row { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 0 auto; }

    .plans-row-3 { grid-template-columns: 1fr; }

    .merch-inner { flex-direction: column; text-align: center; }
    .merch-text p { margin: 0 auto; }
}

@media (max-width: 480px) {
    .hero { padding: 120px 0 56px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-one-sheet { width: 260px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .section-header h2 { font-size: 1.7rem; }
    .strip-preview { padding: 24px; }
    .strip-actions { flex-direction: column; }
    .strip-actions a { width: 100%; justify-content: center; }
    .cb-label { display: none; }

    /* OTMP banner: tighten padding on small screens */
    .otmp-banner { padding: 8px 14px; gap: 8px; }
    .otmp-banner-text { font-size: .72rem; }
    .otmp-banner-name { font-size: .78rem; }

    /* Nav toggle: keep it within the navbar padding */
    .nav-inner { padding: 0 16px; }

    /* Members note: stack icon and text cleanly */
    .strip-member-note { flex-wrap: wrap; font-size: .8rem; }
}
