
:root{
  --bg:#0B2343;
  --bg-deep:#071730;
  --orange:#F68B1F;
  --orange-glow:#FF9D2E;
  --white:#FFFFFF;
  --muted:#7C8AA5;
  --ring:rgba(246,139,31,0.35);
}

*{margin:0;padding:0;box-sizing:border-box;}

html,body{
  background:var(--bg);
  color:var(--white);
  font-family:'Montserrat',sans-serif;
  overflow-x:hidden;
  width:100%;
}

body{
  position:relative;
  min-height:100vh;
}

::selection{background:var(--orange);color:var(--bg);}

a{color:inherit;text-decoration:none;}

img{max-width:100%;display:block;}

/* ===================== BACKGROUND LAYERS ===================== */
.bg-noise{
  position:fixed;inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size:26px 26px;
  pointer-events:none;
  z-index:1;
  opacity:0.5;
}

.bg-vignette{
  position:fixed;inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 38%, rgba(246,139,31,0.10), transparent 60%),
             radial-gradient(ellipse 120% 80% at 50% 100%, var(--bg-deep), transparent 70%);
  pointer-events:none;
  z-index:1;
}

.mesh-lines{
  position:fixed;inset:0;
  pointer-events:none;
  z-index:1;
  opacity:0.18;
}

/* ===================== CURSOR ===================== */
.cursor-dot,.cursor-ring{
  position:fixed;
  top:0;left:0;
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
  will-change:transform;
}
.cursor-dot{
  width:8px;height:8px;
  background:var(--orange-glow);
  box-shadow:0 0 12px 3px rgba(255,157,46,0.9);
}
.cursor-ring{
  width:36px;height:36px;
  border:1px solid rgba(246,139,31,0.55);
  transition:width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}
.cursor-ring.hovered{
  width:62px;height:62px;
  background:rgba(246,139,31,0.08);
  border-color:var(--orange-glow);
  box-shadow:0 0 30px 6px rgba(255,157,46,0.35);
}

@media (hover:none), (pointer:coarse){
  .cursor-dot,.cursor-ring{display:none;}
}

/* ===================== LAYOUT WRAPPER ===================== */
.page{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
  min-height:100vh;
  padding:48px 24px 64px;
  text-align:center;
}

/* ===================== TOP LOCK ===================== */
.lock-wrap{
  position:relative;
  width:96px;height:96px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:28px;
  opacity:0;
}
.lock-ring-outer{
  position:absolute;inset:0;
  border:1px solid rgba(246,139,31,0.35);
  border-radius:50%;
}
.lock-glow{
  position:absolute;
  width:64px;height:64px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,157,46,0.55), rgba(255,157,46,0) 70%);
  filter:blur(2px);
}
.lock-icon{
  position:relative;
  width:34px;height:30px;
  z-index:2;
}
.lock-icon svg{width:100%;height:100%;display:block;}

/* ===================== TOP TEXT ===================== */
.eyebrow{
  font-size:13px;
  letter-spacing:0.55em;
  color:var(--muted);
  font-weight:500;
  margin-bottom:14px;
  opacity:0;
}
.coming-soon{
  font-size:clamp(36px,7vw,72px);
  font-weight:700;
  letter-spacing:0.12em;
  line-height:1.05;
  display:flex;
  gap:0.35em;
  justify-content:center;
  flex-wrap:wrap;
}
.coming-soon .word{display:inline-flex;}
.coming-soon .char{
  display:inline-block;
  opacity:0;
  transform:translateY(18px);
}
.coming-soon .white{color:var(--white);}
.coming-soon .orange{
  color:var(--orange);
  text-shadow:0 0 24px rgba(246,139,31,0.55);
}

.sub-divider{
  width:64px;height:2px;
  background:linear-gradient(90deg, transparent, var(--orange), transparent);
  margin:20px auto;
  opacity:0;
  transform:scaleX(0);
}

.tagline{
  font-size:15px;
  color:var(--muted);
  line-height:1.7;
  font-weight:400;
  max-width:360px;
  opacity:0;
}

/* ===================== HERO ===================== */
.hero{
  position:relative;
  width:100%;
  max-width:1100px;
  margin-top:56px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-stage{
  position:relative;
  width:min(78vw,520px);
  aspect-ratio:1/1.05;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.ring{
  position:absolute;
  left:50%;top:46%;
  border:1px solid rgba(246,139,31,0.28);
  border-radius:50%;
  transform:translate(-50%,-50%);
  z-index:0;
  pointer-events:none;
}
.ring.dotted{border-style:dashed;border-width:3.5px;border-color:rgba(246,139,31,0.5);}
.ring--1{width:62%;height:62%;}
.ring--3{width:72%;height:72%;}

.particles{
  position:absolute;
  inset:-15%;
  z-index:1;
  pointer-events:none;
}
.particle{
  position:absolute;
  width:4px;height:4px;
  border-radius:50%;
  background:var(--orange-glow);
  box-shadow:0 0 8px 2px rgba(255,157,46,0.7);
  opacity:0.8;
}

.hero-person{
  position:relative;
  z-index:3;
  width:100%;
  height:100%;
  -webkit-mask-image:linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  mask-image:linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero-person img{
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}

/* ===================== NAME ===================== */
.name-block{
  position:relative;
  margin-top:18px;
  z-index:5;
}
.name{
  font-size:clamp(40px,9vw,86px);
  font-weight:700;
  letter-spacing:0.01em;
  line-height:1;
  position:relative;
  display:inline-block;
  padding:0 18px;
}
.name .first{color:var(--white);}
.name .last{color:var(--white);margin-left:0.28em;}

.name-streak{
  width:120px;
  height:2px;
  margin:18px auto 0;
  background:linear-gradient(90deg, transparent, var(--orange-glow), transparent);
  position:relative;
  overflow:hidden;
}
.name-streak::after{
  content:'';
  position:absolute;
  top:0;left:-40%;
  width:40%;height:100%;
  background:linear-gradient(90deg, transparent, #fff, transparent);
  animation:streak 2.8s ease-in-out infinite;
}
@keyframes streak{
  0%{left:-40%;}
  100%{left:140%;}
}

.role{
  margin-top:18px;
  font-size:15px;
  font-weight:300;
  letter-spacing:0.08em;
  color:var(--orange);
}

/* ===================== SOCIAL ===================== */
.social{
  margin-top:54px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.social-title{
  font-size:12px;
  letter-spacing:0.38em;
  color:var(--muted);
  font-weight:500;
}
.social-icons{
  display:flex;
  align-items:center;
  gap:26px;
}
.social-icons a{
  width:46px;height:46px;
  border:1px solid rgba(124,138,165,0.3);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:17px;
  color:var(--muted);
  transition:transform .35s cubic-bezier(.2,.9,.3,1), color .3s ease, border-color .3s ease, box-shadow .3s ease;
  position:relative;
}
.social-icons a:hover{
  color:var(--orange);
  border-color:var(--orange);
  transform:scale(1.12);
  box-shadow:0 0 22px rgba(246,139,31,0.45);
}

footer{
  margin-top:48px;
  font-size:11px;
  color:rgba(124,138,165,0.6);
  letter-spacing:0.04em;
}

/* reveal helper */
.reveal{opacity:0;transform:translateY(20px);}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}

/* focus visibility */
a:focus-visible{
  outline:2px solid var(--orange-glow);
  outline-offset:3px;
  border-radius:4px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:480px){
  .page{padding:36px 16px 48px;}
  .hero-stage{width:84vw;}
  .name{padding:0 10px;}
  .social-icons{gap:18px;}
  .social-icons a{width:42px;height:42px;font-size:15px;}
}
