:root {
    --sot-purple: #7500cc;
    --sot-purple-dark: #5a0099;
    --sot-purple-light: #9b30ff;
    --sot-gold: #f4bb00;
    --sot-dark: #0d0d0d;
    --sot-text: #1a1a2e;
    --sot-text-muted: #6b7280;
    --sot-bg: #fafafa;
    --sot-white: #ffffff;
    --sot-rainbow: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982);
    --sot-radius: 16px;
    --sot-section-padding: 120px 0;
    --sot-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.sot-packet {
    font-family: var(--sot-font);
    color: var(--sot-text);
    background: var(--sot-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sot-packet > section {
    overflow-x: hidden;
}

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

/* ─── Sticky Nav ─────────────────────────────────────────── */

.sot-packet-nav {
    position: fixed;
    top: var(--sot-nav-offset, 0px);
    left: 0;
    right: 0;
    z-index: 9990;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.sot-packet-nav.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sot-packet-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.sot-packet-nav-logo {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--sot-purple);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.sot-packet-nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sot-packet-nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--sot-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.sot-packet-nav-links a:hover {
    color: var(--sot-purple);
}

.sot-packet-nav-cta {
    background: var(--sot-purple);
    color: var(--sot-white) !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.sot-packet-nav-cta:hover {
    background: var(--sot-purple-dark);
    transform: scale(1.03);
}

.sot-packet-nav-pdf {
    font-size: 13px;
    font-weight: 500;
    color: var(--sot-text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.sot-packet-nav-pdf:hover {
    color: var(--sot-purple);
}

/* ─── Cover ──────────────────────────────────────────────── */

.sot-cover {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--sot-dark);
    overflow: hidden;
    padding: 40px 24px;
}

.sot-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(117, 0, 204, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(36, 64, 142, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(115, 41, 130, 0.25) 0%, transparent 50%);
    animation: sot-bg-pulse 8s ease-in-out infinite alternate;
}

@keyframes sot-bg-pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.sot-cover-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sot-cover-rainbow {
    width: 120px;
    height: 4px;
    background: var(--sot-rainbow);
    border-radius: 2px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: scaleX(0);
    animation: sot-line-in 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sot-line-in {
    to { opacity: 1; transform: scaleX(1); }
}

.sot-cover-year {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: sot-fade-up 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sot-cover h1.sot-cover-heading {
    margin: 0 0 24px 0;
    line-height: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: sot-fade-up 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sot-cover-logo {
    display: block;
    width: clamp(280px, 50vw, 520px);
    height: auto;
    margin: 0 auto;
}

.sot-cover-tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: sot-fade-up 0.8s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sot-cover-mosaic {
    margin: 0 auto 20px;
    opacity: 0;
    animation: sot-fade-up 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    top: -10px;
}

.sot-cover-mosaic img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.sot-cover-mosaic img:hover {
    opacity: 1;
}

.sot-cover-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: sot-fade-up 0.8s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sot-cover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.sot-cover-btn-primary {
    background: var(--sot-white);
    color: var(--sot-dark);
}

.sot-cover-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.sot-cover-btn-secondary {
    background: transparent;
    color: var(--sot-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sot-cover-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.sot-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: sot-fade-up 0.6s 1.5s forwards, sot-bounce 2s 2s infinite;
}

.sot-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.sot-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: sot-scroll-dot 2s infinite;
}

@keyframes sot-scroll-dot {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

@keyframes sot-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes sot-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Sections ───────────────────────────────────────────── */

.sot-section {
    padding: var(--sot-section-padding);
    position: relative;
}

.sot-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sot-section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sot-purple);
    margin-bottom: 12px;
}

.sot-section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sot-text);
    margin: 0 0 16px 0;
}

.sot-section-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--sot-text-muted);
    margin: 0 0 40px 0;
}

.sot-section-body {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
}

.sot-section-body p {
    margin: 0 0 20px 0;
}

/* ─── Reveal Animations ──────────────────────────────────── */

.sot-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sot-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sot-reveal-delay-1 { transition-delay: 0.1s; }
.sot-reveal-delay-2 { transition-delay: 0.2s; }
.sot-reveal-delay-3 { transition-delay: 0.3s; }
.sot-reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Stats Grid ─────────────────────────────────────────── */

.sot-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.sot-stat-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--sot-white);
    border-radius: var(--sot-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sot-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sot-stat-number {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--sot-purple);
    line-height: 1;
    margin-bottom: 8px;
}

.sot-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--sot-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── Hero Image Section ─────────────────────────────────── */

.sot-section-hero {
    width: 100%;
    max-width: 900px;
    height: 400px;
    border-radius: var(--sot-radius);
    overflow: hidden;
    margin: 48px auto;
    position: relative;
}

.sot-section-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sot-section-hero:hover img {
    transform: scale(1.03);
}

/* ─── Hero Slideshow (Ken Burns) ─────────────────────────── */

.sot-hero-slideshow {
    position: relative;
}

.sot-hero-slideshow .sot-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    overflow: hidden;
}

.sot-hero-slideshow .sot-hero-slide-active {
    opacity: 1;
}

.sot-hero-slideshow .sot-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 8s linear;
    will-change: transform;
}

