/* ======================================================
   AVID CLUB — Vehicle Preservation Membership
   Premium, full-bleed, cinematic. Matches site tokens.
   ====================================================== */

/* ---------- Page-scoped tokens ---------- */
.avidclub {
    --primary: #00bdff;
    --primary-dark: #0095d4;
    --primary-darker: #0077b3;
    --gold: #fbbf24;
    --gold-deep: #f59e0b;

    --bg: #000000;
    --bg-soft: #050505;
    --bg-elev-1: #0a0a0a;
    --bg-elev-2: #111418;
    --surface: rgba(255, 255, 255, 0.025);
    --surface-strong: rgba(255, 255, 255, 0.05);
    --border-faint: rgba(255, 255, 255, 0.06);
    --border-soft: rgba(255, 255, 255, 0.10);
    --border-medium: rgba(255, 255, 255, 0.16);

    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-faint: rgba(255, 255, 255, 0.35);

    --t-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-base: 350ms cubic-bezier(0.2, 0.9, 0.3, 1);
    --t-slow: 650ms cubic-bezier(0.2, 0.9, 0.3, 1);
    --t-slowest: 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --grad-cyan: linear-gradient(135deg, #00bdff 0%, #0095d4 100%);
    --grad-cyan-soft: linear-gradient(180deg, rgba(0, 189, 255, 0.10) 0%, rgba(0, 189, 255, 0.02) 100%);
    --grad-text: linear-gradient(135deg, #ffffff 0%, #00bdff 60%, #0077b3 100%);
    --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

    --shadow-card: 0 30px 60px -25px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 50px rgba(0, 189, 255, 0.35);
    --shadow-glow-strong: 0 0 100px rgba(0, 189, 255, 0.5);
    --shadow-gold-glow: 0 0 50px rgba(251, 191, 36, 0.3);
}

/* ---------- Page-wide reset (no white gap on outside) ---------- */
html, body {
    margin: 0;
    background: #000000;
}
body { overflow-x: hidden; }

.avidclub,
.avidclub *,
.avidclub *::before,
.avidclub *::after {
    box-sizing: border-box;
}
.avidclub {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.avidclub :where(p) { margin: 0; }
.avidclub a { color: inherit; text-decoration: none; }
.avidclub button { font: inherit; cursor: pointer; }
.avidclub img { max-width: 100%; display: block; }
.avidclub :focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------- Reveal hooks ----------
   Default state is VISIBLE. The optional .avidclub__js class on <body> (added by
   avid-club.js) opts-in to the initial hidden state so transitions can fade content
   in on scroll. If JS never runs, content stays visible — robust by design. */
.avidclub [data-reveal] {
    transition: opacity var(--t-slowest), transform var(--t-slowest);
    will-change: opacity, transform;
}
.avidclub [data-reveal-grid] > * {
    transition: opacity 800ms cubic-bezier(0.2, 0.9, 0.3, 1), transform 800ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
html.avidclub-js .avidclub [data-reveal]:not(.is-in) {
    opacity: 0;
    transform: translateY(32px);
}
html.avidclub-js .avidclub [data-reveal-grid] > *:not(.is-in) {
    opacity: 0;
    transform: translateY(28px);
}
.avidclub [data-reveal-grid] > *:nth-child(2) { transition-delay: 90ms; }
.avidclub [data-reveal-grid] > *:nth-child(3) { transition-delay: 180ms; }
.avidclub [data-reveal-grid] > *:nth-child(4) { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
    .avidclub *,
    .avidclub *::before,
    .avidclub *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html.avidclub-js .avidclub [data-reveal]:not(.is-in),
    html.avidclub-js .avidclub [data-reveal-grid] > *:not(.is-in) {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- Container & section primitives (full 1600px width) ---------- */
.avidclub__wrap {
    max-width: var(--container-max, 1600px);
    margin: 0 auto;
    padding: 0 var(--container-pad, clamp(1rem, 3vw, 2rem));
}

.avidclub__section {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0;
}

/* Reusable badge (pulsing dot, matches site convention) */
.avidclub__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem;
    background: rgba(0, 189, 255, 0.1);
    border: 1px solid rgba(0, 189, 255, 0.22);
    border-radius: 9999px;
    font-size: clamp(0.7rem, 0.5vw + 0.55rem, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
}
.avidclub__badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 189, 255, 0.9);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.82); }
}

.avidclub__h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
    line-height: 0.98;
    letter-spacing: 0.018em;
    color: var(--text);
    margin: 1rem 0 1.25rem;
}
.avidclub__h2--center { text-align: center; }
.avidclub__accent {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.avidclub__lede {
    font-size: clamp(1.05rem, 0.7vw + 0.85rem, 1.25rem);
    color: var(--text-soft);
    line-height: 1.65;
    max-width: 720px;
}
.avidclub__lede--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.avidclub__section-head {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.avidclub__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.05rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
    line-height: 1;
    white-space: nowrap;
}
.avidclub__btn--primary {
    background: var(--grad-cyan);
    color: #001824;
    box-shadow: 0 12px 32px -8px rgba(0, 189, 255, 0.5);
}
.avidclub__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -10px rgba(0, 189, 255, 0.7);
}
.avidclub__btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.avidclub__btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 189, 255, 0.45);
    box-shadow: 0 14px 36px -12px rgba(0, 189, 255, 0.4);
}
.avidclub__btn-arrow {
    width: 17px;
    height: 17px;
    transition: transform var(--t-base);
}
.avidclub__btn:hover .avidclub__btn-arrow {
    transform: translateX(4px);
}

