/* SpaceX IPO — Premium Stock Market Landing Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Roboto+Mono:wght@400;500;700&display=swap');

:root {
    --bg-color: #080910;
    --card-bg: rgba(16, 18, 26, 0.8);
    --primary-blue: #005288;
    --accent-blue: #00a2ff;
    --accent-green: #00e676;
    --accent-red: #ff4757;
    --text-main: #FFFFFF;
    --text-dim: #8A8FA8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-blue: linear-gradient(135deg, #004d8c 0%, #00a2ff 100%);
    --gradient-green: linear-gradient(135deg, #00664d 0%, #00e676 100%);
    --gold: #FFD700;
    --card-hover: rgba(0, 162, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   STAR BACKGROUND
=========================== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 1px, transparent 20px),
        radial-gradient(white, rgba(255,255,255,.08) 2px, transparent 40px);
    background-size: 650px 650px, 350px 350px, 500px 500px;
    background-position: 0 0, 80px 120px, 200px 350px;
    z-index: -1;
    opacity: 0.18;
    animation: starsRotate 120s linear infinite;
}

@keyframes starsRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* ===========================
   TICKER BAR
=========================== */
.ticker-bar {
    background: rgba(0, 162, 255, 0.08);
    border-bottom: 1px solid rgba(0, 162, 255, 0.2);
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 35s linear infinite;
    will-change: transform;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
}

.ticker-symbol {
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.ticker-price {
    color: var(--text-main);
    font-weight: 700;
}

.ticker-sep {
    color: rgba(255,255,255,0.15);
    padding: 0 4px;
}

.up { color: var(--accent-green) !important; }
.down { color: var(--accent-red) !important; }

/* ===========================
   HEADER
=========================== */
header {
    height: 72px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 9, 16, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    height: 100%;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    color: white;
    z-index: 10;
}

.logo span {
    color: var(--accent-blue);
    margin-left: 2px;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    min-width: 80px;
}

.header-right { justify-content: flex-end; }

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav ul li a:hover { color: var(--text-main); }

.buy-btn-small, .buy-btn-header {
    background: var(--gradient-blue);
    color: white;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.buy-btn-small:hover, .buy-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 162, 255, 0.4);
}

/* Login / Dashboard Header Button */
.login-header-btn {
    background: transparent;
    color: var(--text-dim);
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    white-space: nowrap;
}

.login-header-btn:hover {
    color: var(--accent-blue);
    border-color: rgba(0, 162, 255, 0.4);
    background: rgba(0, 162, 255, 0.08);
}

/* ===========================
   MOBILE MENU
=========================== */
.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--accent-blue);
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-backdrop.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0; left: -320px;
    width: 280px; height: 100%;
    background: #06070e;
    border-right: 1px solid var(--glass-border);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px;
    transition: left 0.4s cubic-bezier(0.77,0,0.175,1);
    box-shadow: 10px 0 40px rgba(0,0,0,0.6);
}

.mobile-menu.active { left: 0; }

.close-menu {
    position: absolute;
    top: 28px; right: 28px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dim);
    transition: color 0.3s;
}

.close-menu:hover { color: white; }

.mobile-menu ul { list-style: none; width: 100%; }

.mobile-menu ul li {
    margin: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
    margin-top: 28px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover { color: var(--accent-blue); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
    padding: 100px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    background-image:
        linear-gradient(to bottom, rgba(8,9,16,0.7) 0%, rgba(8,9,16,0.95) 100%),
        url('assets/hero.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(transparent, var(--bg-color));
}

.hero-wrapper { position: relative; z-index: 2; }

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Live Badge */
.ipo-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--accent-green);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.live-dot {
    width: 8px; height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4vw + 1rem, 4.2rem);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
    max-width: 820px;
    letter-spacing: -0.5px;
}

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

.hero-content > p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 680px;
    line-height: 1.7;
}

/* Stock Stats Row */
.stock-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
}

.stock-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
    flex: 1;
}

.stock-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

.stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.stat-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 11px;
    color: var(--text-dim);
}

/* Countdown */
.countdown-box {
    background: var(--card-bg);
    padding: 24px 36px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    display: block;
    margin: 0 auto 28px;
    width: fit-content;
    backdrop-filter: blur(10px);
    text-align: center;
}

.countdown {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.time-unit { text-align: center; }

.time-unit span {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

.time-unit label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

/* Progress Bar */
.progress-container {
    margin: 30px auto 0;
    position: relative;
}

.progress-track {
    background: rgba(255,255,255,0.04);
    height: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-dim);
}

.progress-pct {
    color: var(--accent-green);
    font-weight: 700;
}

.progress-bar {
    background: var(--gradient-blue);
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,162,255,0.5);
    position: relative;
    transition: width 1s ease;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 4px; height: 100%;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 8px white;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

.buy-btn {
    background: var(--gradient-blue);
    color: white;
    padding: 16px 44px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.5);
}

.outline-btn {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.outline-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(0,162,255,0.06);
}

