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

html{
  scroll-behavior:smooth;
}

body{
  background:#020202;
  color:#fff;
  font-family:"Noto Serif JP",serif;
  overflow-x:hidden;
}

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

:root{
  --gold:#d4af37;
  --gold2:#ffe08a;
  --dark:#050505;
  --line:rgba(212,175,55,.38);
  --glass:rgba(0,0,0,.55);
}

/* Loading */
.loading{
  position:fixed;
  inset:0;
  z-index:9999;
  background:#000;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:.8s;
}

.loading.hide{
  opacity:0;
  visibility:hidden;
}

.loading-logo{
  font-family:"Cormorant Garamond",serif;
  font-size:82px;
  letter-spacing:14px;
  color:var(--gold2);
  text-shadow:0 0 35px var(--gold);
}

.loading p{
  margin-top:10px;
  letter-spacing:6px;
  color:#aaa;
}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:82px;
  z-index:1000;
  padding:0 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(212,175,55,.22);
}

.header-logo span{
  display:block;
  font-family:"Cormorant Garamond",serif;
  color:var(--gold2);
  font-size:36px;
  letter-spacing:6px;
  line-height:1;
}

.header-logo small{
  font-size:11px;
  letter-spacing:2px;
  color:#ddd;
}

.header-nav{
  display:flex;
  gap:25px;
  font-size:14px;
  color:#ddd;
}

.header-nav a:hover{
  color:var(--gold2);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:9px;
}

.sns-dot{
  width:32px;
  height:32px;
  border:1px solid var(--line);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold2);
  font-size:12px;
}

.btn{
  border:none;
  outline:none;
  display:inline-block;
  padding:13px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
}

.btn.gold{
  background:linear-gradient(90deg,#9b6a14,#ffe08a,#b88622);
  color:#111;
  box-shadow:0 0 24px rgba(212,175,55,.28);
}

.btn.ghost{
  background:rgba(0,0,0,.35);
  border:1px solid var(--line);
  color:var(--gold2);
}

.btn.big{
  padding:17px 44px;
  font-size:16px;
}

.btn:hover{
  transform:translateY(-3px);
  filter:brightness(1.15);
}

/* Hero */
.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:130px 20px 80px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.18),rgba(0,0,0,.95)),
    radial-gradient(circle at 50% 45%,rgba(212,175,55,.32),transparent 36%),
    url("images/hero.jpg");
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 22% 30%,rgba(255,224,138,.2),transparent 24%),
    radial-gradient(circle at 78% 55%,rgba(255,53,212,.12),transparent 28%),
    linear-gradient(180deg,transparent,#020202 96%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:960px;
}

.eyebrow{
  color:var(--gold2);
  letter-spacing:5px;
  font-size:13px;
  margin-bottom:16px;
}

.hero h1{
  font-family:"Cormorant Garamond",serif;
  font-size:130px;
  letter-spacing:20px;
  color:var(--gold2);
  text-shadow:0 0 45px rgba(212,175,55,.9);
  line-height:.9;
}

.hero h2{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  letter-spacing:9px;
  color:#f7d77a;
  margin-top:18px;
}

.hero-copy{
  font-size:34px;
  margin-top:30px;
  letter-spacing:4px;
}

.hero-lead{
  color:#ddd;
  line-height:2;
  margin-top:16px;
  font-size:16px;
}

.hero-buttons{
  margin-top:38px;
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}

.hero-stats{
  margin:45px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:820px;
  border:1px solid rgba(212,175,55,.28);
  background:rgba(0,0,0,.42);
  backdrop-filter:blur(10px);
}

.hero-stats div{
  padding:18px;
  border-right:1px solid rgba(212,175,55,.22);
}

.hero-stats div:last-child{
  border-right:none;
}

.hero-stats strong{
  display:block;
  color:var(--gold2);
  margin-bottom:5px;
}

