/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066FF;
    --electric-purple: #7B2FF7;
    --vibrant-orange: #FF6B35;
    --emerald-green: #00D9A3;
    --coral-red: #FF4757;
    --neon-cyan: #00F5FF;
    --dark-bg: #0A0E27;
    --darker-bg: #000000;
    --light-bg: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #5A5A6E;
    --text-light: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Inter', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 56px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple), var(--vibrant-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Layout Components */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
}

.section-content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.section-half {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

/* Color Variations */
.bg-black {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
}

.bg-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 47, 247, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.bg-grey {
    background: var(--light-bg);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--primary-blue) 25%, var(--electric-purple) 50%, var(--vibrant-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 10s ease infinite;
    background-size: 300% 300%;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Text Sections */
.text-section {
    animation: fadeIn 0.6s ease-out;
}

.text-section h2 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.text-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-purple));
    border-radius: 2px;
}

.text-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.text-section p strong {
    color: var(--text-primary);
    font-weight: 600;
}

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

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.highlight-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 102, 255, 0.1);
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-purple), var(--emerald-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:nth-child(1)::before {
    background: linear-gradient(90deg, var(--vibrant-orange), var(--coral-red));
}

.highlight-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Call to Action */
.cta {
    text-align: center;
}

.cta p {
    font-size: 32px;
    margin-bottom: 48px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.btn {
    display: inline-block;
    padding: 18px 56px;
    font-size: 17px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple));
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.35);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--electric-purple), var(--emerald-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.5);
}

.btn:hover::before {
    opacity: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-black {
    background: linear-gradient(135deg, var(--vibrant-orange), var(--coral-red));
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.35);
}

.btn-black:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--electric-purple));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Press Release Styling */
.press-release {
    font-size: 17px;
    line-height: 1.8;
    background: var(--card-bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(123, 47, 247, 0.1);
}

.press-release h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.press-release h3:first-child {
    margin-top: 0;
}

.press-release strong {
    font-weight: 700;
    color: var(--text-primary);
}

.press-release blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    background: var(--light-bg);
    border-left: 5px solid var(--electric-purple);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-primary);
}

.press-release hr {
    margin: 48px 0;
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), var(--electric-purple), transparent);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-link {
    padding: 14px 28px;
    background: var(--card-bg);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 102, 255, 0.15);
    color: var(--text-primary);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-purple));
    color: var(--text-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section {
        padding: 80px 24px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-indicator-text {
        font-size: 12px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .highlight-item {
        padding: 32px;
    }

    .cta p {
        font-size: 26px;
    }

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

    .social-links {
        gap: 12px;
    }

    .social-link {
        display: block;
        text-align: center;
        width: 100%;
    }

    .press-release {
        padding: 32px 24px;
    }

    .footer {
        padding: 48px 20px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-half {
        padding: 60px 20px;
    }

    .highlight-item {
        padding: 28px;
    }

    .cta p {
        font-size: 22px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .press-release {
        padding: 28px 20px;
        font-size: 16px;
    }
}

/* Additional Visual Elements */
.section.bg-white .section-content,
.section.bg-grey .section-content {
    position: relative;
}

/* Override text colors for dark backgrounds */
.bg-black .text-section p,
.bg-black .text-section h2 {
    color: rgba(255, 255, 255, 0.85);
}

.bg-black .text-section a {
    color: var(--text-light);
}

/* Smooth scrolling behavior */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* Selection color */
::selection {
    background: var(--primary-blue);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-blue);
    color: var(--text-light);
}

/* Loading state optimization */
body {
    opacity: 0;
    animation: pageLoad 0.5s ease-out forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}
