:root {
    --pink: #ef347c;
    --pink-deep: #c41e63;
    --pink-soft: #fbd4e4;
    --royal: #0123B4;
    --royal-mid: #1a3fd0;
    --royal-soft: #3d63d8;
    --cream: #f7f4fb;
    --paper: #ffffff;
    --ink: #12101c;
    --muted: #5f5870;
    --gold: #c9a24a;
    --gold-bright: #e6c872;
    --gold-deep: #8b6b24;
    --silver: #c0c0c0;
    --platinum: #8e9aaf;
    --line: rgba(1, 35, 180, .1);
    --shadow: 0 16px 40px rgba(1, 35, 180, .1);
    --shadow-hover: 0 24px 50px rgba(1, 35, 180, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 0%, rgba(239, 52, 124, .08), transparent 32%),
        radial-gradient(circle at 90% 8%, rgba(1, 35, 180, .08), transparent 30%),
        #f6f3fb;
    font-family: "Outfit", "Source Sans 3", "Hind Siliguri", sans-serif;
    letter-spacing: .01em;
}

body.locale-bn { font-family: "Hind Siliguri", "Noto Sans Bengali", "Outfit", sans-serif; }
img, video { max-width: 100%; }

/* ——— Header ——— */
.aab-header {
    position: sticky;
    top: 0;
    z-index: 40;
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.aab-toprow { padding: .55rem 0 .4rem; }
.aab-toprow::after {
    content: "";
    display: block;
    height: 1px;
    width: min(1140px, calc(100% - 2rem));
    margin: .35rem auto 0;
    background: linear-gradient(90deg, transparent 0%, var(--pink) 22%, var(--royal) 50%, var(--pink) 78%, transparent 100%);
    opacity: .22;
}
.aab-toprow-inner {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.aab-header-tools {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-left: auto;
    flex-shrink: 0;
}
.aab-logout-form { margin: 0; }

.aab-navrow-inner {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.aab-navrow .navbar-collapse { flex: 1 1 auto; }
.lang-pair {
    display: inline-flex;
    margin-left: auto;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 2px;
    flex-shrink: 0;
}
.lang-switch {
    color: var(--royal);
    text-decoration: none;
    font-weight: 600;
    font-size: .68rem;
    line-height: 1;
    padding: .2rem .42rem;
    border-radius: 999px;
}
.lang-switch.active,
.lang-switch:hover {
    background: var(--pink);
    color: #fff;
}

.aab-navrow { padding: 0 0 .45rem; }
.aab-navrow .navbar-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: .15rem;
}

.aab-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--royal); min-width: 0; }
.aab-account-btn { display: none !important; }
.aab-logo .mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--pink), var(--royal));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    box-shadow: 0 8px 16px rgba(239, 52, 124, .22);
    flex-shrink: 0;
}
.aab-logo strong {
    display: block;
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}
.aab-logo small { color: var(--muted); letter-spacing: .14em; text-transform: uppercase; font-size: .62rem; }

.aab-header .nav-link {
    color: var(--royal) !important;
    font-weight: 600;
    font-size: .92rem;
    padding: .42rem .72rem !important;
    border-radius: 999px;
    white-space: nowrap;
}
.aab-header .nav-link.active,
.aab-header .nav-link:hover { background: var(--pink); color: #fff !important; }
.aab-header .dropdown-menu {
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: .45rem;
}
.aab-header .navbar-toggler {
    border: 1px solid var(--line);
    padding: .35rem .5rem;
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    background: #fff;
    color: var(--royal);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--line);
}
.points-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    background: var(--royal);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .82rem;
}
.points-chip:hover { color: var(--pink-soft); }

/* Default inner-page header */
.aab-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(1, 35, 180, .08);
}

