/* ============================================
   FORTUNE 300 SCHOOLS – Main Stylesheet
   ============================================ */

/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-deep: #050a18;
    --bg-primary: #0a1128;
    --bg-elevated: #0f1a35;
    --bg-card: #111d3a;
    --bg-card-hover: #162244;
    --gold: #d4a843;
    --gold-light: #f0cc6b;
    --gold-dark: #b08d2e;
    --gold-glow: rgba(212, 168, 67, 0.15);
    --accent: #4f8cff;
    --accent-soft: rgba(79, 140, 255, 0.12);
    --teal: #34d399;
    --teal-soft: rgba(52, 211, 153, 0.12);
    --coral: #f87171;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --text-primary: rgba(255,255,255,0.95);
    --text-secondary: rgba(255,255,255,0.65);
    --text-muted: rgba(255,255,255,0.4);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --glass-border-hover: rgba(255,255,255,0.15);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ========== NOISE TEXTURE OVERLAY ========== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(5, 10, 24, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

.nav-logo-text {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.nav-logo-text .gold { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--gold-light);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--white); background: var(--gold-glow); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    box-shadow: 0 0 24px rgba(212, 168, 67, 0.35);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 20px;
    height: 14px;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 6px; }
.hamburger span:nth-child(3) { top: 12px; }

.mobile-toggle.active .hamburger span:nth-child(1) { transform: rotate(45deg); top: 6px; }
.mobile-toggle.active .hamburger span:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger span:nth-child(3) { transform: rotate(-45deg); top: 6px; }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 10, 24, 0.4) 0%,
        rgba(5, 10, 24, 0.6) 30%,
        rgba(5, 10, 24, 0.85) 60%,
        rgba(5, 10, 24, 1) 100%
    );
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 600px 400px at 20% 40%, rgba(212, 168, 67, 0.08), transparent),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(79, 140, 255, 0.06), transparent),
        radial-gradient(ellipse 400px 300px at 50% 80%, rgba(52, 211, 153, 0.05), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 120px 28px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold-light);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero h1 .serif-italic { font-style: italic; color: var(--gold); }
.hero h1 .sans { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

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

.hero-stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
}

.btn-primary:hover::after { opacity: 1; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-muted);
}

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

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
    padding: 48px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-primary);
}

.trust-label {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: rgba(212, 168, 67, 0.25);
    background: rgba(212, 168, 67, 0.04);
}

.trust-item img { height: 40px; width: auto; border-radius: 6px; }

.trust-item-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.trust-item-desc {
    font-size: 0.7rem;
    color: var(--gold-light);
    line-height: 1.3;
}

.trust-desc {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.trust-aligned {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-aligned-item {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-aligned-item .dot {
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ========== SECTION COMMON ========== */
.section { padding: 120px 0; }
.section-dark { background: var(--bg-primary); }
.section-darker { background: var(--bg-deep); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

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

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== GLASS CARD BASE ========== */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ========== WHY INNOVATIVE ========== */
.why-innovative-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.why-left {
    position: sticky;
    top: 120px;
}

.why-headline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.why-headline .gold-serif {
    color: var(--gold);
    font-style: italic;
}

.why-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.why-feature-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    background: rgba(212, 168, 67, 0.04);
    transform: translateX(4px);
}

.why-feature-card:hover::before {
    opacity: 1;
}

.why-feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-feature-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.why-feature-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Why Big Number */
.why-big-number {
    margin: 32px 0 28px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.why-big-num {
    font-family: 'Instrument Serif', serif;
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 400;
}

.why-big-suffix {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    color: var(--gold-light);
    line-height: 1;
}

.why-big-label {
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Why Quote */
.why-quote {
    position: relative;
}

.why-quote-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px 64px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(212, 168, 67, 0.02));
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
}

.why-quote-mark {
    font-family: 'Instrument Serif', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.why-quote-mark.right {
    transform: rotate(180deg);
}

.why-quote-inner p {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
    max-width: 600px;
}

/* ========== RESPONSIVE: WHY SECTION ========== */
@media (max-width: 1024px) {
    .why-innovative-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-left { position: static; }
}

@media (max-width: 768px) {
    .why-big-num { font-size: 4.5rem; }
    .why-big-suffix { font-size: 3rem; }
    .why-right { grid-template-columns: 1fr; }
    .why-quote-inner { padding: 32px 24px; }
    .why-quote-mark { font-size: 3rem; }
}

@media (max-width: 480px) {
    .why-headline { font-size: 2.4rem; }
    .why-big-num { font-size: 3.5rem; }
    .why-big-suffix { font-size: 2.5rem; }
    .why-quote-inner { padding: 24px 16px; gap: 12px; }
}

/* ========== BENEFITS & RECOGNITION (MERGED) ========== */
.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.benefits-tab {
    padding: 12px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.benefits-tab:hover {
    color: var(--text-secondary);
    border-color: var(--glass-border-hover);
}

.benefits-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    border-color: var(--gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.benefits-card {
    position: relative;
    padding: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.benefits-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.benefits-card.hidden {
    display: none;
}

.benefits-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefits-card-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--gold-glow);
    color: var(--gold);
    margin-bottom: 16px;
}

.benefits-card-badge.recognition-badge {
    background: var(--teal-soft);
    color: var(--teal);
}

.benefits-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefits-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-card-trophy {
    border-color: rgba(52, 211, 153, 0.1);
}

.benefits-card-trophy::before {
    background: linear-gradient(90deg, var(--teal), #059669);
}

.benefits-card-trophy:hover {
    border-color: rgba(52, 211, 153, 0.25);
}

.benefits-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 32px 48px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

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

.benefits-stat-num {
    font-family: 'Instrument Serif', serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
}

.benefits-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .benefits-tabs { flex-wrap: wrap; gap: 6px; }
    .benefits-tab { padding: 10px 20px; font-size: 0.82rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-stats { flex-direction: column; gap: 24px; padding: 28px; }
    .benefits-stat-divider { width: 60px; height: 1px; }
}

/* ========== GLOBAL LAUNCH ========== */
.launch-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.launch-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.launch-header .highlight { color: var(--gold); }



.launch-card {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.launch-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.launch-left { position: relative; z-index: 2; display: flex; justify-content: center; }

.launch-book-img {
    width: auto;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.launch-book-img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 24px 64px rgba(212, 168, 67, 0.2);
}

.launch-right { position: relative; z-index: 2; }

.launch-event {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.launch-event-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.launch-event-location {
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.launch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.launch-event-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 12px;
}

.launch-event-desc .highlight { color: var(--gold-light); }

.launch-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid var(--glass-border);
}



/* ========== WHY THIS MATTERS ========== */
.matters-col {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.matters-col-header {
    margin-bottom: 48px;
}

.matters-col-header h3 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.matters-col-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
    justify-content: center;
}

.matters-list { list-style: none; }

.matters-list-group { flex: 1; min-width: 280px; }

.matters-list-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.matters-list-title.red { color: var(--coral); }
.matters-list-title.green { color: var(--teal); }

.matters-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.matters-list li:hover { background: var(--glass); }

.matters-list .cross { color: var(--coral); font-size: 1.1rem; }
.matters-list .tick { color: var(--teal); font-size: 1.1rem; }
.matters-list li.old { color: var(--text-muted); }

/* ========== ABOUT SQII + METER (MERGED) ========== */
.sqii-meter-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 48px;
    align-items: stretch;
}

/* Left Panel */
.sqii-meter-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sqii-info-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sqii-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4), transparent);
}

.sqii-info-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.sqii-info-points {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sqii-info-num {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.sqii-info-slash {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Tier Display in Left Panel */
.sqii-tier-display {
    text-align: center;
    padding: 24px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sqii-tier-icon {
    font-size: 2.8rem;
    margin-bottom: 8px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.sqii-tier-display:hover .sqii-tier-icon {
    transform: scale(1.1);
}

.sqii-tier-range {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.sqii-tier-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.sqii-tier-sub {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 600;
    min-height: 1.2em;
}

.sqii-info-bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.sqii-info-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 3px;
    width: 0%;
    transition: width 0.15s ease;
}


/* Full-width info box below meter */
.sqii-full-box {
    margin-top: 48px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sqii-full-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.4), transparent);
}

.sqii-full-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sqii-benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.sqii-benefit-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.sqii-benefit-pill:hover {
    border-color: rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.06);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.sqii-benefit-pill .icon { color: var(--gold); }

/* Right Panel - Meter */
.sqii-meter-right {
    width: 100%;
}

/* Inline Score Display above meter */
.meter-score-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    padding-left: 4px;
}

.meter-score-num {
    font-family: 'Instrument Serif', serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    transition: color 0.2s ease;
}

.meter-score-slash {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .sqii-meter-layout { grid-template-columns: 1fr; }
    .sqii-meter-left { flex-direction: row; gap: 32px; align-items: stretch; }

    .sqii-info-card { flex: 1; }
}

@media (max-width: 768px) {
    .sqii-meter-left { flex-direction: column; align-items: center; }
    .sqii-info-header { flex-direction: column; }
}

@media (max-width: 480px) {
    .sqii-benefits { grid-template-columns: 1fr; }
    .sqii-info-num { font-size: 2.2rem; }
}

/* ========== WHO CAN PARTICIPATE SINGLE ROW ========== */
.apply-tags-single-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    padding: 4px 0 12px;
}



.apply-tag-row-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: default;
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.apply-tag-row-item:hover {
    background: var(--gold-glow);
    border-color: rgba(212, 168, 67, 0.3);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ========== INTERACTIVE METER (MERGED) ========== */
/* Category Colors */
:root {
    --cat-1: #6366f1;
    --cat-2: #8b5cf6;
    --cat-3: #14b8a6;
    --cat-4: #f59e0b;
    --cat-5: #ec4899;
}

/* Category Points Below Meter */
.meter-cat-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.meter-cat-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.meter-cat-point::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--cat-color);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.meter-cat-point.active {
    border-color: var(--cat-color);
    background: var(--cat-color-soft);
}

.meter-cat-point.active::before {
    opacity: 1;
}

.meter-cat-point:hover {
    border-color: var(--cat-color);
    transform: translateX(4px);
}

.cat-point-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--cat-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meter-cat-point.active .cat-point-dot {
    transform: scale(1.3);
    box-shadow: 0 0 16px var(--cat-color);
}

.cat-point-info {
    flex: 1;
    min-width: 0;
}

.cat-point-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
    transition: color var(--transition);
}

.meter-cat-point.active .cat-point-name {
    color: var(--text-primary);
}

.cat-point-pts {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

/* The Meter Track */
.meter-track {
    position: relative;
    height: 18px;
    background: var(--bg-elevated);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    margin-bottom: 8px;
    background-image: linear-gradient(90deg,
        rgba(99,102,241,0.12) 0%, rgba(99,102,241,0.12) 27%,
        rgba(139,92,246,0.12) 27%, rgba(139,92,246,0.12) 49%,
        rgba(20,184,166,0.12) 49%, rgba(20,184,166,0.12) 76%,
        rgba(245,158,11,0.12) 76%, rgba(245,158,11,0.12) 95%,
        rgba(236,72,153,0.12) 95%, rgba(236,72,153,0.12) 100%);
}

.meter-fill {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    border-radius: 10px;
    transition: width 0.05s linear;
    background: linear-gradient(90deg, var(--cat-1) 0%, var(--cat-1) 27%, var(--cat-2) 27%, var(--cat-2) 49%, var(--cat-3) 49%, var(--cat-3) 76%, var(--cat-4) 76%, var(--cat-4) 95%, var(--cat-5) 95%, var(--cat-5) 100%);
}

.meter-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(212, 168, 67, 0.4);
    cursor: grab;
    z-index: 10;
    transition: box-shadow 0.2s ease;
    outline: none;
}

.meter-thumb:active { cursor: grabbing; }

.meter-thumb:hover, .meter-thumb:focus {
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.6);
}

.meter-thumb-inner {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.3;
}

.meter-thumb-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    pointer-events: none;
}

.meter-thumb-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--glass-border);
}

