:root{
  --bg:#070707;
  --fg:#e9e6df;
  --muted:rgba(233,230,223,.72);
  --ring:rgba(233,230,223,.18);
  --goldA: rgba(241,198,92,.45);
  --goldB: rgba(241,198,92,.25);
  --goldC: rgba(241,198,92,.12);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  background:
    radial-gradient(1000px 600px at 70% 20%, rgba(233,230,223,.08), transparent 60%),
    var(--bg);
  color:var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.wrap{max-width:1100px;margin:0 auto;padding:24px}

/* ================= HEADER ================= */

.header{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid rgba(233,230,223,.06);
}

.brand-logo img{
  height:64px;
  width:auto;
  display:block;
  filter:drop-shadow(0 0 12px var(--goldA));
}

.brand-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  pointer-events:auto;
}

.brand-center img{
  height:46px;
  width:auto;
  display:block;
  filter:drop-shadow(0 0 12px var(--goldA));
  opacity:.95;
}

@media (max-width: 640px){
  .brand-center{ display:none; }
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:13px;
  color:var(--muted);
}

.nav-link{
  padding:10px 0;
  transition:color .15s ease;
}

.nav-link:hover{
  color:white;
}

.nav-btn-link{
  appearance:none;
  border:none;
  background:transparent;
  color:inherit;
  font:inherit;
  cursor:pointer;
}

/* ✅ Social icon buttons */
.nav-icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(233,230,223,.10);
  background: rgba(7,7,7,.25);
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.nav-icon svg{
  width:16px;
  height:16px;
  fill: currentColor;
  opacity:.9;
}

.nav-icon:hover{
  transform: translateY(-1px);
  border-color: rgba(233,230,223,.24);
  box-shadow: 0 0 18px rgba(241,198,92,.12);
  color: #fff;
}

/* ================= HERO ================= */

.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  padding-top:40px;
  align-items:center;
}

.kicker{
  margin:0 0 10px;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.title{
  margin:0;
  font-size:72px;
  letter-spacing:.3em;
  text-indent:.3em;
  line-height:.95;
}

.sub{
  margin:14px 0 18px;
  color:var(--muted);
  max-width:50ch;
  line-height:1.6;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--ring);
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.1em;
  background:transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  color:inherit;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(233,230,223,.28);
}

.btn.primary{
  background:rgba(233,230,223,.12);
}

.btn.primary:hover{
  box-shadow:0 0 20px var(--goldB);
  background:rgba(233,230,223,.16);
}

.hero-logo:hover{
  filter:
    drop-shadow(0 0 30px rgba(241,198,92,.45))
    drop-shadow(0 0 80px rgba(241,198,92,.25));
  transition: filter .4s ease;
}

.logo-title{
  margin:0;
  display:flex;
  align-items:center;
}

.hero-logo{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;

  filter:
    drop-shadow(0 0 20px rgba(241,198,92,.25))
    drop-shadow(0 0 50px rgba(0,0,0,.7));
}

/* ================= EMAIL CAPTURE ================= */

.email-capture{
  margin-top:34px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(233,230,223,.10);
  background: linear-gradient(180deg, rgba(233,230,223,.05), rgba(233,230,223,.02));
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}

