/* ========================================
   GACHA GALAXY LANDING PAGE STYLES
   ======================================== */

/* CSS Variables */
:root {
    --landing-bg: #0a0a0f;
    --landing-bg-secondary: #0f0f18;
    --landing-card-bg: #12121a;
    --landing-card-border: #1a1a2e;
    --landing-text: #ffffff;
    --landing-text-secondary: #a0a0b0;
    --landing-text-muted: #6b6b7b;
    --landing-purple: #8b5cf6;
    --landing-purple-dark: #6d28d9;
    --landing-cyan: #00d9ff;
    --landing-blue: #3b82f6;
    --landing-glow-purple: rgba(139, 92, 246, 0.3);
    --landing-glow-cyan: rgba(0, 217, 255, 0.3);
    --landing-gradient: linear-gradient(135deg, var(--landing-purple) 0%, var(--landing-cyan) 100%);
}

/* Base Reset for Landing Page */
.landing-page {
    background-color: var(--landing-bg);
    color: var(--landing-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
}

.landing-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.landing-logo-img {
    height: 120px;
    width: auto;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing-nav-link {
    color: var(--landing-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.landing-nav-link:hover {
    color: var(--landing-text);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem 4rem;
    position: relative;
    background: var(--landing-bg);
    overflow: hidden;
}

/* Perspective Grid Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -30%) perspective(500px) rotateX(60deg);
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.55) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.6) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

/* Corner Brackets */
.hero-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.hero-corner::before,
.hero-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
}

/* Top Left Corner */
.hero-corner.top-left {
    top: 20px;
    left: 20px;
}
.hero-corner.top-left::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
}
.hero-corner.top-left::after {
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
}

/* Top Right Corner */
.hero-corner.top-right {
    top: 20px;
    right: 20px;
}
.hero-corner.top-right::before {
    top: 0;
    right: 0;
    width: 60px;
    height: 4px;
}
.hero-corner.top-right::after {
    top: 0;
    right: 0;
    width: 4px;
    height: 60px;
}

/* Bottom Left Corner */
.hero-corner.bottom-left {
    bottom: 20px;
    left: 20px;
}
.hero-corner.bottom-left::before {
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
}
.hero-corner.bottom-left::after {
    bottom: 0;
    left: 0;
    width: 4px;
    height: 60px;
}

/* Bottom Right Corner */
.hero-corner.bottom-right {
    bottom: 20px;
    right: 20px;
}
.hero-corner.bottom-right::before {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
}
.hero-corner.bottom-right::after {
    bottom: 0;
    right: 0;
    width: 4px;
    height: 60px;
}

/* Top bar accent */
.hero-top-bar {
    position: absolute;
    top: 0;
    left: 100px;
    right: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a855f7 20%, #7c3aed 50%, #a855f7 80%, transparent);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--landing-purple);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', monospace;
}

.hero-title .text-white {
    color: #ffffff;
}

.hero-title .text-blue {
    color: #60a5fa;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--landing-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Search Box */
.hero-search {
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    margin: 2rem auto 1.5rem;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.hero-search:focus-within {
    border-color: #60a5fa;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem 1rem;
    color: var(--landing-text);
    font-size: 1rem;
    outline: none;
}

.hero-search input::placeholder {
    color: #6b7280;
}

.hero-search-btn {
    background: #3b82f6;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-search-btn:hover {
    background: #2563eb;
}

.hero-search-btn svg {
    width: 20px;
    height: 20px;
}

/* CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--landing-text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--landing-card-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--landing-purple);
    background: rgba(139, 92, 246, 0.1);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.landing-section {
    padding: 6rem 4rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--landing-text-muted);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .text-light {
    color: #e5e7eb;
}

.section-title .gradient-text {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   THREE PILLARS SECTION
   ======================================== */
.pillars-section {
    background: var(--landing-bg-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--landing-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--landing-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.pillar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.pillar-image-wrapper {
    margin-bottom: 1.5rem;
}

.pillar-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-purple);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pillar-description {
    font-size: 0.9rem;
    color: var(--landing-text-secondary);
    line-height: 1.6;
}

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-content {
    padding-right: 2rem;
}

.welcome-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--landing-cyan);
    margin-bottom: 1rem;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-title .gradient-text {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.125rem;
    color: var(--landing-text-secondary);
    margin-bottom: 2rem;
}

.welcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.welcome-tag {
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--landing-purple);
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.welcome-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(0, 217, 255, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--landing-purple);
    font-size: 1.25rem;
    font-weight: 500;
}

/* ========================================
   EXTEND INTELLIGENCE SECTION
   ======================================== */
.extend-section {
    background: var(--landing-bg-secondary);
}

.extend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.extend-content {
    padding-right: 2rem;
}

.extend-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--landing-cyan);
    margin-bottom: 1rem;
}

.extend-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.extend-title .gradient-text {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.extend-description {
    color: var(--landing-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.extend-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.extend-feature:hover {
    border-color: var(--landing-purple);
}

.extend-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-purple);
    flex-shrink: 0;
}

.extend-feature-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.compatible-with {
    margin-top: 2rem;
}

.compatible-label {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.compatible-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.compatible-logos img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.compatible-logos img:hover {
    opacity: 1;
}

/* ========================================
   PLATFORM SHOWCASE SECTION
   ======================================== */
.showcase-section {
    text-align: center;
}

.showcase-video {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--landing-card-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-video img {
    width: 100%;
    display: block;
}

.showcase-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #12121a 0%, #1a1a2e 100%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--landing-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px var(--landing-glow-purple);
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    color: white;
    margin-left: 4px;
}

/* ========================================
   TOKEN SECTION ($GG)
   ======================================== */
.token-section {
    background: var(--landing-bg-secondary);
}

.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.token-content {
    padding-right: 2rem;
}

.token-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--landing-cyan);
    margin-bottom: 1.5rem;
}

.token-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.token-title .gradient-text {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-description {
    color: var(--landing-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.token-feature {
    display: flex;
    gap: 1rem;
}

.token-feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--landing-purple);
}

.token-feature-desc {
    font-size: 0.9rem;
    color: var(--landing-text-secondary);
}

.token-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-visual {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.token-coin {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--landing-purple) 0%, var(--landing-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 20px 60px var(--landing-glow-purple);
    animation: float 3s ease-in-out infinite;
}

.token-coin-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px var(--landing-glow-purple));
}

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

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    text-align: center;
}

