/*********************************************
# css/styles.css
# 01/15/2026 12:16am Created file - Converted from Figma design
# 01/15/2026 12:26am Added enhanced interactivity styles
# 01/15/2026 12:35am Enhanced responsive breakpoints to match Figma designs (800px tablet, 375px mobile)
# 01/15/2026 6:05pm Fixed ticker animation to span full width
# 01/15/2026 6:10pm Slowed ticker speed (80s) and increased spacing for full-width display
# 01/15/2026 6:15pm Made ticker true full viewport width and removed hover state (non-interactive)
# 01/15/2026 6:20pm Fixed ticker positioning (absolute within hero) and slowed to 120s
# 01/15/2026 6:25pm Added 55px margin-bottom to hero-secondary for spacing above ticker
# 01/15/2026 6:30pm Implemented Bebas Neue font (Sakana substitute) for all display typography
# 01/15/2026 6:35pm Implemented actual Sakana webfont from licensed files
# 01/15/2026 6:40pm Simplified button hover to scale(1.05) ease-in animation (matches live site)
# 01/15/2026 6:45pm Fixed button scale to grow from center (transform-origin: center)
# 01/15/2026 6:50pm Added !important to button scale transforms to override conflicting styles
# 01/15/2026 6:55pm Added color inversion hover (white bg, blue text) for statement & join-today buttons
# 01/15/2026 7:00pm Reduced statement text font-size from 30px to 26px to match live site
# 01/15/2026 7:05pm Added will-change and transition to image-title for parallax effect
# 01/15/2026 7:10pm Removed image-container scale hover effect (not in original site)
# 01/15/2026 7:15pm Set vision text to 913x235 (cropped) and perks text to 888px wide with higher start position
# 01/15/2026 7:25pm Removed 1px border-bottom from vision-module, perks-module, and perks-module-cont (dark lines between sections)
# 01/15/2026 7:30pm Added explicit gap:0 and margin:0 to all sections and grid modules to prevent any visual gaps
# 01/15/2026 7:45pm Changed ticker to position:sticky top:0 so it scrolls with page content over header
# 01/15/2026 7:55pm Added footer reveal animations (opacity + translateY) with custom bezier and ease-out transitions
# 01/15/2026 8:05pm Changed ticker from sticky to relative positioning (scrolls with content, not fixed to top)
# 01/15/2026 8:10pm Added z-index:2 to text-content and perks-content sections to prevent parallax text overlap
# 01/15/2026 8:15pm Fixed footer whitespace by adding negative margin-bottom to compensate for transform offset
# 01/15/2026 8:30pm Smoothed footer reveal: reduced offsets (50px/30px), doubled duration (600ms), simplified to ease-out, removed margin transitions
# 01/15/2026 8:40pm Made footer snappy: reduced duration to 250ms (1/4 second) for quick, responsive reveal
# 01/15/2026 8:45pm Set exact Figma specs: footer 100px/300ms, logo 62px/300ms for proper reveal distance/timing
# 01/15/2026 8:50pm Added hover effect to "Join Today" text: scale 1.05, translateX 10px, 300ms ease-out
# 01/15/2026 9:00pm Fixed footer reveal: reduced offsets to 50px/30px, removed margin tricks for clean simple slide-up
# 01/15/2026 9:05pm Simplified footer transitions: only animate on reveal (not on reset) to prevent overscroll glitches
# 01/15/2026 9:10pm Swapped vision and perks background images (vision now uses perks-bg-1, perks uses vision-bg)
# 01/15/2026 9:15pm Increased Vision and Perks text size by 30% (260px desktop, 130px tablet, 104px mobile) for proper cropping
# 01/15/2026 9:20pm Centered Vision and Perks text horizontally by removing padding-left from `.perks-image-left`
# 01/15/2026 9:25pm Reduced both text sizes by 5% (247px desktop) and moved Vision left 50px for better visual alignment
# 01/15/2026 9:30pm Added margin-top -100px to Vision text to start parallax higher (proportional for responsive sizes)
# 01/15/2026 9:45pm Fixed footer janky reveal: set transition:none by default, only animate on reveal (not reset)
# 01/15/2026 10:00pm Fixed overscroll/bounce: added overflow:hidden to vision-image to contain parallax transforms
# 01/15/2026 10:10pm Fixed display:contents on content-container preventing overflow containment, changed to subgrid
# 01/15/2026 10:15pm Changed image-title to position:absolute to remove from document flow, preventing height changes
# 01/15/2026 10:20pm Added min-height:4308px to body to force consistent height
# 01/15/2026 10:25pm Removed min-height from body as position:absolute on image-title is sufficient
# 01/15/2026 10:30pm Added min-height:666px to vision/perks image containers to prevent height fluctuation
# 01/15/2026 10:40pm Removed min-heights from image containers - hero parallax removal was the real fix
# 01/15/2026 10:45pm Changed vision/perks modules from min-height to fixed height:666px to lock layout
# 01/15/2026 10:50pm Reverted to min-height and disabled parallax JS to test if parallax is the root cause
# 01/15/2026 11:00pm Removed initial transforms from footer/logo - applying via JS instead to prevent height calc issues
# 01/15/2026 11:20pm Reverted image-title to relative positioning - parallax removed entirely for stability
# 01/15/2026 11:25pm Swapped vision/perks images back on home page, re-enabled parallax with translate3d for GPU isolation
# 01/15/2026 11:27pm Reduced ticker item spacing from 60px to 30px (50% reduction)
# 01/15/2026 11:28pm Reduced statement-text font-weight from 300 to 200
# 01/15/2026 11:32pm Fixed join-today-section: gray bg on parent, white bg on left, transparent on right
# 01/15/2026 11:35pm Added page-specific image overrides for partners page using .partners-page class
# 01/15/2026 11:46pm Removed empty .image-container ruleset (linter cleanup)
# 01/19/2026 11:30pm Added disclaimer styles for hero and footer sections
**********************************************/