/* ======================================================
   §1 HERO — full-bleed cinematic
   The site nav adds 90px of body padding-top to clear the fixed nav.
   We negate it here so the hero spans the full visible viewport and
   content centers exactly to the viewport's middle (not 45px below).
   ====================================================== */
.avidclub__hero {
    position: relative;
    margin-top: calc(0px - var(--nav-offset, 90px));
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(6rem, 12vh, 8rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 6vh, 4.5rem);
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #030712 0%, #000000 100%);
}
.avidclub__hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.avidclub__hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    filter: brightness(0.55) saturate(1.12) contrast(1.08);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    animation: heroBgKenBurns 48s ease-in-out infinite;
}
/* Slow, premium Ken Burns drift — barely perceptible motion that returns
   seamlessly to its starting position so the loop has no visible reset. */
@keyframes heroBgKenBurns {
    0%   { transform: scale(1.06) translate3d(-0.8%,  0.6%, 0); }
    25%  { transform: scale(1.09) translate3d( 0.4%, -0.5%, 0); }
    50%  { transform: scale(1.12) translate3d( 1.2%,  0.3%, 0); }
    75%  { transform: scale(1.09) translate3d( 0.2%,  0.8%, 0); }
    100% { transform: scale(1.06) translate3d(-0.8%,  0.6%, 0); }
}
.avidclub__hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 35%, transparent 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.55) 70%, #000000 100%);
}

/* Animated cyan mesh */
.avidclub__hero-mesh {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.45;
    filter: blur(140px);
    pointer-events: none;
}
.avidclub__hero-mesh::before,
.avidclub__hero-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.avidclub__hero-mesh::before {
    width: 55%;
    height: 55%;
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 189, 255, 0.5) 0%, transparent 70%);
    animation: meshDrift 28s ease-in-out infinite;
}
.avidclub__hero-mesh::after {
    width: 45%;
    height: 45%;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 119, 179, 0.45) 0%, transparent 70%);
    animation: meshDrift 32s ease-in-out infinite reverse;
}
@keyframes meshDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Floating particles */
.avidclub__hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.avidclub__hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(0, 189, 255, 0.85);
    opacity: 0;
    animation: particleFloat var(--p-dur, 22s) linear var(--p-delay, 0s) infinite;
    top: 100%;
    left: var(--p-x, 50%);
}
@keyframes particleFloat {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.85; }
    90% { opacity: 0.85; }
    100% { transform: translateY(-110vh); opacity: 0; }
}

.avidclub__hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    width: 100%;
}

.avidclub__hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(3.5rem, 6vw + 2rem, 6.5rem);
    line-height: 0.95;
    margin: 1rem 0 0.6rem;
    letter-spacing: 0.02em;
    display: flex;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    flex-wrap: wrap;
}
@media (min-width: 1024px) {
    .avidclub__hero-title {
        font-size: clamp(3rem, 5vw + 1.5rem, 5.5rem);
    }
}
.avidclub__hero-title span {
    display: inline-block;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(60px);
    animation: titleReveal 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.avidclub__hero-title span:nth-child(1) { animation-delay: 0.25s; }
.avidclub__hero-title span:nth-child(2) { animation-delay: 0.45s; }
.avidclub__hero-title span:nth-child(3) {
    animation-delay: 0.65s;
    background: linear-gradient(135deg, #00bdff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@keyframes titleReveal {
    to { opacity: 1; transform: translateY(0); }
}

.avidclub__hero-tagline {
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.2rem, 1.8vw + 0.6rem, 2rem);
    color: var(--text-soft);
    margin: 0.75rem auto 1.5rem;
    max-width: 680px;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.85s forwards;
}
.avidclub__hero-sub {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.1rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    opacity: 0;
    animation: fadeUp 1s ease-out 1s forwards;
}
.avidclub__hero-ctas {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.15s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.avidclub__hero-meta {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 3.5rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.4s forwards;
    flex-wrap: wrap;
}
.avidclub__hero-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    max-width: 22ch;
    text-align: center;
}
.avidclub__hero-meta-item strong {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 1.4vw + 0.75rem, 1.85rem);
    color: var(--primary);
    letter-spacing: 0.04em;
    line-height: 1.05;
}
.avidclub__hero-meta-item span {
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: none;
    font-size: 0.82rem;
    color: var(--text-soft);
}

