/* Custom CSS adjustments to augment Tailwind */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Cursor styles */
.custom-cursor {
    transition: opacity 0.3s ease, transform 0.1s ease;
}

/* ============================================
   PREMIUM NAVIGATION
   ============================================ */

/* Outer nav wrapper – full-width, fixed */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    pointer-events: none; /* children re-enable */
}

/* 85 vw pill bar */
.site-nav__inner {
    pointer-events: all;
    width: 85vw;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: rgba(255,255,255,0.72); */
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 100px;
    padding: 12px 16px 12px 28px;
    box-shadow:
        0 4px 24px rgba(0,0,0,0.07),
        0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}



/* Scrolled state */
.site-nav.scrolled .site-nav__inner {
    background: rgba(255,255,255,0.88);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.07);
}

/* Logo */
.site-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
}

.site-nav__logo-mark {
    width: 36px;
    height: 36px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.site-nav__logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #111;
}

.site-nav__logo-dot {
    color: #6366f1;
}

/* ---- Circular Hamburger Button ---- */
.nav-toggle {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.2s ease;
    position: relative;
    z-index: 201;
}

.nav-toggle:hover {
    background: #333;
    transform: scale(1.06);
}

.nav-toggle__line {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
    transition:
        transform 0.35s cubic-bezier(0.23,1,0.32,1),
        opacity   0.2s ease,
        width     0.3s ease;
}

/* Active / open state – morphs into × */
.nav-toggle.is-open .nav-toggle__line--top {
    transform: translateY(3.75px) rotate(45deg);
    width: 18px;
}
.nav-toggle.is-open .nav-toggle__line--bottom {
    transform: translateY(-3.75px) rotate(-45deg);
    width: 18px;
}

/* ---- Dropdown Panel ---- */
.nav-dropdown {
    pointer-events: none;
    position: fixed;
    top: 84px;          /* below nav bar */
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    z-index: 199;
    /* Initial hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.96);
    transform-origin: top right;
    transition:
        opacity   0.3s cubic-bezier(0.23,1,0.32,1),
        transform 0.35s cubic-bezier(0.23,1,0.32,1),
        visibility 0s linear 0.35s;
}

/* Align to the right inside the 85vw bar:
   override left/transform to pin to the right edge */
.nav-dropdown {
    left: auto;
    right: calc((100vw - 85vw) / 2);   /* mirrors nav bar right edge */
    transform: translateY(-10px) scale(0.96);
    transform-origin: top right;
}

.nav-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(10px) scale(1);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-radius: 24px;
    transition:
        opacity   0.3s cubic-bezier(0.23,1,0.32,1),
        transform 0.35s cubic-bezier(0.23,1,0.32,1),
        visibility 0s linear 0s;
}

.nav-dropdown__inner {
    /* background: rgba(255,255,255,0.95); */
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    padding: 10px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.14),
        0 4px 12px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Nav links */
.nav-dropdown__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    /* staggered entrance */
    opacity: 0;
    transform: translateY(8px);
    transition: background 0.18s ease, color 0.18s ease,
                opacity 0.3s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
}


.nav-dropdown__link::after {
    content: '↗';
    font-size: 12px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__link:hover {
    background: #f4f4f5;
    color: #111;
    transform: translateX(2px);
}

.nav-dropdown__link:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger links in when open */
.nav-dropdown.is-open .nav-dropdown__link {
    opacity: 1;
    transform: translateY(0);
}
.nav-dropdown.is-open .nav-dropdown__link[data-index="0"] { transition-delay: 0.06s; }
.nav-dropdown.is-open .nav-dropdown__link[data-index="1"] { transition-delay: 0.10s; }
.nav-dropdown.is-open .nav-dropdown__link[data-index="2"] { transition-delay: 0.14s; }
.nav-dropdown.is-open .nav-dropdown__link[data-index="3"] { transition-delay: 0.18s; }
.nav-dropdown.is-open .nav-dropdown__link[data-index="4"] { transition-delay: 0.22s; }

/* Footer row */
.nav-dropdown__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 6px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 6px;
    /* stagger entrance */
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.26s, transform 0.35s cubic-bezier(0.23,1,0.32,1) 0.26s;
}

