/* ═══════════════════════════════════════════════
   THE PROBLEM WITH — Premium Dark One-Page Pitch
   Based on standalone reference layout
   ═══════════════════════════════════════════════ */


/* ─── 1. Custom Properties ─── */

:root {
    --black: #000000;
    --deep: #0a0a0a;
    --surface: #111111;
    --surface-alt: #161616;
    --border: rgba(255, 255, 255, 0.06);
    --border-med: rgba(255, 255, 255, 0.1);
    --yellow: #FFE500;
    --yellow-dim: rgba(255, 229, 0, 0.15);
    --beige: #E8D5C4;
    --beige-muted: rgba(232, 213, 196, 0.12);
    --white: #FFFFFF;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-faint: rgba(255, 255, 255, 0.18);
    --section-gap: clamp(110px, 14vh, 180px);
    --container: 1200px;
    --container-wide: 1400px;
    --gutter: clamp(24px, 5vw, 72px);
}


/* ─── 2. Reset ─── */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.pitch-deck {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-padding-top: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection {
    background: var(--yellow);
    color: var(--black);
}


/* ─── 3. Container ─── */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--wide {
    max-width: var(--container-wide);
}


/* ─── 4. Typography ─── */

.t-display {
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
}

.t-heading {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.t-subhead {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.t-body {
    font-weight: 400;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.75;
    color: var(--text-secondary);
}

.t-caption {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.7;
}

.t-stat {
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.t-stat-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-top: 8px;
}


/* ─── 5. Brand Elements ─── */

.hl {
    background: var(--yellow);
    color: var(--black);
    padding: 0 12px;
    font-style: italic;
}

.thin-line {
    width: 48px;
    height: 2px;
    background: var(--beige);
    opacity: 0.5;
}

.pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(232, 213, 196, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.8;
    transition: border-color 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.pill:hover {
    opacity: 1;
    border-color: rgba(232, 213, 196, 0.4);
    background: rgba(232, 213, 196, 0.05);
}


/* ─── 6. CTA Buttons ─── */

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--yellow);
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 229, 0, 0.2);
}

.cta--outline {
    background: transparent;
    color: var(--beige);
    border: 1px solid rgba(232, 213, 196, 0.3);
}

.cta--outline:hover {
    background: rgba(232, 213, 196, 0.08);
    box-shadow: 0 8px 32px rgba(232, 213, 196, 0.08);
}


/* ─── 7. Sections ─── */

.section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.pitch-deck .section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
}

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

.section > * {
    position: relative;
    z-index: 1;
}

.section--hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 120px;
}

.section--hero::before { display: none; }

.section--hero canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.section--alt {
    background: var(--deep);
}

.section--surface {
    background: var(--surface);
}


/* ─── 8. Floating Pill Nav ─── */

.pill-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 10px 20px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pill-nav__brand {
    font-size: 15px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    padding-right: 8px;
}

.pill-nav__brand-dot {
    color: var(--yellow);
}

.pill-nav__links {
    display: flex;
    gap: 4px;
}

.pill-nav__link {
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.pill-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.pill-nav__link--active {
    color: var(--black);
    background: var(--yellow);
}

.pill-nav__link--active:hover {
    color: var(--black);
    background: var(--yellow);
}


/* ─── 9. Scrollspy Nav ─── */

.scrollspy-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scrollspy-nav__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.scrollspy-nav__dot::before {
    content: attr(data-label);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scrollspy-nav__dot:hover::before {
    opacity: 1;
}

.scrollspy-nav__dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.3);
}