/* ======================================================
   §2 TAGLINE BAND — typographic ribbon
   ====================================================== */
.avidclub__tagline-band {
    position: relative;
    padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
    background:
        radial-gradient(ellipse at center, rgba(0, 189, 255, 0.06), transparent 70%),
        linear-gradient(180deg, #050505 0%, #020203 100%);
    border-top: 1px solid rgba(0, 189, 255, 0.18);
    border-bottom: 1px solid rgba(0, 189, 255, 0.18);
    text-align: center;
    /* Use overflow: clip with a margin so the background gradient is contained
       but italic descenders + filter:drop-shadow on child text aren't cut. */
    overflow: clip;
    overflow-clip-margin: 1rem;
}
.avidclub__tagline-band::before,
.avidclub__tagline-band::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(85%, 700px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 189, 255, 0.55), transparent);
}
.avidclub__tagline-band::before { top: 0; }
.avidclub__tagline-band::after { bottom: 0; }

.avidclub__tagline-quote {
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Bebas Neue', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 5.5vw + 0.5rem, 5rem);
    line-height: 1.06;
    letter-spacing: 0.018em;
    /* Etched-into-the-page treatment: a faint top highlight + subtle dark
       drop below tricks the eye into reading the letters as carved depth. */
    color: rgba(255, 255, 255, 0.92);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06),
        0 -1px 0 rgba(0, 0, 0, 0.55),
        0 2px 2px rgba(0, 0, 0, 0.35);
}
/* Line-by-line paint reveal — each phrase wipes in from left to right when
   the section scrolls into view. Hidden state only applies when JS is active
   (html.avidclub-js); no-JS users see the text instantly. */
.avidclub__tagline-line {
    display: block;
}
html.avidclub-js .avidclub__tagline-line {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: clip-path;
}
html.avidclub-js .avidclub__tagline-quote.is-in .avidclub__tagline-line {
    clip-path: inset(0 0 0 0);
}
html.avidclub-js .avidclub__tagline-quote.is-in .avidclub__tagline-line:nth-child(2) {
    transition-delay: 0.65s;
}
@media (prefers-reduced-motion: reduce) {
    html.avidclub-js .avidclub__tagline-line {
        clip-path: none !important;
        transition: none !important;
    }
}
.avidclub__tagline-emph {
    /* Chrome-shine gradient: cyan with a moving white peak that sweeps across */
    background: linear-gradient(
        110deg,
        #0095d4 0%,
        #00bdff 28%,
        #b8e9ff 46%,
        #ffffff 50%,
        #b8e9ff 54%,
        #00d4ff 72%,
        #00bdff 100%
    );
    background-size: 260% 100%;
    background-position: 100% 0; /* start mid-pattern so it never looks "off" */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Reset the parent's etched shadow — the shine carries its own depth */
    text-shadow: none;
    position: relative;
    display: inline-block;
    /* Extra horizontal breathing room so italic slant + drop-shadow aren't clipped */
    padding: 0 0.08em;
    filter: drop-shadow(0 0 24px rgba(0, 189, 255, 0.22));
    animation: avidclubShine 5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s infinite;
}
.avidclub__tagline-emph::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: linear-gradient(90deg, #00bdff 0%, #ffffff 50%, #00bdff 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    border-radius: 9999px;
    transform: scaleX(0);
    transform-origin: left;
    animation:
        underlineGrow 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards,
        underlineShine 5s linear 0.6s infinite;
}
@keyframes underlineGrow {
    to { transform: scaleX(1); }
}
@keyframes avidclubShine {
    /* Continuous sweep. The reset back to start is invisible because both
       endpoints place the white peak fully off-screen. */
    0%   { background-position: 200% 0; }
    100% { background-position: -100% 0; }
}
@keyframes underlineShine {
    0%   { background-position: 200% 0; }
    100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
    .avidclub__tagline-emph,
    .avidclub__tagline-emph::after {
        animation: none !important;
        background-position: 0 0 !important;
    }
    .avidclub__tagline-emph::after {
        transform: scaleX(1) !important;
    }
}

/* Supporting paragraph beneath the tagline quote.
   Smaller, muted, max-width to keep prose readable. */
.avidclub__tagline-support {
    margin: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem) auto 0;
    max-width: 58ch;
    text-align: center;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 0.3vw + 0.88rem, 1.1rem);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ======================================================
   §3 VEHICLE PRESERVATION — editorial diptych
   Alternating manifesto rows. Roman numeral on one side,
   declarative answer + body prose on the other. The "other
   guy" line sits as a small italic counterpoint under the
   numeral. No checkmarks, no X icons — typography only.
   ====================================================== */
