:root {
    --bg: #F4F5F7;
    --surface: #FFFFFF;
    --ink: #14151A;
    --muted: #5D6470;
    --accent: #2B44E7;
    --accent-ink: #1B2CB0;
    --accent-soft: #E3E8FF;
    --line: #E2E4EA;
    --radius: 18px;
    --display: "Bricolage Grotesque", sans-serif;
    --body: "Instrument Sans", sans-serif;
    --mono: "IBM Plex Mono", monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

a {
    color: inherit
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--accent)
}

h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(30px, 4.4vw, 46px);
    letter-spacing: -.02em;
    line-height: 1.06;
    margin: 14px 0 10px
}

.section {
    padding: 45px 0
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 42px
}

.section-head p {
    color: var(--muted);
    max-width: 52ch
}

/* ---------- nav ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.logo {
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.02em;
    text-decoration: none
}

.logo span {
    color: var(--accent)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: var(--muted);
    transition: color .15s
}

.nav-links a:hover {
    color: var(--ink)
}

.nav-links a.btn-primary {
    color: #fff
}

.nav-links a.btn-primary:hover {
    color: #fff;
    background: var(--accent-ink)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--body);
    transition: transform .15s, box-shadow .15s, background .15s
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 22px -10px rgba(43, 68, 231, .55)
}

.btn-primary:hover {
    background: var(--accent-ink);
    transform: translateY(-1px)
}

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

.btn-ghost:hover {
    border-color: var(--ink)
}

.btn-sm {
    padding: 9px 18px;
    font-size: 14px
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    line-height: 1
}

/* ---------- hero ---------- */
.hero {
    padding: 45px 0 45px;
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 56px;
    align-items: start;
}

.hero h1 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(44px, 7.2vw, 88px);
    line-height: .98;
    letter-spacing: -.03em;
    margin: 20px 0 24px
}

.hero h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink)
}

.hero h1 em {
    font-style: normal;
    color: var(--accent)
}

.hero p.lede {
    font-size: 19px;
    color: var(--muted);
    max-width: 48ch;
    margin-bottom: 34px
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center
}

.hero-next-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.next-chip {
    margin-top: 44px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 20px;
    text-decoration: none;
    transition: border-color .15s, transform .15s
}

.next-chip:hover {
    border-color: var(--accent);
    transform: translateY(-2px)
}

.next-chip .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #18B26B;
    box-shadow: 0 0 0 5px rgba(24, 178, 107, .15);
    flex: none
}

.next-chip strong {
    font-weight: 600
}

.next-chip span {
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--muted)
}

.portrait {
    position: relative
}

.portrait-frame {
    aspect-ratio: 4/5;
    border-radius: 26px;
    background:
        radial-gradient(120% 90% at 20% 10%, #DCE3FF 0%, transparent 55%),
        radial-gradient(120% 100% at 90% 90%, #C7D2FF 0%, transparent 50%),
        linear-gradient(160deg, #EEF1FA, #D9DEEE);
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden
}

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

.portrait-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--ink);
    color: #fff;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px
}

/* ---------- ticker ---------- */
.ticker {
    border-block: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    padding: 14px 0
}

.ticker-track {
    display: flex;
    gap: 56px;
    white-space: nowrap;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    animation: scroll 28s linear infinite;
    width: max-content
}

.ticker-track b {
    color: var(--accent);
    font-weight: 500
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ---------- events ---------- */
.event-list {
    border-top: 1px solid var(--line)
}

.event {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 30px 8px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background .15s;
    border-radius: 6px
}

.event:hover {
    background: var(--surface)
}

.event-date {
    font-family: var(--mono);
    line-height: 1.25
}

.event-date .day {
    font-size: 30px;
    font-weight: 500;
    color: var(--accent)
}

.event-date .rest {
    font-size: 12.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.event-body h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.01em;
    margin-bottom: 4px
}

.event-body p {
    color: var(--muted);
    font-size: 15px
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 18px
}

.tag {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-ink);
    white-space: nowrap
}

.tag.sold {
    background: #FDE8E8;
    color: #B42323
}

.event .arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    font-size: 17px;
    transition: all .15s;
    flex: none
}

.event:hover .arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(-45deg)
}

.past-note {
    margin-top: 26px;
    font-size: 14.5px;
    color: var(--muted)
}

.past-note a {
    color: var(--accent);
    font-weight: 500
}

/* ---------- vlogs ---------- */
.vlogs {
    background: var(--ink);
    color: #F3F4F8;
    border-radius: 34px
}

.vlogs .eyebrow {
    color: #9DACFF
}

.vlogs .eyebrow::before {
    background: #9DACFF
}

