*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.preloader-active {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    transform: translateX(0);
    transition: transform 0.9s ease, opacity 0.8s ease, visibility 0.8s ease;
}

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

.preloader-logo {
    opacity: 0;
    animation: logoFade 1.4s ease forwards;
    filter: drop-shadow(0 8px 40px rgba(34, 107, 255, 0.35));
}

body.preloader-hidden .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
}

@keyframes logoFade {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    60% { opacity: 1; transform: translateY(0) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo img {
    height: 32px;
    width: auto;
}

.header-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.header-back:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: #050a13;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 33%) 0%, rgb(0 0 0 / 51%) 60%, rgb(5 10 19) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(33, 105, 255, 0.25) 0%, transparent 75%);
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video video,
.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

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

.ticker-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgb(74 74 74 / 0%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 14px;
    backdrop-filter: blur(20px);
    font-weight: 600;
}

.ticker-badge span {
    color: var(--text-gray);
}

.ticker-badge strong {
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 27px;
    color: #ffffff;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 23px;
}

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

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

.btn-outline {
    background: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

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

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.stat-value span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    animation: badgePop 0.4s ease-out;
}

.stat-value span.up {
    background: #0a6d4c;
    color: #fff;
    box-shadow: 0 2px 6px rgba(16,185,129,.35);
}

.stat-value span.down {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 2px 6px rgba(239,68,68,.35);
}

@keyframes badgePop {
    0%   { opacity:0; transform:scale(.7); }
    60%  { transform:scale(1.08); }
    100% { opacity:1; transform:scale(1); }
}

.stat-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 23px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 23px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(33, 105, 255, 0.12), transparent 60%), var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 60px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

.about-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 18px;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 36px;
}

.about-metric {
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
}

.about-metric strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.about-metric span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-gray);
}

.about-highlights {
    display: grid;
    gap: 14px;
}

.about-highlight {
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(33, 105, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-highlight strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.about-highlight span {
    color: var(--text-gray);
    font-size: 13px;
}

.about-panel {
    border-radius: 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

.about-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(33,105,255,0.12), transparent 50%);
    pointer-events: none;
}

.about-panel img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 24px;
}

.about-panel h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.about-checklist {
    display: grid;
    gap: 12px;
}