.avidclub__diff {
    background:
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0, 189, 255, 0.04), transparent 70%),
        linear-gradient(180deg, #000000 0%, #060809 50%, #000000 100%);
}

.avidclub__diff-tabs {
    max-width: 1100px;
    margin: 0 auto;
}

/* === Tab bar === */
.avidclub__diff-tablist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    position: relative;
}
.avidclub__diff-tab {
    background: transparent;
    border: none;
    color: var(--text-faint);
    padding: clamp(1.25rem, 2vw, 1.85rem) clamp(0.75rem, 1.5vw, 1.25rem);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    position: relative;
    transition: color var(--t-base);
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}
.avidclub__diff-tab + .avidclub__diff-tab::before {
    content: '';
    position: absolute;
    top: 22%;
    bottom: 22%;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}
.avidclub__diff-tab:hover { color: var(--text-soft); }
.avidclub__diff-tab.is-active { color: var(--text); }
.avidclub__diff-tab::after {
    content: '';
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 500ms cubic-bezier(0.2, 0.9, 0.3, 1), opacity var(--t-base);
    opacity: 0;
}
.avidclub__diff-tab.is-active::after {
    transform: scaleX(1);
    opacity: 1;
}
.avidclub__diff-tab-num {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 1.8vw + 0.8rem, 2.85rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, rgba(0, 189, 255, 0.45) 0%, rgba(0, 149, 212, 0.18) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: filter var(--t-base), background var(--t-base);
}
.avidclub__diff-tab.is-active .avidclub__diff-tab-num {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 149, 212, 0.55) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(0, 189, 255, 0.45));
}
.avidclub__diff-tab-label {
    font-size: clamp(0.65rem, 0.15vw + 0.6rem, 0.78rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

/* === Panel === */
.avidclub__diff-panels {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    min-height: 240px;
}
.avidclub__diff-panel {
    grid-area: 1 / 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
}
.avidclub__diff-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 60ms; /* small overlap with outgoing fade */
}
.avidclub__diff-panel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding: 0 0.85rem;
}
.avidclub__diff-panel-eyebrow::before,
.avidclub__diff-panel-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.avidclub__diff-panel-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 2vw + 1rem, 3rem);
    line-height: 1.05;
    letter-spacing: 0.018em;
    color: var(--text);
    margin: 0 auto 1.25rem;
    max-width: 22ch;
}
.avidclub__diff-panel-headline em {
    font-style: normal;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.avidclub__diff-panel-body {
    color: var(--text-soft);
    font-size: clamp(1rem, 0.35vw + 0.9rem, 1.1rem);
    line-height: 1.78;
    max-width: 60ch;
    margin: 0 auto 1.5rem;
}
.avidclub__diff-panel-aside {
    color: var(--text-muted);
    font-style: italic;
    font-size: clamp(0.85rem, 0.2vw + 0.8rem, 0.95rem);
    letter-spacing: 0.02em;
    line-height: 1.5;
    max-width: 36ch;
    margin: 0 auto;
    position: relative;
    padding-top: 1rem;
}
.avidclub__diff-panel-aside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

/* ======================================================
   §4 PILLARS — editorial manifesto layout
   Numbered list (left) + tall side image (right). No cards,
   no icon tiles — typography-driven luxury feel.
   ====================================================== */
.avidclub__pillars {
    background: linear-gradient(180deg, #000000 0%, #050608 100%);
    position: relative;
    overflow: hidden;
}
.avidclub__pillars::before {
    content: '';
    position: absolute;
    top: 25%;
    right: -8%;
    width: 45%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 189, 255, 0.06), transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.avidclub__pillars-layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 0.65fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: stretch;
}

.avidclub__pillars-list {
    list-style: none;
    padding: 0;
    margin: 0;
    align-self: center;
}

.avidclub__pillar {
    position: relative;
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(1.5rem, 3vw, 2.5rem);
    row-gap: 0.65rem;
    align-items: baseline;
}
.avidclub__pillar:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 189, 255, 0.35), rgba(0, 189, 255, 0.05) 60%, transparent 100%);
}

.avidclub__pillar-num {
    grid-row: 1 / span 2;
    align-self: start;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(3.25rem, 4vw + 1.5rem, 5rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 149, 212, 0.45) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    user-select: none;
}
.avidclub__pillar-num::after {
    content: '';
    display: block;
    margin-top: 0.55rem;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 500ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.avidclub__pillar:hover .avidclub__pillar-num::after {
    width: 72px;
}

.avidclub__pillar-name {
    grid-column: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.2vw + 0.8rem, 1.95rem);
    letter-spacing: 0.06em;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
}
.avidclub__pillar-text {
    grid-column: 2;
    color: var(--text-soft);
    font-size: clamp(0.95rem, 0.3vw + 0.85rem, 1.05rem);
    line-height: 1.75;
    max-width: 56ch;
}

