/* ── Tokens (light body, dark zones via .dark) ──────────────── */
:root {
    --bg: #ffffff;
    --surface: #fafafa;
    --surface-2: #f4f4f5;
    --surface-3: #e4e4e7;
    --border: #e4e4e7;
    --border-2: #d4d4d8;
    --text: #000000;
    --muted: #52525b;
    --dim: #a1a1aa;
    --accent: #ff8a1f;
    --accent-2: #ff5a1f;
    --accent-3: #ffd9ac;

    --dark-bg: #000000;
    --dark-surface: #0c0c0d;
    --dark-surface-2: #141416;
    --dark-surface-3: #1f1f22;
    --dark-border: #1f1f22;
    --dark-border-2: #2a2a2e;
    --dark-text: #ffffff;
    --dark-muted: #a1a1aa;
    --dark-dim: #71717a;

    --radius: 14px;
    --radius-sm: 8px;
    --nav-h: 72px;
    --max-w: 1240px;
    --pad: clamp(20px, 4vw, 56px);
}

/* Dark zones: hero, agenda, CTA, footer apply .dark to flip token aliases */
.dark {
    --bg: var(--dark-bg);
    --surface: var(--dark-surface);
    --surface-2: var(--dark-surface-2);
    --surface-3: var(--dark-surface-3);
    --border: var(--dark-border);
    --border-2: var(--dark-border-2);
    --text: var(--dark-text);
    --muted: var(--dark-muted);
    --dim: var(--dark-dim);
    background: var(--dark-bg);
    color: var(--dark-text);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
html.lenis,
html.lenis body,
html.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

/* ── Type ──────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: 'Open Runde', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
}
h3,
h4 {
    letter-spacing: -0.04em;
    line-height: 1.1;
}

/* ── Layout ────────────────────────────────────────────────── */
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.section {
    padding: 120px 0;
}
.section-tight {
    padding: 80px 0;
}
.divider {
    height: 1px;
    background: var(--border);
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    color: #fff;
    transition:
        background 0.35s,
        color 0.35s,
        border-color 0.35s;
}
body.light-nav .nav {
    color: #000;
}
.nav.scrolled,
body.light-nav .nav {
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.light-nav .nav {
    background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.nav-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow:
        0 0 0 1px rgba(255, 138, 31, 0.45),
        0 10px 24px -14px rgba(255, 138, 31, 0.85);
}
.nav-logo-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.nav-logo-main {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.nav-logo-tag {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-top: 3px;
}
.nav-logo sup {
    font-size: 0.5em;
    vertical-align: super;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: currentColor;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.95;
    transition:
        opacity 0.2s,
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}
.nav.scrolled .nav-cta {
    background: linear-gradient(140deg, var(--accent), var(--accent-2));
    color: #1f1003;
    border-color: transparent;
}
.nav-cta:hover {
    opacity: 1;
    border-color: var(--accent);
    color: var(--accent);
}
.nav.scrolled .nav-cta:hover {
    color: #1f1003;
}
.nav-cta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    margin-left: 16px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── Mobile menu ───────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: #000;
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-size: 1.6rem;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.mobile-menu a:hover {
    opacity: 1;
}

/* ── Hero (dark zone) ──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
}
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.66;
    filter: saturate(1.08) contrast(1.08);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 138, 31, 0.3) 0%,
            rgba(0, 0, 0, 0.55) 62%,
            rgba(0, 0, 0, 0.9) 100%
        ),
        url('../images/feBvJZF9HpjwounW6pOdnSIGrR4.png');
    background-size: cover;
    background-position: center;
    opacity: 0.62;
    will-change: transform;
    animation: gradShift 14s ease-in-out infinite alternate;
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: url('../images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
    background-size: 380px;
    opacity: 0.07;
    mix-blend-mode: overlay;
}
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    height: 28%;
    background: linear-gradient(to bottom, transparent, #000);
}
@keyframes gradShift {
    0% {
        transform: scale(1) translate3d(-3%, 0, 0);
    }
    50% {
        transform: scale(1.04) translate3d(3%, -2%, 0);
    }
    100% {
        transform: scale(1.07) translate3d(0, 2%, 0);
    }
}
.hero-inner {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--nav-h) + 56px) var(--pad) 0;
}
.hero-wave {
    width: 36px;
    height: 18px;
    margin-bottom: 24px;
    opacity: 0.55;
}
.hero-eyebrow {
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0.9;
}
.hero-title {
    font-size: clamp(3.6rem, 12vw, 10.5rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.92;
    margin-bottom: 48px;
}
.hero-title sup {
    font-size: 0.18em;
    vertical-align: super;
    font-weight: 600;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    background: linear-gradient(140deg, var(--accent), var(--accent-2));
    color: #1f1003;
    border: none;
    transition:
        transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.25s;
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -12px rgba(255, 138, 31, 0.62);
}
.hero-cta svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-footer {
    position: relative;
    z-index: 5;
    padding: 0 var(--pad) 36px;
}
.hero-meta {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
}
.hero-meta-item {
    font-size: 0.78rem;
    opacity: 0.72;
    font-weight: 400;
}
.hero-meta-item:nth-child(2) {
    text-align: center;
}
.hero-meta-item:nth-child(3) {
    text-align: right;
}

/* ── Ticker (light) ────────────────────────────────────────── */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    background: var(--bg);
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 36s linear infinite;
}
.ticker:hover .ticker-track {
    animation-play-state: paused;
}
.ticker-track span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dim);
    padding: 0 28px;
    white-space: nowrap;
}
.ticker-track span.dot {
    color: var(--accent);
    padding: 0 6px;
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── Labels ────────────────────────────────────────────────── */
.label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #b86b1c;
    margin-bottom: 24px;
}

