:root {
  --purple:#7B4FD4;--purple-dark:#5B32B0;--purple-light:#EDE8FB;
  --teal:#1DB88A;--teal-dark:#0F8A64;--teal-light:#E3F9F2;
  --grad:linear-gradient(135deg,#7B4FD4 0%,#3B9FD4 50%,#1DB88A 100%);
  --grad-soft:linear-gradient(135deg,#EDE8FB 0%,#E3F9F2 100%);
  --ink:#1A1A2E;--ink-muted:#4A4A6A;--ink-faint:#9090AA;
  --white:#FFFFFF;--bg:#F8F7FF;--border:#E8E4F8;
  --yellow:#FFD93D;--coral:#FF6B6B;
  --sans:'Nunito',system-ui,sans-serif;--body:'Inter',system-ui,sans-serif;
  --radius:18px;--radius-sm:10px;--radius-xl:28px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--body);background:var(--bg);color:var(--ink);line-height:1.6;-webkit-font-smoothing:antialiased;}
a{color:inherit;text-decoration:none;}
nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,0.95);backdrop-filter:blur(16px);border-bottom:1px solid var(--border);padding:0 clamp(1.25rem,4vw,4rem);height:68px;display:flex;align-items:center;gap:clamp(.75rem,2vw,2rem);}
.nav-logo{flex:0 0 auto;font-family:var(--sans);font-weight:900;font-size:1.4rem;letter-spacing:-1px;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.nav-links{flex:1 1 auto;display:flex;justify-content:center;gap:clamp(.65rem,1.8vw,2rem);list-style:none;font-family:var(--sans);font-size:0.9rem;font-weight:700;color:var(--ink-muted);white-space:nowrap;}
.nav-links a:hover,.nav-links a.active{color:var(--purple);}
.nav-cta{background:var(--grad);color:var(--white);padding:0.6rem 1.5rem;border-radius:99px;font-family:var(--sans);font-weight:800;font-size:0.9rem;transition:opacity 0.2s,transform 0.15s;box-shadow:0 4px 16px rgba(123,79,212,0.3);}
.nav-cta:hover{opacity:0.9;transform:translateY(-1px);}
.language-switch{flex:0 0 auto;display:inline-flex;gap:2px;padding:3px;border:1px solid var(--border);border-radius:99px;background:var(--white);}
.language-switch button{border:0;border-radius:99px;padding:5px 9px;background:transparent;color:var(--ink-muted);font-family:var(--sans);font-size:0.72rem;font-weight:800;cursor:pointer;}
.language-switch button.active{background:var(--purple);color:var(--white);}
.nav-menu-toggle{display:none;width:42px;height:42px;border:0;border-radius:50%;background:var(--purple-light);color:var(--ink);font-size:1.2rem;font-weight:900;cursor:pointer;}
@media(max-width:1240px){.nav-cta{display:none;}}
@media(max-width:900px){
  nav{position:sticky;}
  .nav-links{display:none;position:absolute;top:68px;left:0;right:0;padding:1rem clamp(1.25rem,4vw,4rem) 1.25rem;background:rgba(255,255,255,.98);border-bottom:1px solid var(--border);box-shadow:0 14px 30px rgba(26,26,46,.1);flex-direction:column;align-items:stretch;gap:.2rem;white-space:normal;}
  nav.menu-open .nav-links{display:flex;}
  .nav-links a{display:block;padding:.7rem .2rem;}
  .language-switch{margin-left:auto;}
  .nav-menu-toggle{display:inline-grid;place-items:center;flex:0 0 auto;}
}
.hero{background:var(--grad);padding:5rem 5vw 4rem;min-height:75vh;display:flex;align-items:center;}
.hero-content{max-width:620px;}
.hero-crew-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.2);border:1px solid rgba(255,255,255,0.3);border-radius:99px;padding:6px 16px;font-family:var(--sans);font-size:0.8rem;font-weight:800;color:var(--white);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:1.5rem;backdrop-filter:blur(8px);}
.hero-headline{font-family:var(--sans);font-weight:900;font-size:clamp(2.4rem,5vw,3.8rem);line-height:1.1;color:var(--white);margin-bottom:1.25rem;}
.hero-headline .highlight{background:rgba(255,255,255,0.25);border-radius:8px;padding:0 8px;display:inline-block;}
.hero-sub{font-size:1.05rem;color:rgba(255,255,255,0.85);max-width:500px;margin-bottom:2.5rem;line-height:1.7;}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem;}
.btn-white{background:var(--white);color:var(--purple);padding:0.9rem 1.75rem;border-radius:99px;font-family:var(--sans);font-weight:800;font-size:0.95rem;transition:transform 0.15s,box-shadow 0.15s;box-shadow:0 4px 20px rgba(0,0,0,0.15);display:inline-flex;align-items:center;gap:6px;}
.btn-white:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,0.2);}
.btn-outline-white{background:transparent;color:var(--white);padding:0.9rem 1.75rem;border-radius:99px;font-family:var(--sans);font-weight:800;font-size:0.95rem;border:2px solid rgba(255,255,255,0.5);transition:background 0.2s;display:inline-flex;align-items:center;gap:6px;}
.btn-outline-white:hover{background:rgba(255,255,255,0.15);border-color:white;}
.hero-trust{display:flex;gap:0.75rem;flex-wrap:wrap;}
.hero-trust-item{font-size:0.78rem;font-weight:600;color:rgba(255,255,255,0.85);font-family:var(--sans);}
.section{padding:5rem 5vw;}
.section-alt{background:var(--white);}
.section-grad{background:var(--grad-soft);}
.section-dark{background:var(--ink);}
.section-label{display:inline-flex;align-items:center;gap:6px;font-family:var(--sans);font-size:0.72rem;font-weight:800;text-transform:uppercase;letter-spacing:0.1em;color:var(--purple);background:var(--purple-light);padding:4px 12px;border-radius:99px;margin-bottom:1rem;}
.section-dark .section-label{color:var(--teal);background:rgba(29,184,138,0.15);}
.section-headline{font-family:var(--sans);font-weight:900;font-size:clamp(1.8rem,3.5vw,2.8rem);line-height:1.15;color:var(--ink);max-width:620px;margin-bottom:1rem;}
.section-dark .section-headline{color:var(--white);}
.section-sub{font-size:1rem;color:var(--ink-muted);max-width:560px;margin-bottom:3rem;line-height:1.7;}
.section-dark .section-sub{color:rgba(255,255,255,0.65);}
.how-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;}
.how-card{background:var(--white);border-radius:var(--radius-xl);padding:2rem;border:2px solid var(--border);transition:border-color 0.2s,transform 0.2s;}
.how-card:hover{border-color:var(--purple);transform:translateY(-3px);}
.how-card-icon{width:52px;height:52px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:1.6rem;margin-bottom:1rem;}
.icon-purple{background:var(--purple-light);}
.icon-teal{background:var(--teal-light);}
.icon-yellow{background:#FFF9E6;}
.how-card-title{font-family:var(--sans);font-weight:800;font-size:1rem;color:var(--ink);margin-bottom:0.5rem;}
.how-card-desc{font-size:0.875rem;color:var(--ink-muted);line-height:1.65;}
.how-steps{list-style:none;display:flex;flex-direction:column;gap:0.75rem;margin-top:1rem;}
.how-step{display:flex;gap:10px;align-items:flex-start;font-size:0.875rem;color:var(--ink-muted);line-height:1.5;}
.how-step-dot{width:20px;height:20px;border-radius:50%;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:0.6rem;font-weight:800;color:white;flex-shrink:0;margin-top:2px;}
.safety-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}
.safety-features{display:flex;flex-direction:column;gap:1rem;}
.safety-feature{display:flex;gap:14px;align-items:flex-start;padding:1.25rem;background:var(--white);border-radius:var(--radius);border:2px solid var(--border);transition:border-color 0.2s;}
.safety-feature:hover{border-color:var(--teal);}
.safety-feature-icon{width:44px;height:44px;background:var(--teal-light);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0;}
.safety-feature-title{font-family:var(--sans);font-size:0.9rem;font-weight:800;color:var(--ink);margin-bottom:3px;}
.safety-feature-desc{font-size:0.82rem;color:var(--ink-muted);line-height:1.55;}
.safety-aside{background:var(--grad);border-radius:var(--radius-xl);padding:2.5rem;color:var(--white);position:sticky;top:80px;}
.safety-aside-title{font-family:var(--sans);font-weight:900;font-size:1.4rem;margin-bottom:0.75rem;line-height:1.25;}
.safety-aside-desc{font-size:0.875rem;opacity:0.8;margin-bottom:1.5rem;line-height:1.6;}
.safety-stat{background:rgba(255,255,255,0.15);border-radius:var(--radius-sm);padding:1rem;margin-bottom:0.75rem;display:flex;align-items:flex-start;gap:10px;backdrop-filter:blur(8px);}
.safety-stat-icon{font-size:1.3rem;flex-shrink:0;}
.safety-stat-text{font-size:0.82rem;line-height:1.5;opacity:0.9;}
.jobs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:1rem;margin-bottom:2rem;}
.job-card{background:var(--white);border-radius:var(--radius-xl);padding:1.5rem;border:2px solid var(--border);transition:transform 0.15s,box-shadow 0.15s,border-color 0.15s;}
.job-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(123,79,212,0.12);border-color:var(--purple);}
.job-card-emoji{font-size:2.2rem;margin-bottom:0.75rem;}
.job-card-name{font-family:var(--sans);font-size:0.95rem;font-weight:800;color:var(--ink);margin-bottom:4px;}
.job-card-range{font-size:0.82rem;color:var(--teal-dark);font-weight:600;margin-bottom:10px;}
.job-card-xp{font-size:0.7rem;font-weight:700;font-family:var(--sans);padding:3px 8px;border-radius:99px;display:inline-block;text-transform:uppercase;letter-spacing:0.05em;}
.xp-low{background:var(--teal-light);color:var(--teal-dark);}
.xp-mid{background:var(--purple-light);color:var(--purple-dark);}
.game-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}
.level-cards{display:flex;flex-direction:column;gap:10px;}
.level-card{display:flex;gap:14px;align-items:center;background:rgba(255,255,255,0.08);border-radius:var(--radius);padding:1rem 1.25rem;border:1px solid rgba(255,255,255,0.12);transition:background 0.2s;}
.level-card:hover{background:rgba(255,255,255,0.14);}
.level-card-avatar{width:48px;height:48px;border-radius:14px;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0;}
.level-card-name{font-family:var(--sans);font-weight:800;font-size:0.9rem;color:var(--white);margin-bottom:2px;}
.level-card-desc{font-size:0.75rem;color:rgba(255,255,255,0.6);line-height:1.4;}
.level-card-jobs{font-family:var(--sans);font-weight:800;font-size:0.75rem;color:var(--yellow);margin-left:auto;white-space:nowrap;}
.challenge-showcase{display:flex;flex-direction:column;gap:10px;}
.challenge-card{background:var(--white);border-radius:var(--radius);padding:1rem 1.25rem;border:2px solid var(--border);display:flex;gap:12px;align-items:center;}
.challenge-icon{font-size:1.5rem;flex-shrink:0;}
.challenge-title{font-family:var(--sans);font-weight:800;font-size:0.85rem;color:var(--ink);margin-bottom:2px;}
.challenge-desc{font-size:0.75rem;color:var(--ink-muted);}
.challenge-reward{margin-left:auto;background:var(--yellow);border-radius:99px;padding:3px 10px;font-family:var(--sans);font-size:0.72rem;font-weight:800;color:var(--ink);white-space:nowrap;flex-shrink:0;}
.prep-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}
.prep-card{background:var(--white);border-radius:var(--radius-xl);padding:1.75rem;border:2px solid var(--border);margin-bottom:1rem;}
.prep-card-header{display:flex;align-items:center;gap:10px;margin-bottom:1rem;}
.prep-card-icon{font-size:1.5rem;}
.prep-card-title{font-family:var(--sans);font-weight:800;font-size:0.95rem;color:var(--ink);}
.prep-tip{display:flex;gap:8px;align-items:flex-start;margin-bottom:8px;font-size:0.82rem;color:var(--ink-muted);line-height:1.5;}
.prep-tip-dot{width:8px;height:8px;border-radius:50%;background:var(--teal);flex-shrink:0;margin-top:6px;}
.map-preview{background:linear-gradient(135deg,#c8e6c9,#a5d6a7);border-radius:var(--radius);height:120px;display:flex;align-items:center;justify-content:center;margin-bottom:10px;position:relative;overflow:hidden;}
.map-pin{font-size:2rem;}
.map-label{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);background:var(--white);border-radius:99px;padding:4px 12px;font-family:var(--sans);font-size:0.72rem;font-weight:800;color:var(--teal-dark);box-shadow:0 2px 8px rgba(0,0,0,0.1);white-space:nowrap;}
.feedback-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.25rem;}
.feedback-card{background:var(--white);border-radius:var(--radius-xl);padding:1.5rem;border:2px solid var(--border);}
.feedback-from{font-family:var(--sans);font-size:0.72rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--ink-faint);margin-bottom:0.75rem;}
.feedback-text{font-size:0.92rem;color:var(--ink);line-height:1.65;margin-bottom:1rem;}
.feedback-badge{display:inline-flex;align-items:center;gap:5px;font-family:var(--sans);font-size:0.75rem;font-weight:800;padding:5px 12px;border-radius:99px;}
.fb-outstanding{background:var(--teal-light);color:var(--teal-dark);}
.fb-great{background:var(--purple-light);color:var(--purple-dark);}
.markets-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;}
.market-card{background:var(--white);border-radius:var(--radius-xl);padding:2rem;border:2px solid var(--border);transition:border-color 0.2s,transform 0.15s;}
.market-card:hover{border-color:var(--purple);transform:translateY(-2px);}
.market-flag{font-size:2.8rem;margin-bottom:1rem;}
.market-name{font-family:var(--sans);font-weight:900;font-size:1.3rem;color:var(--ink);margin-bottom:0.5rem;}
.market-desc{font-size:0.875rem;color:var(--ink-muted);line-height:1.65;margin-bottom:1.25rem;}
.market-tags{display:flex;flex-wrap:wrap;gap:6px;}
.market-tag{background:var(--purple-light);color:var(--purple-dark);font-family:var(--sans);font-size:0.72rem;font-weight:700;padding:4px 10px;border-radius:99px;}
.faq-item{border-bottom:2px solid var(--border);padding:1.25rem 0;}
.faq-q{font-family:var(--sans);font-weight:800;font-size:1rem;color:var(--ink);margin-bottom:0.5rem;}
.faq-a{font-size:0.9rem;color:var(--ink-muted);line-height:1.7;}
.waitlist-section{background:var(--grad);padding:6rem 5vw;text-align:center;}
.waitlist-inner{max-width:600px;margin:0 auto;}
.waitlist-headline{font-family:var(--sans);font-weight:900;font-size:clamp(2rem,4vw,3rem);color:var(--white);margin-bottom:1rem;line-height:1.15;}
.waitlist-sub{font-size:1rem;color:rgba(255,255,255,0.82);margin-bottom:2.5rem;line-height:1.7;}
.waitlist-form{display:flex;gap:0.75rem;flex-wrap:wrap;justify-content:center;}
.waitlist-input{flex:1;min-width:220px;padding:0.9rem 1.25rem;border-radius:99px;border:none;font-family:var(--body);font-size:0.9rem;color:var(--ink);outline:none;box-shadow:0 4px 16px rgba(0,0,0,0.1);}
.waitlist-select{padding:0.9rem 1.25rem;border-radius:99px;border:none;font-family:var(--body);font-size:0.9rem;color:var(--ink);background:var(--white);cursor:pointer;outline:none;box-shadow:0 4px 16px rgba(0,0,0,0.1);}
.waitlist-note{font-size:0.78rem;color:rgba(255,255,255,0.65);margin-top:1.25rem;}
.waitlist-success{display:none;background:rgba(255,255,255,0.2);border:1px solid rgba(255,255,255,0.4);border-radius:var(--radius);padding:1rem 1.5rem;font-family:var(--sans);font-size:0.95rem;font-weight:700;color:var(--white);margin-top:1.5rem;backdrop-filter:blur(8px);}
footer{background:var(--ink);color:rgba(255,255,255,0.55);padding:3.5rem 5vw 2rem;}
.footer-inner{display:flex;justify-content:space-between;align-items:flex-start;gap:2rem;flex-wrap:wrap;margin-bottom:2.5rem;}
.footer-brand{max-width:240px;}
.footer-logo-text{font-family:var(--sans);font-weight:900;font-size:1.2rem;letter-spacing:-1px;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:0.75rem;}
.footer-tagline{font-size:0.82rem;line-height:1.6;}
.footer-col h4{font-family:var(--sans);font-size:0.75rem;font-weight:800;text-transform:uppercase;letter-spacing:0.08em;color:var(--white);margin-bottom:1rem;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.5rem;}
.footer-col a{font-size:0.82rem;transition:color 0.15s;}
.footer-col a:hover{color:var(--white);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;font-size:0.78rem;}
.footer-markets{display:flex;gap:0.75rem;}
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.65s ease,transform 0.65s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none;}}
@media(max-width:900px){.safety-grid,.game-grid,.prep-grid,.markets-grid{grid-template-columns:1fr;}.safety-aside{position:static;}}
@media(max-width:600px){nav{padding:0 4vw;}.nav-cta{display:none;}.hero-actions{flex-direction:column;}.btn-white,.btn-outline-white{justify-content:center;}.jobs-grid{grid-template-columns:1fr 1fr;}.waitlist-form{flex-direction:column;}.waitlist-input,.waitlist-select,.waitlist-form .btn-white{width:100%;flex:none;min-height:50px;}.language-switch{margin-left:auto;margin-right:0;}}