/* ─── 9. Hero ─── */

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(232, 213, 196, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero__logo-bg {
    position: absolute;
    top: 15%;
    right: 8%;
    width: clamp(250px, 25vw, 420px);
    height: clamp(250px, 25vw, 420px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.hero__logo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.hero__pre {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--beige);
    opacity: 0.6;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.hero__title {
    font-size: clamp(56px, 10vw, 140px);
}

.hero__underline {
    display: block;
    width: 240px;
    height: 16px;
    margin-top: 16px;
    opacity: 0.5;
}

.hero__tagline {
    font-size: clamp(17px, 1.6vw, 22px);
    max-width: 640px;
    margin-top: 32px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.2;
    z-index: 2;
}

.hero__scroll-hint span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
    50% { opacity: 0.6; transform: scaleY(1); }
}


/* ─── 10. Stats Band ─── */

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-band__item {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stats-band__item:last-child {
    border-right: none;
}

.stats-band__num {
    font-size: clamp(32px, 4vw, 52px);
}

.stats-band__label {
    margin-top: 8px;
}


/* ─── 11. The Reach (Crossfade Panel) ─── */

.reach-panel {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    min-height: 100vh;
    padding: 40px 0;
}

.reach-panel__images {
    position: relative;
}

.reach-panel__slide {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.97);
}

.reach-panel__slide--active {
    opacity: 1;
    transform: scale(1);
}

/* Stack slides on top of each other — first is flow, rest are absolute */
.reach-panel__slide:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.reach-panel__image {
    height: clamp(300px, 60vh, 540px);
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.reach-panel__caption {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    margin-top: 14px;
    line-height: 1.6;
}

.reach-panel__dots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.reach-panel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.reach-panel__dot--active {
    background: var(--yellow);
    transform: scale(1.2);
}

.reach-panel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reach__stats {
    display: flex;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reach__stat {
    flex: 1;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.reach__stat:last-child {
    border-right: none;
}

.reach__stat-num {
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--white);
    display: block;
}

.reach__stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
}

.reach__guests {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.reach__guest-names {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.reach__guest-name {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.reach__guest-divider {
    width: 1px;
    height: 20px;
    background: var(--border-med);
    flex-shrink: 0;
}

.reach__footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.reach__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-badge {
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

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

.reach__growth-item {
    font-size: 14px;
    color: var(--text-muted);
}

.reach__growth-item strong {
    color: var(--beige);
    font-weight: 700;
}

.reach__growth-divider {
    width: 1px;
    height: 16px;
    background: var(--border-med);
}

.reach__growth-period {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
}


/* ─── 12. Guest Cards ─── */

.guests__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.guests__intro h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 10px;
}

.guests__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.guest-card {
    padding: 24px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.guest-card:hover {
    border-color: rgba(255, 229, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.guest-card__icon {
    display: none;
}

.guest-card__num {
    color: var(--yellow);
    font-weight: 800;
    margin-right: 6px;
    font-size: 14px;
    opacity: 0.7;
}

.guest-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.guest-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.guest-card__highlight {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--beige);
    opacity: 0.7;
}


/* ─── 13. Timeline ─── */

.guests__lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 32px;
    max-width: 600px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-med);
}

.timeline__step {
    position: relative;
    padding-bottom: 28px;
}

.timeline__step:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -47px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--beige);
    opacity: 0.8;
}

.timeline__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.5;
    margin-bottom: 6px;
}

.timeline__title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline__desc {
    font-size: 15px;
    color: var(--text-muted);
}


/* ─── 14. Content Formats ─── */

.format-item {
    padding: 14px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.format-item:last-child {
    border-bottom: 1px solid var(--border);
}

.format-item__title {
    font-size: 17px;
    font-weight: 700;
}

.format-item__desc {
    font-size: 15px;
    color: var(--text-muted);
}

.format-item__duration {
    font-size: 13px;
    color: var(--beige);
    opacity: 0.6;
    flex-shrink: 0;
}


/* ─── 15. Distribution Mini Cards ─── */

.dist-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dist-mini {
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.dist-mini__num {
    font-size: 24px;
    font-weight: 800;
}

.dist-mini__label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.dist-mini--accent {
    background: rgba(255, 229, 0, 0.05);
    border: 1px dashed rgba(232, 213, 196, 0.2);
}

.dist-mini--accent .dist-mini__num {
    color: var(--beige);
}

.dist-mini--accent .dist-mini__label {
    color: var(--beige);
    opacity: 0.5;
}


/* ─── 16. Host Section ─── */

.host__grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: center;
}

.host__photo {
    aspect-ratio: 3 / 4;
    background: linear-gradient(180deg, var(--surface) 0%, var(--deep) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.host__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host__bio h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 8px;
}

.host__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--beige);
    opacity: 0.7;
    margin-bottom: 16px;
}

.host__text {
    font-size: clamp(16px, 1.3vw, 19px);
    margin-top: 16px;
    max-width: 560px;
}

.host__credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.host__cred {
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.host__cred-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.host__cred-value {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.host__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}


/* ─── 17. Mission Block ─── */

.mission {
    text-align: center;
    padding: 0 var(--gutter);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mission__quote {
    font-size: clamp(20px, 2.5vw, 30px);
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 24px auto 0;
}

.mission__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 36px auto 0;
    text-align: left;
}

.mission__pillar {
    padding: 28px 0;
    border-top: 2px solid var(--beige);
    opacity: 0.8;
}

.mission__pillar-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 12px;
}

.mission__pillar p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ─── 18. Sign-off ─── */

.signoff {
    text-align: center;
    padding: 0 var(--gutter);
}

.signoff__logo {
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 12px;
}

.signoff__schedule {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 24px;
    line-height: 1.8;
}

.signoff__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.signoff__links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.signoff__link-group {
    text-align: center;
}

.signoff__link-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.5;
    margin-bottom: 8px;
}

.signoff__link-value {
    font-size: 18px;
    font-weight: 500;
}

.signoff__link-value a {
    transition: color 0.2s;
}

.signoff__link-value a:hover {
    color: var(--yellow);
}

.signoff__divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    align-self: center;
}

.signoff__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.signoff__credit {
    margin-top: 64px;
    font-size: 12px;
    color: var(--text-faint);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* ─── 19. Billboard Images ─── */

.billboard-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.billboard-strip__item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.billboard-strip__item img {
    width: 100%;
    display: block;
}


/* ─── 20. Homepage Hero ─── */

.homepage-hero {
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.homepage-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--gutter);
}

.homepage-hero__logo {
    width: clamp(160px, 20vw, 280px);
    height: clamp(160px, 20vw, 280px);
    margin-bottom: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.homepage-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-hero__title {
    font-size: clamp(48px, 9vw, 120px);
}

.homepage-hero__tagline {
    font-size: clamp(16px, 1.4vw, 20px);
    max-width: 600px;
    margin-top: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.homepage-hero__credit {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 14px;
}

.homepage-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.homepage-hero__btn {
    min-width: 180px;
    justify-content: center;
}

.homepage-hero__btn--inquiry {
    border-color: rgba(255, 229, 0, 0.3);
    color: var(--yellow);
}

.homepage-hero__btn--inquiry:hover {
    background: rgba(255, 229, 0, 0.08);
    border-color: rgba(255, 229, 0, 0.5);
}

.homepage-hero__platforms {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    flex-wrap: wrap;
    justify-content: center;
}

.homepage-hero__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-faint);
    flex-shrink: 0;
}


/* ─── 21. Contact Page ─── */

.contact-page {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 60px;
}

.contact-page__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.contact-page__title {
    font-size: clamp(32px, 5vw, 56px);
    margin-top: 16px;
    line-height: 1.15;
}

.contact-page__intro {
    margin-top: 20px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(15px, 1.2vw, 18px);
}

.contact-page__expect {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 36px;
    text-align: left;
}

.contact-page__expect-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

.contact-page__expect-item:last-child {
    border-bottom: 1px solid var(--border);
}

.contact-page__expect-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--yellow);
    opacity: 0.7;
    flex-shrink: 0;
    padding-top: 2px;
}