/* Studio: header stays solid on the homepage */
body.is-home .aab-header {
    position: sticky;
    left: auto;
    right: auto;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
    border-bottom: 1px solid var(--line);
}
body.is-home .aab-header .aab-logo { color: var(--royal); }
body.is-home .aab-header .aab-logo small { color: var(--muted); }
body.is-home .aab-header .nav-link { color: var(--royal) !important; }
body.is-home .aab-header .nav-link.active,
body.is-home .aab-header .nav-link:hover { background: var(--pink); color: #fff !important; }
body.is-home .aab-header .lang-pair { background: #fff; border-color: var(--line); }
body.is-home .aab-header .lang-switch { color: var(--royal); }
body.is-home .aab-header .lang-switch.active,
body.is-home .aab-header .lang-switch:hover { background: var(--pink); color: #fff; }
body.is-home .aab-header .btn-aab-outline {
    border-color: var(--royal);
    color: var(--royal);
    background: #fff;
}
body.is-home .aab-header .btn-aab-outline:hover { background: var(--royal); color: #fff; }
body.is-home .aab-header .points-chip { background: var(--royal); }
body.is-home .aab-header .navbar-toggler { filter: none; border-color: var(--line); }
body.is-home .aab-header.is-scrolled {
    background: #fff;
    box-shadow: 0 8px 24px rgba(1, 35, 180, .08);
}

.medal, .medal-lg {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px currentColor;
}
.medal-lg {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), #fff3b0);
    margin: 0 auto 1rem;
    display: block;
    box-shadow: 0 0 0 4px rgba(255,255,255,.4), 0 8px 16px rgba(201,162,74,.25);
}

/* ——— Buttons ——— */
.btn-aab,
.btn-aab-outline {
    border-radius: 999px;
    padding: .7rem 1.35rem;
    letter-spacing: .02em;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-aab {
    background: var(--pink);
    color: #fff;
    border: 0;
    box-shadow: 0 10px 22px rgba(239, 52, 124, .28);
}
.btn-aab:hover { background: var(--pink-deep); color: #fff; transform: translateY(-1px); }
.btn-aab-outline {
    border: 1.5px solid var(--royal);
    color: var(--royal);
    background: #fff;
}
.btn-aab-outline:hover { background: var(--royal); color: #fff; }

/* ——— Full-screen hero ——— */
.hero-full {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}
.hero-full-bg,
.hero-full-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-full-bg img {
    object-fit: cover;
    transform-origin: center center;
    animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-full-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(1, 18, 56, .28) 0%, rgba(1, 18, 56, .55) 48%, rgba(1, 12, 40, .82) 100%);
}
.hero-full-content {
    position: relative;
    z-index: 2;
    padding: 7rem 0 5.5rem;
    max-width: 920px;
}
.hero-full .eyebrow {
    display: inline-block;
    color: #fff;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .78rem;
    margin-bottom: .8rem;
    background: rgba(239, 52, 124, .88);
    padding: .35rem .8rem;
    border-radius: 999px;
    animation: fadeUp .7s ease both;
}
.hero-full h1 {
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 1.04;
    color: #fff;
    font-weight: 700;
    animation: fadeUp .8s .1s ease both;
}
.hero-full .hero-rule {
    width: 72px;
    height: 3px;
    background: var(--pink);
    border-radius: 99px;
    margin: 1.1rem 0 1.15rem;
    animation: fadeUp .8s .18s ease both;
}
.hero-full .lead {
    color: rgba(255,255,255,.88);
    max-width: 38rem;
    font-size: 1.18rem;
    animation: fadeUp .8s .26s ease both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0 1.2rem; animation: fadeUp .8s .34s ease both; }
.tier-row { display: flex; flex-wrap: wrap; gap: .55rem; animation: fadeUp .8s .42s ease both; }
.tier-badge.light {
    background: rgba(255,255,255,.14);
    color: #fff;
    border-color: rgba(255,255,255,.28);
    backdrop-filter: blur(8px);
}
.btn-aab-light {
    border: 1.5px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 999px;
    padding: .7rem 1.35rem;
    font-weight: 600;
}
.btn-aab-light:hover { background: #fff; color: var(--royal); }
.hero-sponsors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    margin-top: 1.6rem;
    color: rgba(255,255,255,.86);
    font-size: .92rem;
    animation: fadeUp .8s .5s ease both;
}
.hero-sponsors .section-kicker { color: var(--pink-soft); margin: 0; }
.hero-sponsors .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
}
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    z-index: 3;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    animation: bounceDown 1.8s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--pink-soft); }

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}
.sponsor-name {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .45rem 0;
    font-weight: 600;
    font-size: .92rem;
}
.sponsor-name img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}
.sponsor-name:last-child { padding-bottom: 0; }
.event-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ——— Sections & cards ——— */
.section { padding: 4.2rem 0; }
.section-soft { background: #fff; }
.section-title {
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    color: var(--royal);
    margin-bottom: 1.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.section-kicker {
    display: inline-block;
    color: var(--pink);
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: .35rem;
}
.view-all {
    color: var(--pink);
    font-weight: 700;
    text-decoration: none;
}
.view-all:hover { color: var(--royal); }

.page-head {
    background: linear-gradient(110deg, var(--royal), var(--pink));
    color: #fff;
    padding: 2.6rem 0 2.2rem;
    margin-bottom: 2rem;
}
.page-head h2 {
    margin: 0;
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    font-weight: 700;
}

.card-aab {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(1, 35, 180, .06);
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.card-aab:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
a.card-aab { text-decoration: none; color: inherit; display: block; }
.card-aab .thumb {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink), var(--royal));
}
.card-aab .thumb img,
.card-aab .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.card-aab:hover .thumb img { transform: scale(1.06); }
.card-aab .body { padding: 1.2rem 1.25rem 1.35rem; }
.card-aab h4, .card-aab h5 {
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    color: var(--royal);
    font-weight: 700;
}
.chip {
    display: inline-block;
    padding: .18rem .6rem;
    border-radius: 999px;
    background: var(--pink-soft);
    color: var(--pink-deep);
    font-size: .72rem;
    font-weight: 700;
}
.meta { color: var(--muted); font-size: .85rem; }
.card-aab .read-more { color: var(--pink); font-weight: 700; text-decoration: none; }
.card-aab .read-more:hover { color: var(--royal); }

.ad-card .thumb { position: relative; height: 240px; }
.ad-card .thumb-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.7rem 1.1rem 1rem;
    background: linear-gradient(180deg, transparent, rgba(1, 35, 180, .88));
    color: #fff;
}
.ad-card .thumb-caption h5 { color: #fff; margin: 0; font-size: 1.2rem; line-height: 1.25; }
.ad-card .body { padding: 1rem 1.2rem 1.2rem; }

.pillar-card .body { padding-top: 1.5rem; }
.pillar-index {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.maker-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 22px rgba(1, 35, 180, .05);
}
.maker-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--pink);
}
.maker-avatar img { width: 100%; height: 100%; object-fit: cover; }

