@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=Michroma&display=swap');

:root {
    --bg: #000000;
    --bg-warm: #08060A;
    --bg-card: rgba(255,255,255,0.03);
    --gold: #D4AF37;
    --gold-light: #CFB97D;
    --gold-dark: #94814C;
    --gold-gradient: linear-gradient(270deg, #94814C 0%, #CFB97D 100%);
    --white: #ffffff;
    --text: rgba(255,255,255,0.5);
    --text-muted: rgba(255,255,255,0.25);
    --border: rgba(255,255,255,0.06);
    --border-gold: rgba(212,175,55,0.2);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.3px;
}
h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.3;
}
p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.7;
}
small {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
}

/* ===== GOLD TEXT ===== */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-solid { color: var(--gold); }

/* ===== NAV ===== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
}
.nav-bar.nav-visible {
    transform: translateY(0);
}
@media(min-width:769px) {
    .nav-bar { transform: translateY(0); }
}
.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav-logo {
    font-family: 'Michroma', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: rgba(255,255,255,0.8); }
.nav-links .nav-login {
    color: rgba(255,255,255,0.4);
}
.nav-cta {
    border: 1px solid rgba(212,175,55,0.2) !important;
    padding: 6px 20px !important;
    color: #CFB97D !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400 !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: all 0.35s var(--ease) !important;
    border-radius: 50px !important;
}
.nav-cta:hover {
    border-color: #D4AF37 !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s var(--ease);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    border: 1px solid rgba(212,175,55,0.2);
    background: transparent;
    color: #CFB97D;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
}
.btn-primary:hover {
    border-color: #D4AF37;
}
.btn-large {
    padding: 12px 40px;
    font-size: 12px;
    letter-spacing: 3px;
}
.btn-small {
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 2px;
}

/* ===== SECTIONS ===== */
section { padding: 120px 0; }
.section-dark { background: var(--bg); }
.section-warm { background: var(--bg-warm); }

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.section-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 60px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    margin-top: -40px;
    position: relative;
}
.hero-brand {
    font-family: 'Michroma', sans-serif;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-slogan {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}
.hero-stat {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-stat-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

/* ===== CARDS ===== */
.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s var(--ease);
    text-align: center;
}
.card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(212,175,55,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.04);
}
.card-emoji {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}
.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.12);
}
.card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #CFB97D;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.card:hover .card-icon {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.25);
}
.card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 6px;
}
.card-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== STATS ===== */
.stat-number {
    font-family: 'Michroma', sans-serif;
    font-size: 56px;
    font-weight: 400;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 12px;
}
.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 48px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease);
}
.pricing-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(212,175,55,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.04);
}
.pricing-card.popular {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 0 40px rgba(212,175,55,0.06);
}
.pricing-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
}
.pricing-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}
.pricing-price {
    font-family: 'Michroma', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}
.pricing-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
}
.pricing-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 32px;
    min-height: 40px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}
.pricing-features li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.pricing-features li::before {
    content: '—';
    margin-right: 12px;
    color: var(--gold);
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
.step-number {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
}
.step-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}
.step-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 120px 0;
}
.cta-title {
    font-family: 'Michroma', sans-serif;
    font-size: 32px;
    font-weight: 400;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}
.cta-form {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: 460px;
    margin: 0 auto 16px auto;
}
.cta-input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border);
    border-right: none;
    padding: 14px 20px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    outline: none;
    border-radius: 0;
}
.cta-input::placeholder {
    color: var(--text-muted);
}
.cta-input:focus {
    border-color: var(--border-gold);
}
.cta-note {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===== COMPARE COLUMNS ===== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 60px;
}
.compare-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px;
    border-radius: 20px;
}
.compare-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}
.compare-card ul li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.compare-card.loss ul li {
    color: rgba(255,80,80,0.5);
}
.compare-card.loss ul li::before {
    content: '✗';
    margin-right: 12px;
    color: rgba(255,80,80,0.4);
}
.compare-card.win ul li {
    color: var(--gold-light);
}
.compare-card.win ul li::before {
    content: '—';
    margin-right: 12px;
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-brand {
    font-family: 'Michroma', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-links a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== LEGAL LINKS ROW ===== */
.legal-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 32px 0;
    flex-wrap: wrap;
}
.legal-row a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}
.legal-row a:hover { color: var(--text); }

/* ===== SHOWCASE SECTIONS (Apple-style) ===== */
.showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.showcase-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}
.showcase-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.showcase-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 44px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.showcase-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.showcase-btn {
    display: inline-block;
    border: 1px solid rgba(212,175,55,0.2);
    background: transparent;
    color: #CFB97D;
    padding: 12px 40px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
}
.showcase-btn:hover {
    border-color: #D4AF37;
}

/* Showcase Visual — animated background art */
.showcase-visual {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
}

/* --- Income: floating coins --- */
.vis-income { background: radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.15) 0%, transparent 60%); }
.vis-income::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    animation: pulseRing 4s ease-in-out infinite;
}
.vis-income::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
    animation: pulseRing 4s ease-in-out infinite 1s;
}
@keyframes pulseRing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* --- Markets: chart line --- */
.vis-markets { background: radial-gradient(ellipse at 50% 60%, rgba(212,175,55,0.12) 0%, transparent 55%); }
.vis-markets::before {
    content: '';
    position: absolute;
    bottom: 25%; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}