.sot-hero-slideshow .sot-hero-slide-active img {
    transform: scale(1.15);
}

/* ─── Section Callout ────────────────────────────────────── */

.sot-section-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 36px auto;
    max-width: 720px;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(117, 0, 204, 0.08);
    border-left: 4px solid var(--sot-purple);
}

.sot-section-dark .sot-section-callout {
    background: rgba(255, 255, 255, 0.07);
    border-left-color: rgba(255, 255, 255, 0.4);
}

.sot-section-callout-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--sot-purple);
    margin-top: 2px;
}

.sot-section-dark .sot-section-callout-icon {
    color: rgba(255, 255, 255, 0.85);
}

.sot-section-callout-text {
    flex: 1;
}

.sot-section-callout-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--sot-purple);
    margin: 0 0 4px;
    line-height: 1.3;
}

.sot-section-dark .sot-section-callout-title {
    color: #fff;
}

.sot-section-callout-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.sot-section-dark .sot-section-callout-text p {
    color: rgba(255, 255, 255, 0.85);
}

.sot-section-callout a {
    color: var(--sot-purple);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.sot-section-dark .sot-section-callout a {
    color: #c9a0ff;
}

@media (max-width: 600px) {
    .sot-section-callout {
        flex-direction: column;
        gap: 10px;
        padding: 16px 18px;
    }
}

/* ─── Letter Section ─────────────────────────────────────── */

.sot-letter-section {
    background: #f3f0ec;
}

.sot-letter {
    max-width: 860px;
    margin: 0 auto;
    background: var(--sot-white);
    border-radius: 4px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.06),
        0 12px 48px rgba(0, 0, 0, 0.06);
    padding: 60px 64px;
    position: relative;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2a2a2a;
    line-height: 1.75;
}

.sot-letter-header {
    text-align: center;
    margin-bottom: 40px;
}

.sot-letter-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(5735%) hue-rotate(273deg) brightness(72%) contrast(130%);
}

.sot-letter-rainbow {
    width: 80px;
    height: 3px;
    background: var(--sot-rainbow);
    border-radius: 2px;
    margin: 16px auto 0;
}

.sot-letter-sender {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.sot-letter-sender.has-headshot {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.sot-letter-headshot {
    flex-shrink: 0;
}

.sot-letter-headshot img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sot-purple);
    box-shadow: 0 4px 16px rgba(117, 0, 204, 0.15);
}

.sot-letter-sender-info {
    flex: 1;
}

.sot-letter-sender-name {
    font-weight: 700;
    color: #2a2a2a;
    font-size: 16px;
    font-family: var(--sot-font);
}

.sot-letter-sender-title,
.sot-letter-org {
    font-style: italic;
}

.sot-letter-address {
    margin-top: 4px;
}

.sot-letter-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 32px;
}

.sot-letter-body {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}

.sot-letter-body p {
    margin: 0 0 20px;
    text-indent: 0;
}

.sot-letter-body p:first-child::first-letter {
    font-size: 2.4em;
    float: left;
    line-height: 1;
    margin: 4px 8px 0 0;
    font-weight: 700;
    color: var(--sot-purple);
}

.sot-letter-closing {
    margin-top: 36px;
    font-size: 16px;
}

.sot-letter-closing p {
    margin: 0 0 4px;
    font-style: italic;
    color: #555;
}

.sot-letter-signature-img {
    display: block;
    max-height: 70px;
    width: auto;
    margin: 12px 0 8px;
}

.sot-letter-sig-name {
    font-weight: 700;
    font-size: 16px;
    color: #2a2a2a;
}