.email-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.email-copy h2{
  margin:0;
  font-size:14px;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.email-copy p{
  margin:8px 0 0;
  color:var(--muted);
  max-width:52ch;
  line-height:1.5;
}

.email-form{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.email-input{
  width:min(360px, 70vw);
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(233,230,223,.14);
  background: rgba(7,7,7,.55);
  color: var(--fg);
  outline:none;
}

.email-input:focus{
  border-color: rgba(241,198,92,.35);
  box-shadow: 0 0 0 4px rgba(241,198,92,.12);
}

/* ================= AURA CARD ================= */

.hero-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.aura-card{
  width:460px;
  max-width:100%;
  aspect-ratio:4/5;
  border-radius:24px;
  border:1px solid rgba(233,230,223,.1);
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 70px rgba(0,0,0,.6);
  background: linear-gradient(180deg, rgba(233,230,223,.04), rgba(233,230,223,.02));
}

.column{
  position:absolute;
  left:50%;
  top:15%;
  width:55%;
  height:75%;
  transform:translateX(-50%);
  background:rgba(233,230,223,.06);
  border-radius:18px;
  opacity:.4;
  z-index:1;
}

.aura{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at center, var(--goldC), transparent 60%);
  filter:blur(20px);
  opacity:.9;
  z-index:1;
}

/* ================= PSEUDO 3D TEE (FIXED) ================= */

.tee3d-wrap{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
  pointer-events:none;
}

.tee3d{
  position:relative;
  width:105%;
  max-width:480px;
  aspect-ratio: 1 / 1.05;
  transform-style: preserve-3d;
  perspective: 900px;
  animation: teeTurn 16s ease-in-out infinite;
  filter:
    drop-shadow(0 0 18px rgba(241,198,92,.10))
    drop-shadow(0 0 50px rgba(0,0,0,.55));
}

.tee-face{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;
  backface-visibility: hidden;
  transform: translateZ(18px);
  will-change: opacity;
}

.tee-back{
  transform: translateZ(18px);
}

@keyframes teeTurn{
  0%   { transform: rotateY(-28deg) rotateX(6deg) scale(1.02); }
  50%  { transform: rotateY( 28deg) rotateX(6deg) scale(1.02); }
  100% { transform: rotateY(-28deg) rotateX(6deg) scale(1.02); }
}

.tee-front{
  opacity:1;
  z-index:2;
  animation:
    faceFrontOpacity 16s ease-in-out infinite,
    frontZ 16s steps(1,end) infinite;
}

.tee-back{
  opacity:0;
  z-index:1;
  animation:
    faceBackOpacity 16s ease-in-out infinite,
    backZ 16s steps(1,end) infinite;
}

@keyframes faceFrontOpacity{
  0%   { opacity:1; }
  32%  { opacity:1; }
  48%  { opacity:0; }
  88%  { opacity:0; }
  100% { opacity:1; }
}

@keyframes faceBackOpacity{
  0%   { opacity:0; }
  30%  { opacity:0; }
  42%  { opacity:1; }
  74%  { opacity:1; }
  92%  { opacity:0; }
  100% { opacity:0; }
}

@keyframes frontZ{
  0%, 55%, 100% { z-index:2; }
  56%, 95%      { z-index:1; }
}
@keyframes backZ{
  0%, 55%, 100% { z-index:1; }
  56%, 95%      { z-index:2; }
}

.sigil{
  position:absolute;
  bottom:8%;
  left:50%;
  transform:translateX(-50%);
  letter-spacing:.4em;
  text-indent:.4em;
  font-size:14px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(233,230,223,.14);
  background: rgba(7,7,7,.35);
  backdrop-filter: blur(8px);
  z-index:3;
}

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

/* ================= CONTACT MODAL ================= */

.modal-backdrop{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.60);
  padding:16px;
  z-index:9999;
}

.modal-backdrop.is-open{
  display:grid;
}

.modal{
  width:min(540px, 100%);
  border-radius:18px;
  border:1px solid rgba(233,230,223,.14);
  background: rgba(7,7,7,.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  overflow:hidden;
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(233,230,223,.08);
}

.modal-head h2{
  margin:0;
  font-size:14px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--fg);
}

.modal-close{
  appearance:none;
  border:none;
  background:transparent;
  color: var(--fg);
  font-size:18px;
  cursor:pointer;
  padding:6px 8px;
  border-radius:10px;
}

.modal-close:hover{
  background: rgba(233,230,223,.06);
}

.modal-body{
  display:grid;
  gap:12px;
  padding:16px;
}

.modal-body label{
  display:grid;
  gap:6px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--muted);
}

.modal-body input,
.modal-body textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(233,230,223,.14);
  background: rgba(7,7,7,.55);
  color: var(--fg);
  outline:none;
}

.modal-body input:focus,
.modal-body textarea:focus{
  border-color: rgba(241,198,92,.35);
  box-shadow: 0 0 0 4px rgba(241,198,92,.12);
}

.modal-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:6px;
}