.tier-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2rem 1.4rem 1.6rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 30px rgba(1, 35, 180, .06);
}
.tier-panel p { color: var(--muted); min-height: 3.4rem; }
.tier-panel.featured {
    background: var(--royal);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(1, 35, 180, .22);
}
.tier-panel.featured p,
.tier-panel.featured h3 { color: #fff; }
.tier-panel.featured .btn-aab { background: var(--pink); }
.tier-panel h3 {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: .6rem;
}

.filter-bar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
}

/* ——— Footer ——— */
.aab-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.82);
    padding: 0 0 1.4rem;
    margin-top: 4rem;
    background:
        radial-gradient(ellipse at 8% 0%, rgba(239, 52, 124, .22), transparent 44%),
        radial-gradient(ellipse at 90% 8%, rgba(61, 99, 216, .28), transparent 36%),
        linear-gradient(180deg, #1636c4 0%, var(--royal) 50%, #011888 100%);
    box-shadow: 0 -24px 60px rgba(1, 35, 180, .18);
}
.aab-footer::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--gold-bright), var(--pink));
}
.aab-footer-glow {
    position: absolute;
    inset: auto -18% 28% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 52, 124, .2), transparent 70%);
    pointer-events: none;
}
.aab-footer .container { position: relative; z-index: 1; }
.aab-footer-cta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 2.6rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.aab-footer-kicker {
    display: inline-block;
    margin: 0 0 .7rem;
    color: #fff;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .72rem;
    background: rgba(239, 52, 124, .88);
    padding: .32rem .75rem;
    border-radius: 999px;
}
.aab-footer-cta h2 {
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0 0 .65rem;
}
.aab-footer-cta p {
    margin: 0;
    max-width: 38rem;
    color: rgba(255,255,255,.8);
}
.aab-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    flex-shrink: 0;
}
.aab-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr .9fr 1fr;
    gap: 2rem 1.4rem;
    padding: 2.4rem 0 1.6rem;
}
.aab-footer-brand .aab-logo { color: #fff; margin-bottom: 1rem; }
.aab-footer-brand .aab-logo strong { color: #fff; }
.aab-footer-brand .aab-logo small { color: rgba(255,255,255,.62); }
.aab-footer-brand > p { color: rgba(255,255,255,.78); max-width: 22rem; }
.aab-footer-social {
    display: flex;
    gap: .55rem;
    margin-top: 1.15rem;
}
.aab-footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
}
.aab-footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}
.aab-footer h5 {
    color: #fff;
    font-family: "Cormorant Garamond", "Playfair Display", serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.aab-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aab-footer-links li + li { margin-top: .45rem; }
.aab-footer a { color: #ffd0e2; text-decoration: none; }
.aab-footer a:hover { color: #fff; }
.aab-footer-links a {
    display: inline-block;
    transition: transform .2s ease, color .2s ease;
}
.aab-footer-links a:hover { color: #fff; transform: translateX(.2rem); }
.aab-footer-tiers {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.1rem;
}
.aab-footer-tier {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #fff !important;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: .38rem .8rem;
    font-weight: 600;
    width: fit-content;
}
.aab-footer-tier:hover { background: var(--pink); border-color: var(--pink); color: #fff !important; }
.aab-footer-tier .medal {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(255,255,255,.25);
}
.aab-footer-patrons {
    display: grid;
    gap: .7rem;
}
.aab-footer-patrons span {
    display: block;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(230, 200, 114, .35);
    border-radius: 16px;
    padding: .85rem 1rem;
    font-weight: 600;
    line-height: 1.35;
}
.aab-footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.62);
    font-size: .9rem;
}
.aab-footer-bar p { margin: 0; }
@media (max-width: 991.98px) {
    .aab-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
    .aab-footer-cta { flex-direction: column; align-items: flex-start; padding-top: 2rem; }
    .aab-footer-grid { grid-template-columns: 1fr; padding-top: 1.8rem; }
}
.aab-footer .btn-aab-light {
    border-color: #fff;
    color: #fff;
    background: transparent;
}
.aab-footer .btn-aab-light:hover { background: #fff; color: var(--royal); }

/* ——— Forms ——— */
.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.form-card h4 {
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    color: var(--royal);
    font-weight: 700;
}
.form-control, .form-select {
    border-radius: 12px;
    padding: .78rem 1rem;
    border-color: #e6e0ef;
    background: #fff;
}
.form-control:focus, .form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 .2rem rgba(239, 52, 124, .16);
}

.upgrade-wrap { position: relative; min-height: 420px; }
.upgrade-blur { filter: blur(6px); pointer-events: none; user-select: none; }
.upgrade-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5.5rem 1rem 2rem;
    background: rgba(246, 243, 251, .46);
}
.upgrade-card {
    position: sticky;
    top: 6.5rem;
    background: #fff;
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 2.2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

.community-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 118px;
    gap: 1.25rem;
    align-items: start;
}
.community-side,
.community-archive {
    position: sticky;
    top: 6.4rem;
}
.community-feed { min-width: 0; }
.community-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1rem;
}
.community-chip {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--royal);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-weight: 600;
    font-size: .9rem;
}
.community-chip.active,
.community-chip:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.community-composer { margin-bottom: 1rem; padding: 1.15rem; }
.community-composer h4 { font-size: 1.25rem; }
.community-now {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
    margin: 0 0 .85rem;
}
.community-post { height: auto; margin-bottom: 1rem; }
.community-post:hover { transform: none; }
.community-empty { color: var(--muted); }
.community-pager { margin-top: 1rem; }
.community-months {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: .75rem;
}
.community-months-title {
    font-weight: 700;
    color: var(--royal);
    margin: 0 0 .4rem;
}
.community-months a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    border-radius: 10px;
    padding: .4rem .55rem;
}
.community-months a.active,
.community-months a:hover { background: var(--royal); color: #fff; }
.community-archive {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    padding-top: .15rem;
}
.community-archive-title {
    margin: 0 0 .55rem;
    color: var(--royal);
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.2;
    text-align: center;
}
.community-archive-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin: .35rem auto 0;
    background: var(--royal);
    opacity: .45;
}
.community-year-rail {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #8b86a0;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.2;
    padding: .4rem .15rem;
    border-radius: 8px;
}
.community-year-rail small {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    opacity: .7;
}
.community-now a {
    margin-left: .45rem;
    color: var(--pink);
    font-weight: 700;
    text-decoration: none;
}
.community-year-rail.active,
.community-year-rail:hover { color: var(--royal); background: rgba(1, 35, 180, .08); }
@media (max-width: 991.98px) {
    .community-layout { grid-template-columns: 1fr 118px; }
    .community-side { position: static; grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .community-layout { grid-template-columns: 1fr; }
    .community-archive {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: .35rem;
    }
    .community-year-rail { width: auto; padding: .28rem .55rem; background: #fff; border: 1px solid var(--line); }
}

.poll-box {
    background: #fff;
    border-radius: 18px;
    padding: 1.35rem;
    border: 1px solid var(--line);
}
.progress { height: 8px; background: #efe8f3; border-radius: 999px; }
.progress-bar { border-radius: 999px; }

.points-stat {
    background: var(--royal);
    color: #fff;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    margin: 1rem 0;
}
.points-stat strong {
    display: block;
    font-size: 1.8rem;
    font-family: "Cormorant Garamond", serif;
    color: #fff;
}
.profile-photo {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--pink);
}

.id-card {
    width: 440px;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--royal), var(--pink));
    color: #fff;
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: var(--shadow-hover);
}
.id-card .inner {
    background: rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 1.4rem;
}
.id-card h2, .id-card h3 { font-family: "Cormorant Garamond", "Playfair Display", serif; }

