/* ==========================================================================
   Volley Marketing Website Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Primary */
    --burgundy: #7C2D36;
    --burgundy-dark: #5C1F28;
    --navy: #1A2B4C;
    --navy-light: #2A3B5C;
    --cream: #FAFAFA;
    --cream-dark: #F0EDE8;
    --gold: #C9A962;
    --gold-light: #D4B872;

    /* Colors - Text */
    --text-primary: #1A2B4C;
    --text-secondary: #5A6978;
    --text-light: #8A9AAA;
    --text-muted: #A0AEC0;
    --text-inverse: #FFFFFF;

    /* Colors - UI */
    --border-color: #E5E7EB;
    --shadow-color: rgba(26, 43, 76, 0.1);
    --overlay-color: rgba(26, 43, 76, 0.5);

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 var(--shadow-color);
    --shadow-md: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -2px var(--shadow-color);
    --shadow-lg: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
    --shadow-xl: 0 20px 25px -5px var(--shadow-color), 0 8px 10px -6px var(--shadow-color);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;
}

/* --------------------------------------------------------------------------
   CSS Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-20) 0;
}

.section--navy {
    background-color: var(--navy);
    color: var(--text-inverse);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
    color: var(--text-inverse);
}

.section--navy p {
    color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav--scrolled {
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--burgundy);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav__link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--burgundy);
}

.nav__cta {
    display: none;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--cream);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.nav__mobile.active {
    display: block;
}

.nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.nav__mobile-link {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--space-3) 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--burgundy);
    color: var(--text-inverse);
}

.btn--primary:hover {
    background-color: var(--burgundy-dark);
    transform: translateY(-1px);
}

.btn--secondary {
    background-color: var(--navy);
    color: var(--text-inverse);
}

.btn--secondary:hover {
    background-color: var(--navy-light);
    transform: translateY(-1px);
}

.btn--ghost {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn--ghost:hover {
    border-color: var(--text-primary);
}

.btn--gold {
    background-color: var(--gold);
    color: var(--navy);
}

.btn--gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-1px);
}

.btn--large {
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
}

.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* App Store Badge */
.app-store-badge {
    display: inline-block;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.app-store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.app-store-badge img {
    height: 48px;
    width: auto;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-20);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(124, 45, 54, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(26, 43, 76, 0.03) 0%, transparent 50%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--burgundy);
    color: var(--text-inverse);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: var(--radius-full);
}

.hero__title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero__android-note {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.hero__phone {
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 8px 20px -8px rgba(26, 43, 76, 0.15),
        0 15px 35px -15px rgba(26, 43, 76, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.phone-mockup__screen {
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 34px;
    overflow: hidden;
}

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

/* --------------------------------------------------------------------------
   Sports Grid Section
   -------------------------------------------------------------------------- */
.sports-grid {
    text-align: center;
    background-color: white;
}

.sports-grid__title {
    margin-bottom: var(--space-4);
}

.sports-grid__subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-10);
}

.sports-grid__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    max-width: 900px;
    margin: 0 auto;
}

/* Sport Pills */
.sport-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.sport-pill:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sport-pill--outline {
    background-color: transparent;
    border: 1px solid var(--burgundy);
    color: var(--burgundy);
}

.sport-pill--outline:hover {
    background-color: var(--burgundy);
    color: white;
}

.sport-pill__icon {
    font-size: var(--text-base);
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.features__title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.features__subtitle {
    text-align: center;
    font-size: var(--text-lg);
    margin-bottom: var(--space-12);
}

/* Feature Card */
.feature-card {
    display: block;
    background-color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(124, 45, 54, 0.08);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--burgundy);
}

.feature-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.feature-card__description {
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Ratings Section (Navy Background)
   -------------------------------------------------------------------------- */
.ratings__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.ratings__content {
    text-align: left;
}

.ratings__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.ratings__description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.ratings__list {
    list-style: none;
}

.ratings__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
}

.ratings__list li svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.ratings__link {
    margin-top: var(--space-6);
}

.ratings__visual {
    display: flex;
    justify-content: center;
}

/* Rating Card */
.rating-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    max-width: 320px;
}

.rating-card__avatar {
    width: 80px;
    height: 80px;
    background: var(--burgundy);
    border-radius: 50%;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: white;
}

.rating-card__name {
    font-size: var(--text-xl);
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-1);
}

.rating-card__rank {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.rating-card__scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.rating-card__score {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.rating-card__score-value {
    font-family: var(--font-serif);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: white;
}

.rating-card__score-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    text-align: center;
    background-color: white;
}

.pricing__title {
    margin-bottom: var(--space-4);
}

.pricing__subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-12);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Free Tier Highlight */
.free-highlight {
    background: var(--cream);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    margin-bottom: var(--space-10);
    text-align: left;
}