/* ── About / Stats ─────────────────────────────────────────── */
.about-text {
    font-size: clamp(1.6rem, 3.4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text);
    max-width: 880px;
    margin-bottom: 80px;
}
.about-text strong {
    font-weight: 600;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
}
.stat {
    padding: 36px 24px 28px;
    text-align: left;
    border-right: 1px solid var(--border);
    position: relative;
}
.stat:last-child {
    border-right: none;
}
.stat-n {
    font-family: 'Open Runde', 'Inter', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-l {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dim);
}

/* ── What's on / generic two-col ───────────────────────────── */
.whats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.section-h {
    font-size: clamp(2.6rem, 7vw, 6.5rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.95;
}
.section-h-md {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
}
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.feature-item {
    background: var(--surface-2);
    border-radius: 18px;
    padding: 28px 30px 26px;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
    transition: background 0.25s;
}
.feature-item.invert {
    background: #000;
    color: #fff;
}
.feature-item.invert .feat-num {
    color: rgba(255, 255, 255, 0.45);
}
.feature-item.invert .feat-body p {
    color: rgba(255, 255, 255, 0.65);
}
.feat-num {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dim);
    padding-top: 6px;
}
.feat-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Open Runde', 'Inter', sans-serif;
    letter-spacing: -0.04em;
}
.feat-body p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ── Inline CTA ────────────────────────────────────────────── */
.inline-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    flex-wrap: wrap;
}
.inline-cta p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    transition:
        opacity 0.2s,
        transform 0.15s,
        background 0.2s;
    white-space: nowrap;
}
.btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}
.btn-dark {
    background: #000;
    color: #fff;
}
.btn-light {
    background: #fff;
    color: #000;
}
.btn-outline {
    border: 1px solid var(--border-2);
    color: var(--text);
    background: transparent;
}
.btn-outline:hover {
    background: var(--surface-2);
    opacity: 1;
}
.dark .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.dark .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}
.btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ── Speaker cards ─────────────────────────────────────────── */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.speaker-card {
    background: transparent;
    transition: transform 0.25s;
}
.speaker-card:hover {
    transform: translateY(-4px);
}
.speaker-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-2);
    border-radius: 14px;
}
.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.speaker-card:hover .speaker-photo img {
    transform: scale(1.04);
}
.speaker-photo-placeholder {
    aspect-ratio: 1;
    background: var(--surface-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.speaker-initial {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--dim);
    letter-spacing: -0.04em;
}
.speaker-info {
    padding: 18px 4px 8px;
}
.sp-company {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dim);
    margin-bottom: 6px;
}
.sp-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: 'Open Runde', 'Inter', sans-serif;
    letter-spacing: -0.04em;
}
.sp-role {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── Agenda (dark zone, both days visible, day-label column) ─ */
.agenda-section {
    background: #000;
    color: #fff;
}
.agenda-section .label {
    color: rgba(255, 255, 255, 0.5);
}
.agenda-section .section-h {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 14ch;
}
.agenda-day-block {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.agenda-day-block:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.agenda-day-label {
    position: sticky;
    top: 100px;
    align-self: start;
    font-family: 'Open Runde', 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #fff;
}
.agenda-day-label small {
    display: block;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
}
.agenda-list {
    display: grid;
    gap: 0;
}
.agenda-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}
.agenda-list .agenda-item:first-child {
    padding-top: 0;
}
.agenda-list .agenda-item:last-child {
    border-bottom: none;
}
.agenda-time {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 4px;
}
.agenda-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Open Runde', 'Inter', sans-serif;
    letter-spacing: -0.03em;
    color: #fff;
}
.agenda-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
}
.agenda-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 99px;
    padding: 3px 12px;
}

