 {} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --gold: #D4960A; --gold-light: #F5C842; --gold-dark: #8B6200; --deep: #0D0D0D; --dark: #141414; --card-bg: #1A1A1A; --text: #F0EAD6; --muted: #9A927E; --accent: #C8860A; } html { scroll-behavior: smooth; } body { background: var(--deep); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; overflow-x: hidden; } /* NOISE TEXTURE OVERLAY */ body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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: 0; opacity: 0.4; } .container { max-width: 760px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; } /* TICKER */ .ticker { background: var(--gold); color: var(--deep); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; padding: 10px 0; text-align: center; text-transform: uppercase; overflow: hidden; } .ticker span { display: inline-block; animation: ticker 18s linear infinite; white-space: nowrap; } @keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } } /* HERO */ .hero { padding: 72px 0 56px; text-align: center; position: relative; } .eyebrow { display: inline-block; background: rgba(212,150,10,0.15); border: 1px solid rgba(212,150,10,0.4); color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin-bottom: 28px; } h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 10px; } h1 em { font-style: italic; color: var(--gold-light); display: block; } .subtitle { font-size: clamp(1.05rem, 2.5vw, 1.2rem); color: var(--muted); max-width: 560px; margin: 20px auto 0; } /* PROOF BAR */ .proof-bar { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin: 48px 0 0; padding: 28px 0; border-top: 1px solid rgba(212,150,10,0.15); border-bottom: 1px solid rgba(212,150,10,0.15); } .proof-item { text-align: center; } .proof-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; } .proof-label { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; } /* STORY SECTION */ .section { padding: 64px 0; } .section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; } h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.2; color: #fff; margin-bottom: 20px; } .highlight-box { background: rgba(212,150,10,0.08); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 32px 0; font-size: 1.05rem; color: #e8dfc0; } .highlight-box strong { color: var(--gold-light); } /* GOLD RUSH ANALOGY */ .analogy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; } @media (max-width: 540px) { .analogy-grid { grid-template-columns: 1fr; } } .analogy-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px 20px; position: relative; overflow: hidden; } .analogy-card.loser::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #6B2B2B; } .analogy-card.winner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); } .analogy-card .card-icon { font-size: 28px; margin-bottom: 12px; } .analogy-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; } .analogy-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; } .analogy-card.winner h3 { color: var(--gold-light); } /* WHAT YOU'LL DISCOVER */ .discovers { padding: 56px 0; } .discovers h2 { margin-bottom: 32px; } .discover-list { list-style: none; display: flex; flex-direction: column; gap: 14px; } .discover-list li { display: flex; align-items: flex-start; gap: 14px; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 16px 20px; transition: border-color 0.2s; } .discover-list li:hover { border-color: rgba(212,150,10,0.35); } .discover-check { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: rgba(212,150,10,0.15); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 2px; } .discover-check svg { width: 11px; height: 11px; stroke: var(--gold-light); fill: none; stroke-width: 2.5; } .discover-text { font-size: 0.95rem; color: #d8ccb0; line-height: 1.5; } .discover-text strong { color: #fff; } /* LEO PROFILE */ .profile-block { background: var(--card-bg); border: 1px solid rgba(212,150,10,0.2); border-radius: 16px; padding: 32px 28px; display: flex; gap: 24px; align-items: flex-start; margin: 48px 0; } @media (max-width: 540px) { .profile-block { flex-direction: column; } } .avatar { width: 72px; height: 72px; min-width: 72px; border-radius: 50%; background: linear-gradient(135deg, #8B6200, #D4960A); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--deep); } .profile-text h3 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 6px; } .profile-text .tag { display: inline-block; background: rgba(212,150,10,0.12); border: 1px solid rgba(212,150,10,0.3); color: var(--gold-light); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; } .profile-text p { font-size: 0.92rem; color: var(--muted); } /* COUNTDOWN */ .countdown-section { text-align: center; padding: 56px 0 0; } .countdown-label { font-size: 13px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; } .countdown { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; } .cd-unit { text-align: center; } .cd-number { background: var(--card-bg); border: 1px solid rgba(212,150,10,0.3); border-radius: 8px; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; } .cd-label { font-size: 11px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; } /* CTA */ .cta-section { text-align: center; padding: 56px 0 80px; } .cta-section h2 { margin-bottom: 12px; } .cta-section p { color: var(--muted); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; } .cta-btn { display: inline-block; background: linear-gradient(135deg, #C8860A 0%, #F5C842 50%, #C8860A 100%); background-size: 200% auto; color: var(--deep); font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; text-decoration: none; padding: 20px 52px; border-radius: 100px; letter-spacing: 0.02em; transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 0 40px rgba(212,150,10,0.35); position: relative; overflow: hidden; cursor: pointer; border: none; } .cta-btn:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 0 60px rgba(212,150,10,0.5); } .cta-btn:active { transform: translateY(0); } .cta-pulse { position: absolute; inset: 0; border-radius: 100px; animation: pulse 2s ease-out infinite; background: rgba(212,150,10,0.25); pointer-events: none; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } } .guarantee { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; font-size: 0.88rem; color: var(--muted); } .guarantee svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; } /* DISCLAIMER */ .disclaimer { border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0; text-align: center; font-size: 0.8rem; color: rgba(154,146,126,0.6); line-height: 1.6; } /* 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); } .delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }
