/* Luminei — Coming Soon | Exciting Modern Design */
:root{
  --bg-dark: #0a0a0f;
  --bg-mid: #1a1a24;
  --accent-gold: #ffd34d;
  --accent-amber: #ffb84d;
  --accent-orange: #ff9f4d;
  --accent-light: #fff4d9;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d4;
  --text-muted: #8888aa;
  --glow-gold: rgba(255,211,77,0.4);
  --glow-amber: rgba(255,184,77,0.3);
  --max-width: 1100px;
}

*{box-sizing:border-box; margin:0; padding:0}
html,body{height:100%; overflow-x:hidden}

body{
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color:var(--text-primary);
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #1a1a2e 0%, #0a0a0f 50%, #000000 100%);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  display:flex;
  min-height:100vh;
  align-items:center;
  justify-content:center;
  padding:80px 20px 40px;
  position:relative;
}

/* Animated background elements */
#particles{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
  pointer-events:none;
}

.glow-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.15;
  pointer-events:none;
  z-index:0;
  animation:float 20s ease-in-out infinite;
}

.glow-orb-1{
  width:600px;
  height:600px;
  background:radial-gradient(circle, var(--glow-gold), transparent 70%);
  transition:left 0.3s ease, top 0.3s ease;
}

.glow-orb-2{
  width:800px;
  height:800px;
  background:radial-gradient(circle, var(--glow-amber), transparent 70%);
  top:20%;
  right:-10%;
  animation-delay:-8s;
}

.glow-orb-3{
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(255,159,77,0.3), transparent 70%);
  bottom:10%;
  left:5%;
  animation-delay:-15s;
}

@keyframes float{
  0%, 100%{transform:translate(0, 0) scale(1)}
  33%{transform:translate(30px, -50px) scale(1.1)}
  66%{transform:translate(-40px, 30px) scale(0.9)}
}

/* Header */
.site-header{
  position:fixed;
  top:24px;
  left:28px;
  z-index:100;
}

.logo-wrapper{
  position:relative;
  width:64px;
  height:64px;
  animation:logoEntry 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes logoEntry{
  from{transform:scale(0) rotate(-180deg); opacity:0}
  to{transform:scale(1) rotate(0); opacity:1}
}

.logo{
  width:64px;
  height:64px;
  border-radius:16px;
  transition:transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), filter .4s ease;
  filter:drop-shadow(0 10px 40px var(--glow-gold));
  animation:pulse 3s ease-in-out infinite;
}

.logo:hover{
  transform:scale(1.08) rotate(5deg);
  filter:drop-shadow(0 15px 60px var(--glow-gold));
}

@keyframes pulse{
  0%, 100%{filter:drop-shadow(0 10px 40px var(--glow-gold))}
  50%{filter:drop-shadow(0 15px 60px var(--glow-amber))}
}

/* Hero section */
.hero{
  width:100%;
  max-width:var(--max-width);
  padding:20px 28px 48px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:28px;
  position:relative;
  z-index:10;
  animation:fadeInUp 1s ease-out;
}

@keyframes fadeInUp{
  from{opacity:0; transform:translateY(40px)}
  to{opacity:1; transform:translateY(0)}
}

/* Badge */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 18px;
  background:linear-gradient(135deg, rgba(255,211,77,0.12), rgba(255,184,77,0.06));
  border:1px solid rgba(255,211,77,0.2);
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:var(--accent-gold);
  text-transform:uppercase;
  letter-spacing:0.5px;
  backdrop-filter:blur(10px);
  box-shadow:0 8px 32px rgba(255,211,77,0.1);
  animation:badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* Brand title with gradient */
