/* =========================================================
   AI Conclave 2026 — Landing page styles
   Fonts: Lato (UI) + Farnham (Display/Editorial accents)
   ========================================================= */

/* ---- Farnham (self-hosted) ---- */
@font-face {
    font-family: 'Farnham Display';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Display-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Display';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Display-.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Display';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Display';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Display-Black.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Headline';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Headline-Semi-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Headline';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Headline-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Text';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Text-.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Farnham Text';
    src: url('../fonts/farnham/fonts/fonnts.com-Farnham-Text-Semi-Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ---- Base ---- */
/* Global.css applies `* { background-color: black; }` site-wide.
   Reset that for everything inside this page so text/images don't get
   a black rectangle baked behind them. Specific blocks below opt
   their own background back in. */
.aic-page,
.aic-page *,
.aic-page *::before,
.aic-page *::after {
    background-color: transparent;
}

.aic-page {
    background-color: #000;
    color: #fff;
    font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    /* Clear the fixed `.navbar_header` so the events sub-nav and
       following content start below it instead of being hidden behind
       it. */
    padding-top: 88px;
}

/* Pin the fixed navbar to the very top of the viewport. Global.css sets
   position:fixed but no `top`, which lets the events bar's margin-top
   collapse the navbar's static position downwards on this page. */
.aic-page .navbar_header {
    top: 0;
    left: 0;
}

.aic-page * { box-sizing: border-box; }

/* Global.css forces `img { border-radius: 15px }` — undo that for
   logos / partner marks where we want crisp edges. */
.aic-hero-logo,
.aic-partners-row .aic-partner img,
.aic-speaker-photo img,
.aic-speaker-company img {
    border-radius: 0;
}

/* Re-apply black background to the standard navbar + dropdown panels,
   which rely on the global `* { background-color: black }` rule that
   our reset just neutralized. */
.aic-page .navbar_header,
.aic-page .navbar_header nav,
.aic-page .navbar_header .content,
.aic-page .navbar_header .contentDiv,
.aic-page .navbar_header .contentDiv_menu,
.aic-page .navbar_header .contentDiv_menu_submenu,
.aic-page .navbar_header_phoneView,
.aic-page .nav_bar_mobile,
.aic-page .nav_container_mbl {
    background-color: #000 !important;
}

/* Restore the standard site footer look (grey linear-gradient from
   Global.css). Our `.aic-page *` reset would otherwise wipe its
   gradient/dark-grey backgrounds. */
.aic-page .footer {
    background: linear-gradient(90deg, #313030 1.62%, #1D1C1C 57.45%) !important;
}
.aic-page .footer_col,
.aic-page .footer_container,
.aic-page .footer_brand_logo,
.aic-page .footer_copy-right,
.aic-page .footer .row_qf,
.aic-page .footer .f-bottom,
.aic-page .footer .scoial_footer,
.aic-page .footer .info_sec,
.aic-page .footer .di-1,
.aic-page .footer .di-2,
.aic-page .footer .di-3 {
    background-color: transparent !important;
}

/* ---- Events sub-nav ---- */
/* Sits directly below the fixed navbar — the top offset is handled
   globally via `.aic-page { padding-top }`. */
.aic-events-bar {
    background-color: #0a0a0a !important;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1;
}
.aic-events-bar .aic-events-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.aic-events-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transition: color .2s ease;
}
.aic-events-bar a:hover { color: #c660b6; }

/* On mobile/tablet the desktop navbar is hidden and the
   `.navbar_header_phoneView` mobile bar takes over (see Global.css
   @media max-width: 925px). The mobile bar is shorter, so use a
   smaller top offset on the body. */
@media (max-width: 925px) {
    .aic-page { padding-top: 80px; }
}

@media (max-width: 640px) {
    .aic-page { padding-top: 72px; }
    .aic-events-bar { padding: 14px 20px; gap: 18px; }
    .aic-events-bar .aic-events-title { font-size: 17px; }
}

/* ---- Hero banner ---- */
.aic-hero {
    position: relative;
    min-height: 620px;
    padding: 90px 20px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image:
        linear-gradient(rgba(10, 4, 24, 0.25), rgba(10, 4, 24, 0.35)),
        url('../qfimgs/ai_conclave_bg.png') !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-color: #08020f !important;
    overflow: hidden;
}
/* Hero is a flex column with align-items:center, which sizes each child to its
   content width — long text (the meta line) would otherwise exceed the viewport
   and not wrap. Cap every child to the hero width so text wraps correctly. */
.aic-hero > * {
    max-width: 100%;
}

/* The hero background image already has bokeh + particles baked in,
   so no extra dot overlay is needed. */

.aic-hero-logo {
    position: relative;
    max-width: 760px;
    width: 90%;
    height: auto;
    margin: 0 auto 40px;
    z-index: 2;
}

.aic-hero-meta {
    position: relative;
    z-index: 2;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 50px;
}
.aic-hero-meta .sep {
    display: inline-block;
    margin: 0 12px;
    color: rgba(255,255,255,0.7);
}

.aic-hero-tagline {
    position: relative;
    z-index: 2;
    font-family: 'Farnham Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    margin: 0 0 50px;
    letter-spacing: 0.5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}
.aic-hero-tagline .divider {
    color: #c660b6;
    font-weight: 300;
    transform: rotate(15deg);
    display: inline-block;
}

.aic-hero-note {
    position: relative;
    z-index: 2;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.aic-rsvp-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 30px;
    padding: 15px 46px;
    background-image: linear-gradient(135deg, #d264c0, #a84a9b) !important;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(198, 96, 182, 0.4);
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}
/* Arrow makes it read clearly as an action (vs the static heading pills). */
.aic-rsvp-btn::after {
    content: "\2192";              /* → */
    font-size: 18px;
    transition: transform .3s ease;
}
.aic-rsvp-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 12px 30px rgba(198, 96, 182, 0.6);
}
.aic-rsvp-btn:hover::after {
    transform: translateX(5px);
}

/* ---- Section wrappers ---- */
.aic-section {
    padding: 70px 20px;
    background-color: #000 !important;
}
.aic-section.aic-agenda { padding-bottom: 40px; }
.aic-section.aic-partners { padding-top: 40px; padding-bottom: 60px; }
.aic-section.aic-executive { padding-top: 90px; }

.aic-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ---- Speakers ---- */
.aic-speakers-pill,
.aic-partners-pill,
.aic-agenda-pill {
    display: inline-block;
    padding: 10px 36px;
    background-color: #c660b6 !important;
    color: #fff;
    border-radius: 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    cursor: default;
}

.aic-speakers {
    text-align: center;
}
.aic-speakers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px 18px;
    margin-top: 48px;
    align-items: start;
}
.aic-speaker {
    text-align: center;
}
.aic-speaker-photo {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background-color: #fff !important;
    border: 2px solid #c660b6;
    margin: 0 auto 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aic-speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Generic avatar placeholder (no real person) for speakers without a photo. */
.aic-speaker-photo.aic-photo-placeholder {
    background: linear-gradient(160deg, #2a2130, #15101b) !important;
}
.aic-photo-placeholder i {
    font-size: 56px;
    color: rgba(198, 96, 182, 0.85);
    line-height: 1;
}
.aic-speaker-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin: 0 0 5px;
    min-height: 38px;          /* reserve ~2 lines so short/long names line up */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Short bracketed, uppercase designation to match the deck, e.g. [ COO ] */
.aic-speaker-role {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 0;
    min-height: 18px;          /* single line; designations don't wrap */
    /* Global.css forces `p { text-align:left !important }` <=576px — override it. */
    text-align: center !important;
}
.aic-speaker-company {
    margin-top: 4px;           /* tight gap below the designation */
    min-height: 64px;          /* fixed band so every logo aligns on one line */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Transparent logos in a uniform bounding box (no white background) so every
   logo scales to the same footprint regardless of its native proportions. */
.aic-speaker-company img {
    width: 98px;
    height: 36px;
    max-width: 100%;           /* never exceed the (narrow) card cell */
    object-fit: contain;
}
/* Wide / low-profile logos that read small in the default box get a larger one. */
.aic-speaker-company img.aic-logo-lg {
    width: 128px;
    height: 50px;
}
.aic-speaker-company img.aic-logo-tata {
    width: 172px;
    height: 50px;
}
.aic-speaker-company img.aic-logo-ivp {
    width: 150px;
    height: 60px;
}
.aic-speaker-company-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2px;
    color: #fff;
    line-height: 1.25;
    min-height: 36px;
}
/* Indus Valley Partners — inline SVG icon + wordmark */
.aic-ivp {
    gap: 7px;
    min-height: 36px;
}
.aic-ivp-icon {
    width: auto;
    height: 30px;
    flex: 0 0 auto;
}
.aic-ivp-text {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2px;
    line-height: 1.15;
    color: #fff;
    text-align: left;
}

/* ---- Executive Evening hero block ---- */
.aic-executive {
    position: relative;
    text-align: center;
}
.aic-executive-frame {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border: 1.5px solid #7a3a85;
    border-radius: 26px;
    padding: 56px 40px 46px;
}
.aic-exec-eyebrow {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000 !important;
    padding: 0 24px;
    font-family: 'Farnham Headline', 'Farnham Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 30px);
    color: #fff;
    white-space: nowrap;
}
.aic-exec-eyebrow::before,
.aic-exec-eyebrow::after {
    content: "";
    display: inline-block;
    width: 64px;
    height: 1.5px;
    background-color: #7a3a85 !important;
    vertical-align: middle;
    margin: 0 18px;
}
.aic-exec-title {
    font-family: 'Farnham Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(34px, 5vw, 60px);
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.aic-intro {
    max-width: 760px;
    margin: 48px auto 0;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
}

.aic-join {
    text-align: center;
    margin: 48px 0 24px;
    font-family: 'Farnham Headline', 'Farnham Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(20px, 2.1vw, 26px);
    color: #fff;
}

.aic-leaders-row {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.aic-leaders-card {
    border: 1.5px solid #7a3a85;
    border-radius: 22px;
    padding: 36px 30px;
    background-image:
        linear-gradient(rgba(10, 4, 24, 0.25), rgba(10, 4, 24, 0.35)),
        url('../qfimgs/ai_conclave_bg.png') !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-color: #0a0418 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}
.aic-leaders-number {
    position: relative;
    font-family: 'Farnham Display', 'Times New Roman', serif;
    font-weight: 800;
    font-size: clamp(70px, 9vw, 110px);
    line-height: 1;
    color: #fff;
    margin: 0;
}
.aic-leaders-label {
    position: relative;
    font-family: 'Farnham Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: 28px;
    color: #fff;
    margin: 6px 0 2px;
}
.aic-leaders-sub {
    position: relative;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.aic-including {
    border: 1.5px solid #7a3a85;
    border-radius: 22px;
    padding: 32px 36px;
    background-color: #000 !important;
}
.aic-including h4 {
    font-family: 'Farnham Headline', 'Farnham Display', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    margin: 0 0 16px;
}
.aic-including p {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.55;
    color: #fff;
    margin: 0;
}

/* ---- Agenda / Conversations section ---- */
.aic-agenda {
    text-align: center;
}
.aic-agenda-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 30px);
    color: #fff;
    line-height: 1.35;
    margin: 0 auto 36px;
    max-width: 900px;
}
.aic-agenda-heading {
    margin-top: 30px;
    margin-bottom: 16px;
}
.aic-agenda-sub {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
    margin: 0 auto;
}
.aic-agenda-cta {
    margin-top: 34px;
}
.aic-agenda-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;      /* let the image column match the text height */
    margin-top: 60px;
    text-align: left;
}
.aic-expect-heading {
    font-family: 'Farnham Display', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    margin: 0 0 26px;
}
.aic-expect-list p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px;
}
.aic-expect-list p:last-child { margin-bottom: 0; }
.aic-expect-list p strong {
    color: #fff;
    font-weight: 700;
}
.aic-agenda-image {
    display: flex;
}
.aic-agenda-image img {
    width: 100%;
    height: 100%;              /* fill the row height so it aligns with the content */
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* ---- Event Partners ---- */
.aic-partners {
    text-align: center;
}
.aic-partners-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: 'Farnham Headline', 'Farnham Display', Georgia, serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 30px);
    color: rgba(255, 255, 255, 0.92);
    margin: 44px auto 0;
    letter-spacing: 0.4px;
    text-align: center;
}
.aic-partners-soon::before,
.aic-partners-soon::after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 1.5px;
    background-color: #7a3a85;
    flex: 0 0 auto;
}
.aic-partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px 60px;
    margin-top: 60px;
}
.aic-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 80px;
}
.aic-partners-row .aic-partner img {
    max-height: 56px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1.05);
}
.aic-partners-row .aic-partner-text {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 26px;
    color: #fff;
    background: transparent;
}