.free-highlight__title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.free-highlight__description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.free-highlight__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.free-highlight__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.free-highlight__feature svg {
    width: 20px;
    height: 20px;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 1px;
}

.free-highlight__feature strong {
    color: var(--navy);
}

/* Charter Member Upgrade */
.charter-upgrade {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: left;
}

.charter-upgrade__content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-12);
    align-items: start;
}

.charter-upgrade__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--gold);
    color: var(--navy);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-4);
}

.charter-upgrade__title {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-3);
}

.charter-upgrade__description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    max-width: 520px;
}

.charter-upgrade__features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3) var(--space-6);
}

.charter-upgrade__features li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding-left: var(--space-6);
    position: relative;
}

.charter-upgrade__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.coming-soon {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-style: italic;
    margin-left: var(--space-1);
}

/* Charter Price Card */
.charter-price-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.charter-price-card__monthly,
.charter-price-card__yearly {
    /* No margin - let divider handle spacing */
}

.charter-price-card__amount {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--navy);
}

.charter-price-card__period {
    font-size: var(--text-base);
    color: var(--text-light);
}

.charter-price-card__divider {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: var(--space-4) 0;
}

.charter-price-card__save {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    color: #8B7335;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-left: var(--space-2);
}

.charter-price-card__note {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-top: var(--space-5);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta {
    text-align: center;
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(124, 45, 54, 0.05) 0%, transparent 70%);
}

.cta__title {
    margin-bottom: var(--space-4);
}

.cta__subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--border-color);
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--space-16);
    align-items: start;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: var(--space-4);
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.footer__nav {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
}

.footer__nav-group h4 {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__nav-link {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer__nav-link:hover {
    color: var(--burgundy);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    border-top: 1px solid var(--border-color);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.footer__legal {
    display: flex;
    gap: var(--space-6);
}

.footer__legal-link {
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.footer__legal-link:hover {
    color: var(--burgundy);
}

/* --------------------------------------------------------------------------
   Sport Landing Page Specific
   -------------------------------------------------------------------------- */
.sport-hero {
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-16);
    text-align: center;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(124, 45, 54, 0.05) 0%, transparent 50%);
}

.sport-hero__icon {
    font-size: 4rem;
    margin-bottom: var(--space-6);
}

.sport-hero__title {
    margin-bottom: var(--space-4);
}

.sport-hero__subtitle {
    font-size: var(--text-xl);
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.sport-hero__cta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* --------------------------------------------------------------------------
   Feature Landing Pages
   -------------------------------------------------------------------------- */
.feature-hero {
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-16);
    text-align: center;
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(124, 45, 54, 0.05) 0%, transparent 50%);
}

.feature-hero__icon {
    font-size: 4rem;
    margin-bottom: var(--space-6);
}

.feature-hero__title {
    margin-bottom: var(--space-4);
}

.feature-hero__tagline {
    font-size: var(--text-2xl);
    color: var(--burgundy);
    margin-bottom: var(--space-4);
}

.feature-hero__description {
    font-size: var(--text-lg);
    max-width: 700px;
    margin: 0 auto var(--space-8);
    color: var(--text-secondary);
}

.feature-hero__cta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* Section Titles (Feature Pages) */
.section__title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.section__subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-12);
}

.section__title:last-child,
.feature-how-it-works .section__title,
.feature-benefits .section__title,
.feature-tiers .section__title,
.feature-other .section__title,
.feature-sports .section__title,
.feature-explainer .section__title,
.feature-comparison .section__title,
.feature-details .section__title,
.feature-sports-examples .section__title,
.feature-leaderboards .section__title,
.feature-use-cases .section__title {
    margin-bottom: var(--space-10);
}

/* How It Works */
.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.how-it-works__step {
    text-align: center;
}

.how-it-works__number {
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    margin: 0 auto var(--space-4);
}

.how-it-works__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.how-it-works__description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Benefits Grid */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.benefit-card__title {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.benefit-card__description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Feature Callout Box */
.feature-callout__box {
    background: var(--navy);
    color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.feature-callout__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: white;
}

.feature-callout__description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Sports Links */
.feature-sports__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

/* Feature Other Links */
.feature-other__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.feature-other__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-other__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-other__icon {
    font-size: 2rem;
}

.feature-other__name {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--navy);
}

/* Feature Tiers (Free vs Charter) */
.feature-tiers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 700px;
    margin: 0 auto;
}

