/* ═══════════════════════════════════════════════
   DESIGN SYSTEM — TECHKNOW 2026
   Palette: Blue · White · Black only
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
    --blue: #0052cc;
    --blue-dark: #003ea3;
    --blue-deeper: #002d7a;
    --blue-light: rgba(0, 82, 204, 0.07);
    --blue-mid: rgba(0, 82, 204, 0.15);
    --blue-glow: rgba(0, 82, 204, 0.30);

    --black: #000000;
    --black-soft: #0a0a0a;
    --black-card: #111111;
    --black-border: rgba(255, 255, 255, 0.08);

    --white: #ffffff;
    --white-soft: #f8fafc;
    --white-muted: #f1f5f9;

    --text-primary: #09090b;
    --text-secondary: #475569;
    --text-on-dark: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.55);

    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);

    --heading: 'Outfit', sans-serif;
    --body: 'Inter', sans-serif;

    --section-py: 5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body);
    background: var(--white-soft);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Global Typography & Word Wrapping Safeguards */
h1, h2, h3, h4, h5, h6, p, span, label, a, strong, b, td, th {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    background: var(--white-soft);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   COMING SOON — Inline Section below Title
═══════════════════════════════════════════════ */
.hero-coming-soon-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 1.5rem;
    margin-bottom: 2.25rem;
    width: 100%;
    max-width: 480px;
    text-align: left;
    align-self: flex-start;
    /* Left-align inside hero-content column */
}

.hero-coming-soon-inline .cs-label {
    font-family: var(--heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hero-coming-soon-inline .cs-headline {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-coming-soon-inline .cs-headline em {
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(135deg, #4d9fff 0%, #0052cc 60%, #002d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* ═══════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════ */
.section-tag {
    display: inline-block;
    font-family: var(--heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.85rem;
}

.section-tag-white {
    color: rgba(255, 255, 255, 0.5);
}

.section-heading {
    font-family: var(--heading);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-heading em {
    font-style: italic;
    font-weight: 700;
    color: var(--blue);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 1.75rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--blue);
    gap: 0.75rem;
}

.text-link svg {
    flex-shrink: 0;
}

.section-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.section-intro-desc {
    max-width: 400px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 2rem;
}

/* Brand — now an <a> tag */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.01em;
}

.nav-brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 3px;
}

.nav-brand-title {
    font-family: var(--heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: inline-block;
}

/* Desktop horizontal menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--blue);
}

/* Desktop right-side actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.nav-collab {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.au-logo-inline {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-cta {
    background: var(--blue);
    color: var(--white);
    font-family: var(--heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.35rem;
    border-radius: 9999px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--blue-dark);
    box-shadow: 0 4px 16px var(--blue-glow);
}

/* Hamburger — hidden on desktop, shown at mobile */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.2s ease;
    transform-origin: center;
}

.hamburger-line+.hamburger-line {
    margin-top: 5px;
}

/* ═══════════════════════════════════════════════
   MOBILE DRAWER — hidden on desktop
═══════════════════════════════════════════════ */
.mobile-drawer {
    display: none;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 0;
    margin: 0;
    gap: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, padding-left 0.22s ease;
    text-decoration: none;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--text-primary);
    padding-left: 0.75rem;
}

.mobile-nav-highlight {
    color: var(--blue);
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-bottom: none;
}

.mobile-nav-highlight:hover {
    color: var(--blue-dark);
    padding-left: 0.75rem;
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--white-soft);
}

.mobile-cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    letter-spacing: 0.03em;
}

.mobile-drawer-collab {
    font-size: 1.72rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.mobile-drawer-collab strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--white-soft);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 1rem;
}

/* Ambient blue glow top-right */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(0, 82, 204, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* Subtle grid texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    padding: 7.5rem 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Hero Left */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-eyebrow-multiline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2.25rem;
    width: 100%;
}

.hero-aimo-main {
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-aimo-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bullet-divider {
    color: var(--blue);
    font-weight: bold;
}

.hero-founder {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-collab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding-left: 0.85rem;
    position: relative;
    line-height: 1.2;
}

.hero-collab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: var(--blue);
}

.collab-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collab-name {
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.7);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 82, 204, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0);
    }
}

.hero-title {
    font-family: var(--heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #4d9fff 0%, #0052cc 50%, #002d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero-meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 82, 204, 0.05);
    border: 1px solid rgba(0, 82, 204, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-meta-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--blue);
}

.hero-meta-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 3px;
}