/* ========================================
   FONTS & CSS VARIABLES
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;600&display=swap');

/* Sakana Webfont - Licensed from Creative Market/Drizy Studio */
@font-face {
    font-family: 'Sakana';
    src: url('../fonts/sakana-webfont.woff2') format('woff2'),
         url('../fonts/sakana-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors from Figma */
    --color-bg-1: #FFFFFF;
    --color-bg-2: #231E1F;
    --color-bg-3: #23A9E1;
    --color-bg-4: #F1F2F2;
    --color-bg-5: #153470;
    --color-accent-1: #23A9E1;
    --color-divider: #153470;
    --color-text-primary: #231E1F;
    --color-text-white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Archivo', sans-serif;
    --font-display: 'Sakana', 'Bebas Neue', 'Impact', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--color-bg-1);
}

/* Ensure sections have no gaps */
section {
    display: block;
    margin: 0;
    padding: 0;
}

main {
    display: block;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent-1);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 18px 26px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 6.5px;
    text-transform: uppercase;
    line-height: 0.9;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform-origin: center center;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-bg-3);
    color: var(--color-text-white);
}

.btn-primary:hover {
    transform: scale(1.05) !important;
}

/* Special hover effects for statement and join-today buttons */
.statement-section .btn-primary:hover,
.join-today-section .btn-primary:hover {
    background-color: var(--color-bg-1) !important;
    color: var(--color-bg-3) !important;
}

.btn-secondary {
    background-color: var(--color-bg-1);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    transform: scale(1.05) !important;
}

/* ========================================
   HERO HEADER SECTION
   ======================================== */
.hero-header {
    position: relative;
    min-height: 751px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url('../images/header-bg.png');
    background-size: cover;
    background-position: center;
    padding: 105px 113px 0;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(21,52,112,0.25) 100%);
    z-index: 1;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(35,169,225,0.75);
    mix-blend-mode: color;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 39px;
    padding-bottom: 69px;
}

.logo-container {
    width: 324px;
    height: 262px;
}

.logo-large {
    width: 100%;
    height: 100%;
}

.hero-text {
    text-align: center;
    color: var(--color-text-white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 37px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.74px;
    margin-bottom: 7px;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.51px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.hero-secondary {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    color: var(--color-text-white);
}

.secondary-text {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.51px;
}

.disclaimer-text {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: var(--color-text-white);
    text-align: center;
    max-width: 800px;
    opacity: 0.9;
}

/* Ticker */
.ticker {
    position: relative;
    width: 100%;
    z-index: 3;
    background-color: var(--color-bg-3);
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-ticker 200s linear infinite;
    will-change: transform;
}

.ticker-content span {
    display: inline-block;
    color: var(--color-text-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.5px;
    padding: 0 30px;
    text-transform: none;
}

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

/* ========================================
   VISION MODULE
   ======================================== */
.vision-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    overflow: hidden; /* Contain parallax transforms */
}

.content-container {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
}

.text-content {
    background: var(--color-bg-1);
    padding: 77px 113px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -2.4px;
    color: var(--color-text-primary);
    margin-bottom: 35px;
}

.section-text {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.51px;
    color: var(--color-text-primary);
    max-width: 421px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.vision-image {
    background-image: url('../images/vision-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
    overflow: hidden; /* Contain parallax transforms */
    position: relative; /* Establish positioning context for absolute child */
}

/* Partners page: swap vision image to football */
.partners-page .vision-image {
    background-image: url('../images/perks-bg-1.png');
}

.vision-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg-3);
    mix-blend-mode: color;
}

.vision-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,55,162,0.49) 0%, rgba(21,52,112,0.13) 100%);
    mix-blend-mode: color-burn;
}

.image-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 200px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -4px;
    color: var(--color-accent-1);
    opacity: 0.5;
    mix-blend-mode: plus-lighter;
    text-align: center;
    will-change: transform;
    transform: translateZ(0); /* Create new stacking context to isolate transforms */
    transition: none !important; /* Disable any inherited transitions to prevent parallax jump */
}

/* Vision text specific sizing - 913x235 cropped */
.vision-image .image-title {
    width: 913px;
    height: 235px;
    overflow: hidden;
    font-size: 247px; /* Reduced by 5% from 260px */
    line-height: 235px;
    margin-left: -50px; /* Move left 50px */
    margin-top: -100px; /* Start parallax higher */
}

/* Perks text specific sizing - 888px wide, proportional height */
.perks-image-left .image-title {
    width: 888px;
    font-size: 247px; /* Reduced by 5% from 260px */
    margin-top: -50px; /* Start parallax higher */
}

/* ========================================
   STATEMENT SECTION
   ======================================== */
.statement-section {
    background-color: var(--color-bg-2);
    padding: 62px 0 93px;
    display: flex;
    justify-content: center;
}

.statement-content {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.statement-text {
    font-size: 26px;
    font-weight: 200;
    line-height: 1.5;
    color: var(--color-text-white);
    max-width: 953px;
}

/* ========================================
   PERKS MODULE
   ======================================== */
.perks-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    overflow: hidden; /* Contain parallax transforms */
}

.perks-image-left {
    position: relative;
    background-image: url('../images/perks-bg-1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden; /* Already set - contains parallax transforms */
}

/* Partners page: swap perks image to basketball */
.partners-page .perks-image-left {
    background-image: url('../images/vision-bg.png');
}

.perks-image-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #003395;
    mix-blend-mode: color;
}

.perks-image-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-3) 0%, rgba(35,169,225,0) 100%);
    mix-blend-mode: color;
}

.perks-content {
    background: var(--color-bg-1);
    padding: 80px 110px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.perk-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
}

.perk-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -2.4px;
    color: var(--color-text-primary);
}

.perk-text {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.51px;
    color: var(--color-text-primary);
}

/* ========================================
   PERKS MODULE CONTINUED
   ======================================== */
.perks-module-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 666px;
    gap: 0;
    margin: 0;
}

.perks-content-left {
    background: var(--color-bg-1);
    padding: 80px 113px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.perks-image-right {
    position: relative;
    background-image: url('../images/perks-bg-2.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.perks-image-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg-3);
    mix-blend-mode: color;
}

.perks-image-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(21,52,112,0.45) 0%, var(--color-bg-5) 33.146%);
    mix-blend-mode: overlay;
}

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome-section {
    background-color: var(--color-bg-2);
    padding: 80px 160px;
    display: flex;
    justify-content: center;
}

.welcome-content {
    max-width: 1080px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--color-text-white);
}

.welcome-title {
    font-family: var(--font-display);
    font-size: 37px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.74px;
}

.welcome-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 712px;
    margin: 0 auto;
}

/* ========================================
   JOIN TODAY SECTION
   ======================================== */
.join-today-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 378px;
    gap: 0;
    margin: 0;
    background: var(--color-bg-4);
}

.join-title-container {
    background: var(--color-bg-1);
    padding: 30px 30px 30px 113px;
    display: flex;
    align-items: center;
}

.join-title {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -2.4px;
    color: var(--color-bg-5);
    transition: opacity 300ms ease-out,
                transform 300ms ease-out;
    cursor: pointer;
}

