html {
    scroll-behavior: smooth;
}

.acv2 {
    --acv2-green: #0a883e;
    --acv2-green-dark: #065a28;
    --acv2-green-deep: #052e17;
    --acv2-green-light: #e8f5e9;
    --acv2-gold: #efb443;
    --acv2-gold-warm: #f5c96b;
    --acv2-orange: #dc6e26;
    --acv2-teal: #12857f;
    --acv2-cream: #fdfaf3;
    --acv2-dark: #16281a;
    --acv2-text: #2d3a2d;
    --acv2-muted: #5a6e5a;
    --acv2-line: rgba(255, 255, 255, 0.14);
    --acv2-line-solid: #e4e0d3;
    --acv2-radius-lg: 28px;
    --acv2-radius-md: 18px;
    --acv2-pill: 100px;
    overflow-x: hidden;
    background: var(--acv2-green-deep);
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.acv2 *,
.acv2 *::before,
.acv2 *::after {
    box-sizing: border-box;
}

.acv2 h1,
.acv2 h2,
.acv2 h3,
.acv2 h4,
.acv2 h5 {
    margin: 0;
    color: #ffffff;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.12;
    text-wrap: balance;
}

.acv2 p {
    margin: 0;
}

.acv2 a {
    text-decoration: none;
}

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

.acv2 a:focus-visible,
.acv2 button:focus-visible,
.acv2 input:focus-visible,
.acv2 select:focus-visible {
    outline: 3px solid var(--acv2-gold);
    outline-offset: 3px;
}

.acv2-container {
    width: min(1280px, 92%);
    margin-inline: auto;
}

.acv2-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--acv2-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.acv2-tag::before {
    width: 24px;
    height: 2px;
    background: currentColor;
    content: '';
}

.acv2-tag-dark {
    color: var(--acv2-green);
}

.acv2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.acv2-actions-center {
    justify-content: center;
}

.acv2-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 27px;
    border: 2px solid transparent;
    border-radius: var(--acv2-pill);
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.acv2-btn-gold {
    background: var(--acv2-gold);
    color: var(--acv2-green-deep);
}

.acv2-btn-gold:hover {
    background: var(--acv2-gold-warm);
    color: var(--acv2-green-deep);
    transform: translateY(-2px);
}

.acv2-btn-ghost {
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

.acv2-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.acv2-btn-green {
    background: var(--acv2-green);
    color: #ffffff;
}

.acv2-btn-green:hover {
    background: var(--acv2-green-dark);
    color: #ffffff;
}

.acv2-btn-outline {
    border-color: var(--acv2-green);
    color: var(--acv2-green-deep);
}

.acv2-btn-outline:hover {
    background: var(--acv2-green-light);
    color: var(--acv2-green-deep);
}

.acv2-hero {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.acv2-hero-bg,
.acv2-hero-overlay {
    position: absolute;
    inset: 0;
}

.acv2-hero-bg {
    background-image: url('/images/banners/first_thursdays_banner.jpg');
    background-position: center;
    background-size: cover;
}

.acv2-hero-overlay {
    background: linear-gradient(95deg, rgba(5, 46, 23, 0.97) 0%, rgba(5, 46, 23, 0.88) 43%, rgba(5, 46, 23, 0.48) 100%);
}

.acv2-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 460px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 0 20px;
}

.acv2-live {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 16px;
    border: 1px solid rgba(220, 110, 38, 0.6);
    border-radius: var(--acv2-pill);
    background: rgba(220, 110, 38, 0.24);
    color: #f9d6bc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.acv2-live span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acv2-orange);
    animation: acv2-pulse 1.8s ease-in-out infinite;
}

@keyframes acv2-pulse {
    50% {
        opacity: 0.35;
        transform: scale(1.5);
    }
}

.acv2-hero h1 {
    max-width: 840px;
    margin-bottom: 22px;
    font-size: clamp(46px, 5.6vw, 76px);
}

.acv2-hero h1 em,
.acv2-section-head h2 em,
.acv2-cta h2 em {
    color: var(--acv2-gold);
    font-style: italic;
}

.acv2-hero p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.7;
}

.acv2-registration {
    padding: 96px 0;
    background: var(--acv2-cream);
    color: var(--acv2-text);
}

.acv2-registration-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: start;
    gap: 60px;
}