.hero-disclaimer {
    margin-top: 22px;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.8;
}

.hero-disclaimer i {
    color: var(--accent-green);
    margin-right: 6px;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.8rem);
    margin: 16px 0 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

.benefit-badge {
    background: rgba(0, 162, 255, 0.1);
    color: var(--accent-blue);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===========================
   WHY GRID (About)
=========================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,162,255,0.3);
    background: var(--card-hover);
}

.why-icon {
    width: 52px; height: 52px;
    background: rgba(0,162,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--accent-blue);
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.why-metric {
    font-family: 'Roboto Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.why-metric span {
    font-size: 12px;
    margin-left: 6px;
}

/* ===========================
   TIMELINE
=========================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), rgba(0,162,255,0.1));
}

.timeline-item {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
    opacity: 0.95;
}

.timeline-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--text-dim);
    z-index: 1;
}

.timeline-item.completed .timeline-dot {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(0,230,118,0.08);
}

.timeline-item.active .timeline-dot {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(0,162,255,0.1);
}

.pulse-dot { animation: ringPulse 2s ease-in-out infinite; }

@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,162,255,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0,162,255,0); }
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px 28px;
    flex: 1;
    transition: border-color 0.3s;
}

.timeline-item.active .timeline-content {
    border-color: rgba(0,162,255,0.3);
}

.timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 10px 0 8px;
}

.timeline-content p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-date {
    font-size: 12px;
    color: var(--accent-blue);
    font-weight: 600;
    font-family: 'Roboto Mono', monospace;
}

.timeline-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.completed-badge { background: rgba(0,230,118,0.12); color: var(--accent-green); }
.active-badge { background: rgba(0,162,255,0.12); color: var(--accent-blue); }
.pending-badge { background: rgba(255,255,255,0.06); color: var(--text-dim); }
.ipo-badge { background: rgba(255,215,0,0.12); color: var(--gold); }

/* ===========================
   PACKAGES (Bonus Grid)
=========================== */
.bonus-section {
    padding: 60px 0;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.bonus-card {
    background: var(--card-bg);
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,162,255,0.35);
}

.bonus-card.gold-card {
    border-color: rgba(255,215,0,0.25);
    background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(16,18,26,0.9));
}

.bonus-card.gold-card:hover {
    border-color: rgba(255,215,0,0.5);
}

.bonus-card.popular::after {
    content: 'EN POPÜLER';
    position: absolute;
    top: 18px; right: -32px;
    background: var(--gradient-blue);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 44px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.package-icon {
    width: 60px; height: 60px;
    background: rgba(0,162,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-blue);
    margin: 0 auto 18px;
}

.gold-card .package-icon {
    background: rgba(255,215,0,0.1);
    color: var(--gold);
}

.bonus-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.bonus-card p {
    color: var(--text-dim);
    font-size: 13px;
    margin-bottom: 0;
}

.bonus-card .percentage {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
    margin: 18px 0 20px;
    font-family: 'Roboto Mono', monospace;
}

.package-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.package-features li:last-child { border-bottom: none; }

.package-features li i {
    color: var(--accent-blue);
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===========================
   FINANCIALS
=========================== */
.financials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.fin-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.fin-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,162,255,0.25);
}

.fin-chart-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    width: var(--bar-width, 50%);
    background: var(--gradient-blue);
    border-radius: 0 2px 0 0;
}

.fin-info h4 {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    font-weight: 600;
}

.fin-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.fin-change {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Analyst Section */
.analyst-section {
    text-align: center;
}

.analyst-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.analyst-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.analyst-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    transition: transform 0.3s, border-color 0.3s;
}

.analyst-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,162,255,0.25);
}

.analyst-firm {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analyst-target {
    font-family: 'Roboto Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.analyst-rating {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.analyst-rating.buy {
    background: rgba(0,230,118,0.12);
    color: var(--accent-green);
}

/* ===========================
   REFERRAL
=========================== */
.benefits {
    padding: 60px 0;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.benefit-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    margin-bottom: 16px;
    font-weight: 800;
}

.benefit-content p {
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 700px;
}

.referral-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.ref-step {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px 20px;
    max-width: 200px;
    text-align: center;
}

.ref-num {
    width: 44px; height: 44px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 14px;
}

.ref-step p {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0;
}

.ref-arrow {
    font-size: 24px;
    color: var(--accent-blue);
    font-weight: 300;
}

/* ===========================
   IPO FORM
=========================== */
.ipo-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.ipo-form {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
}

.form-group input,
.form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    width: 100%;
}

.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-blue);
    background: rgba(0,162,255,0.06);
}

.form-group select option {
    background: #12141c;
    color: white;
}

.form-submit-row {
    margin-top: 8px;
    text-align: center;
}

.form-submit-row .buy-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    padding: 15px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.form-success {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: 10px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.6;
}

/* ===========================
   FAQ
=========================== */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(0,162,255,0.3); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: white;
    transition: color 0.3s;
    user-select: none;
}