.nav-dropdown.is-open .nav-dropdown__footer {
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown__cta {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.2s ease, transform 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-dropdown__cta:hover {
    background: #333;
    transform: scaleX(1.5) scaleY(1.1);
}

.nav-dropdown__location {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ============================================
   HERO INLINE CAROUSEL
   ============================================ */

/* The outer span already handles: overflow-hidden, rounded-[40px], fixed w/h */
/* Track = vertically stacked column of slides */
.hero-carousel-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    will-change: transform;
    /* Height auto: grows to fit all stacked slides */
}

.hero-carousel-track-hori {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
    /* Height auto: grows to fit all stacked slides */
}

/* Each slide = same height as the outer wrapper (set via JS) */
.hero-carousel-slide {
    display: block;
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    /* height set dynamically by JS to match wrapper */
}

/* Marquee text stroke effect */
.-webkit-text-stroke-\[2px\] {
    -webkit-text-stroke-width: 2px;
}
.-webkit-text-stroke-white {
    -webkit-text-stroke-color: white;
}

/* Hide scrollbar for cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e4e5e7;
}
::-webkit-scrollbar-thumb {
    background: #a1a1aa;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #71717a;
}

/* ============================================
   PREMIUM WHITE LIGHT RAYS SYSTEM
   ============================================ */

/* Background grid texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-size: 72px 72px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.3) 1px, transparent 1px);
        /* linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px); */
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

/* Global white light rays canvas - covers entire scroll height */
.light-rays-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Individual light orb / ray */
.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 30%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

/* Sizes */
.light-orb--sm  { width: 300px;  height: 300px;  }
.light-orb--md  { width: 550px;  height: 550px;  }
.light-orb--lg  { width: 800px;  height: 800px;  }
.light-orb--xl  { width: 1100px; height: 1100px; }

/* Opacity variants */
.light-orb--soft    { opacity: 0.50; }
.light-orb--medium  { opacity: 0.65; }
.light-orb--bright  { opacity: 0.85; }

/* Slow drift animation for aliveness */
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.97); }
}
@keyframes floatOrbAlt {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-25px, 30px) scale(1.08); }
    70%       { transform: translate(20px, -10px) scale(0.95); }
}

.light-orb--animate-a { animation: floatOrb    12s ease-in-out infinite; }
.light-orb--animate-b { animation: floatOrbAlt 16s ease-in-out infinite; }
.light-orb--animate-c { animation: floatOrb    20s ease-in-out infinite reverse; }
.light-orb--animate-d { animation: floatOrbAlt 24s ease-in-out infinite; }

/* ============================================
   FOUNDER TIMELINE
   ============================================ */

.founder-timeline {
    position: relative;
}

.timeline-track {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each timeline row */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    /* Initial hidden state for scroll animation */
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.timeline-item[data-timeline-index="0"] { transition-delay: 0.05s; }
.timeline-item[data-timeline-index="1"] { transition-delay: 0.18s; }
.timeline-item[data-timeline-index="2"] { transition-delay: 0.32s; }

/* Left column: dot + connecting line */
.timeline-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    padding-top: 4px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: 2px solid #9ca3af;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.timeline-dot--active {
    background: #111;
    border-color: #111;
    width: 14px;
    height: 14px;
}

.timeline-dot--current {
    background: #111;
    border-color: #111;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.15);
}

/* Vertical connecting line between dots */
.timeline-line {
    width: 1.5px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, #d1d5db, transparent);
    margin: 6px 0;
    position: relative;
    overflow: hidden;
}

/* Animated fill on the line when parent is visible */
.timeline-item.is-visible .timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, #111, transparent);
    animation: lineFill 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

@keyframes lineFill {
    from { transform: scaleY(0); transform-origin: top; }
    to   { transform: scaleY(1); transform-origin: top; }
}

/* Right column: text content */
.timeline-content {
    padding-bottom: 28px;
    flex: 1;
}

.timeline-item--last .timeline-content {
    padding-bottom: 0;
}

.timeline-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 6px;
}

.timeline-badge--current {
    background: #111;
    color: #fff;
    border-color: #111;
}