/* ── Testimonials (single highlighted card on light) ───────── */
.testimonial-feature {
    background: var(--surface-2);
    border-radius: 22px;
    padding: clamp(40px, 5vw, 72px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.testimonial-feature .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}
.testimonial-feature .stars svg {
    width: 16px;
    height: 16px;
    fill: #000;
}
.testimonial-feature blockquote {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--text);
}
.testimonial-feature .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface-3);
    flex-shrink: 0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pricing-card {
    background: var(--surface-2);
    border-radius: 18px;
    padding: 36px 32px 32px;
    position: relative;
}
.pricing-card.featured {
    background: var(--accent);
    color: #1a0f2e;
}
.pricing-card.featured .price-label,
.pricing-card.featured .price-per {
    color: rgba(26, 15, 46, 0.65);
}
.pricing-card.featured .perk {
    color: rgba(26, 15, 46, 0.85);
}
.pricing-card.featured .perk-icon {
    border-color: rgba(26, 15, 46, 0.3);
    color: #1a0f2e;
}
.price-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dim);
    margin-bottom: 28px;
}
.price-amount {
    font-family: 'Open Runde', 'Inter', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 6px;
}
.price-per {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 32px;
}
.perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--muted);
}
.perk-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-2);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.perk-icon svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}
.btn-pricing {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    background: #000;
    color: #fff;
    transition: opacity 0.2s;
}
.pricing-card.featured .btn-pricing {
    background: #fff;
    color: #000;
}
.btn-pricing:hover {
    opacity: 0.88;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
    border-top: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Open Runde', 'Inter', sans-serif;
    letter-spacing: -0.03em;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text);
    transition: opacity 0.2s;
}
.faq-q:hover {
    opacity: 0.7;
}
.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-item.open .faq-q {
    color: var(--accent-2);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    transition:
        max-height 0.35s ease,
        padding 0.3s;
}
.faq-item.open .faq-a {
    max-height: 320px;
    padding-bottom: 28px;
}

/* ── Sponsors ──────────────────────────────────────────────── */
.partner-statement {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: var(--text);
    max-width: 800px;
    margin-bottom: 48px;
}
.partner-statement em {
    font-style: normal;
    color: var(--muted);
}
.sponsors-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.sponsor-tile {
    min-height: 110px;
    background: var(--surface-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background 0.2s;
}
.sponsor-tile:hover {
    background: var(--surface-3);
}
.sponsor-tile img {
    max-height: 28px;
    max-width: 100%;
    opacity: 0.75;
    transition: opacity 0.2s;
    filter: none;
}
.sponsor-tile:hover img {
    opacity: 1;
}
.sponsor-name-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--muted);
}

/* ── CTA Banner (dark) ─────────────────────────────────────── */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background: #000;
    color: #fff;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/pDyTiVHZ2n1aJqmaZWaMJ5LPeTw.png');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}