.hero-stats span{
  font-size:11px;
  color:#aaa;
  letter-spacing:2px;
}

/* Common */
.section{
  max-width:1240px;
  margin:auto;
  padding:82px 20px;
}

.section-head{
  text-align:center;
  margin-bottom:38px;
}

.section-head p{
  color:var(--gold2);
  letter-spacing:5px;
  font-size:13px;
  margin-bottom:12px;
}

.section-head h2{
  font-size:38px;
  letter-spacing:3px;
}

/* Reasons */
.reason-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.reason-card{
  border:1px solid var(--line);
  background:linear-gradient(145deg,#090909,#120b02);
  padding:32px 22px;
  text-align:center;
  border-radius:18px;
  min-height:220px;
  box-shadow:0 0 28px rgba(212,175,55,.08);
}

.reason-card .icon{
  font-size:44px;
  margin-bottom:15px;
}

.reason-card h3{
  color:var(--gold2);
  margin-bottom:12px;
}

.reason-card p{
  color:#ccc;
  line-height:1.8;
  font-size:14px;
}

/* Select */
.select-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.select-card{
  min-height:360px;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  position:relative;
  padding:38px;
  display:flex;
  align-items:flex-end;
  background:#070707;
}

.select-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.82;
  transition:.5s;
}

.select-card.woman::before{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.35)),
    url("images/woman.jpg");
}

.select-card.shop::before{
  background-image:
    linear-gradient(90deg,rgba(0,0,0,.95),rgba(0,0,0,.35)),
    url("images/lounge.jpg");
}

.select-card:hover::before{
  transform:scale(1.06);
}

.select-text{
  position:relative;
  z-index:2;
  max-width:410px;
}

.select-text > p:first-child{
  color:var(--gold2);
  letter-spacing:4px;
  font-size:13px;
}

.select-text h2{
  font-size:44px;
  margin:12px 0;
  color:var(--gold2);
}

.select-text span{
  display:block;
  font-size:20px;
  margin-bottom:12px;
}

.select-text p{
  color:#ddd;
  line-height:1.9;
  margin-bottom:22px;
}

/* Jobs */
.job-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.job-card{
  border:1px solid var(--line);
  background:#070707;
  border-radius:18px;
  overflow:hidden;
  transition:.35s;
  box-shadow:0 0 24px rgba(0,0,0,.45);
}

.job-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 35px rgba(212,175,55,.16);
}

.job-image{
  height:170px;
  background-size:cover;
  background-position:center;
}

.job1{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.35)),url("images/job1.jpg")}
.job2{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.35)),url("images/job2.jpg")}
.job3{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.35)),url("images/job3.jpg")}
.job4{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.35)),url("images/job4.jpg")}

.job-body{
  padding:20px;
}

.job-body h3{
  font-size:21px;
  margin-bottom:8px;
}

.job-body p{
  color:#bbb;
  font-size:14px;
}

.job-body strong{
  display:block;
  color:var(--gold2);
  font-size:21px;
  margin:12px 0;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-bottom:16px;
}

.tags span{
  border:1px solid rgba(255,255,255,.28);
  padding:5px 8px;
  font-size:12px;
  color:#ddd;
  border-radius:999px;
}

.job-body button{
  width:100%;
  padding:12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.45);
  color:var(--gold2);
}