/* Tier Markers on Track */
.meter-tier-marker {
    position: absolute;
    top: -6px;
    bottom: -6px;
    width: 2px;
    background: var(--glass-border);
    z-index: 5;
}

.meter-tier-marker span {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

/* Tier Labels */
.meter-tiers {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}

.meter-tier {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0.5;
}

.meter-tier.active {
    opacity: 1;
    transform: translateY(-4px);
}

.meter-tier.active[data-tier="bronze"] {
    border-color: rgba(217, 119, 6, 0.4);
    background: rgba(217, 119, 6, 0.08);
}
.meter-tier.active[data-tier="silver"] {
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(148, 163, 184, 0.08);
}
.meter-tier.active[data-tier="gold"] {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.08);
}
.meter-tier.active[data-tier="platinum"] {
    border-color: rgba(125, 211, 252, 0.4);
    background: rgba(125, 211, 252, 0.08);
}

.meter-tier-badge {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.meter-tier-range {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.meter-tier-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.meter-tier-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ========== APPLICATION PROCESS ========== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.25);
}

.step-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========== TIMELINE ========== */
.timeline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.timeline-card {
    text-align: center;
    padding: 44px 32px;
}

.timeline-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 14px;
}

.timeline-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========== PRICING ========== */
.pricing-horizontal {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 48px;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 2px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--radius-xl);
    padding: 52px 56px;
    position: relative;
    overflow: hidden;
}