.cta-banner-grain {
    position: absolute;
    inset: 0;
    background-image: url('../images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
    background-size: 380px;
    opacity: 0.06;
    mix-blend-mode: overlay;
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
    line-height: 1.05;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

/* ── Footer (dark) ─────────────────────────────────────────── */
.footer {
    padding: 64px 0 36px;
    background: #000;
    color: #fff;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand {
    font-family: 'Open Runde', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.footer-brand sup {
    font-size: 0.5em;
    vertical-align: super;
}
.footer-tagline {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    list-style: none;
    justify-content: flex-end;
}
.footer-links a {
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.social-links a:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
.social-links svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.7);
    stroke: rgba(255, 255, 255, 0.7);
}

/* ── Page hero (interior) ──────────────────────────────────── */
.page-hero {
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 80px;
    position: relative;
    background: #000;
    color: #fff;
}
.page-hero .label {
    color: rgba(255, 255, 255, 0.55);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/ZuUdmoRyw0AHCWs9QD3PT9m3liQ.png');
    background-size: cover;
    background-position: top;
    opacity: 0.55;
}
.page-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
    background-size: 380px;
    opacity: 0.06;
}
.page-hero-content {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 600;
    letter-spacing: -0.06em;
}

/* ── Venue ─────────────────────────────────────────────────── */
.venue-img-wrap {
    width: 100%;
    height: clamp(280px, 45vw, 560px);
    overflow: hidden;
}
.venue-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.travel-item {
    background: var(--surface-2);
    border-radius: 18px;
    padding: 32px 28px;
}
.travel-icon {
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.travel-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Open Runde', 'Inter', sans-serif;
    letter-spacing: -0.03em;
}
.travel-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-intro {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text);
}
.contact-phone {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 0.2s;
}
.contact-phone:hover {
    color: var(--text);
}
.form-row {
    margin-bottom: 18px;
}
.form-row label {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--dim);
    margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
    padding: 12px 14px;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--text);
    background: #fff;
}
.form-row select option {
    background: #fff;
    color: #000;
}
.form-row textarea {
    resize: vertical;
    min-height: 140px;
}
.form-err {
    font-size: 0.78rem;
    color: #dc2626;
    margin-top: 5px;
}
.form-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.88rem;
    color: #065f46;
    margin-bottom: 20px;
}

/* ── Prose ─────────────────────────────────────────────────── */
.prose {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.75;
}
.prose h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 44px 0 14px;
    letter-spacing: -0.02em;
    font-family: 'Open Runde', 'Inter', sans-serif;
}
.prose p {
    margin-bottom: 14px;
}
.prose ul {
    padding-left: 20px;
    margin-bottom: 14px;
}
.prose li {
    margin-bottom: 8px;
}
.prose strong {
    color: var(--text);
}
.prose a {
    color: var(--text);
    text-decoration: underline;
}

/* ── GSAP init states ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
}
.reveal-fade {
    opacity: 0;
}

/* ── Split text masks ──────────────────────────────────────── */
/* Outer .word clips the inner so translateY hides it behind a baseline mask. */
.word {
    display: inline-flex;
    overflow: hidden;
    vertical-align: top;
    line-height: inherit;
    /* small bottom padding so descenders (g, p, y) aren't clipped during transition */
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
}
.word-i {
    display: inline-block;
    will-change: transform;
}