.partners-label {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--landing-text-muted);
    margin-bottom: 0.5rem;
}

.partners-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.partners-title .gradient-text {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-subtitle {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(2);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.partner-logo img {
    max-height: 40px;
    max-width: 120px;
}

.partners-image,
.investors-image {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-image img,
.investors-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   INVESTORS SECTION
   ======================================== */
.investors-section {
    background: var(--landing-bg-secondary);
    text-align: center;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.investor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(2);
}

.investor-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.investor-logo img {
    max-height: 50px;
    max-width: 150px;
}

/* ========================================
   FOOTER
   ======================================== */
.landing-footer {
    padding: 4rem;
    border-top: 1px solid var(--landing-card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--landing-text-secondary);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--landing-text);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--landing-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--landing-purple);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-card-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--landing-purple);
    border-color: var(--landing-purple);
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--landing-card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--landing-text-muted);
}

/* ========================================
   GLOW CARD EFFECT
   ======================================== */
.glow-card {
    position: relative;
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-card-border);
    border-radius: 20px;
    overflow: hidden;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--landing-purple), transparent, var(--landing-cyan));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .landing-section {
        padding: 4rem 2rem;
    }

    .pillars-grid {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .landing-header {
        padding: 1rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.08em;
    }

    .landing-header {
        top: 80px;
    }

    .hero-corner {
        width: 50px;
        height: 50px;
    }

    .hero-corner::before {
        width: 40px !important;
    }

    .hero-corner::after {
        height: 40px !important;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .welcome-section,
    .extend-grid,
    .token-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .welcome-content,
    .extend-content,
    .token-content {
        padding-right: 0;
        text-align: center;
    }

    .welcome-tags {
        justify-content: center;
    }

    .extend-features {
        align-items: center;
    }

    .extend-feature {
        max-width: 400px;
        width: 100%;
    }

    .compatible-logos {
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .landing-header {
        flex-direction: column;
        gap: 1rem;
        top: 20px;
        padding: 1rem 1.5rem;
    }

    .landing-logo-img {
        height: 40px;
    }

    .landing-nav {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .landing-nav .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero-section {
        padding: 10rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: 0.05em;
    }

    .hero-corner {
        display: none;
    }

    .hero-top-bar {
        display: none;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .hero-search {
        flex-direction: row;
        padding: 0.25rem;
    }

    .hero-search svg:first-child {
        display: none;
    }

    .hero-search input {
        width: 100%;
    }

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

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

    .footer-brand {
        max-width: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .welcome-title,
    .extend-title,
    .token-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