.pricing-horizontal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.pricing-horizontal::after {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06), transparent 60%);
    border-radius: 50%;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 67, 0.3), transparent);
    align-self: stretch;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-amount {
    font-family: 'Instrument Serif', serif;
    font-size: 3.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 1.4rem;
    vertical-align: super;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-includes {
    list-style: none;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes .check { color: var(--teal); font-weight: 700; }

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-horizontal { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
    .pricing-divider { width: 60px; height: 1px; align-self: center; background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent); }
}

@media (max-width: 480px) {
    .pricing-horizontal { padding: 28px 20px; }
    .pricing-amount { font-size: 2.8rem; }
}

/* ========== FAQ ========== */
.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-cat-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--glass-border-hover); }

.faq-item.active {
    border-color: rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.04);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 50%, rgba(212, 168, 67, 0.06), transparent),
        radial-gradient(ellipse 500px 400px at 70% 50%, rgba(79, 140, 255, 0.04), transparent);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.15;
}

.final-cta h2 .gold { color: var(--gold); }

.final-cta > .final-cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* CTA Action Buttons */
.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.5);
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
    border-color: rgba(212, 168, 67, 0.35);
    background: rgba(212, 168, 67, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-cta-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-cta-icon {
    transform: translateX(4px);
}

.btn-cta-secondary:hover .btn-cta-icon {
    transform: scale(1.15);
}

.btn-cta-primary:focus-visible, .btn-cta-secondary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-cta-label {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-cta-sub {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 500;
    margin-top: 2px;
}

/* CTA Trust Indicators */
.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.final-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.final-cta-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
    animation: pulse-dot 2s infinite;
}

/* ========== FOOTER ========== */
.footer {
    padding: 56px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 28px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    border-radius: 6px;
}

.footer-logo-text {
    font-weight: 800;
    font-size: 0.95rem;
}

.footer-logo-text .gold { color: var(--gold); }

.footer-org-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 420px;
}

.footer-sdc-link {
    color: var(--gold-light);
    transition: var(--transition);
}

.footer-sdc-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-social-link:hover {
    color: var(--gold-light);
    border-color: rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.08);
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--gold-light);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 32px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gold-light);
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--white); text-decoration: underline; }

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s 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; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .launch-card { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
    .timeline-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .faq-columns { grid-template-columns: 1fr; gap: 32px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(5, 10, 24, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: flex; }

    .section { padding: 80px 0; }
    .hero-stats { gap: 24px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .final-cta-actions { flex-direction: column; align-items: center; }
    .final-cta-trust { flex-direction: column; align-items: center; gap: 12px; }

    /* Footer responsive */
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Meter responsive */
    .meter-cat-points { grid-template-columns: 1fr; }
    .meter-tier-marker span { display: none; }
    .meter-tiers { flex-wrap: wrap; gap: 6px; }
    .meter-tier { flex: 1 1 calc(50% - 6px); min-width: 120px; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .process-steps { grid-template-columns: 1fr; }
    .launch-card { padding: 24px; }
    .matters-col-lists { flex-direction: column; }
    .matters-list-group { min-width: 100%; }

    .sqii-benefits { grid-template-columns: 1fr; }

    .trust-logos { flex-direction: column; }
    .apply-tags-single-row { gap: 10px; }
    .apply-tag-row-item { padding: 10px 18px; font-size: 0.8rem; }

    /* Meter responsive */
    .meter-cat-points { gap: 8px; }
    .meter-tier { flex: 1 1 100%; }
    .meter-tier-marker { display: none; }
    .meter-thumb { width: 28px; height: 28px; }
}