.sot-letter-sig-title {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.sot-letter-photo {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.sot-letter-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.sot-letter-photo.sot-hero-slideshow {
    position: relative;
    height: 400px;
}

.sot-letter-photo.sot-hero-slideshow .sot-hero-slide img {
    border-radius: 0;
}

@media (max-width: 768px) {
    .sot-letter {
        padding: 40px 28px;
    }
}

@media (max-width: 480px) {
    .sot-letter {
        padding: 32px 20px;
    }

    .sot-letter-body {
        font-size: 15px;
    }
}

/* ─── Featured Events ────────────────────────────────────── */

.sot-featured-events {
    margin-top: 64px;
}

.sot-featured-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: -0.01em;
}

.sot-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sot-featured-card {
    border-radius: var(--sot-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.sot-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sot-featured-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sot-featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sot-featured-card:hover .sot-featured-card-img img {
    transform: scale(1.06);
}

.sot-featured-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sot-purple-dark), var(--sot-purple-light));
    font-size: 48px;
}

.sot-featured-card-body {
    padding: 24px;
}

.sot-featured-card-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--sot-white);
}

.sot-featured-card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

/* ─── Featured Shows ─────────────────────────────────────── */

.sot-featured-shows {
    margin-top: 64px;
}

.sot-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.sot-show-card {
    border-radius: var(--sot-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.sot-show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--sot-purple);
}

.sot-show-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.sot-show-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sot-show-card:hover .sot-show-card-img img {
    transform: scale(1.06);
}

.sot-show-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sot-purple-dark), var(--sot-purple-light));
    font-size: 48px;
}

.sot-show-card-body {
    padding: 24px;
}

.sot-show-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--sot-white);
}

.sot-show-card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 12px;
}

.sot-show-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sot-purple-light);
    transition: color 0.2s;
}

.sot-show-card:hover .sot-show-link {
    color: var(--sot-white);
}

.sot-show-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ─── Show Audio Player ─────────────────────────────────── */

.sot-show-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.sot-show-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #805ad5, #6b46c1);
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 8px rgba(128, 90, 213, 0.4);
    padding: 0;
}

.sot-show-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(128, 90, 213, 0.55);
}

.sot-show-play-btn:active {
    transform: scale(0.95);
}

.sot-show-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.sot-show-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sot-show-progress-bar:hover {
    height: 5px;
}

.sot-show-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #805ad5, #b794f4);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.sot-show-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-variant-numeric: tabular-nums;
    min-width: 34px;
    text-align: right;
    flex-shrink: 0;
}

.sot-show-player.playing .sot-show-time {
    color: rgba(255, 255, 255, 0.75);
}

.sot-section:not(.sot-section-dark) .sot-show-player {
    border-top-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.03);
}

.sot-section:not(.sot-section-dark) .sot-show-progress-bar {
    background: rgba(0, 0, 0, 0.1);
}

.sot-section:not(.sot-section-dark) .sot-show-time {
    color: rgba(0, 0, 0, 0.4);
}

/* light section show card overrides */
.sot-section:not(.sot-section-dark) .sot-show-card {
    background: var(--sot-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sot-section:not(.sot-section-dark) .sot-show-card-body h4 {
    color: var(--sot-text);
}

.sot-section:not(.sot-section-dark) .sot-show-card-body p {
    color: var(--sot-text-muted);
}

.sot-section:not(.sot-section-dark) .sot-show-link {
    color: var(--sot-purple);
}

/* ─── Photo Gallery ──────────────────────────────────────── */

.sot-gallery {
    margin-top: 64px;
}

.sot-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.sot-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.sot-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sot-gallery-item:hover img {
    transform: scale(1.05);
}

.sot-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--sot-white);
    font-size: 12px;
    font-weight: 500;
}

/* light section featured card overrides */
.sot-section:not(.sot-section-dark) .sot-featured-card {
    background: var(--sot-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sot-section:not(.sot-section-dark) .sot-featured-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.sot-section:not(.sot-section-dark) .sot-featured-card-body h4 {
    color: var(--sot-text);
}

.sot-section:not(.sot-section-dark) .sot-featured-card-body p {
    color: #555;
}

/* ─── Dark Section ───────────────────────────────────────── */

.sot-section-dark {
    background: var(--sot-dark);
    color: var(--sot-white);
}

.sot-section-dark .sot-section-title {
    color: var(--sot-white);
}

.sot-section-dark .sot-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.sot-section-dark .sot-section-body,
.sot-section-dark .sot-section-body p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.sot-section-dark .sot-stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sot-section-dark .sot-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── Subsection Cards ───────────────────────────────────── */

.sot-subsection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.sot-subsection-card {
    background: var(--sot-white);
    border-radius: var(--sot-radius);
    padding: 40px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sot-subsection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sot-subsection-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--sot-text);
}

.sot-subsection-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--sot-text-muted);
    margin: 0;
}