.brand{
  font-size:clamp(48px, 8vw, 96px);
  line-height:1;
  margin:12px 0;
  font-weight:900;
  letter-spacing:-2px;
  animation:titleEntry 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

@keyframes titleEntry{
  from{opacity:0; transform:translateY(30px) scale(0.9)}
  to{opacity:1; transform:translateY(0) scale(1)}
}

.brand-gradient{
  background:linear-gradient(135deg, #fff 0%, var(--accent-gold) 50%, var(--accent-amber) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  background-size:200% 200%;
  animation:gradientShift 4s ease infinite;
  filter:drop-shadow(0 0 40px var(--glow-gold));
}

@keyframes gradientShift{
  0%, 100%{background-position:0% 50%}
  50%{background-position:100% 50%}
}

/* Tagline */
.tagline{
  font-size:clamp(18px, 3vw, 24px);
  color:var(--text-secondary);
  max-width:680px;
  line-height:1.6;
  animation:fadeIn 1s ease 0.4s backwards;
}

.tagline .highlight{
  color:var(--accent-gold);
  font-weight:600;
  position:relative;
}

.tagline .highlight::after{
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  animation:underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow{
  0%, 100%{opacity:0.3}
  50%{opacity:1}
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

/* Card with glassmorphism */
.card{
  margin-top:24px;
  padding:40px 44px;
  width:100%;
  max-width:720px;
  background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius:24px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter:blur(20px) saturate(180%);
  border:1px solid rgba(255,211,77,0.15);
  position:relative;
  overflow:hidden;
  animation:cardEntry 1s ease 0.6s backwards;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes cardEntry{
  from{opacity:0; transform:translateY(30px) scale(0.95)}
  to{opacity:1; transform:translateY(0) scale(1)}
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(255,211,77,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.card-glow{
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(255,211,77,0.08), transparent 50%);
  animation:cardGlowRotate 20s linear infinite;
  pointer-events:none;
}

@keyframes cardGlowRotate{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.lead{
  font-size:18px;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom:24px;
  position:relative;
  z-index:1;
}

.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,211,77,0.3), transparent);
  margin:24px 0;
}

.contact-label{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--text-muted);
  margin-bottom:12px;
  font-weight:600;
}

.contact{
  margin:12px 0 24px;
  position:relative;
  z-index:1;
}

.email-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  background:linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  border-radius:12px;
  color:#000;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  box-shadow:
    0 10px 40px rgba(255,211,77,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition:all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position:relative;
  overflow:hidden;
}

.email-link::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition:left 0.5s ease;
}

.email-link:hover::before{
  left:100%;
}

.email-link:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(255,211,77,0.6),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.email-link:active{
  transform:translateY(-1px) scale(0.98);
}

.icon{
  width:20px;
  height:20px;
  stroke-width:2.5;
}

.small{
  font-size:13px;
  color:var(--text-muted);
  position:relative;
  z-index:1;
}

/* Feature pills */
.features{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:8px;
  animation:fadeIn 1s ease 0.8s backwards;
}

.feature-pill{
  padding:10px 20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,211,77,0.2);
  border-radius:999px;
  font-size:14px;
  color:var(--text-secondary);
  backdrop-filter:blur(10px);
  transition:all 0.3s ease;
}

.feature-pill:hover{
  background:rgba(255,211,77,0.1);
  border-color:rgba(255,211,77,0.4);
  transform:translateY(-2px);
  color:var(--accent-light);
}

/* Footer */
.site-footer{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  z-index:100;
  color:var(--text-muted);
  font-size:13px;
  animation:fadeIn 1s ease 1s backwards;
}

/* Responsive */
@media (max-width:768px){
  .hero{padding:20px 20px 40px}
  .card{padding:28px 24px}
  .email-link{width:100%; justify-content:center}
  .feature-pill{font-size:13px; padding:8px 16px}
  .site-header{top:16px; left:16px}
  .logo, .logo-wrapper{width:48px; height:48px}
}

@media (max-width:480px){
  .badge{font-size:11px; padding:6px 14px}
  .features{gap:8px}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
}

a:focus-visible, button:focus-visible{
  outline:3px solid var(--accent-gold);
  outline-offset:4px;
  border-radius:8px;
}