.vis-markets .chart-line {
    position: absolute;
    bottom: 25%; left: 10%;
    width: 80%; height: 30%;
}
.vis-markets .chart-line svg {
    width: 100%; height: 100%;
    stroke: #CFB97D;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}
.showcase.visible .vis-markets .chart-line svg {
    animation: drawLine 3s ease forwards;
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* --- Compete: podium bars --- */
.vis-compete { background: radial-gradient(ellipse at 50% 70%, rgba(212,175,55,0.1) 0%, transparent 50%); }
.vis-compete .podium {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.vis-compete .podium-bar {
    width: 40px;
    background: linear-gradient(180deg, rgba(212,175,55,0.4), rgba(212,175,55,0.1));
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: growBar 1.5s ease forwards;
    opacity: 0;
}
.showcase.visible .vis-compete .podium-bar { opacity: 1; }
.vis-compete .podium-bar:nth-child(1) { height: 80px; animation-delay: 0.3s; }
.vis-compete .podium-bar:nth-child(2) { height: 120px; animation-delay: 0.1s; }
.vis-compete .podium-bar:nth-child(3) { height: 60px; animation-delay: 0.5s; }
@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* --- Grow: expanding circles --- */
.vis-grow { background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.1) 0%, transparent 50%); }
.vis-grow .grow-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.2);
}
.vis-grow .grow-ring:nth-child(1) { width: 120px; height: 120px; animation: expandRing 6s ease-in-out infinite; }
.vis-grow .grow-ring:nth-child(2) { width: 220px; height: 220px; animation: expandRing 6s ease-in-out infinite 1s; }
.vis-grow .grow-ring:nth-child(3) { width: 340px; height: 340px; animation: expandRing 6s ease-in-out infinite 2s; }
.vis-grow .grow-ring:nth-child(4) { width: 480px; height: 480px; animation: expandRing 6s ease-in-out infinite 3s; }
@keyframes expandRing {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

/* --- Business: grid dots --- */
.vis-business { background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 50%); }
.vis-business .dot-grid {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
}
.vis-business .dot-grid span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(212,175,55,0.4);
    animation: dotPulse 3s ease-in-out infinite;
}
.vis-business .dot-grid span:nth-child(odd) { animation-delay: 0.5s; }
.vis-business .dot-grid span:nth-child(3n) { animation-delay: 1s; }
@keyframes dotPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* --- Start: rocket trail --- */
.vis-start { background: radial-gradient(ellipse at 50% 60%, rgba(212,175,55,0.12) 0%, transparent 50%); }
.vis-start::before {
    content: '';
    position: absolute;
    bottom: 30%; left: 50%;
    width: 2px; height: 0;
    background: linear-gradient(180deg, rgba(212,175,55,0.5), transparent);
    transform: translateX(-50%);
}
.showcase.visible .vis-start::before {
    animation: rocketTrail 2s ease forwards;
}
@keyframes rocketTrail {
    to { height: 40%; bottom: 30%; }
}

/* Showcase detail panel (hidden, revealed on click) */
.showcase-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease;
    padding: 0 0;
}
.showcase-detail.open {
    max-height: 2000px;
    padding: 60px 0 80px 0;
}
.showcase-detail .container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.showcase-detail.open .container {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes rise {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.rise {
    animation: rise 1s var(--ease) forwards;
    opacity: 0;
}
.rise-delay-1 { animation-delay: 0.3s; }
.rise-delay-2 { animation-delay: 0.6s; }
.rise-delay-3 { animation-delay: 0.9s; }
.rise-delay-4 { animation-delay: 1.5s; }
.rise-delay-5 { animation-delay: 2.0s; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1025px) {
    .hero-brand { font-size: 80px; letter-spacing: 14px; }
    .hero-slogan { font-size: 18px; letter-spacing: 2px; }
    .hero { padding-top: 60px; }
}
@media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { gap: 48px; }
    .stat-number { font-size: 42px; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
    .showcase { min-height: 85vh; padding: 60px 0; }
    .showcase-title { font-size: 32px; }
    .showcase-desc { font-size: 15px; }
    .showcase-detail.open { padding: 40px 0 60px 0; }
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-hamburger { display: flex; }

    section { padding: 80px 0; }
    .hero-brand { font-size: 40px; letter-spacing: 6px; }
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .section-title { font-size: 26px; margin-bottom: 40px; }

    .card-grid { grid-template-columns: 1fr; }
    .card-grid-4 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 40px; }

    .stats-row { flex-direction: column; gap: 32px; }
    .stat-number { font-size: 40px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { display: none; }

    .card { padding: 24px 20px; border-radius: 16px; }
    .pricing-card { padding: 36px 20px; border-radius: 16px; }
    .card-grid { gap: 12px; }
    .pricing-grid { gap: 12px; }
    .compare-grid { gap: 12px; }
    .compare-card { border-radius: 16px; padding: 28px; }

    .cta-form { flex-direction: column; }
    .cta-input { border-right: 1px solid var(--border); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-brand { font-size: 32px; letter-spacing: 4px; }
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    .stat-number { font-size: 32px; }
    .steps-grid { gap: 32px; }
}