.contact-page__expect-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-page__expect-desc {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-page__cta {
    margin-top: 36px;
}

.contact-page__email {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.contact-page__socials {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-page__social {
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-page__social:hover {
    opacity: 0.8;
}

.contact-page__social-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.5;
    margin-bottom: 6px;
}

.contact-page__social-handle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

.contact-page__social-divider {
    width: 1px;
    height: 28px;
    background: var(--border-med);
}

.contact-page__back {
    display: inline-block;
    margin-top: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.contact-page__back:hover {
    color: var(--beige);
}


/* ─── 22. Password Gate ─── */

.pw-gate {
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pw-gate__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter);
}

.pw-gate__title {
    font-size: clamp(40px, 8vw, 96px);
    margin-bottom: 24px;
}

.pw-gate__sub {
    max-width: 460px;
    margin: 0 auto 36px;
    font-size: clamp(15px, 1.2vw, 18px);
}

.pw-gate__form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.pw-gate__input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s;
}

.pw-gate__input::placeholder {
    color: var(--text-muted);
}

.pw-gate__input:focus {
    border-color: var(--yellow);
}

.pw-gate__submit {
    flex-shrink: 0;
}


/* ─── 23. Pitch Deck Text Scale (~8% bump) ─── */

.pitch-deck .t-body { font-size: clamp(18px, 1.5vw, 22px); }
.pitch-deck .t-caption { font-size: 13px; }
.pitch-deck .reach__stat-num { font-size: clamp(30px, 3.8vw, 52px); }
.pitch-deck .reach__stat-label { font-size: 13px; }
.pitch-deck .reach-panel__caption { font-size: 20px; }
.pitch-deck .reach__guest-name { font-size: clamp(22px, 2.2vw, 30px); }
.pitch-deck .reach__growth-item { font-size: 15px; }
.pitch-deck .platform-badge { font-size: 14px; }
.pitch-deck .guests__intro h2 { font-size: clamp(34px, 4.2vw, 56px); }
.pitch-deck .guest-card h3 { font-size: 20px; }
.pitch-deck .guest-card p { font-size: 16px; }
.pitch-deck .guest-card__highlight { font-size: 14px; }
.pitch-deck .guest-card__num { font-size: 15px; }
.pitch-deck .timeline__title { font-size: 21px; }
.pitch-deck .timeline__desc { font-size: 16px; }
.pitch-deck .timeline__label { font-size: 13px; }
.pitch-deck .format-item__title { font-size: 19px; }
.pitch-deck .format-item__desc { font-size: 16px; }
.pitch-deck .format-item__duration { font-size: 14px; }
.pitch-deck .dist-mini__num { font-size: 26px; }
.pitch-deck .dist-mini__label { font-size: 12px; }
.pitch-deck .host__subtitle { font-size: 20px; }
.pitch-deck .host__text { font-size: clamp(17px, 1.4vw, 21px); }
.pitch-deck .host__cred-value { font-size: 20px; }
.pitch-deck .host__cred-label { font-size: 13px; }
.pitch-deck .mission__quote { font-size: clamp(22px, 2.8vw, 34px); }
.pitch-deck .mission__pillar p { font-size: 18px; }
.pitch-deck .mission__pillar-label { font-size: 13px; }
.pitch-deck .signoff__schedule { font-size: 20px; }
.pitch-deck .signoff__link-value { font-size: 20px; }
.pitch-deck .signoff__link-label { font-size: 13px; }
.pitch-deck .signoff__credit { font-size: 13px; }
.pitch-deck .hero__tagline { font-size: clamp(18px, 1.7vw, 24px); }
.pitch-deck .hero__pre { font-size: clamp(20px, 2.2vw, 24px); }
.pitch-deck .pill { font-size: 13px; }


/* ─── 24. Contact Form ─── */

.contact-form {
    margin-top: 36px;
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form__field {
    margin-bottom: 14px;
}

.contact-form__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.5;
    margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--text-muted);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--yellow);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-form__submit {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.contact-form__status {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.contact-form__status--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.contact-form__status--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}


/* ─── 25. Animation Prep ─── */

[data-animate] {
    opacity: 1 !important;
    transform: none !important;
}


/* ─── 21. Reduced Motion ─── */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-animate] { opacity: 1; transform: none; }
    .hero__scroll-line { animation: none; }
    .scrollspy-nav__dot { transition: none; }
}