.vlogs .section-head p {
    color: #A7ACBA
}

.vlog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.vlog {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    isolation: isolate;
    transition: transform .2s
}

.vlog:hover {
    transform: translateY(-5px)
}

.vlog::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 9, 14, .82) 0%, transparent 55%);
    z-index: -1
}

.vlog .cover {
    position: absolute;
    inset: 0;
    z-index: -2
}

.v1 .cover {
    background: linear-gradient(150deg, #3D57FF, #8B5BFF 60%, #E86AA6)
}

.v2 .cover {
    background: linear-gradient(150deg, #0E8F6E, #2B44E7)
}

.v3 .cover {
    background: linear-gradient(150deg, #F0A93B, #E85D3D 65%, #8B2FA8)
}

.v4 .cover {
    background: linear-gradient(150deg, #16BFD6, #2B44E7 70%, #131A55)
}

.vlog .play {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px
}

.vlog h4 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 6px
}

.vlog span {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #C6CBDA
}

.vlogs .section {
    padding: 72px 0
}

/* ---------- notes ---------- */
.note-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.note {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .15s, border-color .15s;
    text-decoration: none
}

.note:hover {
    transform: translateY(-4px);
    border-color: var(--accent)
}

.note time {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.note h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.01em;
    line-height: 1.2
}

.note p {
    color: var(--muted);
    font-size: 15px;
    flex: 1
}

.note .read {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--accent)
}

/* ---------- mentorship ---------- */
.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: start
}

.offer {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.offer:last-of-type {
    border-bottom: none
}

.offer .num {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent);
    padding-top: 4px;
    flex: none
}

.offer h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 4px
}

.offer p {
    color: var(--muted);
    font-size: 15px
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 24px 60px -40px rgba(20, 21, 26, .25)
}

.form-card h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 6px
}

.form-card>p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 26px
}

.field {
    margin-bottom: 18px
}

.field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 7px
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: var(--body);
    font-size: 15.5px;
    background: var(--bg);
    color: var(--ink);
    transition: border-color .15s
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff
}

.field textarea {
    resize: vertical;
    min-height: 110px
}

.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.pill-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.pill-row label {
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    font-weight: 500;
    font-size: 14.5px;
    margin: 0;
    transition: all .15s
}

.pill-row input:checked+label,
.pill-row label:has(input:checked) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.pill-row input:focus-visible+label {
    outline: 3px solid var(--accent);
    outline-offset: 2px
}

.form-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px
}

#form-status {
    margin-top: 14px;
    font-weight: 600;
    font-size: 14.5px;
    color: #0E8F5E;
    display: none
}

/* ---------- gallery ---------- */
.gallery {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 21/9;
    border: 1px solid var(--line);
    background: var(--surface)
}

.g-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    display: flex;
    align-items: flex-end
}

.g-slide.active {
    opacity: 1
}

.g-cover {
    position: absolute;
    inset: 0
}

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

.g1 {
    background: radial-gradient(120% 100% at 15% 20%, #4A5FF5 0%, transparent 60%), linear-gradient(150deg, #141A45, #2B44E7 70%, #7A3FF2)
}

.g2 {
    background: radial-gradient(100% 120% at 85% 15%, #16BFD6 0%, transparent 55%), linear-gradient(160deg, #0B2530, #0E8F6E)
}

.g3 {
    background: radial-gradient(110% 110% at 20% 85%, #F0A93B 0%, transparent 55%), linear-gradient(150deg, #3A1040, #E85D3D)
}

.g4 {
    background: radial-gradient(120% 100% at 80% 80%, #9DACFF 0%, transparent 55%), linear-gradient(140deg, #101322, #3A4150)
}

.g-cap {
    position: relative;
    margin: 0 0 26px 30px;
    background: rgba(10, 11, 18, .55);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px
}

.g-dots {
    position: absolute;
    bottom: 26px;
    right: 70px;
    display: flex;
    gap: 8px;
    z-index: 2
}

.g-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .2s;
    padding: 0
}

.g-dots button.on {
    background: #fff;
    width: 26px;
    border-radius: 999px
}

.g-pause {
    position: absolute;
    bottom: 20px;
    right: 22px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 11, 18, .55);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    font-size: 13px
}

@media (max-width:640px) {
    .gallery {
        aspect-ratio: 4/5
    }

    .g-dots {
        right: auto;
        left: 26px
    }
}

/* ---------- subscribe ---------- */
.sub-band {
    background: linear-gradient(135deg, #1B2CB0 0%, #2B44E7 55%, #4E36E0 100%);
    border-radius: 30px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.sub-band::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    top: -180px;
    right: -120px;
    pointer-events: none
}

.sub-eyebrow {
    color: #C7D2FF
}

.sub-eyebrow::before {
    background: #C7D2FF
}

.sub-copy h2 {
    margin-bottom: 10px
}

.sub-copy p {
    color: #D6DCFF;
    font-size: 16px;
    max-width: 44ch
}

.sub-row {
    display: flex;
    gap: 10px
}

.sub-row input {
    flex: 1;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-family: var(--body);
    font-size: 15.5px
}

.sub-row input::placeholder {
    color: #B9C3F5
}

.sub-row input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, .18)
}

.sub-btn {
    background: #fff;
    color: var(--accent-ink);
    white-space: nowrap
}

.sub-btn:hover {
    transform: translateY(-1px);
    background: #EDEFFD
}

.sub-pills {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px
}

.sub-pills label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D6DCFF;
    font-size: 14px;
    cursor: pointer
}