.prose-card { font-size: 1.08rem; line-height: 1.8; }

body.is-home .aab-toprow::after,
body.is-home .aab-header.is-scrolled .aab-toprow::after {
    background: linear-gradient(90deg, transparent 0%, var(--pink) 22%, var(--royal) 50%, var(--pink) 78%, transparent 100%);
    opacity: .22;
}

@media (min-width: 768px) {
    .aab-account-btn { display: inline-flex !important; }
    .aab-header .navbar-toggler { display: none; }
}
@media (max-width: 767.98px) {
    .aab-navrow-inner { flex-wrap: wrap; justify-content: flex-end; }
    .aab-navrow .navbar-collapse {
        flex: 1 1 100%;
        order: 2;
        background: #fff;
        border-radius: 16px;
        margin: .35rem 0 .55rem;
        padding: .5rem;
        box-shadow: var(--shadow);
    }
    .aab-navrow .lang-pair { order: 1; }
    .aab-navrow .nav-link { color: var(--royal) !important; }
    body.is-home .aab-navrow .navbar-collapse .nav-link { color: var(--royal) !important; }
    body.is-home .aab-navrow .navbar-collapse .nav-link.active,
    body.is-home .aab-navrow .navbar-collapse .nav-link:hover { color: #fff !important; }
}
@media (max-width: 575.98px) {
    .aab-header .aab-logo-text { display: none; }
    .aab-signup-btn { display: none !important; }
    .hero-full-content { padding: 5.5rem 0 4rem; }
    .hero-full h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
    .hero-sponsors { font-size: .8rem; }
}
@media (max-width: 768px) {
    .tier-panel.featured { transform: none; }
    .form-card { padding: 1.4rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .card-aab, .btn-aab, .btn-aab-outline, .card-aab .thumb img, .reveal { transition: none; }
    .hero-full-bg img, .hero-scroll, .hero-full .eyebrow, .hero-full h1, .hero-full .hero-rule, .hero-full .lead, .hero-actions, .tier-row, .hero-sponsors { animation: none; }
    .card-aab:hover { transform: none; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .aab-header, .aab-footer, .btn-aab, .aab-ui-switch { display: none !important; }
    body { background: #fff; }
    .id-card { box-shadow: none; }
}

.aab-ui-switch {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    background: var(--royal);
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(1, 35, 180, .22);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    max-width: calc(100vw - 1.4rem);
}
.aab-ui-switch-label {
    padding: .45rem .7rem .45rem .85rem;
    color: var(--pink-soft);
}
.aab-ui-switch a {
    color: #fff;
    text-decoration: none;
    padding: .45rem .7rem;
}
.aab-ui-switch a.is-on,
.aab-ui-switch a:hover {
    background: var(--pink);
    color: #fff;
}

/* ——— Studio homepage: split masthead, no fullscreen photo ——— */
.hero-studio {
    position: relative;
    background:
        radial-gradient(circle at 88% 12%, rgba(239, 52, 124, .12), transparent 28%),
        radial-gradient(circle at 8% 80%, rgba(1, 35, 180, .1), transparent 32%),
        #f7f4fb;
    padding: 2.4rem 0 1.2rem;
    overflow: hidden;
}
.hero-studio::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, var(--pink), var(--royal));
}
.hero-studio-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .95fr);
    gap: 2.6rem 3rem;
    align-items: center;
    min-height: 0;
}
.hero-studio-copy .eyebrow {
    display: inline-block;
    color: var(--pink);
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .74rem;
    margin-bottom: .85rem;
    background: var(--pink-soft);
    padding: .32rem .7rem;
    border-radius: 6px;
}
.hero-studio-copy h1 {
    font-family: "Cormorant Garamond", "Playfair Display", "Noto Sans Bengali", serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    color: var(--royal);
    font-weight: 700;
    margin: 0;
}
.hero-studio-copy .hero-rule {
    width: 72px;
    height: 3px;
    background: var(--pink);
    border-radius: 99px;
    margin: 1rem 0 1.05rem;
}
.hero-studio-copy .lead {
    color: var(--muted);
    max-width: 36rem;
    font-size: 1.12rem;
    margin-bottom: 0;
}
.hero-studio .hero-actions { margin: 1.35rem 0 1.1rem; }
.hero-studio .tier-badge {
    background: #fff;
    color: var(--royal);
}
.hero-studio .hero-sponsors {
    margin-top: 1.2rem;
    color: var(--muted);
}
.hero-studio .hero-sponsors .section-kicker { color: var(--pink); }
.hero-studio .hero-sponsors .dot { background: var(--pink); }
.hero-studio-media {
    display: grid;
    grid-template-columns: 1.35fr .75fr;
    gap: .75rem;
    min-height: 420px;
}
.hero-studio-main,
.hero-studio-aside {
    margin: 0;
    overflow: hidden;
    background: var(--royal);
    box-shadow: var(--shadow);
}
.hero-studio-main {
    border-radius: 8px 8px 8px 64px;
}
.hero-studio-aside {
    border-radius: 64px 8px 8px 8px;
    align-self: end;
    height: 72%;
}
.hero-studio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}
.hero-studio-aside img { min-height: 300px; }

