/* EDS LIFT Gateway Page Styles */
*{margin:0;padding:0;box-sizing:border-box}
:root{--navy:#0A1628;--accent:#00B67A;--blue:#1B4F8A;--deep:#060E1A}
::selection{background:var(--accent);color:#fff}
html{height:100%}
body{font-family:'Outfit',sans-serif;background:var(--deep);color:#fff;height:100%;overflow:hidden;-webkit-tap-highlight-color:transparent}

.loader{position:fixed;inset:0;z-index:9999;background:var(--navy);display:flex;align-items:center;justify-content:center;transition:opacity .6s,visibility .6s}
.loader.hide{opacity:0;visibility:hidden;pointer-events:none}
.loader-bar{width:120px;height:2px;background:rgba(255,255,255,.1);margin:20px auto 0;overflow:hidden;border-radius:1px}
.loader-fill{width:0;height:100%;background:var(--accent);animation:loadFill 2s cubic-bezier(.4,0,.2,1) forwards}
@keyframes loadFill{to{width:100%}}

#mechCanvas{position:fixed;inset:0;z-index:0}
.scene-bg{position:fixed;inset:0;z-index:0;background:linear-gradient(170deg,#050D18 0%,var(--navy) 40%,#0D2847 70%,#091A30 100%)}
.noise{position:fixed;inset:0;z-index:2;opacity:.03;pointer-events:none;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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");background-size:128px 128px}

.main{position:relative;z-index:10;min-height:100vh;min-height:100svh;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 24px}
@keyframes revUp{to{opacity:1;transform:translateY(0)}}
.rv{opacity:0;transform:translateY(20px);animation:revUp .9s cubic-bezier(.22,1,.36,1) forwards}
.rv1{animation-delay:.4s}.rv2{animation-delay:.7s}.rv3{animation-delay:1s}.rv4{animation-delay:1.2s}.rv5{animation-delay:1.5s}.rv6{animation-delay:2s}

.logo-wrap svg text{font-family:'Outfit',sans-serif}
.tagline{margin-top:20px;font-size:14px;font-weight:300;color:rgba(255,255,255,.4);letter-spacing:4px;text-transform:uppercase;text-align:center}
.divider{width:60px;height:1px;background:var(--accent);margin:32px auto}
.prompt{font-family:'Instrument Serif',Georgia,serif;font-size:clamp(26px,5vw,44px);font-weight:400;text-align:center;line-height:1.2}
.prompt em{font-style:italic;color:var(--accent)}

.choices{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:44px;width:100%;max-width:720px}
.choice{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.03);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);padding:44px 28px;text-align:center;cursor:pointer;text-decoration:none;color:#fff;display:block;transition:all .5s cubic-bezier(.22,1,.36,1);-webkit-touch-callout:none}
.choice::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,182,122,.08) 0%,transparent 60%);opacity:0;transition:opacity .5s}
.choice:hover::before,.choice:active::before{opacity:1}
.choice::after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;background:var(--accent);transition:width .5s cubic-bezier(.22,1,.36,1)}
.choice:hover::after,.choice:active::after{width:100%}
.choice:hover,.choice:active{border-color:rgba(0,182,122,.3);transform:translateY(-3px);box-shadow:0 20px 60px rgba(0,0,0,.4)}
.choice-icon{width:64px;height:64px;margin:0 auto 18px;border:1.5px solid rgba(255,255,255,.12);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all .5s}
.choice:hover .choice-icon,.choice:active .choice-icon{border-color:var(--accent);box-shadow:0 0 24px rgba(0,182,122,.15)}
.choice-title{font-family:'Instrument Serif',Georgia,serif;font-size:28px;font-weight:400;margin-bottom:8px;transition:color .3s}
.choice:hover .choice-title,.choice:active .choice-title{color:var(--accent)}
.choice-sub{font-size:13px;font-weight:300;color:rgba(255,255,255,.4);letter-spacing:.5px;line-height:1.5}
.choice-arrow{display:inline-flex;align-items:center;gap:8px;margin-top:18px;font-size:12px;letter-spacing:2px;text-transform:uppercase;font-weight:400;color:rgba(255,255,255,.25);transition:all .4s}
.choice-arrow svg{transition:transform .4s}
.choice:hover .choice-arrow,.choice:active .choice-arrow{color:var(--accent)}
.choice:hover .choice-arrow svg,.choice:active .choice-arrow svg{transform:translateX(4px)}

.bottom-info{position:absolute;bottom:24px;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:0 32px}
.bottom-left{font-size:11px;color:rgba(255,255,255,.18);letter-spacing:1px;font-weight:300}
.bottom-right{display:flex;gap:20px}
.bottom-link{font-size:11px;color:rgba(255,255,255,.2);text-decoration:none;letter-spacing:1px;transition:color .3s;font-weight:300}
.bottom-link:hover{color:var(--accent)}

@media(max-width:680px){
  .main{padding:28px 20px}
  .choices{grid-template-columns:1fr;gap:16px;max-width:400px;margin-top:32px}
  .choice{padding:28px 24px;display:flex;align-items:center;gap:18px;text-align:left}
  .choice-icon{margin:0;flex-shrink:0;width:52px;height:52px}
  .choice-title{font-size:22px;margin-bottom:4px}
  .choice-sub{font-size:12px}.choice-sub br{display:none}
  .choice-arrow{margin-top:10px}
  .tagline{font-size:11px;letter-spacing:3px}
  .divider{margin:24px auto}
  .bottom-info{position:relative;bottom:auto;margin-top:36px;flex-direction:column;gap:10px;text-align:center;padding:0}
  .bottom-right{gap:12px}
}
@media(max-width:380px){
  .prompt{font-size:24px}
  .choice{padding:22px 18px;gap:14px}
  .choice-icon{width:44px;height:44px}
  .choice-title{font-size:20px}
}