.hero-meta-value {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Countdown */
.hero-countdown {
    margin-bottom: 2.5rem;
}

.countdown-eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.countdown-grid {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    min-width: 72px;
    transition: var(--transition);
}

.countdown-unit:hover {
    border-color: rgba(0, 82, 204, 0.4);
    background: rgba(0, 82, 204, 0.04);
}

.countdown-num {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.countdown-lbl {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 4px;
}

.countdown-sep {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    padding-bottom: 12px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Right (visual) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 82, 204, 0.08);
}

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

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
}

/* Stat Chips */
.hero-chip {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border);
    animation: float 5s ease-in-out infinite;
    cursor: default;
}

.hero-chip:hover {
    box-shadow: 0 12px 40px rgba(0, 82, 204, 0.14);
    border-color: var(--blue);
    transform: translateY(-3px) scale(1.02);
}

.chip-a {
    top: 12%;
    left: -14%;
    animation-delay: 0s;
}

.chip-b {
    bottom: 28%;
    right: -12%;
    animation-delay: 1.8s;
}

.chip-c {
    bottom: 8%;
    left: -10%;
    animation-delay: 3.5s;
}

.chip-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chip-body {
    display: flex;
    flex-direction: column;
}

.chip-body strong {
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.chip-body span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    font-weight: 600;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Scroll Hint */
.hero-scroll {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 2.5rem;
}

.hero-scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ═══════════════════════════════════════════════
   PARTNER MARQUEE
═══════════════════════════════════════════════ */
.marquee-strip {
    background: var(--white-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 0;
}

.marquee-track {
    overflow: hidden;
}

.marquee-items {
    display: inline-flex;
    gap: 3.5rem;
    padding: 1.1rem 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-items span {
    font-family: var(--heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: flex-start;
}

.about-left .section-heading {
    margin-top: 0.5rem;
}

.about-right p {
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-right p strong {
    color: var(--text-primary);
    font-weight: 700;
}

.about-info-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--blue);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.05);
}

.info-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue-light);
    border: 1px solid rgba(0, 82, 204, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
}

.info-card-body h4 {
    font-family: var(--heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.info-card-body p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-bottom: 0.1rem !important;
}

.info-card-body span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.info-card.highlight-card {
    border-color: var(--blue-mid);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.03) 0%, rgba(0, 82, 204, 0.08) 100%);
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.04);
}

.info-card.highlight-card:hover {
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.06) 0%, rgba(0, 82, 204, 0.12) 100%);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.08);
}

.card-link {
    color: var(--blue);
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card-link:hover {
    color: var(--blue-dark);
    gap: 0.4rem;
}

.nav-highlight {
    color: var(--blue) !important;
}

.nav-highlight:hover {
    color: var(--blue-dark) !important;
}

/* ═══════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════ */
.stats-section {
    background: var(--black);
    padding: 4.5rem 0;
}

.stats-section .section-tag {
    display: block;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-num {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-title {
    font-family: var(--heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.65rem;
    letter-spacing: -0.01em;
}

.stat-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.55;
    flex: 1;
}

/* ═══════════════════════════════════════════════
   OBJECTIVES SECTION
═══════════════════════════════════════════════ */
.objectives-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.obj-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: var(--transition);
}

.obj-card:hover {
    background: var(--blue-light);
    z-index: 1;
}

.obj-num {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 82, 204, 0.1);
    line-height: 1;
    transition: var(--transition);
}

.obj-card:hover .obj-num {
    color: var(--blue);
}

.obj-card h3 {
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.obj-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════ */
.features-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background: var(--white);
}

.feat-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.07);
}

.feat-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--white-muted);
}

.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.feat-card:hover .feat-img img {
    transform: scale(1.07);
}

.feat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
}

.feat-num {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
}