/* =========================================================
   Animations
   ========================================================= */

/* Hero entrance animations — auto-play on load */
@keyframes aic-pop {
    0%   { opacity: 0; transform: scale(0.85) translateY(20px); }
    60%  { opacity: 1; transform: scale(1.03) translateY(0); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes aic-fade-up {
    0%   { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes aic-tagline-glow {
    0%, 100% { text-shadow: 0 0 0 rgba(198, 96, 182, 0); }
    50%      { text-shadow: 0 0 32px rgba(198, 96, 182, 0.45); }
}
@keyframes aic-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.aic-anim-pop {
    opacity: 0;
    animation: aic-pop 1100ms cubic-bezier(.2,.85,.3,1.1) 150ms forwards;
}
.aic-anim-fade-up {
    opacity: 0;
    animation: aic-fade-up 800ms cubic-bezier(.2,.7,.3,1) forwards;
}
.aic-delay-1 { animation-delay: 600ms; }
.aic-delay-2 { animation-delay: 850ms; }
.aic-delay-3 { animation-delay: 1100ms; }

.aic-hero-logo {
    will-change: transform;
    animation: aic-pop 1100ms cubic-bezier(.2,.85,.3,1.1) 150ms forwards,
               aic-float 6s ease-in-out 1500ms infinite;
}
.aic-hero-tagline {
    animation: aic-fade-up 800ms cubic-bezier(.2,.7,.3,1) 850ms forwards,
               aic-tagline-glow 4s ease-in-out 1800ms infinite;
}

/* Pulsing pills */
.aic-speakers-pill,
.aic-partners-pill,
.aic-agenda-pill {
    transition: transform .35s ease, box-shadow .35s ease;
}
.aic-speakers-pill:hover,
.aic-partners-pill:hover,
.aic-agenda-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(198, 96, 182, 0.45);
}

/* Scroll reveal — applied via IntersectionObserver JS */
.aic-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.2,.7,.3,1),
                transform .8s cubic-bezier(.2,.7,.3,1);
    will-change: opacity, transform;
}
.aic-reveal.aic-in {
    opacity: 1;
    transform: translateY(0);
}

/* Speaker photo hover effect */
.aic-speaker-photo {
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.aic-speaker-photo:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 18px 40px rgba(198, 96, 182, 0.35);
    border-color: #ffb4ed;
}
.aic-speaker-photo img {
    transition: transform .6s ease;
}
.aic-speaker-photo:hover img {
    transform: scale(1.08);
}

/* Partner logo hover lift + grayscale-to-color */
.aic-partner {
    transition: transform .35s ease, filter .35s ease;
}
.aic-partner img {
    transition: filter .35s ease, transform .35s ease;
}
.aic-partner:hover {
    transform: translateY(-4px);
}
.aic-partner:hover img {
    transform: scale(1.08);
}

/* Leaders card subtle drift */
.aic-leaders-card .aic-leaders-number {
    display: inline-block;
    animation: aic-float 5s ease-in-out infinite;
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
    .aic-anim-pop,
    .aic-anim-fade-up,
    .aic-hero-logo,
    .aic-hero-tagline,
    .aic-leaders-card .aic-leaders-number {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .aic-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .aic-speakers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .aic-leaders-row {
        grid-template-columns: 1fr;
    }
    .aic-agenda-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .aic-speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .aic-hero { min-height: 480px; padding: 70px 16px 50px; }
    .aic-hero-logo { width: 88%; max-width: 320px; margin-bottom: 28px; }
    .aic-hero-meta { font-size: 14px; line-height: 1.5; margin-bottom: 36px; }
    .aic-hero-meta .sep { display: none; }
    .aic-hero-tagline { gap: 8px; font-size: 26px; }
    .aic-section { padding: 60px 16px; }
    .aic-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .aic-speaker-photo { width: 130px; height: 130px; }
    .aic-speaker-company img { width: 104px; height: 38px; }
    .aic-speaker-company img.aic-logo-lg { width: 130px; height: 52px; }
    .aic-speaker-company img.aic-logo-tata { width: 130px; height: 42px; }
    .aic-section.aic-executive { padding-top: 56px; }
    .aic-executive-frame { padding: 26px 20px 30px; }
    /* On mobile the badge-on-border eyebrow wraps and overlaps the title, so
       drop it into normal flow above the title and remove the side dashes. */
    .aic-exec-eyebrow {
        position: static;
        transform: none;
        display: block;
        white-space: normal;
        font-size: 17px;
        padding: 0;
        margin-bottom: 12px;
    }
    .aic-exec-eyebrow::before,
    .aic-exec-eyebrow::after { display: none; }
    .aic-exec-title { font-size: 30px; }
    .aic-leaders-number { font-size: 70px; }
    .aic-partners-row { gap: 36px; }
}