.timeline-role {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.timeline-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Pulsing live indicator dot for current role */
.timeline-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.timeline-live-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.35);
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1);   opacity: 0.8; }
    50%       { transform: scale(1.6); opacity: 0;   }
}

/* Hover lift on timeline items */
.timeline-item:hover .timeline-dot {
    transform: scale(1.25);
}
.timeline-item:hover .timeline-content .timeline-role {
    color: #374151;
}

/* ============================================
   SCHEDULE A MEETING SECTION
   ============================================ */

/* Section background */
.meeting-section {
    position: relative;
}

/* Decorative grid lines */
.meeting-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.meeting-grid-line {
    position: absolute;
    background: rgba(0, 0, 0, 0.04);
}

.meeting-grid-line--v {
    top: 0;
    bottom: 0;
    width: 1px;
}

.meeting-grid-line--h {
    left: 0;
    right: 0;
    height: 1px;
}

/* Header animations */
.meeting-header {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.meeting-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cards container */
.meeting-cards {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}
.meeting-cards.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footnote */
.meeting-footnote {
    opacity: 0;
    transition: opacity 0.6s ease 0.5s;
}
.meeting-footnote.is-visible {
    opacity: 1;
}

/* ---- Meeting Card ---- */
.meeting-card {
    position: relative;
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.meeting-card:hover {
    transform: translateY(-8px);
}

/* Dark card (Founder) */
.meeting-card--dark {
    background: #111111;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.meeting-card--dark:hover {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

/* Light card (Co-Founder) */
.meeting-card--light {
    background: #ffffff;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.10),
        0 1px 0 rgba(0, 0, 0, 0.04) inset,
        inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.meeting-card--light:hover {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.16),
        inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

/* Corner decoration */
.meeting-card__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

/* ---- Availability badge ---- */
.meeting-avail {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    padding: 5px 12px;
    width: fit-content;
}

.meeting-avail--dark {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.meeting-avail__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.meeting-avail__dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.30);
    animation: livePulse 1.8s ease-in-out infinite;
}

/* ---- Avatar ---- */
.meeting-avatar-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}

.meeting-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.meeting-card--light .meeting-avatar {
    border-color: rgba(0, 0, 0, 0.08);
}

.meeting-avatar__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meeting-avatar__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: ringPulse 3s ease-in-out infinite;
}

.meeting-avatar__ring--dark {
    border-color: rgba(0, 0, 0, 0.07);
}

.meeting-avatar__ring--1 {
    inset: -10px;
    animation-delay: 0s;
}

.meeting-avatar__ring--2 {
    inset: -22px;
    opacity: 0.5;
    animation-delay: 0.8s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.04); opacity: 1;   }
}

/* ---- Card body text ---- */
.meeting-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.meeting-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.meeting-card__role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.meeting-card__role--dark {
    color: #9ca3af;
}

.meeting-card__duration {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    padding: 3px 10px;
}

.meeting-card__duration--dark {
    color: #6b7280;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.meeting-card__name {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Instrument Serif', serif;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.meeting-card__name--dark {
    color: #111111;
}

.meeting-card__bio {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
}

.meeting-card__bio--dark {
    color: #6b7280;
}

/* ---- Tags ---- */
.meeting-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.meeting-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    padding: 4px 12px;
}

.meeting-tag--dark {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

/* ---- CTA button ---- */
.meeting-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1.5rem;
    padding: 1.1rem 1.5rem;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease,
        background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.meeting-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.meeting-cta:hover::before {
    transform: translateX(0);
}

.meeting-cta:hover {
    transform: scale(1.02);
}

/* Light CTA (on dark card) */
.meeting-cta--light {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.meeting-cta--light:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Dark CTA (on light card) */
.meeting-cta--dark {
    background: #111111;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.meeting-cta--dark:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.meeting-cta__text {
    position: relative;
    z-index: 1;
}

.meeting-cta__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}

.meeting-cta--light .meeting-cta__arrow {
    background: #f3f4f6;
    color: #111;
}

.meeting-cta--dark .meeting-cta__arrow {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.meeting-cta:hover .meeting-cta__arrow {
    transform: translateX(4px);
}