.feat-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.feat-label {
    font-family: var(--heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
}

.feat-body h3 {
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feat-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

/* ═══════════════════════════════════════════════
   HISTORY / ABOUT AIMO SECTION
═══════════════════════════════════════════════ */
.history-section {
    padding: var(--section-py) 0;
    background: var(--black-soft);
}

.history-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.history-content .section-tag {
    color: rgba(255, 255, 255, 0.4);
}

.history-content .section-heading {
    color: var(--white);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.history-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.history-content p strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.history-content p em {
    color: rgba(255, 255, 255, 0.65);
}

.founder-card {
    background: var(--black-card);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--blue);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.founder-monogram {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--blue-mid);
    border: 1px solid rgba(0, 82, 204, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.founder-details h3 {
    font-family: var(--heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.founder-details span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #60a5fa;
    font-weight: 700;
    display: block;
    margin-bottom: 1.25rem;
}

.founder-details p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4.5rem 0 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
    max-width: 280px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-col h5 {
    font-family: var(--heading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.footer-links-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--white);
}

.footer-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-divider {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
}

.powered-by {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.powered-by a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.powered-by a:hover {
    color: var(--white);
}

/* ═══════════════════════════════════════════════
   COLLABORATION SECTION
═══════════════════════════════════════════════ */
.collab-section {
    padding: var(--section-py) 0;
    background: var(--white-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.collab-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.04) 0%, transparent 70%);
    pointer-events: none;
    transform: translateY(-50%);
}

.collab-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.collab-desc {
    font-size: 0.975rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
}

.collab-meta-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collab-meta-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.collab-meta-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.collab-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--blue);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.collab-card h3 {
    font-family: var(--heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.collab-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.collab-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 7.5rem 2rem 4rem;
        gap: 1.5rem;
    }

    .hero-content {
        display: contents;
    }

    .hero-eyebrow-multiline {
        order: 1;
        align-items: center;
    }

    .hero-title {
        order: 2;
        margin-bottom: 0.5rem;
    }

    .hero-visual {
        order: 3;
        margin: 1rem auto 1.5rem;
    }

    .hero-coming-soon-inline {
        order: 4;
        align-items: center;
        text-align: center;
        align-self: center;
    }

    .hero-desc {
        order: 5;
        max-width: 600px;
    }

    .hero-meta {
        order: 6;
        align-items: center;
    }

    .hero-countdown {
        order: 7;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas {
        order: 8;
        justify-content: center;
    }

    .hero-img-frame {
        max-width: 300px;
        height: auto;
        aspect-ratio: 4 / 3;
        margin: 0 auto;
    }

    /* Hide floating chips on tablet — they overlap awkwardly */
    .hero-chip {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .history-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .collab-box {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 900px) {
    :root {
        --section-py: 3.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-inner {
        padding: 0 1.25rem;
        height: 80px;
        gap: 0;
    }

    .nav-logo {
        height: 48px;
    }

    .nav-brand-name {
        font-size: 0.9rem;
    }

    .nav-brand-sub {
        font-size: 0.5rem;
    }

    /* Hide desktop-only elements */
    .nav-menu,
    .nav-actions {
        display: none !important;
    }

    /* Show hamburger */
    .nav-toggle {
        display: flex;
        flex-direction: column;
    }

    /* ── Hamburger → X morph ── */
    .navbar.nav-open .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.nav-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .navbar.nav-open .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Mobile Drawer ── */
    .mobile-drawer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 0;
        overflow-y: auto;
        z-index: 200;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Open state */
    .mobile-drawer.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar.nav-open {
        background: rgba(255, 255, 255, 0.98);
    }

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

    /* Stats Grid Responsiveness & Borders */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        border-right: none;
        border-bottom: none;
        padding: 2.25rem 1.75rem;
    }

    .stat-card:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .section-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-intro-desc {
        max-width: 100%;
    }

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

@media (max-width: 640px) {
    :root {
        --section-py: 3rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* ── Hero Overhaul for Mobile ── */
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 6.5rem 1.25rem 2.5rem;
        gap: 1.5rem;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    /* Compact the organizational eyebrow block */
    .hero-eyebrow-multiline {
        gap: 0.3rem;
        margin-bottom: 1.25rem;
        align-items: center;
    }

    .hero-aimo-main {
        font-size: 0.85rem;
        line-height: 1.25;
    }

    .hero-aimo-sub {
        font-size: 0.62rem;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
    }

    .hero-aimo-sub .bullet-divider {
        display: none;
    }

    .hero-founder {
        font-size: 0.62rem;
    }

    .hero-collab {
        margin-top: 0.25rem;
        padding-left: 0.75rem;
        gap: 0.3rem;
    }

    .collab-label {
        font-size: 0.6rem;
    }

    .collab-name {
        font-size: 0.75rem;
    }

    .au-logo-hero {
        height: 24px;
    }

    /* Scale down hero title */
    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
        line-height: 1;
        margin-bottom: 1rem;
    }

    /* Scale down Coming Soon headline */
    .hero-coming-soon-inline {
        margin-top: 0.75rem;
        margin-bottom: 1.25rem;
        align-items: center;
        text-align: center;
        align-self: center;
    }

    .hero-coming-soon-inline .cs-headline {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .hero-coming-soon-inline .cs-label {
        font-size: 0.55rem;
    }

    /* Tighten description */
    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    /* Tighten hero meta */
    .hero-meta {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .hero-meta-icon {
        width: 32px;
        height: 32px;
    }

    .hero-meta-value {
        font-size: 0.82rem;
    }

    /* Compact countdown */
    .hero-countdown {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .countdown-grid {
        gap: 0.2rem;
    }

    .countdown-unit {
        min-width: 52px;
        padding: 0.6rem 0.6rem;
    }

    .countdown-num {
        font-size: 1.35rem;
    }

    .countdown-lbl {
        font-size: 0.5rem;
    }

    .countdown-sep {
        font-size: 1.1rem;
    }

    /* Hero CTA buttons */
    .hero-ctas {
        justify-content: center;
        width: 100%;
    }

    .hero-ctas .btn {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
    }

    /* Minimize hero image on mobile */
    .hero-visual {
        margin-top: 0.5rem;
    }

    .hero-img-frame {
        max-width: 220px;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: var(--radius-md);
    }

    /* Hide scroll hint on mobile */
    .hero-scroll {
        display: none;
    }

    /* ── Other Sections ── */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        background: none;
        border: none;
        border-radius: 0;
        gap: 1rem;
    }

    .obj-card {
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 1.5rem 1.25rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .founder-card {
        padding: 1.75rem;
    }

    .collab-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand-sub {
        display: none !important;
    }

    .hero-inner {
        padding: 6rem 1rem 2rem;
    }

    /* Stack CTA buttons full-width */
    .hero-ctas {
        width: 100%;
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    /* Compact title further */
    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-coming-soon-inline .cs-headline {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    /* Compact hero image to a small circle */
    .hero-img-frame {
        max-width: 160px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

    /* Collapse Stats Grid to 1 Column */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
        padding: 1.5rem 1rem;
    }

    .stat-card:last-child {
        border-bottom: none !important;
    }

    .info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    /* Countdown even more compact */
    .countdown-unit {
        min-width: 46px;
        padding: 0.5rem 0.5rem;
    }

    .countdown-num {
        font-size: 1.15rem;
    }

    .countdown-sep {
        font-size: 0.9rem;
    }
}

/* Collaboration Logos Styling */
.collab-brand-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    vertical-align: middle;
}

.au-logo-hero {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 3px;
    vertical-align: middle;
}

.footer-collab-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.au-logo-footer {
    height: 32px;
    width: auto;
    object-fit: contain;
    border-radius: 3px;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════
   RESOURCE PARTNERS & SPONSORS (3 TOP, 2 BOTTOM - LARGER CARDS)
═══════════════════════════════════════════════ */
.sponsors-cards-section {
    padding: 1.25rem 0 3.5rem;
    background-color: var(--white-soft);
}

.sponsors-strip-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.sponsors-strip-header .section-tag {
    margin-bottom: 0.4rem;
}

.sponsors-strip-header .section-heading {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.amp-symbol {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-weight: 500 !important;
    padding: 0 0.12em;
    display: inline-block;
}

.sponsors-cards-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.75rem !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.sponsors-cards-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 1.75rem !important;
    width: 100% !important;
}

.sponsors-cards-row.row-top {
    justify-content: space-between !important;
}

.sponsors-cards-row.row-bottom {
    justify-content: center !important;
    max-width: 820px !important;
    margin: 0 auto !important;
}

.sponsor-card {
    flex: 1 1 0px !important;
    min-width: 0 !important;
    height: 145px !important;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.25rem 1.75rem !important;
    transition: all 0.25s ease !important;
}

.sponsor-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(0, 82, 204, 0.1) !important;
    border-color: rgba(0, 82, 204, 0.25) !important;
}

.sponsor-card-img {
    max-height: 85px !important;
    height: auto !important;
    width: auto !important;
    max-width: 90% !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 1024px) {
    .sponsors-cards-row {
        gap: 1.25rem !important;
    }
    .sponsor-card {
        height: 125px !important;
        padding: 1rem !important;
    }
    .sponsor-card-img {
        max-height: 70px !important;
    }
}

@media (max-width: 640px) {
    .sponsors-cards-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .sponsor-card {
        flex: 1 1 100% !important;
        height: 110px !important;
    }
}

/* ═══════════════════════════════════════════════
   ORGANIZATION MARQUEE TICKER (WHITE BACKGROUND & INFINITE LOOP)
═══════════════════════════════════════════════ */
.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: #ffffff !important;
    color: #0b2559;
    padding: 0.95rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    position: relative;
    user-select: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.015);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 45s linear infinite;
    will-change: transform;
}

.marquee-items {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
    white-space: nowrap;
}

.marquee-items span {
    font-family: var(--heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0b2559;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.marquee-bullet {
    font-style: normal;
    color: #0052cc;
    font-size: 0.9rem;
    font-weight: bold;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}