.sub-pills input {
    accent-color: #fff;
    width: 16px;
    height: 16px;
    cursor: pointer
}

#sub-status {
    margin-top: 14px;
    font-weight: 600;
    font-size: 14.5px;
    color: #fff;
    min-height: 1.4em
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

@media (max-width:920px) {
    .sub-band {
        grid-template-columns: 1fr;
        padding: 40px 28px
    }
}

@media (max-width:520px) {
    .sub-row {
        flex-direction: column
    }

    .sub-btn {
        justify-content: center
    }
}

/* ---------- footer ---------- */
footer {
    padding: 40px 0;
    margin-top: 20px
}

.foot-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line)
}

.foot-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%
}

.foot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 20, .88) 0%, rgba(8, 10, 20, .45) 55%, rgba(8, 10, 20, .15) 100%)
}

.foot-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 36px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    color: #fff
}

.foot-content h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.foot-content p {
    color: #D9DDEA;
    font-size: 15.5px;
    max-width: 52ch
}

.foot-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px
}

.foot-badge {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .25)
}

.socials {
    display: flex;
    gap: 12px;
    list-style: none
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .4);
    display: grid;
    place-items: center;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 12px;
    color: #fff;
    transition: all .15s;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px)
}

.socials a:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff
}

.fine {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted)
}

@media (max-width:640px) {
    .foot-hero {
        min-height: 420px
    }

    .foot-content {
        padding: 26px 22px
    }
}

/* ---------- reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

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

    .ticker-track {
        animation: none
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    * {
        transition: none !important
    }
}

/* ---------- responsive ---------- */
@media (max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .portrait {
        max-width: 420px
    }

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

    .note-grid {
        grid-template-columns: 1fr 1fr
    }

    .connect-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 20px 24px;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        align-items: flex-start
    }

    .nav-links.open {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .event {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .event .arrow {
        display: none
    }

    .note-grid {
        grid-template-columns: 1fr
    }

    .vlog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .section {
        padding: 64px 0
    }

    .form-card {
        padding: 26px 20px
    }
}

/* -- Additional responsive fixes -- */

@media (max-width: 920px) {
    .portrait {
        margin: 0 auto;
    }

    .hero-next-wrap {
        flex-wrap: wrap;
    }

    .vlogs {
        border-radius: 26px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* @media (max-width: 640px) {
    .hero {
        padding: 36px 0 28px;
    }

    .hero-next-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-next-wrap .next-chip {
        margin-top: 0;
        width: 100%;
    }

    .hero-next-wrap .next-chip:first-child {
        margin-top: 28px;
    }

    .vlogs {
        border-radius: 18px;
    }

    .event-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
} */

@media (max-width: 640px) {
    .vlog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .vlog {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .vlog video {
        max-width: 100%;
    }

    .hero-next-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .next-chip {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        box-sizing: border-box;
    }

    .next-chip:first-child {
        margin-top: 28px;
    }
    .g-cap {
        position: relative;
        margin: 0 6px 67px 6px;
        background: rgba(10, 11, 18, .55);
        backdrop-filter: blur(8px);
        color: #fff;
        font-family: var(--mono);
        font-size: 12.5px;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: 10px 18px;
        border-radius: 999px;
    }
    .foot-badge {
        font-family: var(--mono);
        font-size: 8px;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, .25);
    }
    .foot-content p {
        color: #D9DDEA;
        font-size: 10px;
        max-width: 52ch;
    }
    .foot-content h4 {
        font-family: var(--display);
        font-weight: 800;
        font-size: 22px;
    }
    .socials a {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .vlog-grid {
        grid-template-columns: 1fr;
    }

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

    .sub-band {
        border-radius: 20px;
    }
}