.avidclub__pillars-figure {
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
    aspect-ratio: 3 / 4;
    max-height: 720px;
    align-self: stretch;
}
.avidclub__pillars-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s cubic-bezier(0.2, 0.9, 0.3, 1);
    filter: saturate(1.05) contrast(1.02);
}
.avidclub__pillars-figure:hover img {
    transform: scale(1.05);
}
.avidclub__pillars-figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.65) 100%),
        linear-gradient(135deg, rgba(0, 189, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.avidclub__pillars-figcaption {
    position: absolute;
    bottom: clamp(1.25rem, 2vw, 1.85rem);
    left: clamp(1.25rem, 2vw, 1.85rem);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    z-index: 2;
    padding-left: 1.5rem;
}
.avidclub__pillars-figcaption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1px;
    background: var(--primary);
}

/* ======================================================
   §5 SERVICE HISTORY — image + content + stats
   ====================================================== */
.avidclub__history {
    /* Background is set further down (paired with the Tiers cyan halo) so the
       end of this section fades INTO the next without a hard edge. */
    padding-bottom: clamp(3rem, 6vw, 5rem);
}
.avidclub__history-grid {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}
.avidclub__history-image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 680px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}
.avidclub__history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform;
}
.avidclub__history-image:hover img {
    transform: scale(1.04);
}
.avidclub__history-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.65) 100%),
        linear-gradient(135deg, rgba(0, 189, 255, 0.08), transparent 60%);
    pointer-events: none;
}
.avidclub__history-image-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.55rem 0.95rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 189, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 9999px;
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}
.avidclub__history-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 2.25rem;
}
.avidclub__history-stat {
    padding: 1.4rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border-faint);
    border-radius: 16px;
    transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
    position: relative;
    overflow: hidden;
}
.avidclub__history-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 189, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--t-base), left 500ms cubic-bezier(0.2, 0.9, 0.3, 1), right 500ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.avidclub__history-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 189, 255, 0.32);
    background: var(--surface-strong);
}
.avidclub__history-stat:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}
.avidclub__history-stat-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 0.65rem;
}
.avidclub__history-stat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
    color: var(--text);
}
.avidclub__history-stat-text {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.55;
}

/* ======================================================
   §6 MEMBERSHIP TIERS — premium cards
   ====================================================== */
.avidclub__tiers {
    /* Layered backgrounds: a wide, soft cyan halo at the top fades smoothly into
       the section's dark gradient, with no hard rectangle/edge. */
    background:
        radial-gradient(ellipse 140% 55% at 50% 0%, rgba(0, 189, 255, 0.13) 0%, rgba(0, 189, 255, 0.06) 25%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #060809 65%, #000000 100%);
    position: relative;
    overflow: hidden;
    /* Pull the section higher: less top padding than the default section spacing */
    padding-top: clamp(3rem, 5vw, 5rem);
}
/* Soft cyan whisper at the bottom of the History section so it fades INTO the
   Tiers cyan halo instead of meeting it at a hard boundary. */
.avidclub__history {
    background:
        linear-gradient(180deg, transparent 70%, rgba(0, 189, 255, 0.06) 100%),
        linear-gradient(180deg, #050608 0%, #000000 100%);
}
.avidclub__tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 1.5vw, 1.5rem);
    align-items: stretch;
    position: relative;
}
.avidclub__tier {
    position: relative;
    padding: clamp(2.75rem, 3vw, 3.25rem) clamp(1.5rem, 2.2vw, 2rem) clamp(2rem, 2.6vw, 2.5rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 55%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    min-height: 490px;
    overflow: hidden;
    transition: transform 550ms cubic-bezier(0.2, 0.9, 0.3, 1), border-color var(--t-base), background var(--t-base), box-shadow 550ms ease;
    cursor: default;
}
/* Mouse-following spotlight (driven by --x/--y from JS) */
.avidclub__tier::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 280px at var(--x, 50%) var(--y, 50%), rgba(0, 189, 255, 0.10), transparent 60%);
    opacity: 0;
    transition: opacity var(--t-base);
    pointer-events: none;
    border-radius: inherit;
}
.avidclub__tier:hover::after { opacity: 1; }
.avidclub__tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 189, 255, 0.5), transparent);
    opacity: 0.55;
    transition: opacity var(--t-base), left 600ms cubic-bezier(0.2, 0.9, 0.3, 1), right 600ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.avidclub__tier:hover {
    border-color: rgba(0, 189, 255, 0.35);
    background: linear-gradient(180deg, rgba(0, 189, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 70%);
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px -25px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(0, 189, 255, 0.12),
        0 0 50px -10px rgba(0, 189, 255, 0.25);
}
.avidclub__tier:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}
.avidclub__tier--featured {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 189, 255, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 189, 255, 0.05) 0%, rgba(0, 149, 212, 0.02) 100%);
    border-color: rgba(0, 189, 255, 0.35);
    box-shadow: 0 20px 50px -25px rgba(0, 189, 255, 0.35);
}
@media (min-width: 1100px) {
    .avidclub__tier--featured {
        transform: translateY(-10px) scale(1.025);
    }
    .avidclub__tier--featured:hover {
        transform: translateY(-18px) scale(1.025);
        box-shadow:
            0 40px 70px -25px rgba(0, 0, 0, 0.8),
            0 0 0 1px rgba(0, 189, 255, 0.22),
            0 0 80px -15px rgba(0, 189, 255, 0.45);
    }
}
.avidclub__tier--featured::before {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.95;
    left: 0;
    right: 0;
}
.avidclub__tier--featured::after {
    background: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%), rgba(0, 189, 255, 0.16), transparent 60%);
}