/* AI */
.ai-box{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:35px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:24px;
  padding:46px;
  background:
    radial-gradient(circle at 15% 30%,rgba(255,53,212,.22),transparent 22%),
    linear-gradient(135deg,#080808,#130901);
}

.ai-icon{
  width:160px;
  height:160px;
  display:grid;
  place-items:center;
  font-size:78px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  box-shadow:0 0 35px rgba(255,53,212,.22);
}

.ai-box h2{
  font-size:38px;
  color:var(--gold2);
  margin-bottom:12px;
}

.ai-box p{
  color:#ddd;
  line-height:1.9;
  margin-bottom:24px;
}

/* Ranking */
.ranking-list{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#070707;
}

.rank-item{
  display:grid;
  grid-template-columns:70px 90px 1fr;
  gap:18px;
  align-items:center;
  padding:22px;
  border-bottom:1px solid rgba(212,175,55,.18);
}

.rank-item:last-child{
  border-bottom:none;
}

.rank-item > span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  background:linear-gradient(90deg,#a87518,#ffe08a);
  color:#111;
  font-weight:700;
  border-radius:50%;
}

.rank-thumb{
  height:62px;
  border-radius:10px;
  background-size:cover;
  background-position:center;
}

.r1{background-image:url("images/job1.jpg")}
.r2{background-image:url("images/job2.jpg")}
.r3{background-image:url("images/job3.jpg")}

.rank-item h3{
  color:#fff;
}

.rank-item p{
  color:#aaa;
  margin-top:4px;
}

/* Support */
.support-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.support-card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px;
  text-align:center;
  background:#070707;
}

.support-card strong{
  color:var(--gold2);
  font-size:20px;
}

.support-card p{
  color:#bbb;
  margin-top:10px;
  line-height:1.8;
}

/* SNS */
.sns-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.sns-grid a{
  display:block;
  text-align:center;
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(145deg,#080808,#130b02);
  color:var(--gold2);
  font-weight:700;
}

/* Footer */
footer{
  max-width:1240px;
  margin:auto;
  padding:70px 20px;
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:34px;
  border-top:1px solid rgba(212,175,55,.22);
}

.footer-brand h2{
  font-family:"Cormorant Garamond",serif;
  color:var(--gold2);
  font-size:58px;
  letter-spacing:8px;
}

footer p{
  color:#aaa;
  line-height:1.9;
}

footer h4{
  color:var(--gold2);
  margin-bottom:16px;
}

footer a{
  display:block;
  color:#aaa;
  margin-bottom:10px;
}

footer a:hover{
  color:var(--gold2);
}

/* Notice */
.notice{
  position:fixed;
  left:50%;
  bottom:30px;
  transform:translateX(-50%) translateY(30px);
  background:rgba(0,0,0,.82);
  border:1px solid var(--line);
  color:var(--gold2);
  padding:14px 22px;
  border-radius:999px;
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:.35s;
}

.notice.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Mobile */
@media(max-width:900px){
  .site-header{
    position:relative;
    height:auto;
    padding:18px;
    display:block;
    text-align:center;
  }

  .header-nav{
    display:none;
  }

  .header-actions{
    justify-content:center;
    flex-wrap:wrap;
    margin-top:14px;
  }

  .hero{
    min-height:auto;
    padding:95px 18px 75px;
  }

  .hero h1{
    font-size:76px;
    letter-spacing:10px;
  }

  .hero h2{
    font-size:22px;
    letter-spacing:4px;
  }

  .hero-copy{
    font-size:25px;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }

  .hero-stats div{
    border-right:none;
    border-bottom:1px solid rgba(212,175,55,.18);
  }

  .reason-grid,
  .select-grid,
  .job-grid,
  .support-grid,
  .sns-grid{
    grid-template-columns:1fr;
  }

  .ai-box{
    grid-template-columns:1fr;
    text-align:center;
    padding:32px 22px;
  }

  .ai-icon{
    margin:auto;
  }

  .rank-item{
    grid-template-columns:50px 70px 1fr;
    padding:16px;
  }

  footer{
    grid-template-columns:1fr;
  }
/* ===========================
   PREMIUM ANIMATION PACK
=========================== */

.hero-bg{
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.site-header{
    transition:.35s;
}

.site-header.scrolled{
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 40px rgba(0,0,0,.45);
}

.btn{
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(212,175,55,.35);
}

.job-card{
    transition:.35s;
}

.job-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.55);
}

.reason-card{
    transition:.35s;
}

.reason-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.select-card{
    transition:.4s;
}

.select-card:hover{
    transform:scale(1.02);
}

.rank-item{
    transition:.3s;
}

.rank-item:hover{
    background:rgba(212,175,55,.08);
}

.sns-grid a{
    transition:.3s;
}

.sns-grid a:hover{
    transform:translateY(-5px);
    background:#d4af37;
    color:#111;
}

.notice{
    box-shadow:0 10px 35px rgba(0,0,0,.5);
}

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.gold-line{
    width:120px;
    height:2px;
    margin:25px auto;
    background:linear-gradient(
        to right,
        transparent,
        #d4af37,
        transparent
    );
}

.glow{
    text-shadow:
    0 0 10px #d4af37,
    0 0 20px #d4af37,
    0 0 40px #d4af37;
}

.section{
    position:relative;
}

.section::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:80%;
    height:1px;
    transform:translateX(-50%);
    background:linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,.35),
        transparent
    );
}}