/* ─── 22. Responsive — Tablet ─── */

@media (max-width: 1024px) {
    .pill-nav {
        top: 16px;
        padding: 8px 8px 8px 16px;
    }

    .pill-nav__brand {
        font-size: 14px;
    }

    .pill-nav__link {
        padding: 6px 12px;
        font-size: 11px;
    }

    html.pitch-deck {
        scroll-snap-type: none;
    }

    .pitch-deck .section {
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
        overflow: visible;
        padding: var(--section-gap) 0;
    }

    .section--hero,
    .pitch-deck .section--hero {
        height: 100vh;
        min-height: 100vh;
    }

    /* Reach section: images after text on mobile */
    .reach-panel__content {
        order: 1;
    }

    .reach-panel__images {
        order: 2;
    }

    /* Password gate must stay fullscreen even when pitch-deck kills section heights */
    .pitch-deck .pw-gate,
    .section--hero.pw-gate {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pw-gate__form {
        flex-direction: column;
        max-width: 320px;
        width: 100%;
    }

    .pw-gate__input,
    .pw-gate__submit {
        width: 100%;
    }

    .homepage-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .homepage-hero__btn {
        width: 260px;
    }

    .host__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reach-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: auto;
        padding: 0;
    }

    .reach-panel__image {
        height: clamp(200px, 40vh, 320px);
    }

    .reach-panel__dots {
        justify-content: center;
    }

    .reach__stats {
        flex-wrap: wrap;
    }

    .reach__stat {
        flex: 1 1 45%;
    }

    .reach__stat:nth-child(2) {
        border-right: none;
    }

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

    .reach__guest-names {
        gap: 16px;
    }

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

    .guests__lower {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission__pillars {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .mission__pillar {
        padding: 20px 24px;
        border-top: none;
        border: 1px solid var(--border-med);
        border-left: 2px solid var(--beige);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.02);
    }

    .mission__pillar-label {
        margin-bottom: 8px;
    }

    .mission__pillar p {
        font-size: 15px;
        line-height: 1.6;
    }

    .scrollspy-nav {
        display: none;
    }

    .host__photo {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .hero__cta {
        justify-content: flex-start;
    }
}


/* ─── 23. Responsive — Mobile ─── */

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

    .reach__stats {
        flex-wrap: wrap;
    }

    .reach__stat {
        flex: 1 1 45%;
        border-bottom: 1px solid var(--border);
    }

    .reach__stat:nth-child(2) {
        border-right: none;
    }

    .reach__stat:nth-child(3),
    .reach__stat:nth-child(4) {
        border-bottom: none;
    }

    .reach-panel__image {
        height: clamp(180px, 35vh, 260px);
    }

    .reach__guest-names {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        text-align: center;
    }

    .reach__guest-name {
        font-size: clamp(16px, 4vw, 20px);
    }

    .reach__guest-divider {
        display: none;
    }

    .reach__growth {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
    }

    .reach__growth-item {
        padding: 14px 8px;
        font-size: 13px;
    }

    .reach__growth-item:not(:last-of-type) {
        border-right: 1px solid var(--border);
    }

    .reach__growth-period {
        grid-column: 1 / -1;
        padding: 8px;
        border-top: 1px solid var(--border);
        text-align: center;
    }

    .reach__growth-divider {
        display: none;
    }

    .signoff__links {
        flex-direction: column;
        gap: 24px;
    }

    .signoff__divider {
        display: none;
    }

    .hero__cta {
        flex-direction: column;
    }

    .cta {
        width: 100%;
        justify-content: center;
    }

    .hero__title {
        font-size: clamp(44px, 12vw, 72px);
    }

    .signoff__cta {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-page__socials {
        flex-direction: column;
        gap: 20px;
    }

    .contact-page__social-divider {
        display: none;
    }

    .contact-page {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    /* ── Homepage hero mobile ── */
    .section--hero {
        padding-bottom: 60px;
    }

    .homepage-hero {
        padding-top: 80px;
        height: 100vh;
        min-height: 100vh;
    }

    .homepage-hero__logo {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
    }

    .homepage-hero__title {
        font-size: clamp(36px, 11vw, 56px);
    }

    .homepage-hero__tagline {
        font-size: 15px;
        margin-top: 16px;
    }

    .homepage-hero__credit {
        font-size: 11px;
        margin-top: 10px;
    }

    .homepage-hero__buttons {
        margin-top: 28px;
        gap: 12px;
    }

    .homepage-hero__btn {
        width: 100%;
        max-width: 300px;
    }

    .homepage-hero__platforms {
        margin-top: 28px;
        gap: 8px;
        font-size: 10px;
    }

    /* ── Contact form mobile ── */
    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form__input,
    .contact-form__textarea {
        font-size: 16px;
    }

    /* ── Password gate mobile ── */
    .pw-gate__form {
        flex-direction: column;
        max-width: 320px;
    }

    .pw-gate__input {
        font-size: 16px;
    }

    .pw-gate__title {
        font-size: clamp(32px, 10vw, 56px);
    }

    .pw-gate__sub {
        font-size: 15px;
        margin-bottom: 28px;
    }

    /* ── PR Deck reach section mobile ── */
    .reach__intro,
    .reach__guests {
        text-align: center;
    }

    .reach__guests {
        margin-top: 36px;
        padding-top: 28px;
    }

    .reach__footer {
        gap: 28px;
        margin-top: 32px;
        padding-top: 28px;
    }

    .reach-panel__caption {
        font-size: 15px;
    }

    .reach__platforms {
        gap: 8px;
        justify-content: center;
    }

    .reach-panel__images {
        margin-top: 40px;
    }

    .reach-panel__slide {
        cursor: pointer;
    }

    .platform-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .guest-card {
        padding: 20px 16px;
    }

    .guest-card h3 {
        font-size: 16px;
    }

    .guest-card p {
        font-size: 14px;
    }

    .guest-card__highlight {
        font-size: 12px;
    }

    .guests__lower {
        gap: 64px;
    }

    /* Reduce excess black space after last section */
    .pitch-deck .section:last-of-type {
        padding-bottom: 32px;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline__dot {
        left: -39px;
        width: 12px;
        height: 12px;
    }

    .format-item {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .host__bio h2 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .host__photo {
        aspect-ratio: 1 / 1;
    }

    .mission__quote {
        font-size: clamp(17px, 4vw, 24px);
    }

    .signoff__logo {
        font-size: clamp(36px, 10vw, 64px);
    }

    .signoff__schedule {
        font-size: 15px;
    }

    .signoff__credit {
        margin-top: 40px;
    }
}


/* ─── 24. Responsive — Small Mobile (iPhone SE, etc.) ─── */

@media (max-width: 480px) {
    .pill-nav {
        padding: 6px 6px 6px 12px;
        gap: 4px;
    }

    .pill-nav__brand {
        font-size: 13px;
        padding-right: 4px;
    }

    .pill-nav__link {
        padding: 5px 8px;
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .homepage-hero__logo {
        width: 110px;
        height: 110px;
        margin-bottom: 16px;
    }

    .homepage-hero__title {
        font-size: clamp(30px, 10vw, 40px);
    }

    .hero__title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .hero__tagline {
        font-size: 14px;
    }

    .hero__pre {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .reach__stat-num {
        font-size: clamp(22px, 6vw, 32px);
    }

    .reach__stat {
        padding: 14px 10px;
    }

    .reach__stat-label {
        font-size: 10px;
    }

    .dist-mini {
        padding: 10px 8px;
    }

    .dist-mini__num {
        font-size: 18px;
    }

    .dist-mini__label {
        font-size: 10px;
    }

    .host__cred-value {
        font-size: 15px;
    }

    .host__cred-label {
        font-size: 11px;
    }

    .mission__pillar p {
        font-size: 14px;
    }

    .signoff__link-value {
        font-size: 15px;
    }

    .signoff__link-label {
        font-size: 11px;
    }

    .contact-page__title {
        font-size: clamp(26px, 8vw, 36px);
    }

    .pw-gate__title {
        font-size: clamp(26px, 9vw, 40px);
    }

    .pw-gate__sub {
        font-size: 14px;
    }

    .timeline__title {
        font-size: 16px;
    }

    .timeline__desc {
        font-size: 13px;
    }

    .format-item__title {
        font-size: 15px;
    }

    .format-item__desc {
        font-size: 13px;
    }
}