.avidclub__tier--signature {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(251, 191, 36, 0.14) 0%, transparent 60%),
        linear-gradient(180deg, rgba(251, 191, 36, 0.04) 0%, rgba(245, 158, 11, 0.015) 100%);
    border-color: rgba(251, 191, 36, 0.32);
}
.avidclub__tier--signature:hover {
    border-color: rgba(251, 191, 36, 0.55);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(251, 191, 36, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, rgba(251, 191, 36, 0.06) 0%, rgba(245, 158, 11, 0.02) 100%);
    box-shadow:
        0 30px 60px -25px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(251, 191, 36, 0.18),
        0 0 50px -10px rgba(251, 191, 36, 0.3);
}
.avidclub__tier--signature::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.avidclub__tier--signature::after {
    background: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%), rgba(251, 191, 36, 0.14), transparent 60%);
}

.avidclub__tier-ribbon {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    padding: 0.32rem 0.78rem;
    background: var(--grad-cyan);
    color: #001824;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 9999px;
    box-shadow: 0 8px 20px -4px rgba(0, 189, 255, 0.55);
    z-index: 2;
    max-width: calc(100% - 2.2rem);
    text-align: center;
    line-height: 1.25;
}
.avidclub__tier-ribbon--gold {
    background: var(--grad-gold);
    color: #2a1c00;
    box-shadow: 0 8px 20px -4px rgba(251, 191, 36, 0.55);
}
.avidclub__tier-ribbon--neutral {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: var(--text);
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.avidclub__tier-ribbon--long {
    letter-spacing: 0.11em;
    padding: 0.32rem 0.7rem;
    font-size: 0.6rem;
}

.avidclub__tier-image {
    margin: 0 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.avidclub__tier-image img {
    width: 100%;
    max-width: 240px;
    height: auto;
    display: block;
    object-fit: contain;
}

.avidclub__tier-name {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 2vw + 0.6rem, 2.5rem);
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 0.45rem;
}
.avidclub__tier--signature .avidclub__tier-name {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.avidclub__tier-tagline {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 4.5em;
}
.avidclub__tier-price {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-faint);
}
.avidclub__tier-price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 3vw + 1rem, 3.85rem);
    line-height: 1;
    color: var(--text);
    letter-spacing: 0.012em;
}
.avidclub__tier--signature .avidclub__tier-price-amount {
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.avidclub__tier-price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 0.4rem;
}
.avidclub__tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.78rem;
}
.avidclub__tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.5;
}
.avidclub__tier-feature-check {
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    color: var(--primary);
}
.avidclub__tier--signature .avidclub__tier-feature-check { color: var(--gold); }
.avidclub__tier-feature-emph {
    color: var(--text);
    font-weight: 600;
}
.avidclub__tier-mini-card {
    margin-top: 0.4rem;
    padding: 0.7rem 0.95rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 14px;
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.avidclub__tier-mini-card svg { width: 14px; height: 14px; flex-shrink: 0; }
.avidclub__tier-cta {
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border-medium);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-align: center;
    transition: all var(--t-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}
.avidclub__tier-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 189, 255, 0.5);
    color: var(--primary);
    transform: translateY(-2px);
}
.avidclub__tier-cta svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.avidclub__tier-cta:hover svg { transform: translateX(3px); }
.avidclub__tier--featured .avidclub__tier-cta {
    background: var(--grad-cyan);
    color: #001824;
    border-color: transparent;
    box-shadow: 0 12px 28px -10px rgba(0, 189, 255, 0.5);
}
.avidclub__tier--featured .avidclub__tier-cta:hover {
    color: #001824;
    box-shadow: 0 18px 36px -12px rgba(0, 189, 255, 0.7);
    background: linear-gradient(135deg, #00d4ff 0%, #00bdff 100%);
}
.avidclub__tier--signature .avidclub__tier-cta {
    background: var(--grad-gold);
    color: #2a1c00;
    border-color: transparent;
    box-shadow: 0 12px 28px -10px rgba(251, 191, 36, 0.5);
}
.avidclub__tier--signature .avidclub__tier-cta:hover {
    color: #2a1c00;
    box-shadow: 0 18px 36px -12px rgba(251, 191, 36, 0.7);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}
.avidclub__tiers-helper {
    margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--text-soft);
    font-size: clamp(0.95rem, 0.25vw + 0.88rem, 1.05rem);
    line-height: 1.7;
    padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-faint);
    border-radius: 14px;
}
.avidclub__tiers-helper strong {
    color: var(--text);
    font-weight: 700;
}
.avidclub__tiers-disclaimer {
    margin-top: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    color: var(--text-faint);
    font-size: 0.85rem;
    letter-spacing: 0.025em;
}