.acv2-theme-block h2,
.acv2-closed-panel h2 {
    margin: 18px 0 22px;
    color: var(--acv2-dark);
    font-size: clamp(30px, 3.5vw, 44px);
}

.acv2-theme-copy {
    max-width: 62ch;
    color: var(--acv2-muted);
    font-size: 17px;
    line-height: 1.78;
}

.acv2-theme-copy > :last-child {
    margin-bottom: 0;
}

.acv2-theme-copy strong {
    color: var(--acv2-dark);
}

.acv2-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.acv2-fact {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 12px;
    padding: 11px 20px 11px 12px;
    border: 1px solid var(--acv2-line-solid);
    border-radius: var(--acv2-pill);
    background: #ffffff;
}

.acv2-fact i {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--acv2-green-light);
    color: var(--acv2-green);
    font-size: 13px;
}

.acv2-fact span,
.acv2-fact strong {
    display: block;
}

.acv2-fact span {
    color: var(--acv2-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.acv2-fact strong {
    margin-top: 2px;
    color: var(--acv2-dark);
    font-size: 14px;
}

.acv2-theme-poster {
    overflow: hidden;
    margin-top: 32px;
    border-radius: var(--acv2-radius-md);
    box-shadow: 0 24px 50px -30px rgba(5, 46, 23, 0.5);
}

.acv2-theme-poster img {
    width: 100%;
    height: auto;
}

.acv2-form-column {
    position: sticky;
    top: 28px;
}

.acv2-form-card {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 28px;
    padding: 40px 38px;
    border-radius: var(--acv2-radius-lg);
    background: var(--acv2-green-deep);
    box-shadow: 0 34px 80px -40px rgba(5, 46, 23, 0.75);
}

.acv2-form-card::after {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(239, 180, 67, 0.13);
    content: '';
    pointer-events: none;
}

.acv2-form-card > * {
    position: relative;
    z-index: 1;
}

.acv2-free {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: var(--acv2-pill);
    background: rgba(239, 180, 67, 0.18);
    color: var(--acv2-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.acv2-form-card h3 {
    color: #ffffff;
    font-size: 26px;
}

.acv2-form-intro {
    margin: 8px 0 26px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.6;
}

.acv2-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.acv2-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.acv2-field-full,
.acv2-check {
    grid-column: 1 / -1;
}

.acv2-field label {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 700;
}

.acv2-field input,
.acv2-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    transition: background-color 200ms ease, border-color 200ms ease;
}

.acv2-field select option {
    background: #ffffff;
    color: var(--acv2-text);
}

.acv2-field input:focus,
.acv2-field select:focus {
    border-color: var(--acv2-gold);
    background: rgba(255, 255, 255, 0.12);
}

.acv2-check {
    display: flex;
    min-height: 44px;
    align-items: flex-start;
    gap: 11px;
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    font-size: 13px;
    line-height: 1.55;
}

.acv2-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--acv2-gold);
}

.acv2-submit {
    width: 100%;
    margin-top: 24px;
}

.acv2-form-errors {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 152, 152, 0.5);
    border-radius: 12px;
    background: rgba(138, 20, 20, 0.3);
}

.acv2-form-errors p {
    color: #ffe6e6;
    font-size: 13px;
    line-height: 1.5;
}

.acv2-form-errors p + p {
    margin-top: 6px;
}