.join-title:hover {
    opacity: 1;
    transform: scale(1.05) translateX(10px);
}

.join-content-container {
    background: transparent;
    padding: 46px 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 578px;
}

.join-text {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text-primary);
    padding-left: 23px;
}

.join-content .btn {
    margin-left: 21px;
    align-self: flex-start;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-bg-4);
    opacity: 0;
    transform: none; /* Removed translateY to prevent height calculation issues */
    transition: none !important; /* No transition by default */
}

.site-footer.footer-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms ease-out, 
                transform 300ms ease-out !important;
}

.footer-content {
    background: var(--color-bg-2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 94px;
    height: 44px;
    opacity: 0;
    transform: none; /* Removed translateY to prevent height calculation issues */
    transition: none !important; /* No transition by default */
}

.footer-logo.logo-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 300ms ease-out, 
                transform 300ms ease-out !important;
}

.footer-disclaimer {
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    color: var(--color-text-white);
    text-align: center;
    max-width: 900px;
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE DESIGN
   Breakpoints match Figma designs:
   - Desktop: 1280px (default)
   - Tablet: 800px
   - Mobile: 375px
   ======================================== */

/* Tablet Layout (800px) - Matches Figma Tablet Design */
@media (max-width: 800px) {
    .hero-header {
        padding: 60px 40px 0;
        min-height: 523px; /* Figma tablet height */
    }

    .disclaimer-text {
        font-size: 10px;
        max-width: 600px;
    }

    .footer-disclaimer {
        font-size: 8px;
        max-width: 700px;
    }

    .vision-module,
    .perks-module,
    .perks-module-cont,
    .join-today-section {
        grid-template-columns: 1fr;
    }

    .text-content,
    .perks-content,
    .perks-content-left {
        padding: 48px;
    }

    .image-title {
        font-size: 124px; /* Reduced by 5% from 130px */
    }

    /* Vision text tablet sizing */
    .vision-image .image-title {
        width: 456px; /* Proportional to tablet */
        height: 117px;
        line-height: 117px;
        font-size: 124px; /* Reduced by 5% from 130px */
        margin-left: -25px; /* Move left 25px (proportional) */
        margin-top: -50px; /* Start parallax higher (proportional) */
    }

    /* Perks text tablet sizing */
    .perks-image-left .image-title {
        width: 444px; /* Proportional to tablet */
        margin-top: -30px;
        font-size: 124px; /* Reduced by 5% from 130px */
    }

    .statement-section,
    .welcome-section {
        padding: 60px;
    }

    .join-title {
        font-size: 80px;
        line-height: 1.2;
    }

    .join-title-container {
        padding: 30px 40px;
    }

    .section-title,
    .perk-title {
        font-size: 36px;
    }

    .section-text,
    .perk-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .btn {
        font-size: 12px;
        padding: 16px 24px;
    }
}

/* Mobile Landscape / Small Tablet (768px) */
@media (max-width: 768px) {
    .hero-header {
        padding: 40px 24px 0;
        min-height: 500px;
    }

    .disclaimer-text {
        font-size: 9px;
        max-width: 500px;
    }

    .footer-disclaimer {
        font-size: 7px;
        max-width: 600px;
    }

    .logo-container {
        width: 200px;
        height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle,
    .secondary-text {
        font-size: 15px;
    }

    .section-title,
    .perk-title {
        font-size: 32px;
    }

    .section-text,
    .perk-text {
        font-size: 15px;
    }

    .statement-text,
    .join-text {
        font-size: 18px;
    }

    .image-title {
        font-size: 99px; /* Reduced by 5% from 104px */
    }

    /* Vision text mobile sizing */
    .vision-image .image-title {
        width: 365px; /* Proportional to mobile */
        height: 94px;
        line-height: 94px;
        font-size: 99px; /* Reduced by 5% from 104px */
        margin-left: -20px; /* Move left 20px (proportional) */
        margin-top: -40px; /* Start parallax higher (proportional) */
    }

    /* Perks text mobile sizing */
    .perks-image-left .image-title {
        width: 355px; /* Proportional to mobile */
        margin-top: -20px;
        font-size: 99px; /* Reduced by 5% from 104px */
    }

    .text-content,
    .perks-content,
    .perks-content-left {
        padding: 40px 24px;
    }

    .statement-section,
    .welcome-section {
        padding: 40px 24px;
    }

    .join-title {
        font-size: 60px;
    }

    .join-title-container,
    .join-content-container {
        padding: 30px 24px;
    }

    .btn {
        font-size: 11px;
        padding: 14px 20px;
        letter-spacing: 4px;
    }
}

/* Mobile Portrait (375px) - Matches Figma Mobile Design */
@media (max-width: 480px) {
    .hero-header {
        padding: 40px 24px 0;
        min-height: 397px; /* Figma mobile height */
    }

    .disclaimer-text {
        font-size: 8px;
        max-width: 320px;
        padding: 0 10px;
    }

    .footer-disclaimer {
        font-size: 7px;
        max-width: 340px;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-title,
    .perk-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .section-text,
    .perk-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .statement-text,
    .join-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .join-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .welcome-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .image-title {
        font-size: 74px; /* Reduced by 5% from 78px */
    }

    .text-content,
    .perks-content,
    .perks-content-left {
        padding: 29px 48px;
    }

    .statement-section,
    .welcome-section {
        padding: 42px 44px;
    }

    .btn {
        font-size: 10px;
        padding: 14px 20px;
        letter-spacing: 3px;
        width: 274px; /* Figma mobile button width */
        height: 45px; /* Figma mobile button height */
    }

    .logo-container {
        width: 180px;
        height: auto;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 375px) {
    .hero-header {
        padding: 30px 20px 0;
    }

    .text-content,
    .perks-content,
    .perks-content-left {
        padding: 24px;
    }

    .statement-section,
    .welcome-section {
        padding: 32px 24px;
    }

    .btn {
        width: 100%;
        max-width: 274px;
    }
}

/* ========================================
   PARTNERS PAGE SPECIFIC STYLES
   ======================================== */
.partners-hero {
    background-image: url('../images/partners-header-bg.png');
}

.partners-logo {
    width: 423px;
    height: 343px;
}

.partners-title {
    font-size: 37px;
    text-transform: lowercase;
}

.partners-secondary {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0;
}

.partners-perks-cont {
    min-height: 750px;
}

.compliance-text {
    max-width: 934px;
}

.partners-callout {
    background-color: var(--color-bg-3);
    padding: 30px 36px 36px;
    width: 100%;
}

.callout-text {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 0.58;
    letter-spacing: -0.48px;
    color: var(--color-text-white);
}

.partners-join-content {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.partners-benefits {
    background: var(--color-bg-4);
    padding: 38px 36px;
    gap: 25px;
}

.benefits-list {
    list-style-type: disc;
    padding-left: 25.5px;
    margin-bottom: 25px;
}

.benefits-list li {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.52;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-description {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.51px;
    color: var(--color-text-primary);
    margin: 0 23px 25px;
}

.partners-benefits .btn {
    margin-left: 21px;
}

/* ========================================
   ENHANCED INTERACTIVITY STYLES
   ======================================== */

/* Smooth transitions for all interactive elements */
a, button, .btn {
    transition: all var(--transition-speed) ease;
}

/* Enhanced button interactions */
.btn:hover {
    transform: scale(1.05) !important;
}

.btn:active {
    transform: scale(0.98) !important;
}

/* Link hover effects - exclude buttons */
a:not(.btn):hover {
    opacity: 0.8;
}

a.btn:hover {
    opacity: 1;
}

/* Image containers - no hover effects */

/* Section hover effects */
.perk-item {
    transition: transform var(--transition-speed) ease;
}

.perk-item:hover {
    transform: translateX(10px);
}

/* Ticker interaction */
.ticker {
    cursor: default;
    user-select: none;
}

/* Focus states for accessibility */
*:focus {
    outline: 2px solid var(--color-accent-1);
    outline-offset: 2px;
}

.btn:focus {
    outline-offset: 4px;
}

/* Active navigation links */
nav a.active {
    color: var(--color-accent-1);
    font-weight: 600;
}

/* Scroll progress indicator (optional) */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-accent-1);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Loading state */
body:not(.fonts-loaded) {
    opacity: 0;
}

body.fonts-loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Selection styling */
::selection {
    background-color: var(--color-accent-1);
    color: white;
}

::-moz-selection {
    background-color: var(--color-accent-1);
    color: white;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0.5;
}

img:not([data-src]) {
    opacity: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .hero-header,
    .ticker,
    .btn {
        display: none;
    }

    body {
        color: black;
        background: white;
    }
}