/* ======================================================
   §8 PRIMARY CTA — radial-glow band
   ====================================================== */
.avidclub__cta-primary {
    background:
        radial-gradient(ellipse at center, rgba(0, 189, 255, 0.16), transparent 65%),
        linear-gradient(180deg, #000000 0%, #050505 100%);
    border-top: 1px solid rgba(0, 189, 255, 0.18);
    border-bottom: 1px solid rgba(0, 189, 255, 0.18);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.avidclub__cta-primary::before,
.avidclub__cta-primary::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(85%, 900px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 189, 255, 0.5), transparent);
}
.avidclub__cta-primary::before { top: 0; }
.avidclub__cta-primary::after { bottom: 0; }
.avidclub__cta-primary-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.avidclub__cta-primary-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 3.5vw + 1rem, 4rem);
    line-height: 1.02;
    letter-spacing: 0.012em;
    margin-bottom: 1.25rem;
    text-align: center;
}
.avidclub__cta-primary-text {
    color: var(--text-soft);
    font-size: clamp(1rem, 0.4vw + 0.85rem, 1.15rem);
    margin: 0 auto 2.25rem;
    max-width: 600px;
    line-height: 1.7;
    text-align: center;
}
.avidclub__cta-primary-ctas {
    opacity: 1;
    animation: none;
    margin-top: 0.25rem;
}
.avidclub__cta-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 720px;
}
.avidclub__cta-contact-tile {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.78rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 9999px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all var(--t-base);
}
.avidclub__cta-contact-tile:hover {
    background: rgba(0, 189, 255, 0.08);
    border-color: rgba(0, 189, 255, 0.45);
    color: var(--primary);
    transform: translateY(-2px);
}
.avidclub__cta-contact-tile svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ======================================================
   §8 FAQ — accordion
   ====================================================== */
.avidclub__faq {
    background: linear-gradient(180deg, #050505 0%, #000000 100%);
}
.avidclub__faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0.7rem;
    max-width: 1200px;
    margin: 0 auto;
}
.avidclub__faq-item {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-faint);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--t-base), background var(--t-base);
}
.avidclub__faq-item:hover:not(.is-open) {
    border-color: rgba(0, 189, 255, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
}
.avidclub__faq-item.is-open {
    border-color: rgba(0, 189, 255, 0.4);
    background: linear-gradient(180deg, rgba(0, 189, 255, 0.06) 0%, rgba(0, 189, 255, 0.015) 100%);
}
.avidclub__faq-q {
    width: 100%;
    padding: 1.05rem 1.35rem;
    background: transparent;
    border: none;
    color: var(--text);
    text-align: left;
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.1rem);
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color var(--t-fast);
}
.avidclub__faq-q:hover { color: var(--primary); }
.avidclub__faq-q-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: transform var(--t-base);
}
.avidclub__faq-item.is-open .avidclub__faq-q-icon {
    transform: rotate(180deg);
}
.avidclub__faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slowest), padding var(--t-slowest);
    padding: 0 1.35rem;
}
.avidclub__faq-item.is-open .avidclub__faq-a {
    max-height: 480px;
    padding: 0 1.35rem 1.15rem;
}
.avidclub__faq-a p {
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.96rem;
}

/* Stack FAQ on tablet/mobile */
@media (max-width: 800px) {
    .avidclub__faq-list { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .avidclub__faq-q { font-size: 1.05rem; }
    .avidclub__faq-a p { font-size: 1rem; line-height: 1.7; }
}

/* ======================================================
   §9 SECONDARY CTA — punchier contrast band
   ====================================================== */
.avidclub__cta-secondary {
    background:
        linear-gradient(135deg, rgba(0, 189, 255, 0.04) 0%, transparent 60%),
        #050505;
    text-align: center;
    border-top: 1px solid var(--border-faint);
    border-bottom: 1px solid var(--border-faint);
}
.avidclub__cta-secondary-inner {
    max-width: 780px;
    margin: 0 auto;
}
.avidclub__cta-secondary-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 3.5vw + 1rem, 4rem);
    line-height: 1.02;
    letter-spacing: 0.018em;
    margin-bottom: 1.25rem;
}
.avidclub__cta-secondary-text {
    color: var(--text-soft);
    font-size: clamp(1rem, 0.4vw + 0.85rem, 1.15rem);
    line-height: 1.7;
    margin: 0 auto 2.25rem;
    max-width: 620px;
}