.faq-question:hover { color: var(--accent-blue); }

.faq-icon {
    color: var(--text-dim);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent-blue); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
}

/* ===========================
   FOOTER
=========================== */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 26px;
    margin-bottom: 18px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover { color: white; }

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

.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(0,162,255,0.1);
    border-color: rgba(0,162,255,0.3);
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.newsletter-group {
    display: flex;
    gap: 8px;
}

.newsletter-group input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-group input:focus { border-color: var(--accent-blue); }
.newsletter-group input::placeholder { color: rgba(255,255,255,0.2); }

.newsletter-btn {
    background: var(--gradient-blue);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,162,255,0.4);
}

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 12px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    line-height: 1.8;
}

/* ===========================
   SCROLL ANIMATION
=========================== */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 968px) {
    .container { padding: 0 16px; }

    .header-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
    }

    .desktop-nav { display: none; }
    .menu-btn { display: block !important; }

    header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
    }

    .hero { padding: 60px 0 50px; background-attachment: scroll; }

    .stock-stats-row {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stock-stat-divider {
        width: 100%; height: 1px;
    }

    .stock-stat { padding: 0; width: 100%; }

    .countdown { gap: 14px; }
    .time-unit span { font-size: 28px; }

    .form-row { grid-template-columns: 1fr; }

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

    .timeline::before { display: none; }

    .referral-steps { flex-direction: column; }
    .ref-arrow { transform: rotate(90deg); }

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

    .hero-cta-group { flex-direction: column; align-items: center; }
    .buy-btn, .outline-btn { width: 100%; max-width: 340px; text-align: center; justify-content: center; }

    .analyst-grid { flex-direction: column; align-items: center; }
}

/* ===========================
   PRICE CHART SECTION
=========================== */
.price-chart-section {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 28px;
    background: rgba(10, 12, 22, 0.85);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 20px;
    padding: 24px 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 40px rgba(0, 162, 255, 0.08), 0 0 0 1px rgba(255,255,255,0.04) inset;
    text-align: left;
}

/* Top header row */
.pcs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.pcs-badge {
    background: rgba(0, 162, 255, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 162, 255, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pcs-live {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: var(--accent-green);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Price + Stats row */
.pcs-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pcs-now {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcs-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pcs-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.pcs-change {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
}

/* Mini stats */
.pcs-stats-mini {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 4px;
}

.pcs-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    gap: 3px;
}

.pcs-mini-divider {
    width: 1px;
    height: 32px;
    background: var(--glass-border);
}

.pcs-mini-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.pcs-mini-val {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Chart canvas wrapper */
.pcs-chart-wrap {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.04);
}

/* Explain box */
.pcs-explain {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(0, 162, 255, 0.05);
    border: 1px solid rgba(0, 162, 255, 0.15);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.pcs-explain-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0,162,255,0.2), rgba(0,162,255,0.05));
    border: 1px solid rgba(0,162,255,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.pcs-explain-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pcs-explain-text p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 14px;
}

.pcs-explain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcs-explain-list li {
    font-size: 13px;
    color: #ccd6f6;
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.4;
}

.pcs-explain-list li i.fa-check-circle { color: var(--accent-green); }
.pcs-explain-list li i.fa-clock { color: var(--accent-blue); }
.pcs-explain-list li i.fa-fire { color: #ff6b35; }

/* Urgency strip */
.pcs-urgency {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #ffb399;
    line-height: 1.5;
}

.pcs-urgency i {
    color: #ff6b35;
    font-size: 16px;
    flex-shrink: 0;
}

.pcs-urgency strong { color: #ff6b35; }

/* Responsive */
@media (max-width: 600px) {
    .price-chart-section { padding: 18px 16px; }
    .pcs-value { font-size: 24px; }
    .pcs-price-row { flex-direction: column; align-items: flex-start; }
    .pcs-stats-mini { width: 100%; justify-content: space-around; }
    .pcs-mini-stat { padding: 0 8px; }
    .pcs-explain { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col { text-align: center; }
    .social-links { justify-content: center; }
    .hero-content h1 { font-size: 2rem; }
    .countdown { gap: 10px; }
    .time-unit span { font-size: 24px; }
    .ipo-form { padding: 24px 18px; }
    .timeline-item { flex-direction: column; }

    .ticker-bar { height: 36px; }

    .logo { font-size: 18px; letter-spacing: 1.5px; }

    .buy-btn-header {
        padding: 7px 12px;
        font-size: 11px;
    }
}

@media (max-width: 375px) {
    .logo { font-size: 15px; letter-spacing: 1px; }
    .buy-btn-header { padding: 6px 10px; font-size: 10px; }
    .stat-value { font-size: 22px; }
}

/* Landing page period buttons */
.lp-period-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #8895a7;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}
.lp-period-btn:hover { border-color: #00a2ff; color: #00a2ff; }
.lp-period-btn.active { background: #00a2ff; border-color: #00a2ff; color: #fff; }