/* ================= FOOTER SOCIAL ================= */

.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:28px;
}

.footer-social{
  display:flex;
  gap:14px;
  color:var(--muted);
  font-size:13px;
}

.footer-social a:hover{
  color:#fff;
}
/* SOCIAL ICON GROUP */

.nav-social{

display:flex;

gap:10px;

margin-left:10px;

}


.nav-social a{

width:34px;

height:34px;

display:flex;

align-items:center;

justify-content:center;

border-radius:999px;

border:1px solid rgba(233,230,223,.1);

background:rgba(7,7,7,.3);

transition:.15s;

}


.nav-social svg{

width:16px;

height:16px;

fill:white;

opacity:.8;

}


.nav-social a:hover{

box-shadow:0 0 20px rgba(241,198,92,.2);

transform:translateY(-1px);

}
/* ================= BUY BUTTON GLOW ================= */

.buy-row .btn.primary{

position:relative;

overflow:hidden;

/* stronger gold aura */
box-shadow:
0 0 20px rgba(241,198,92,.25),
0 0 60px rgba(241,198,92,.12);

animation: buyGlow 3s ease-in-out infinite;

}


/* Soft pulsing aura */

@keyframes buyGlow{

0%{
box-shadow:
0 0 20px rgba(241,198,92,.25),
0 0 60px rgba(241,198,92,.10);
}

50%{
box-shadow:
0 0 35px rgba(241,198,92,.45),
0 0 90px rgba(241,198,92,.25);
}

100%{
box-shadow:
0 0 20px rgba(241,198,92,.25),
0 0 60px rgba(241,198,92,.10);
}

}


/* Moving light shine */

.buy-row .btn.primary::after{

content:"";

position:absolute;

top:-50%;

left:-40%;

width:40%;

height:200%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.35),
transparent
);

transform:rotate(25deg);

animation: shineMove 4s linear infinite;

}


@keyframes shineMove{

0%{
left:-40%;
}

100%{
left:140%;
}

}
/* ================= MOBILE RESPONSIVE OVERRIDES ================= */
@media (max-width: 820px){

  /* Prevent sideways scroll */
  html, body { overflow-x: hidden; }
  img, svg { max-width: 100%; height: auto; }

  .wrap{
    padding: 18px 16px;
  }

  /* HEADER: tighten + allow wrap */
  .header{
    padding: 10px 0;
    gap: 10px;
  }

  .brand-logo img{
    height: 44px; /* was 64 */
  }

  .nav{
    gap: 10px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-link{
    padding: 8px 0;
  }

  .nav-social{
    margin-left: 0;
    gap: 8px;
  }

  .nav-social a{
    width: 32px;
    height: 32px;
  }

  .nav-social svg{
    width: 15px;
    height: 15px;
  }

  /* HERO: stack */
  .hero{
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .hero-left{ order: 1; }
  .hero-right{ order: 2; }

  .kicker{
    font-size: 12px;
    letter-spacing: .16em;
  }

  .title{
    font-size: 48px;
    letter-spacing: .22em;
    text-indent: .22em;
  }

  .hero-logo{
    max-width: 340px;
    width: min(340px, 85vw);
    margin: 0;
  }

  .sub{
    font-size: 15px;
    line-height: 1.5;
    max-width: 60ch;
  }

  /* Aura card fits better */
  .aura-card{
    width: min(420px, 100%);
    margin: 0 auto;
  }

  /* Tee animation: reduce scale so it doesn’t overflow */
  .tee3d{
    width: 100%;
    max-width: 420px;
  }

  /* Buttons: full width on mobile */
  .buy-row .btn,
  .cta-row .btn{
    width: 100%;
    text-align: center;
  }

  /* Email capture: stack + full width inputs */
  .email-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .email-form{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .email-input{
    width: 100%;
    min-width: 0;
  }

  .email-form .btn{
    width: 100%;
  }

  /* Footer: stack */
  .footer{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px){
  /* Even tighter on very small phones */
  .brand-logo img{ height: 40px; }
  .title{ font-size: 42px; }
  .aura-card{ width: 100%; }
}