.sot-subsection-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sot-purple), var(--sot-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.sot-subsection-icon svg {
    width: 24px;
    height: 24px;
}

/* ─── Tier Cards ─────────────────────────────────────────── */

.sot-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.sot-tier-card {
    background: var(--sot-white);
    border-radius: var(--sot-radius);
    padding: 36px 28px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sot-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sot-rainbow);
    opacity: 0;
    transition: opacity 0.3s;
}

.sot-tier-card:hover,
.sot-tier-card.expanded {
    border-color: var(--sot-purple);
    box-shadow: 0 12px 40px rgba(117, 0, 204, 0.12);
    transform: translateY(-4px);
}

.sot-tier-card:hover::before,
.sot-tier-card.expanded::before {
    opacity: 1;
}

.sot-tier-card-featured {
    border-color: var(--sot-purple);
    box-shadow: 0 8px 30px rgba(117, 0, 204, 0.1);
}

.sot-tier-card-featured::before {
    opacity: 1;
}

.sot-tier-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--sot-text);
    margin: 0 0 4px 0;
}

.sot-tier-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--sot-purple);
    letter-spacing: -0.02em;
    margin: 8px 0 16px 0;
}

.sot-tier-installment {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--sot-purple);
    background: rgba(117, 0, 204, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.sot-tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sot-tier-card.expanded .sot-tier-benefits {
    max-height: 600px;
}

.sot-tier-benefits li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sot-text-muted);
    padding: 6px 0 6px 24px;
    position: relative;
}

.sot-tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sot-purple);
    font-weight: 700;
}

.sot-tier-expand {
    font-size: 13px;
    font-weight: 600;
    color: var(--sot-purple);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sot-tier-expand-arrow {
    transition: transform 0.3s;
    display: inline-block;
}

.sot-tier-card.expanded .sot-tier-expand-arrow {
    transform: rotate(180deg);
}

/* ─── CTA Section ────────────────────────────────────────── */

.sot-cta-section {
    background: linear-gradient(135deg, var(--sot-purple-dark) 0%, var(--sot-purple) 50%, #24408e 100%);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sot-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sot-rainbow);
}

.sot-cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--sot-white);
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.sot-cta-lead {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.sot-cta-perks {
    max-width: 600px;
    margin: 36px auto 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 28px 32px 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sot-cta-perks-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.sot-cta-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.sot-cta-perk-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
}

.sot-cta-perks-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 16px 0 0;
    line-height: 1.5;
    text-align: center;
}

.sot-cta-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 16px auto 0;
    max-width: 640px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 600px) {
    .sot-cta-perks-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .sot-cta-perks {
        padding: 24px 20px 20px;
    }
}

/* ─── Rainbow Divider ────────────────────────────────────── */

.sot-rainbow-divider {
    height: 4px;
    background: var(--sot-rainbow);
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
    :root {
        --sot-section-padding: 80px 0;
    }

    .sot-packet-nav {
        padding: 0 16px;
    }

    .sot-packet-nav-inner {
        height: 48px;
    }

    .sot-packet-nav-links {
        display: none;
    }

    .sot-packet-nav-logo {
        font-size: 12px;
    }

    .sot-packet-nav-cta {
        font-size: 12px;
        padding: 6px 16px;
    }

    .sot-tiers-grid {
        grid-template-columns: 1fr;
    }

    .sot-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .sot-subsection-grid {
        grid-template-columns: 1fr;
    }

    .sot-section-hero {
        height: 250px;
    }

    .sot-featured-grid,
    .sot-shows-grid {
        grid-template-columns: 1fr;
    }

    .sot-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .sot-cover-logo {
        width: 240px;
    }

    .sot-stats-row {
        grid-template-columns: 1fr;
    }

    .sot-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Lightbox ───────────────────────────────────────────── */

.sot-gallery-item[data-lightbox] {
    cursor: zoom-in;
}

.sot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sot-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.sot-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sot-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sot-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.sot-lightbox.active .sot-lightbox-img {
    transform: scale(1);
}

.sot-lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
    font-family: var(--sot-font);
}

.sot-lightbox-caption:empty {
    display: none;
}

.sot-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 36px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.sot-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sot-lightbox-prev,
.sot-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.sot-lightbox-prev { left: 20px; }
.sot-lightbox-next { right: 20px; }

.sot-lightbox-prev:hover,
.sot-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sot-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family: var(--sot-font);
}

@media (max-width: 768px) {
    .sot-lightbox-prev,
    .sot-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .sot-lightbox-prev { left: 10px; }
    .sot-lightbox-next { right: 10px; }
}
