/* ==========================================================================
   Event v3 — Pinecone-inspired design (COMPLETE OVERRIDE)
   ========================================================================== */

/* Smooth anchor scrolling with offset for the sticky navbar (64px + small gap) */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Visible focus indicator — high-specificity v4 ring */
html body .event-v3 a:focus-visible,
html body .event-v3 button:focus-visible,
html body .event-v3 input:focus-visible,
html body .event-v3 summary:focus-visible,
html body .event-v3 [tabindex]:not([tabindex^="-"]):focus-visible {
    box-shadow: 0 0 0 2px #4F46E5, 0 0 0 4px rgba(79, 70, 229, 0.25);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

html body .event-v3 a.ev3-button:focus-visible,
html body .event-v3 a.event-button:focus-visible,
html body .event-v3 button.event-button:focus-visible {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px rgba(79, 70, 229, 0.35);
}

/* ---- Override ALL dark theme CSS variables ---- */
.launch-body.event-body,
.event-body {
    --launch-bg: #FAFBFC;
    --launch-bg-elevated: #ffffff;
    --launch-bg-subtle: #F3F4F6;
    --launch-text: #111827;
    --launch-text-soft: #6B7280;
    --launch-text-muted: #4B5563;
    --launch-border: #E5E7EB;
    --launch-border-strong: #D1D5DB;

    /* Brand colors — Jetdraft indigo from launch-site.css */
    --launch-accent: #4F46E5;
    --launch-accent-strong: #818CF8;
    --launch-accent-soft: rgba(79, 70, 229, 0.08);

    /* Match home page font stack exactly */
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 500;
    letter-spacing: -0.011em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background: #FAFBFC !important;
    color: #111827 !important;
}

/* Brand tokens for v3 */
:root {
    --ev-accent: #4F46E5;
    --ev-accent-hover: #4338CA;
    --ev-accent-light: #EEF2FF;
    --ev-accent-border: #C7D2FE;
    --ev-bg: #FAFBFC;
    --ev-bg-alt: #F3F4F6;
    --ev-bg-card: #ffffff;
    --ev-text: #111827;
    --ev-text-secondary: #374151;
    --ev-text-muted: #6B7280;
    --ev-border: #E5E7EB;
    --ev-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ev-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --ev-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --ev-radius: 12px;
    --ev-radius-lg: 16px;
}

/* ---- Navbar ---- */
.event-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid #E5E7EB !important;
}

.event-nav__brand,
.event-nav__brand:visited {
    color: #111827 !important;
}

.event-nav__brand img,
.event-nav__brand-mark img {
    filter: brightness(0) !important;
}

.event-nav__links a {
    color: #4B5563 !important;
}

.event-nav__links a:hover {
    color: #111827 !important;
}

/* Active-section indicator (navbar JS toggles .is-active) */
.event-nav__links a {
    padding-bottom: 4px;
    position: relative;
}

.event-nav__links a.is-active {
    color: #111827 !important;
}

.event-nav__links a.is-active::after {
    background: #4F46E5;
    border-radius: 2px;
    bottom: -4px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
}

.event-nav__cta .launch-button--primary {
    background: #4F46E5 !important;
    border-color: #4F46E5 !important;
    color: #ffffff !important;
}

.event-nav__cta .launch-button--secondary {
    background: transparent !important;
    border-color: #D1D5DB !important;
    color: #111827 !important;
}

/* ---- Fix gradient h1 (invisible on light bg) ---- */
.launch-hero h1,
.launch-page-hero h1,
.launch-hero__copy h1 {
    background: linear-gradient(180deg, #111827 0%, #374151 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.launch-hero__lede,
.launch-hero__copy > p {
    color: #4B5563 !important;
}

/* ---- All sections light ---- */
.launch-section {
    background: #FAFBFC !important;
    color: #111827 !important;
}

.launch-section--alt {
    background: #F3F4F6 !important;
}

/* ---- Section headings ---- */
.launch-section-label {
    color: #4F46E5 !important;
}

.launch-section-heading h2 {
    color: #111827 !important;
}

.launch-section-heading p {
    color: #4B5563 !important;
}

/* ---- Cards ---- */
.launch-card,
.event-module-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    color: #111827 !important;
}

.launch-card h3,
.event-module-card h3 {
    color: #111827 !important;
}

.launch-card p,
.event-module-card p {
    color: #4B5563 !important;
}

/* ---- Buttons ---- */
.launch-button--primary {
    background: #4F46E5 !important;
    border-color: #4F46E5 !important;
    color: #ffffff !important;
}

.launch-button--primary:hover {
    background: #4338CA !important;
}

.launch-button--secondary {
    background: #ffffff !important;
    border-color: #D1D5DB !important;
    color: #111827 !important;
}

.launch-button--secondary:hover {
    background: #F3F4F6 !important;
}

/* ---- FAQ ---- */
/* ---- Pricing ---- */
.event-pricing-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    color: #111827 !important;
}