/* ======================================================
   §10 CONTACT TRIO
   ====================================================== */
.avidclub__contact {
    background: #000000;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}
.avidclub__contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1080px;
    margin: 0 auto;
}
.avidclub__contact-tile {
    padding: 1.85rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border-faint);
    border-radius: 20px;
    text-align: center;
    transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    position: relative;
    overflow: hidden;
}
.avidclub__contact-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 189, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--t-base), left 500ms cubic-bezier(0.2, 0.9, 0.3, 1), right 500ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.avidclub__contact-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 189, 255, 0.32);
    background: var(--surface-strong);
}
.avidclub__contact-tile:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
}
.avidclub__contact-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 189, 255, 0.22), rgba(0, 149, 212, 0.06));
    border: 1px solid rgba(0, 189, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.avidclub__contact-tile-icon svg { width: 20px; height: 20px; }
.avidclub__contact-tile-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    font-weight: 600;
}
.avidclub__contact-tile-value {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* Tablet (≤1100px) — tier grid 2x2 */
@media (max-width: 1100px) {
    .avidclub__tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .avidclub__tier { min-height: auto; }
    .avidclub__tier--featured {
        transform: none;
    }
    .avidclub__tier--featured:hover {
        transform: translateY(-8px);
    }
}

/* Tablet/intermediate (≤1100px) — collapse two-column figure layouts
   so the aspect-ratio'd image doesn't stretch past the grid column. */
@media (max-width: 1100px) {
    .avidclub__pillars-layout {
        grid-template-columns: 1fr;
        gap: clamp(1.75rem, 4vw, 2.5rem);
    }
    .avidclub__pillars-figure {
        order: -1;
        aspect-ratio: 16 / 10;
        max-height: 420px;
        width: 100%;
    }
    .avidclub__history-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.75rem, 4vw, 2.5rem);
    }
    .avidclub__history-image {
        aspect-ratio: 16 / 10;
        max-height: 460px;
        width: 100%;
    }
}

/* Tablet (≤900px) — hero/meta-specific tightening */
@media (max-width: 900px) {
    .avidclub__hero { min-height: 80vh; min-height: 80svh; }
    .avidclub__hero-meta { gap: 1rem 2rem; }
}

/* Tablet (≤700px) handled below */

/* Mobile (≤700px) */
@media (max-width: 700px) {
    /* Tabs become 2x2 grid on mobile so labels remain readable */
    .avidclub__diff-tablist {
        grid-template-columns: repeat(2, 1fr);
    }
    .avidclub__diff-tab + .avidclub__diff-tab::before {
        display: none;
    }
    .avidclub__diff-tab:nth-child(2n)::before,
    .avidclub__diff-tab:nth-child(n+3)::after {
        /* re-enable internal dividers via different approach */
    }
    .avidclub__diff-tab:nth-child(2n) {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
    .avidclub__diff-tab:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .avidclub__diff-panel-headline { max-width: none; }

    .avidclub__history-stats { grid-template-columns: 1fr; gap: 0.7rem; }
    .avidclub__history-stat { padding: 1.3rem 1.2rem; }
    .avidclub__history-stat-text { font-size: 1rem; line-height: 1.6; }

    .avidclub__tiers-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .avidclub__tier { order: 2; min-height: auto; padding: 1.85rem 1.5rem; }
    .avidclub__tier--first { order: 1; }
    .avidclub__tier--featured { order: 1; }
    .avidclub__tier-tagline { font-size: 0.95rem; line-height: 1.55; }
    .avidclub__tier-features li { font-size: 0.96rem; line-height: 1.55; }
    .avidclub__tiers-helper { font-size: 1rem; padding: 1.15rem 1.2rem; line-height: 1.7; }

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

    /* Mobile hero CTAs: stack but stay width-to-content (not full-bleed),
       and slightly trim button size so the column feels lighter. */
    .avidclub__hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }
    .avidclub__hero-ctas .avidclub__btn {
        width: auto;
        padding: 0.85rem 1.55rem;
        font-size: 0.88rem;
        gap: 0.5rem;
    }
    .avidclub__hero-ctas .avidclub__btn-arrow { width: 15px; height: 15px; }

    .avidclub__cta-contact { flex-direction: column; }
    .avidclub__cta-contact-tile { width: 100%; justify-content: center; }
}

/* Tiny phones (≤400px) */
@media (max-width: 400px) {
    .avidclub__pillar { padding: 1.5rem 0; column-gap: 1rem; }
    .avidclub__pillar-num { font-size: 2.85rem; }
    .avidclub__faq-q { padding: 1.1rem 1.25rem; }
    .avidclub__faq-item.is-open .avidclub__faq-a { padding: 0 1.25rem 1.25rem; }
    .avidclub__tier-price-amount { font-size: 2.85rem; }
}
