/* ===================================
   K9Crypto - Main Stylesheet
   =================================== */

/* CSS Custom Properties */
:root {
    --color-navy: #1a2744;
    --color-navy-light: #243352;
    --color-navy-dark: #0f1825;
    --color-gold: #c9a86c;
    --color-gold-light: #d4b87a;
    --color-green: #2d8f4e;
    --color-green-light: #3aa85f;
    --color-red: #8b2d2d;
    --color-white: #ffffff;
    --color-light: #f5f5f5;
    --color-gray: #6b7280;
    --color-gray-light: #9ca3af;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(201, 168, 108, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-navy);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: all var(--transition-normal);
    opacity: 0.9;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-navy-dark) !important;
    padding: 10px 24px;
    border-radius: var(--border-radius);
}

.nav-cta::after {
    display: none;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line:last-child {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 12px auto 0;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(8px);
    }
    60% {
        transform: rotate(45deg) translateY(4px);
    }
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 120px 0;
    background: var(--color-light);
    position: relative;
    overflow: hidden;
}

/* ===================================
   Connect Wallet Section
   =================================== */
.connect-wallet {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wallet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wallet-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wallet-logo {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.wallet-logo svg {
    width: 100%;
    height: 100%;
}

.wallet-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wallet-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.wallet-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.wallet-preview {
    display: flex;
    justify-content: center;
}

.wallet-frame {
    background: white;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 400px;
}

.wallet-frame img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

@media (max-width: 900px) {
    .wallet-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wallet-preview {
        order: -1;
    }

    .wallet-frame {
        max-width: 320px;
    }
}

/* ===================================
   Avatar NFT Section
   =================================== */
.avatar-section {
    padding: 6rem 0;
    background: var(--color-navy);
    overflow: hidden;
}

.avatar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.avatar-text {
    color: white;
}

.avatar-text .section-title {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.avatar-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.avatar-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.avatar-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: white;
}

.avatar-icon {
    font-size: 1.5rem;
}

.avatar-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dog-mugshot {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dog-mugshot:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.dog-mugshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .avatar-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .avatar-gallery {
        grid-template-columns: repeat(3, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .avatar-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Start Trading Section
   =================================== */
.trading-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.trading-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.trading-info .section-title {
    margin-bottom: 0.5rem;
}

.trading-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.trading-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trading-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.trading-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.trading-feature-icon svg {
    width: 24px;
    height: 24px;
}

.trading-feature-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.trading-feature-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.trading-preview {
    display: flex;
    justify-content: center;
}

.dashboard-showcase {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

.dashboard-showcase .dashboard-header {
    background: #2d2d44;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.dashboard-showcase .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-showcase .dot.red { background: #ff5f56; }
.dashboard-showcase .dot.yellow { background: #ffbd2e; }
.dashboard-showcase .dot.green { background: #27ca40; }

.dashboard-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .trading-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trading-preview {
        order: -1;
    }

    .dashboard-showcase {
        max-width: 500px;
    }
}

/* ===================================
   Train Your Agent Section
   =================================== */
.agent-section {
    padding: 6rem 0;
    background: var(--color-navy);
}

.agent-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.agent-preview {
    display: flex;
    justify-content: center;
}

.agent-showcase {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

.agent-showcase .agent-header {
    background: #2d2d44;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.agent-showcase .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.agent-showcase .dot.red { background: #ff5f56; }
.agent-showcase .dot.yellow { background: #ffbd2e; }
.agent-showcase .dot.green { background: #27ca40; }

.agent-showcase img {
    width: 100%;
    height: auto;
    display: block;
}

.agent-info {
    color: white;
}

.agent-info .section-title {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.agent-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.agent-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agent-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.agent-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.agent-feature-icon svg {
    width: 24px;
    height: 24px;
}

.agent-feature-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.agent-feature-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .agent-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .agent-preview {
        order: -1;
    }

    .agent-showcase {
        max-width: 500px;
    }
}

/* ===================================
   Leagues Section
   =================================== */
.leagues-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leagues-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.leagues-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold) 0%, #e0c48a 100%);
    color: var(--color-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.leagues-info .section-title {
    margin-bottom: 0.5rem;
}

.leagues-description {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.leagues-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.league-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.league-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.league-feature-icon svg {
    width: 24px;
    height: 24px;
}

.league-feature-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.league-feature-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.leagues-cta {
    font-size: 1.05rem;
    color: var(--color-navy);
    font-weight: 500;
    font-style: italic;
}

.leagues-graphic {
    display: flex;
    justify-content: center;
}

.trophy-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.podium {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.podium-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.podium-avatar {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.podium-place.first .podium-avatar {
    font-size: 3.5rem;
}

.podium-bar {
    width: 80px;
    background: linear-gradient(180deg, var(--color-gold) 0%, #a8894d 100%);
    border-radius: 8px 8px 0 0;
}

.podium-place.first .podium-bar {
    height: 120px;
    width: 100px;
}

.podium-place.second .podium-bar {
    height: 90px;
}

.podium-place.third .podium-bar {
    height: 60px;
}

.podium-place span {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.9rem;
}

.leaderboard-preview {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.leaderboard-row {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.leaderboard-row:nth-child(1) {
    background: rgba(201, 168, 108, 0.15);
}

.leaderboard-row:nth-child(2) {
    background: rgba(192, 192, 192, 0.15);
}

.leaderboard-row:nth-child(3) {
    background: rgba(205, 127, 50, 0.1);
}

.leaderboard-row.faded {
    opacity: 0.5;
}

.leaderboard-row .rank {
    width: 24px;
    height: 24px;
    background: var(--color-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.75rem;
}

.leaderboard-row .name {
    flex: 1;
    font-weight: 500;
    color: var(--color-navy);
}

.leaderboard-row .score {
    color: var(--color-green);
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .leagues-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leagues-graphic {
        order: -1;
    }

    .podium-place.first .podium-bar {
        height: 100px;
        width: 80px;
    }

    .podium-place.second .podium-bar {
        height: 70px;
        width: 70px;
    }

    .podium-place.third .podium-bar {
        height: 50px;
        width: 70px;
    }
}

/* ===================================
   Meet The Pack Section
   =================================== */
.the-pack {
    padding: 120px 0;
    background: var(--color-navy);
    overflow: hidden;
}

.pack-header .section-title {
    color: var(--color-white);
}

.pack-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Team Hero Image */
.pack-hero {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pack-hero img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.pack-hero:hover img {
    transform: scale(1.02);
}

/* Character Cards Grid */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Individual Character Card */
.character-card {
    background: linear-gradient(145deg, rgba(36, 51, 82, 0.9) 0%, rgba(26, 39, 68, 0.95) 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.character-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-green) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.character-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 108, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.character-card:hover::before {
    opacity: 1;
}

/* Featured Card (Wells) */
.character-card.featured {
    grid-column: span 1;
    border-color: var(--color-gold);
    background: linear-gradient(145deg, rgba(201, 168, 108, 0.15) 0%, rgba(26, 39, 68, 0.95) 100%);
}

.character-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

/* Card Badge */
.card-badge {
    display: inline-block;
    background: rgba(201, 168, 108, 0.2);
    color: var(--color-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.character-card.featured .card-badge {
    background: var(--color-gold);
    color: var(--color-navy-dark);
}

/* Card Avatar */
.card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.character-card.featured .card-avatar {
    width: 120px;
    height: 120px;
    border-width: 4px;
}

/* Card Name */
.card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

/* Card Breed */
.card-breed {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 16px;
}

/* Card Description */
.card-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Card Quote */
.card-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding-left: 16px;
    border-left: 3px solid var(--color-gold);
    margin-bottom: 20px;
}

/* Card Skills */
.card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background: rgba(45, 143, 78, 0.2);
    border: 1px solid rgba(45, 143, 78, 0.4);
    color: var(--color-green-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 32px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-md);
    }
    50% {
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-navy-dark);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    font-style: italic;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
    .pack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .character-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--color-navy);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .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);
    }

    .hero {
        padding-bottom: 60px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }

    .steps-container::before {
        left: 30px;
        transform: none;
    }

    .step,
    .step:nth-child(odd),
    .step:nth-child(even) {
        grid-column: 1;
        text-align: left;
        flex-direction: row;
    }

    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .character-card.featured {
        grid-column: span 1;
    }
}

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

    .features,
    .how-it-works,
    .the-pack,
    .cta-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