.acv2-form-state {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.acv2-form-success > i {
    color: var(--acv2-gold);
    font-size: 48px;
}

.acv2-form-success p {
    max-width: 50ch;
    line-height: 1.7;
}

.acv2-form-success a {
    color: var(--acv2-gold);
    text-decoration: underline;
}

.acv2-survey-prompt {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.acv2-survey-prompt p {
    margin-bottom: 14px;
}

.acv2-form-success .acv2-form-card {
    width: 100%;
    padding: 0;
    margin-top: 34px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.acv2-form-success .acv2-form-card::after {
    display: none;
}

.acv2-form-success .acv2-form-card .acv2-form-intro {
    margin-bottom: 40px;
}

.acv2-survey-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
}

.acv2-field > label.acv2-survey-question {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.acv2-survey-options .acv2-check {
    min-height: 0;
    align-items: center;
    margin: 0;
    line-height: 1.3;
}

.acv2-registration-closed {
    min-height: 520px;
}

.acv2-closed-panel {
    max-width: 880px;
    margin: 0 auto;
    padding: 58px;
    border: 1px solid var(--acv2-line-solid);
    border-radius: var(--acv2-radius-lg);
    background: #ffffff;
    box-shadow: 0 30px 70px -50px rgba(5, 46, 23, 0.45);
}

.acv2-closed-panel p {
    max-width: 65ch;
    color: var(--acv2-muted);
    font-size: 16px;
    line-height: 1.7;
}

.acv2-past {
    padding: 100px 0;
}

.acv2-section-head {
    max-width: 680px;
    margin-bottom: 48px;
}

.acv2-section-head h2 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 3.6vw, 46px);
}

.acv2-section-head p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.7;
}

.acv2-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.acv2-video-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--acv2-line);
    border-radius: var(--acv2-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.acv2-video-card:hover {
    border-color: rgba(239, 180, 67, 0.5);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    transform: translateY(-5px);
}

.acv2-video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.06);
}

.acv2-video-thumb::after {
    position: absolute;
    inset: 0;
    background: rgba(5, 46, 23, 0.42);
    content: '';
    transition: background-color 220ms ease;
}

.acv2-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acv2-video-thumb i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid rgba(239, 180, 67, 0.7);
    border-radius: 50%;
    background: rgba(5, 46, 23, 0.78);
    color: var(--acv2-gold);
    font-size: 16px;
    transform: translate(-50%, -50%);
}

.acv2-video-card:hover .acv2-video-thumb::after {
    background: rgba(5, 46, 23, 0.2);
}

.acv2-video-body {
    display: block;
    padding: 24px 26px 28px;
}

.acv2-video-body em,
.acv2-video-body strong,
.acv2-video-body > span {
    display: block;
}

.acv2-video-body em {
    color: var(--acv2-gold);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.acv2-video-body strong {
    margin: 11px 0 8px;
    color: #ffffff;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
}

.acv2-video-body > span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

.acv2-past-more {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.acv2-expect {
    padding: 0 0 100px;
}

.acv2-expect-list {
    display: grid;
    gap: 16px;
}

.acv2-expect-item {
    display: flex;
    gap: 20px;
    padding: 26px 28px;
    border: 1px solid var(--acv2-line);
    border-radius: var(--acv2-radius-md);
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 200ms ease, transform 200ms ease;
}

.acv2-expect-item:hover {
    border-color: rgba(239, 180, 67, 0.45);
    transform: translateX(5px);
}

.acv2-expect-number {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: var(--acv2-green);
    color: #ffffff;
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 700;
}

.acv2-expect-item:nth-child(2) .acv2-expect-number {
    background: var(--acv2-orange);
}

.acv2-expect-item:nth-child(3) .acv2-expect-number {
    background: var(--acv2-teal);
}

.acv2-expect-item h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.acv2-expect-item p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.68;
}

.acv2-cta {
    padding: 0 0 100px;
}

.acv2-cta-inner {
    position: relative;
    overflow: hidden;
    padding: 70px 56px;
    border: 1px solid var(--acv2-line);
    border-radius: var(--acv2-radius-lg);
    background: linear-gradient(135deg, rgba(10, 136, 62, 0.3), rgba(5, 46, 23, 0.1));
    text-align: center;
}

.acv2-cta h2 {
    font-size: clamp(30px, 3.6vw, 46px);
}

.acv2-cta p {
    max-width: 62ch;
    margin: 18px auto 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
}

.acv2-cta .acv2-actions {
    margin-top: 0;
}

.acv2-archive {
    min-height: 600px;
    padding: 90px 0 110px;
    background: var(--acv2-cream);
    color: var(--acv2-text);
}

.acv2-section-head-dark h2 {
    color: var(--acv2-dark);
}

.acv2-section-head-dark p {
    color: var(--acv2-muted);
}

.acv2-archive-grid,
.acv2-edition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.acv2-archive-card,
.acv2-edition-card {
    overflow: hidden;
    border: 1px solid var(--acv2-line-solid);
    border-radius: var(--acv2-radius-md);
    background: #ffffff;
    box-shadow: 0 22px 45px -38px rgba(5, 46, 23, 0.6);
}

.acv2-embed {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--acv2-green-deep);
}