.event-pricing-card__price {
    color: #111827 !important;
}

.event-pricing-card__label {
    color: #4B5563 !important;
}

.event-pricing-card li {
    color: #4B5563 !important;
}

/* ---- Form ---- */
.event-form input,
.event-form select,
.event-form textarea {
    background: #fff;
    border-color: #D1D5DB;
    color: #111827;
}

.event-form label {
    color: #374151;
}

.event-form input::placeholder {
    color: #9CA3AF;
}

/* Inline form validation for shared event_form component */
.event-form-field-error {
    color: #DC2626;
    display: none;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 2px;
}

.event-form-input[aria-invalid="true"] + .event-form-field-error {
    display: block;
}

.event-form-input[aria-invalid="true"] {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ---- Footer ---- */
.event-footer {
    background: #111827 !important;
    color: #E5E7EB !important;
}

.event-footer a {
    color: #D1D5DB !important;
}

.event-footer a:hover {
    color: #ffffff !important;
}

.event-footer__legal-inner {
    color: #9CA3AF !important;
}

/* ==========================================================================
   Pinecone-style layout
   ========================================================================== */

.event-v3 {
    overflow-x: hidden;
}

/* ---- Shell ---- */
.ev3-shell {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px;
}

.ev3-shell--narrow {
    margin: 0 auto;
    max-width: 560px;
    padding: 0 24px;
}

/* ---- Hero ---- */
.ev3-hero {
    background: #FAFBFC !important;
    padding: 80px 0 64px;
}

.ev3-hero__grid {
    display: grid;
    gap: 64px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Hero content (left) */
.ev3-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Badge */
.ev3-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--launch-space-2, 8px);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--launch-text-soft, #858891);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 10px;
    width: fit-content;
}