body.is-home #membership .text-center { text-align: left !important; }
body.is-home #membership .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
body.is-home #membership .col-md-4 {
    width: 100%;
    max-width: 100%;
}
body.is-home #membership .tier-panel {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    grid-template-areas:
        "medal title action"
        "medal text action";
    align-items: center;
    text-align: left;
    border-radius: 14px;
    padding: 1.15rem 1.3rem;
    column-gap: 1rem;
    row-gap: .15rem;
}
body.is-home #membership .tier-panel .medal-lg {
    grid-area: medal;
    width: 40px;
    height: 40px;
    margin: 0;
}
body.is-home #membership .tier-panel h3 {
    grid-area: title;
    font-size: 1.45rem;
    margin: 0;
}
body.is-home #membership .tier-panel p {
    grid-area: text;
    min-height: 0;
    margin: 0;
}
body.is-home #membership .tier-panel .btn {
    grid-area: action;
    justify-self: end;
}
body.is-home #membership .tier-panel.featured {
    transform: none;
}
body.is-home .section-soft .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
body.is-home .section-soft .col-md-4 {
    width: 100%;
    max-width: 100%;
}
body.is-home .pillar-card {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    height: auto;
}
body.is-home .pillar-card:hover { transform: none; box-shadow: none; }
body.is-home .section-soft .col-md-4:last-child .pillar-card { border-right: 0; }
body.is-home .pillar-index {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--pink);
    font-size: 2.4rem;
    place-items: start;
}
body.is-home .section .row:has(> .col-lg-3) {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.1rem;
}
body.is-home .section .row:has(> .col-lg-3) > [class*="col-"] {
    width: 100%;
    max-width: 100%;
}
body.is-home .section .row:has(> .col-lg-3) > :first-child {
    grid-row: 1 / span 2;
}
body.is-home .section .row:has(> .col-lg-3) > :first-child .thumb {
    height: 360px;
}
body.is-home .section .row:has(> .col-md-4):not(:has(> .col-lg-3)):not(:has(.pillar-card)) {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 1.1rem;
}
body.is-home .section .row:has(> .col-md-4):not(:has(> .col-lg-3)):not(:has(.pillar-card)) > [class*="col-"] {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .hero-studio-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .hero-studio-media { min-height: 280px; }
    .hero-studio-media img { min-height: 260px; }
    .hero-studio-aside { height: auto; }
    body.is-home .section-soft .row { grid-template-columns: 1fr; }
    body.is-home .pillar-card { border-right: 0; border-bottom: 1px solid var(--line); }
    body.is-home #membership .tier-panel {
        grid-template-columns: 48px minmax(0, 1fr);
        grid-template-areas:
            "medal title"
            "medal text"
            "medal action";
    }
    body.is-home #membership .tier-panel .btn { justify-self: start; }
}
@media (max-width: 575.98px) {
    .hero-studio { padding: 1.4rem 0 0; }
    .hero-studio-media { grid-template-columns: 1fr; }
    .hero-studio-aside { display: none; }
}