.acv2-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.acv2-archive-card-body,
.acv2-edition-card-body {
    padding: 24px;
}

.acv2-archive-card h3,
.acv2-edition-card h3 {
    color: var(--acv2-dark);
    font-size: 20px;
    line-height: 1.35;
}

.acv2-archive-card p {
    margin-top: 10px;
    color: var(--acv2-muted);
    font-size: 14px;
    line-height: 1.6;
}

.acv2-edition-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.acv2-edition-card .acv2-btn {
    margin-top: 20px;
}

.acv2-empty {
    grid-column: 1 / -1;
    padding: 50px;
    border: 1px solid var(--acv2-line-solid);
    border-radius: var(--acv2-radius-md);
    background: #ffffff;
    color: var(--acv2-muted);
    text-align: center;
}

.acv2-pagination {
    margin-top: 48px;
}

.acv2-pagination .pagination {
    justify-content: center;
}

.acv2-pagination .page-link {
    min-width: 44px;
    min-height: 44px;
    border-color: var(--acv2-line-solid);
    color: var(--acv2-green-dark);
}

.acv2-pagination .active .page-link {
    border-color: var(--acv2-green);
    background: var(--acv2-green);
    color: #ffffff;
}

.acv2 .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: var(--acv2-radius-md);
    color: var(--acv2-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.acv2 .modal-title {
    color: var(--acv2-dark);
    font-family: 'Fraunces', serif;
}

.acv2 .modal-body {
    line-height: 1.7;
}

.acv2 .modal-header .close {
    min-width: 44px;
    min-height: 44px;
}

@media (max-width: 1040px) {
    .acv2-registration-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }

    .acv2-form-column {
        position: static;
    }

    .acv2-video-grid,
    .acv2-archive-grid,
    .acv2-edition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .acv2-hero,
    .acv2-hero-inner {
        min-height: 460px;
    }

    .acv2-hero-inner {
        padding: 50px 0 20px;
    }

    .acv2-live {
        padding: 7px 14px;
        font-size: 11px;
    }

    .acv2-hero h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.02;
    }

    .acv2-hero p,
    .acv2-theme-copy {
        font-size: 16px;
    }

    .acv2-hero p {
        line-height: 1.55;
    }

    .acv2-hero .acv2-actions {
        gap: 10px;
        margin-top: 24px;
    }

    .acv2-hero .acv2-btn {
        min-height: 44px;
        padding-block: 10px;
    }

    .acv2-registration,
    .acv2-past,
    .acv2-archive {
        padding-block: 72px;
    }

    .acv2-form-card,
    .acv2-closed-panel {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .acv2-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .acv2-field-full,
    .acv2-check {
        grid-column: auto;
    }

    .acv2-video-grid,
    .acv2-archive-grid,
    .acv2-edition-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .acv2-expect {
        padding-bottom: 72px;
    }

    .acv2-cta {
        padding-bottom: 72px;
    }

    .acv2-cta-inner {
        padding: 52px 24px;
    }
}

@media (max-width: 520px) {
    .acv2-container {
        width: min(100% - 32px, 1280px);
    }

    .acv2-hero-inner {
        padding: 105px 0 12px;
    }

    .acv2-live {
        margin-bottom: 14px;
    }

    .acv2-hero h1 {
        margin-bottom: 14px;
        font-size: 40px;
    }

    .acv2-hero p {
        font-size: 15px;
        line-height: 1.5;
    }

    .acv2-hero .acv2-actions {
        margin-top: 16px;
    }

    .acv2-actions,
    .acv2-actions .acv2-btn {
        width: 100%;
    }

    .acv2-fact {
        width: 100%;
    }

    .acv2-expect-item {
        padding: 22px 20px;
    }
}

@media (max-width: 400px) {
    .acv2-hero-inner {
        padding-top: 50px;
    }
}

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

    .acv2-live span {
        animation: none;
    }

    .acv2 *,
    .acv2 *::before,
    .acv2 *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