.about-checklist li {
    display: flex;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.about-checklist li::before {
    content: '\2713';
    color: var(--primary);
}

/* IPO Details */
.ipo-details {
    padding: 100px 0;
    background: var(--bg-card);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

.detail-card {
    background: rgba(255,255,255,0.02);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    border-radius: 23px;
}

.detail-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.detail-card h3 {
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.detail-card .value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
}

.detail-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 12px;
}

/* Timeline */
.timeline {
    padding: 100px 0;
    background: var(--bg-dark);
}

.timeline-items {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timeline-date {
    min-width: 120px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Articles Section */
.articles {
    padding: 100px 0;
    background: var(--bg-dark);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

.article-card {
    display: flex;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: hidden;
}

.article-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.article-number {
    min-width: 80px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.article-content {
    padding: 24px;
    flex: 1;
}

.article-date {
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.article-card:hover .article-title {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--text-white);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img {
    height: 28px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-text {
    width: 100%;
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.disclaimer {
    background: rgba(255,255,255,0.03);
    padding: 24px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.floating-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.floating-cta .pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@media (max-width: 600px) {
    .floating-cta {
        left: 16px;
        right: 16px;
        bottom: 16px;
        justify-content: center;
    }
}

/* Desktop timeline enhancement */
@media (min-width: 769px) {
    .timeline-items {
        position: relative;
        padding-left: 40px;
    }

    .timeline-items::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--primary) 0%, rgba(23, 69, 198, 0.2) 100%);
    }

    .timeline-item {
        position: relative;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -44px;
        top: 36px;
        width: 10px;
        height: 10px;
        background: var(--primary);
        border-radius: 50%;
        box-shadow: 0 0 0 4px var(--bg-dark);
    }
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Hero animations on load */
.hero .ticker-badge,
.hero h1,
.hero-subtitle,
.hero .cta-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero .ticker-badge { animation-delay: 0.2s; }
.hero h1 { animation-delay: 0.4s; }
.hero-subtitle { animation-delay: 0.6s; }
.hero .cta-group { animation-delay: 0.8s; }

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-header {
    padding: 40px 40px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.step-dot {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--primary);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 14px;
}

.modal-body {
    padding: 32px 40px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group label span {
    color: #fff;
}

.experience-options {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.experience-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: border 0.3s ease, background 0.3s ease;
}

.experience-option input {
    accent-color: var(--primary);
}

.experience-option span {
    font-size: 14px;
    color: var(--text-light);
}

.experience-option:hover,
.experience-option input:checked + span,
.experience-option input:checked ~ span {
    border-color: var(--primary);
    color: var(--text-white);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(56, 98, 216, 0.2);
}

.form-input::placeholder {
    color: var(--text-gray);
}

.form-input.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 8px;
}

.phone-input-group {
    display: flex;
    gap: 12px;
}

.phone-prefix {
    width: 120px;
    flex-shrink: 0;
}

.phone-prefix select {
    width: 100%;
    padding: 14px 12px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.phone-prefix select:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-number {
    flex: 1;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.modal-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    font-family: inherit;
}

.modal-btn:hover {
    background: var(--primary-dark);
}

.modal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

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

.success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-light);
    line-height: 1.6;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.error-alert {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    padding: 16px;
    margin-bottom: 24px;
    display: none;
    align-items: flex-start;
    gap: 12px;
}

.error-alert.show {
    display: flex;
}

.error-alert-icon {
    color: #ff4444;
    font-size: 20px;
    line-height: 1;
}

.error-alert-content {
    flex: 1;
}

.error-alert-title {
    color: #ff4444;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.error-alert-message {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .modal-header,
    .modal-body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .phone-input-group {
        flex-direction: column;
    }

    .phone-prefix {
        width: 100%;
    }
}

/* Tooltip styles */
.tooltip-trigger {
    position: relative;
    cursor: help;
    display: inline;
}

.tooltip-trigger::after {
    content: attr(data-tooltip-desc);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: linear-gradient(145deg, #101112 0%, #161617 100%);
    color: var(--text-gray);
    padding: 14px 18px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    width: 280px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    pointer-events: none;
}

.tooltip-trigger:hover::before,
.tooltip-trigger:hover::after,
.tooltip-trigger.active::before,
.tooltip-trigger.active::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

@media (max-width: 768px) {
    .tooltip-trigger::before,
    .tooltip-trigger::after {
        left: 0;
        transform: translateX(0) scale(0.95);
    }
    .tooltip-trigger:hover::before,
    .tooltip-trigger:hover::after,
    .tooltip-trigger.active::before,
    .tooltip-trigger.active::after {
        transform: translateX(0) scale(1);
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .logo img {
        height: 24px;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .ticker-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 12px;
    }

    .video-section {
        padding: 40px 0 20px 0;
    }

    .about {
        padding: 20px 0 40px 0;
    }

    .about-grid {
        gap: 20px;
    }

    .about-image {
        margin-bottom: -20px;
    }

    .ipo-details {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .timeline {
        padding: 60px 0;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
        position: relative;
        padding-left: 24px;
        border-left: 2px solid var(--primary);
        border-bottom: none;
    }

    .timeline-date {
        min-width: auto;
        font-size: 12px;
    }

    .timeline-date::before {
        content: '';
        position: absolute;
        left: -6px;
        top: 26px;
        width: 10px;
        height: 10px;
        background: var(--primary);
        border-radius: 50%;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .articles {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 640px) {
    .stat-value {
        font-size: 32px;
        flex-direction: column-reverse;
        gap: 6px;
    }
}