/* =========================
   NOX AI PREMIUM SECTION
========================= */

.ai-premium{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
  border:1px solid rgba(212,175,55,.35);
  border-radius:26px;
  padding:24px;
  background:linear-gradient(145deg,#060606,#130900);
  box-shadow:0 0 40px rgba(212,175,55,.12);
}

.ai-premium img{
  width:100%;
  border-radius:20px;
  display:block;
  border:1px solid rgba(212,175,55,.25);
  box-shadow:0 0 35px rgba(212,175,55,.18);
}

.ai-premium-text h3{
  font-size:34px;
  line-height:1.5;
  color:#ffe08a;
  margin-bottom:16px;
}

.ai-premium-text p{
  color:#ddd;
  line-height:2;
  margin-bottom:24px;
}

@media(max-width:900px){
  .ai-premium{
    grid-template-columns:1fr;
  }

  .ai-premium-text h3{
    font-size:26px;
  }
}
/* ==========================
   NOX REGISTER PAGE
========================== */

.register-body{
    background:#050505;
    color:#fff;
    font-family:"Noto Sans JP",sans-serif;
}

.register-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
}

.register-section{
    width:100%;
    max-width:900px;
}

.register-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(212,175,55,.25);
    border-radius:28px;
    backdrop-filter:blur(18px);
    padding:50px;
    box-shadow:0 25px 60px rgba(0,0,0,.55);
}
.register-title{
    font-size:42px;
    text-align:center;
    color:#d4af37;
    margin-bottom:12px;
}

.register-sub{
    text-align:center;
    color:#aaa;
    margin-bottom:40px;
}

.nox-form{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.full{
    grid-column:1/-1;
}

.nox-form label{
    display:flex;
    flex-direction:column;
    gap:10px;
    color:#d4af37;
    font-weight:600;
}
.nox-form input,
.nox-form select,
.nox-form textarea{
    width:100%;
    padding:15px;
    border-radius:12px;
    border:1px solid rgba(212,175,55,.3);
    background:#111;
    color:#fff;
    font-size:16px;
    transition:.3s;
    outline:none;
}

.nox-form input:focus,
.nox-form select:focus,
.nox-form textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,.35);
}

.nox-form textarea{
    resize:vertical;
    min-height:140px;
}

.nox-form input[type=file]{
    padding:12px;
    background:#181818;
}
.register-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:999px;
    background:linear-gradient(90deg,#b8860b,#ffd86b,#b8860b);
    color:#111;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 0 25px rgba(212,175,55,.35);
}

.register-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 40px rgba(212,175,55,.6);
}

.back-link{
    display:block;
    text-align:center;
    margin-top:25px;
    color:#d4af37;
    text-decoration:none;
    transition:.3s;
}

.back-link:hover{
    color:#fff;
}

@media(max-width:900px){
    .form-grid{
        grid-template-columns:1fr;
    }

    .register-card{
        padding:30px 20px;
    }

    .register-title{
        font-size:32px;
    }
}