/* ============================================
   Ocean Radios — SiriusXM-Inspired Design System
   Premium, Bold, Clean
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* SiriusXM-inspired Palette */
    --black: #000000;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e8e8e8;
    --mid-gray: #999999;
    --dark-gray: #333333;
    --blue-primary: #1d4ed8;
    --blue-vivid: #2563eb;
    --blue-bright: #3b82f6;
    --blue-electric: #0038ff;

    --bg-dark: #000000;
    --bg-light: #f5f5f5;
    --bg-card-light: #ffffff;
    --bg-blue: #0038ff;

    --text-dark: #111111;
    --text-light: #ffffff;
    --text-body: #444444;
    --text-muted-light: #888888;
    --text-muted-dark: rgba(255,255,255,0.6);

    --border-light: #e0e0e0;
    --border-dark: rgba(255,255,255,0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --radius-pill: 9999px;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
}

/* ============================================
   Navigation — SiriusXM Style
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border-dark);
    height: 64px;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    transition: opacity var(--transition-fast);
}

.logo:hover { opacity: 0.85; }

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    color: var(--white);
}

.logo-text .highlight {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted-dark);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all var(--transition) !important;
    border: 2px solid var(--white) !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   Buttons — Pill Shape (SiriusXM Style)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-ghost-white:hover {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--dark-gray);
}

.btn-ghost-dark:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-blue {
    background: var(--white);
    color: var(--blue-electric);
    border-color: var(--white);
}

.btn-blue:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-ghost-blue {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-ghost-blue:hover {
    background: var(--white);
    color: var(--blue-electric);
}

.btn-green {
    background: #10b981;
    color: var(--white);
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.phone-icon { font-size: 1.1em; }

/* ============================================
   Hero Section — SiriusXM Full-Width Dark
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 64px 0 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted-dark);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-caption {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ============================================
   Section — Light Background (like SiriusXM)
   ============================================ */
.section-light {
    background: var(--off-white);
    padding: 100px 0;
}

.section-dark {
    background: var(--black);
    padding: 100px 0;
    color: var(--white);
}

.section-blue {
    background: var(--blue-electric);
    padding: 100px 0;
    color: var(--white);
}

.section-white {
    background: var(--white);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-light .section-header p,
.section-white .section-header p {
    color: var(--text-body);
}

.section-dark .section-header p,
.section-blue .section-header p {
    color: var(--text-muted-dark);
}

/* ============================================
   Features Grid — Card Style
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    padding: 60px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    font-weight: 500;
}

/* ============================================
   How to Listen — Cards (SiriusXM style)
   ============================================ */
.listen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.listen-card {
    background: var(--bg-card-light);
    border-radius: var(--radius-xl);
    padding: 48px 32px 40px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}

.listen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
}

.listen-card-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.listen-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.listen-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA Section — Blue Block (SiriusXM plans style)
   ============================================ */
.cta-blue {
    text-align: center;
}

.cta-blue h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.cta-blue p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Independence Notice
   ============================================ */
.independence-notice {
    padding: 32px 0;
    background: var(--off-white);
}

.notice-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    border-left: 4px solid #eab308;
}

.notice-card p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
}

.notice-card strong {
    color: var(--text-dark);
}

/* ============================================
   Footer — SiriusXM Dark Style
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 0 90px; /* Increased bottom padding for floating call bar */
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity var(--transition-fast);
}

.footer-phone:hover { opacity: 0.7; }

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted-dark);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity var(--transition-fast);
}

.footer-links-group a:hover {
    opacity: 0.6;
}

.footer-bottom {
    padding-top: 32px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted-dark);
    font-size: 0.82rem;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.78rem !important;
}

/* ============================================
   Floating Call Button (Full Width Bottom Bar - SiriusXM Blue)
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 30px;
    background: var(--blue-electric);
    color: var(--white);
    border-radius: 30px 30px 0 0;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 -8px 30px rgba(0, 56, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: blue-pulse-bar 3s infinite;
}

.floating-call .phone-icon {
    font-size: 1.8rem;
}

.floating-call:hover {
    background: #002ccc;
    box-shadow: 0 -12px 40px rgba(0, 56, 255, 0.6);
}

@keyframes blue-pulse-bar {
    0% { box-shadow: 0 -8px 20px rgba(0, 56, 255, 0.3); }
    50% { box-shadow: 0 -16px 45px rgba(0, 56, 255, 0.6); }
    100% { box-shadow: 0 -8px 20px rgba(0, 56, 255, 0.3); }
}

/* ============================================
   Page Hero — Internal Pages
   ============================================ */
.page-hero {
    padding: 140px 0 70px;
    background: var(--black);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 16px;
}

.page-hero .page-subtitle {
    color: var(--text-muted-dark);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

.page-hero .page-date {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    margin-top: 12px;
}

/* ============================================
   Content Section — Legal / About Pages
   ============================================ */
.content-section {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px 56px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}

.content-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 48px 0 16px;
    color: var(--text-dark);
    line-height: 1.2;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.content-wrapper p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-wrapper li {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 8px;
    list-style: disc;
}

.content-wrapper ol li {
    list-style: decimal;
}

.content-wrapper strong {
    color: var(--text-dark);
    font-weight: 700;
}

.content-wrapper a {
    color: var(--blue-vivid);
    font-weight: 500;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Contact Highlight Box */
.contact-highlight {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 36px 0;
}

.contact-highlight h3 {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    font-size: 1.2rem !important;
}

.contact-highlight .contact-phones {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-highlight .contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-vivid);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
    transition: all var(--transition);
}

.contact-highlight .contact-phone-link:hover {
    color: var(--text-dark);
    transform: translateX(6px);
}

/* ============================================
   Channel Showcase (marquee)
   ============================================ */
.channels-marquee {
    overflow: hidden;
    padding: 40px 0;
    background: var(--off-white);
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.channel-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .features-grid,
    .listen-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 24px 20px;
        border-bottom: 1px solid var(--border-dark);
        gap: 0;
    }

    .nav-links.open { display: flex; }
    .nav-links li { height: auto; }
    .nav-links a { padding: 14px 16px; display: block; width: 100%; }
    .nav-cta { display: none !important; }
    .mobile-toggle { display: flex; }

    .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { min-height: auto; padding-top: 64px; }
    .hero-bg-image { width: 100%; opacity: 0.3; mask-image: none; -webkit-mask-image: none; }
    .hero-content { padding: 60px 0 80px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta-group { flex-direction: column; }

    .features-grid,
    .listen-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .section-light, .section-dark, .section-blue, .section-white { padding: 64px 0; }

    .cta-blue h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .content-wrapper { padding: 36px 24px; border-radius: var(--radius-lg); }

    .floating-call { padding: 20px 24px; font-size: 1.2rem; }
    .floating-call .phone-icon { font-size: 1.5rem; }

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

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
}