/* ── Button arrow micro-interaction ────────────────────────── */
.btn svg,
.btn-pricing svg,
.nav-cta svg {
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn:hover svg,
.btn-pricing:hover svg,
.nav-cta:hover svg {
    transform: translateX(3px);
}

/* ── Sponsor tile hover lift ───────────────────────────────── */
.sponsor-tile {
    transition:
        background 0.2s,
        transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.sponsor-tile:hover {
    transform: translateY(-3px);
}

/* ── Pricing card hover ────────────────────────────────────── */
.pricing-card {
    transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pricing-card:hover {
    transform: translateY(-4px);
}

/* ── Section heading row (flex) ────────────────────────────── */
.sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* ── 2-column speakers grid (for 2-pastor lineup) ──────────── */
.speakers-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
a.speaker-card {
    color: inherit;
    display: block;
}
a.speaker-card .speaker-photo,
a.speaker-card .speaker-photo-placeholder {
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
    overflow: hidden;
}
a.speaker-card:hover .speaker-photo,
a.speaker-card:hover .speaker-photo-placeholder {
    transform: scale(1.02);
}

/* ── Speaker detail ───────────────────────────────────────── */
.speaker-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.speaker-detail-photo {
    aspect-ratio: 1;
    background: var(--surface-2);
    border-radius: var(--radius);
    overflow: hidden;
}
.speaker-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.speaker-detail-body h1 {
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 8px 0 16px;
}
.speaker-detail-body .sp-company {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.speaker-detail-body .muted {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 20px;
}
.speaker-bio {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.02rem;
    max-width: 640px;
}
.speaker-bio p + p {
    margin-top: 14px;
}

/* ── Rich body (HTML content blocks) ───────────────────────── */
.rich-body {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.75;
}
.rich-body h2,
.rich-body h3 {
    color: var(--text);
    font-family: 'Open Runde', 'Inter', sans-serif;
    letter-spacing: -0.02em;
    margin: 32px 0 12px;
}
.rich-body h2 {
    font-size: 1.4rem;
    font-weight: 600;
}
.rich-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
}
.rich-body p {
    margin-bottom: 14px;
}
.rich-body strong {
    color: var(--text);
}
.rich-body a {
    color: var(--text);
    text-decoration: underline;
}

/* ── Page hero (refined intro area) ───────────────────────── */
.page-hero {
    padding-top: calc(var(--nav-h) + 96px);
    padding-bottom: 64px;
    background: var(--bg);
    color: var(--text);
}
.page-hero .label {
    color: var(--muted);
}
.page-hero h1 {
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.96;
    margin-top: 12px;
}
.page-hero-intro {
    margin-top: 20px;
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.65;
}

/* ── Contact wrap (no hero bg) ────────────────────────────── */
.contact-wrap {
    padding-top: calc(var(--nav-h) + 96px);
    padding-bottom: 96px;
}

/* ── Misc helpers ─────────────────────────────────────────── */
.muted {
    color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sponsors-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 860px) {
    .nav-links {
        display: none;
    }
    .nav-inner {
        grid-template-columns: 1fr 1fr;
    }
    .nav-right {
        justify-content: flex-end;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-logo-tag {
        display: none;
    }
    .whats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat {
        border-bottom: 1px solid var(--border);
    }
    .stat:nth-child(2) {
        border-right: none;
    }
    .stat:last-child {
        border-bottom: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .speaker-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .speaker-detail-photo {
        max-width: 360px;
    }
    .agenda-day-block {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 0;
    }
    .agenda-day-label {
        position: static;
        font-size: 1.6rem;
    }
    .agenda-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .agenda-tabs {
        flex-direction: column;
    }
    .agenda-tab + .agenda-tab {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .section {
        padding: 72px 0;
    }
    .page-hero {
        padding-top: calc(var(--nav-h) + 64px);
        padding-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.6rem, 15vw, 4.4rem);
    }
    .hero-eyebrow {
        font-size: 0.9rem;
        letter-spacing: 0.16em;
        margin-bottom: 20px;
    }
    .hero-inner {
        padding: 0 20px;
    }
    .hero-video {
        opacity: 0.6;
    }
    .nav-logo-mark {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }
    .hero-footer {
        padding: 0 20px 28px;
    }
    .about-text,
    .section-h {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
    }
    .stat-n {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }
    .feature-item {
        grid-template-columns: 40px 1fr;
        gap: 16px;
        padding: 20px;
    }
    .sponsors-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .travel-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .nav-cta {
        padding: 7px 12px;
        font-size: 0.72rem;
    }
    .nav-inner {
        padding: 0 18px;
    }
    .speakers-grid-2 {
        grid-template-columns: 1fr;
    }
    .sec-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .wrap {
        padding: 0 20px;
    }
    .section {
        padding: 56px 0;
    }
    .testimonial-feature blockquote {
        font-size: 1.1rem;
    }
    .cta-banner {
        padding: 48px 0;
    }
}