.ev3-badge__dot {
    background: var(--launch-accent, #4F46E5);
    border-radius: 50%;
    display: inline-block;
    height: 5px;
    width: 5px;
}

/* Hero title */
.ev3-hero__title {
    background: none !important;
    -webkit-text-fill-color: unset !important;
    color: #111827 !important;
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 3.25vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    max-width: 24ch;
    text-wrap: balance;
}

/* Hero highlight */
.ev3-hero__highlight {
    color: #4F46E5;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 var(--launch-space-2, 8px) 0;
}

/* Hero subtitle */
.ev3-hero__subtitle {
    color: #4B5563 !important;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 52ch;
}

/* Meta items */
.ev3-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ev3-meta-item {
    align-items: center;
    color: #4B5563;
    display: inline-flex;
    font-size: 0.9rem;
    gap: 8px;
}

.ev3-meta-item svg {
    color: #9CA3AF;
    flex-shrink: 0;
}

/* Hero actions */
.ev3-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ev3-button {
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ev3-button--primary {
    background: #4F46E5 !important;
    color: #ffffff !important;
}

.ev3-button--primary:hover {
    background: #4338CA !important;
    transform: translateY(-1px);
}

.ev3-button__price {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    padding: 2px 8px;
}

.ev3-button--ghost {
    background: transparent !important;
    color: #374151 !important;
    border: none;
    padding: 12px 0;
}

.ev3-button--ghost:hover {
    color: #111827 !important;
}

/* Hero visual (right) - photo collage */
.ev3-hero__visual {
    display: flex;
    justify-content: center;
}

.ev3-photo-collage {
    height: 420px;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.ev3-photo-collage__img {
    border: 3px solid #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    height: 200px;
    object-fit: cover;
    position: absolute;
    transition: all 0.3s ease;
    width: 300px;
}

.ev3-photo-collage__img--1 {
    left: 0;
    top: 0;
    z-index: 3;
}

.ev3-photo-collage__img--2 {
    right: 0;
    top: 60px;
    z-index: 2;
}

.ev3-photo-collage__img--3 {
    bottom: 0;
    left: 50px;
    z-index: 1;
}

.ev3-photo-collage:hover .ev3-photo-collage__img--1 {
    transform: translate(-4px, -4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.ev3-photo-collage:hover .ev3-photo-collage__img--2 {
    transform: translate(4px, 4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* ---- Section common ---- */
.ev3-section {
    background: #FAFBFC !important;
    padding: 80px 0;
}

.ev3-section--alt {
    background: #F3F4F6 !important;
}

.ev3-section--cta {
    background: #F9FAFB;
    color: #111827;
    padding: 64px 0 80px;
}

.ev3-register-header {
    text-align: center;
    margin-bottom: 40px;
}

.ev3-register-header__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: #111827;
}

.ev3-register-header__desc {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

.ev3-section--flush {
    padding: 20px 0 60px;
}

.ev3-decision-card {
    align-items: center;
    background: #EEF2FF;
    border: 1px solid #C7D2FE;
    border-radius: 18px;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    padding: 40px 48px;
}

.ev3-decision-card__text h2 {
    color: #111827;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.ev3-decision-card__text p {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0;
    max-width: 520px;
}

.ev3-decision-card__actions {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    gap: 16px;
}

@media (max-width: 900px) {
    .ev3-decision-card {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
        text-align: center;
    }
    .ev3-decision-card__text p {
        margin: 0 auto;
    }
    .ev3-decision-card__actions {
        flex-direction: column;
        width: 100%;
    }
    .ev3-decision-card__actions .ev3-button {
        width: 100%;
    }
}

/* Section header */
.ev3-section-header {
    margin-bottom: 48px;
    text-align: center;
}

.ev3-section-label {
    color: #4F46E5 !important;
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.ev3-section-title {
    background: none !important;
    -webkit-text-fill-color: unset !important;
    color: #111827 !important;
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 12px;
}

.ev3-section-desc {
    color: #4B5563 !important;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 600px;
}

/* ---- Modules grid ---- */
/* 8 modules: full-width featured lead (01) + two even rows of three (02–07)
   + full-width featured close (08) => balanced 1 / 3 / 3 / 1, no orphan. */
.ev3-modules-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.ev3-module-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    padding: 24px;
    transition: all 0.15s ease;
}

.ev3-modules-grid .ev3-module-card:first-child,
.ev3-modules-grid .ev3-module-card:last-child {
    background: linear-gradient(120deg, #EEF2FF 0%, #ffffff 62%) !important;
    border-color: #C7D2FE !important;
    grid-column: 1 / -1;
    padding: 28px 32px;
}

.ev3-modules-grid .ev3-module-card:first-child .ev3-module-card__content p,
.ev3-modules-grid .ev3-module-card:last-child .ev3-module-card__content p {
    max-width: 68ch;
}

.ev3-module-card:hover {
    border-color: #C7D2FE !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.ev3-module-card__number {
    background: #EEF2FF;
    border-radius: 8px;
    color: #4F46E5;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
    height: 36px;
    line-height: 36px;
    text-align: center;
    width: 36px;
}

.ev3-module-card__content h3 {
    color: #111827 !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.ev3-module-card__content p {
    color: #4B5563 !important;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

/* ---- Gallery grid ---- */
.ev3-gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.ev3-gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

.ev3-gallery-item__img {
    border-radius: 12px;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
}

.ev3-gallery-item:hover .ev3-gallery-item__img {
    transform: scale(1.02);
}

/* ---- Agenda ---- */
.ev3-agenda {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.ev3-agenda-item {
    border-left: 2px solid #E5E7EB;
    display: flex;
    gap: 24px;
    padding: 0 0 32px 24px;
    position: relative;
}

.ev3-agenda-item:last-child {
    border-left: none;
    padding-bottom: 0;
}

.ev3-agenda-item::before {
    background: #4F46E5;
    border: 3px solid #FAFBFC;
    border-radius: 50%;
    content: "";
    height: 12px;
    left: -7px;
    position: absolute;
    top: 4px;
    width: 12px;
}

.ev3-section--alt .ev3-agenda-item::before {
    border-color: #F3F4F6;
}

.ev3-agenda-item__time {
    color: #6B7280;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 60px;
}

.ev3-agenda-item__content h3 {
    color: #111827 !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.ev3-agenda-item__content p {
    color: #4B5563 !important;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

/* ---- Host (override launch component) ---- */
.event-host-card {
    background: #ffffff !important;
    border: 1px solid #E5E7EB !important;
    color: #111827 !important;
}

.event-host-card__name {
    color: #111827 !important;
}

.event-host-card__title {
    color: #4B5563 !important;
}

.event-host-card__bio {
    color: #4B5563 !important;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ev3-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ev3-hero {
        padding: 80px 0 60px;
    }

    .ev3-photo-collage {
        height: 350px;
        max-width: 400px;
    }

    .ev3-photo-collage__img {
        height: 160px;
        width: 240px;
    }
}

@media (max-width: 600px) {
    .ev3-section {
        padding: 60px 0;
    }

    .ev3-modules-grid {
        grid-template-columns: 1fr;
    }

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

    .ev3-hero {
        padding: 24px 0 32px;
    }

    .ev3-hero__content {
        gap: 12px;
    }

    .ev3-hero__title {
        font-size: clamp(1.55rem, 7vw, 2rem);
        letter-spacing: -0.03em;
        line-height: 1.12;
    }

    .ev3-hero__subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .ev3-hero__meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .ev3-photo-collage {
        height: 300px;
        max-width: 300px;
    }

    .ev3-photo-collage__img {
        height: 140px;
        width: 200px;
    }
}

/* ---- v4: Why attend split section ---- */
.ev3-split {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.ev3-split__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ev3-split__visual {
    position: relative;
}

.ev3-split__img {
    border-radius: var(--ev-radius-lg);
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.ev3-why-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.ev3-why-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.ev3-why-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ev3-why-item strong {
    display: block;
    color: var(--ev-text);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ev3-why-item p {
    color: var(--ev-text-muted);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

/* ---- v4: What you'll build cards ---- */
.ev3-build-grid {
    display: grid;
    gap: var(--ev-gap);
    grid-template-columns: repeat(3, 1fr);
}

.ev3-build-card {
    background: var(--ev-bg-card);
    border: 1px solid var(--ev-border);
    border-radius: var(--ev-radius-lg);
    overflow: hidden;
    transition: box-shadow 200ms ease, transform 200ms ease;
}

.ev3-build-card:hover {
    box-shadow: var(--ev-shadow-md);
    transform: translateY(-2px);
}

.ev3-build-card__img-wrap {
    overflow: hidden;
}

.ev3-build-card__img {
    display: block;
    height: 180px;
    object-fit: cover;
    transition: transform 300ms ease;
    width: 100%;
}

.ev3-build-card:hover .ev3-build-card__img {
    transform: scale(1.05);
}

.ev3-build-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.ev3-build-card__tag {
    color: #4F46E5;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ev3-build-card__body h3 {
    color: var(--ev-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.375rem 0 0.5rem;
}

.ev3-build-card__body p {
    color: var(--ev-text-muted);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .ev3-split {
        grid-template-columns: 1fr;
    }

    .ev3-split__visual {
        order: -1;
    }

    .ev3-build-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ev3-split__img {
        max-height: 250px;
        object-fit: cover;
    }

    .ev3-build-card__img {
        height: 150px;
    }
}

/* ---- Mobile sticky CTA — persistent reserve action on the long page ---- */
.ev3-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .event-body {
        padding-bottom: 76px;
    }

    .ev3-mobile-cta {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid #E5E7EB;
        bottom: 0;
        box-shadow: 0 -8px 30px rgba(17, 24, 39, 0.12);
        display: block;
        left: 0;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        position: fixed;
        transform: translateY(110%);
        transition: transform 280ms ease;
        width: 100%;
        z-index: 99;
    }

    .ev3-mobile-cta.is-visible {
        transform: translateY(0);
    }

    .ev3-mobile-cta__inner {
        align-items: center;
        display: flex;
        gap: 12px;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 560px;
    }

    .ev3-mobile-cta__title {
        color: #111827;
        display: block;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .ev3-mobile-cta__meta {
        color: #6B7280;
        display: block;
        font-size: 0.8rem;
        margin-top: 2px;
    }

    .ev3-mobile-cta__button {
        flex-shrink: 0;
        min-height: 44px;
        padding: 0 20px;
        white-space: nowrap;
    }
}

/* ---- Touch targets — comfortable tappable links on mobile ---- */
@media (max-width: 768px) {
    .ev3-button--ghost {
        min-height: 44px;
    }

    .event-nav__mobile a:not(.event-button) {
        align-items: center;
        display: flex;
        min-height: 44px;
        color: #374151;
    }

    .event-footer__column a,
    .event-footer__legal-links a {
        align-items: center;
        display: inline-flex;
        min-height: 44px;
    }
}

/* =====================================================================
   iter49 — Agenda timeline polish (from v6/v7 design language)
   Monospace type labels + color-typed dots (light theme)
   ===================================================================== */

.ev3-agenda-item__type {
    font-family: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A8F99;
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
}

.ev3-agenda-item--lab .ev3-agenda-item__type { color: #4F46E5; }

/* Color-typed dots (timeline versions: v4 light) */
.ev3-agenda-item--talk.ev3-agenda-item::before { background: #4F46E5; }
.ev3-agenda-item--lab.ev3-agenda-item::before {
    background: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}
.ev3-agenda-item--break.ev3-agenda-item::before { background: #8A8F99; }
.ev3-agenda-item--qa.ev3-agenda-item::before { background: #6366F1; }

/* Body text ensure 16px (was 1rem, may drop on mobile) */
.ev3-agenda-item__content p {
    font-size: 16px;
    line-height: 1.55;
}
.ev3-agenda-item__content h3 {
    font-size: 16px;
}