.feature-tier {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.feature-tier--charter {
    border: 2px solid var(--gold);
}

.feature-tier__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
    text-align: center;
}

.feature-tier--charter .feature-tier__title {
    color: var(--gold);
}

.feature-tier__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-tier__list li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding-left: var(--space-6);
    position: relative;
}

.feature-tier__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-weight: 600;
}

.feature-tier--charter .feature-tier__list li::before {
    color: var(--gold);
}

/* Feature Explainer */
.feature-explainer__content {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.feature-explainer__content p {
    margin-bottom: var(--space-4);
}

.feature-explainer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin: var(--space-6) 0;
    padding-left: var(--space-4);
}

.feature-explainer__list li {
    padding-left: var(--space-4);
    border-left: 3px solid var(--burgundy);
}

/* Comparison Table */
.comparison-table {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--navy);
    color: white;
}

.comparison-table__header .comparison-table__col {
    padding: var(--space-4);
    font-weight: 600;
    text-align: center;
}

.comparison-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-bottom: 1px solid var(--cream);
}

.comparison-table__row:last-child {
    border-bottom: none;
}

.comparison-table__row--highlight {
    background: rgba(124, 45, 54, 0.05);
}

.comparison-table__col {
    padding: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Feature Details Grid */
.feature-details__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.feature-detail {
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.feature-detail__title {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.feature-detail__value {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: var(--space-1);
}

.feature-detail__description {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Leaderboard Types */
.leaderboard-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.leaderboard-type {
    background: white;
    border-radius: var(--radius-full);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

/* Feature Page Responsive */
@media (max-width: 768px) {
    .how-it-works__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

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

    .feature-other__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-tiers__grid {
        grid-template-columns: 1fr;
    }

    .feature-details__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table__col {
        padding: var(--space-3);
        font-size: var(--text-xs);
    }
}

/* Use Cases Section */
.use-cases {
    text-align: center;
}

.use-cases__title {
    margin-bottom: var(--space-4);
}

.use-cases__subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-10);
}

.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.use-case-card {
    background-color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.use-case-card__icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.use-case-card__title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.use-case-card__description {
    font-size: var(--text-sm);
}

/* Related Sports */
.related-sports {
    text-align: center;
}

.related-sports__title {
    margin-bottom: var(--space-8);
}

.related-sports__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.related-sport-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.related-sport-link:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   Legal Pages (Privacy, Terms)
   -------------------------------------------------------------------------- */
.legal-page {
    padding-top: calc(var(--nav-height) + var(--space-12));
    padding-bottom: var(--space-20);
}

.legal-page .container {
    max-width: 800px;
}

.legal-page__back {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: var(--space-8);
    transition: color var(--transition-fast);
}

.legal-page__back:hover {
    color: var(--burgundy-dark);
}

.legal-page__back svg {
    width: 16px;
    height: 16px;
}

.legal-page__title {
    margin-bottom: var(--space-4);
}

.legal-page__updated {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-10);
}

.legal-page__content h2 {
    font-size: var(--text-xl);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
}

.legal-page__content p {
    margin-bottom: var(--space-4);
}

.legal-page__content ul {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

.legal-page__content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

.legal-page__content li::marker {
    color: var(--burgundy);
}

.legal-page__content a {
    color: var(--burgundy);
    text-decoration: underline;
}

.legal-page__content a:hover {
    color: var(--burgundy-dark);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet (768px) */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    h1 {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    .section {
        padding: var(--space-16) 0;
    }

    /* Navigation */
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + var(--space-12));
        padding-bottom: var(--space-16);
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero__phone {
        order: -1;
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__cta {
        justify-content: center;
    }

    /* Features */
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ratings */
    .ratings__container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }

    .ratings__content {
        text-align: center;
    }

    .ratings__list li {
        justify-content: center;
    }

    /* Pricing */
    .free-highlight__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .charter-upgrade__content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .charter-upgrade__features {
        grid-template-columns: 1fr;
    }

    .charter-price-card {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Use Cases */
    .use-cases__grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: var(--space-10);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* Mobile (375px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }

    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    .section {
        padding: var(--space-12) 0;
    }

    /* Phone Mockup */
    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: var(--space-6);
    }

    /* Pricing */
    .free-highlight {
        padding: var(--space-6);
    }

    .free-highlight__grid {
        grid-template-columns: 1fr;
    }

    .charter-upgrade {
        padding: var(--space-6);
    }

    .charter-upgrade__title {
        font-size: var(--text-xl);
    }

    /* Footer */
    .footer__nav {
        flex-direction: column;
        gap: var(--space-8);
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .nav__cta {
        display: inline-flex;
    }
}
