
:root{
  --bg:#040404;
  --panel:#121214;
  --text:#f4f1ea;
  --muted:#b7af9f;
  --gold:#d4af37;
  --gold-soft:#f2df98;
  --line:rgba(212,175,55,.16);
  --shadow:0 20px 70px rgba(0,0,0,.55);
  --max:980px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter", Arial, sans-serif;
  color:var(--text);
  background:#040404;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.05;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.05) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.05) 0 1px, transparent 1px);
  background-size:120px 120px,160px 160px,200px 200px;
  z-index:0;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(4,4,4,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(212,175,55,.16);
}
.site-header::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
}
.header-wrap{
  max-width:calc(var(--max) + 40px);
  margin:0 auto;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.brand-logo{
  height:52px;
  transition:transform .25s ease, filter .25s ease;
}
.brand-link:hover .brand-logo{
  transform:translateY(-1px) scale(1.02);
  filter:drop-shadow(0 8px 18px rgba(212,175,55,.16));
}
.nav{
  display:flex;
  gap:22px;
  color:#d4ccbd;
  font-size:14px;
}

.floating-apply{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  background:linear-gradient(180deg,#f2df98,#d4af37);
  color:#111;
  font-weight:800;
  box-shadow:0 14px 28px rgba(212,175,55,.22);
  transition:transform .22s ease, box-shadow .22s ease;
}
.floating-apply:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(212,175,55,.30);
}

.section{
  position:relative;
  z-index:1;
  max-width:var(--max);
  margin:0 auto;
  padding:88px 20px;
}

.hero{
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.10), transparent 35%),
    linear-gradient(180deg,#040404,#0a0a0d);
}

.glass{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(212,175,55,.14);
  border-radius:24px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(8px);
  transition:transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.glass:hover{
  border-color:rgba(212,175,55,.2);
  box-shadow:0 24px 74px rgba(0,0,0,.58);
}

.hero-shell,.price-shell,.scarcity-shell,.form-shell,.seo-shell{
  padding:40px 28px;
}
.hero-shell{
  text-align:center;
  animation:fadeRise .7s ease both;
}
.hero-badge,.eyebrow{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.18);
  background:rgba(212,175,55,.05);
  color:var(--gold);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
}
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}
.eyebrow.center{margin:0 auto 16px}

h1,h2,h3{
  margin:0 0 14px;
  line-height:1.06;
}
h1{
  font-size:clamp(2.2rem,5.5vw,4.5rem);
  letter-spacing:-.05em;
  margin:18px 0 28px;
  padding:0 14px;
  line-height:1.08;
  text-shadow:0 2px 12px rgba(212,175,55,.08);
}
h2{
  font-size:clamp(1.7rem,3.8vw,2.6rem);
  letter-spacing:-.03em;
}
h3{font-size:1.08rem}

.hero-sub,.hero-note,.lead,p{
  color:#ddd6c9;
  line-height:1.72;
}
.hero-sub{
  max-width:760px;
  margin:0 auto;
  font-size:clamp(1.08rem,2.5vw,1.38rem);
  font-weight:500;
}
.hero-note{
  max-width:760px;
  margin:18px auto 0;
  font-size:1rem;
  color:#bdb4a4;
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.btn:hover{transform:translateY(-2px)}
.gold-btn{
  background:linear-gradient(180deg,#f2df98,#d4af37);
  color:#111;
  box-shadow:0 14px 28px rgba(212,175,55,.22);
}
.gold-btn:hover{box-shadow:0 18px 34px rgba(212,175,55,.26)}
.ghost-btn{
  border-color:rgba(212,175,55,.16);
  background:rgba(255,255,255,.02);
  color:#fff;
}
.ghost-btn:hover{
  border-color:rgba(212,175,55,.28);
  background:rgba(212,175,55,.05);
}

.price-shell{
  max-width:720px;
  margin:0 auto;
  text-align:center;
  animation:fadeRise .85s ease both;
}
.price-kicker{
  color:var(--gold);
  font-size:.95rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1.35;
  margin-bottom:16px;
}
.price-kicker sup{
  font-size:.6em;
  position:relative;
  top:-.35em;
}
.price-value{
  font-size:clamp(2.8rem,6vw,4.4rem);
  color:var(--gold);
  font-weight:800;
  letter-spacing:-.05em;
  line-height:1.02;
}
.price-sub{
  margin-top:10px;
  color:#b6ad9c;
  font-size:1rem;
}
.price-text{
  margin-top:18px;
  color:#f0e7cf;
  font-size:1.1rem;
  font-weight:500;
}
.price-note{
  margin:20px auto 0;
  max-width:560px;
  color:#9c9588;
  font-size:.9rem;
}
.price-btn{
  margin-top:24px;
  min-width:220px;
}

.three-grid,.legal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.simple-card{
  position:relative;
  overflow:hidden;
  padding:24px 20px;
  text-align:center;
  animation:fadeRise .8s ease both;
}
.simple-card:nth-child(2){animation-delay:.12s}
.simple-card:nth-child(3){animation-delay:.24s}
.simple-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(212,175,55,.06);
  z-index:0;
}
.simple-card > *{
  position:relative;
  z-index:1;
}
.simple-card:hover{
  transform:translateY(-4px);
}
.card-title{
  font-size:1.2rem;
  font-weight:700;
  color:var(--gold-soft);
  margin-bottom:12px;
  transition:letter-spacing .22s ease, color .22s ease;
}
.simple-card:hover .card-title{
  letter-spacing:.01em;
  color:#f4e4aa;
}

.scarcity-shell{
  text-align:center;
}
.scarcity-shell .eyebrow{
  margin-bottom:16px;
}
.scarcity-shell h2{
  margin-top:10px;
  line-height:1.25;
}

.form-shell{
  max-width:860px;
  margin:0 auto;
  padding:28px;
}
.application-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 18px;
}
.application-grid label{
  display:block;
  text-align:left;
  font-weight:600;
  color:#f1ece4;
}
.application-grid input,
.application-grid textarea{
  width:100%;
  margin-top:8px;
  padding:14px 15px;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.16);
  background:rgba(255,255,255,.02);
  color:#fff;
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  font:inherit;
}
.application-grid textarea{
  min-height:140px;
}
.application-grid .full-row{
  grid-column:1 / -1;
}
.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.checkbox input{
  width:auto;
  margin-top:4px;
}
.full{width:100%}
.small-text{
  margin-top:12px;
  color:#8c8579;
  font-size:.94rem;
}

.legal-grid{
  grid-template-columns:repeat(2,1fr);
}
.legal-card{
  padding:24px 22px;
}

.site-footer{
  position:relative;
  z-index:1;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px 48px;
}
.footer-slogan{
  text-align:center;
  margin-bottom:18px;
  font-size:1rem;
  color:var(--gold);
  letter-spacing:.04em;
  font-weight:600;
  opacity:.9;
}
.footer-meta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.footer-logo{
  height:40px;
}
.small-muted{
  font-size:12px;
  color:#8c8579;
  text-align:center;
  line-height:1.6;
}
.small-muted p{
  margin:0;
}

@keyframes fadeRise{
  from{opacity:0; transform:translateY(12px)}
  to{opacity:1; transform:translateY(0)}
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}

@media (max-width:900px){
  .nav{display:none}
  .three-grid,.legal-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:760px){
  .application-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .section{
    padding:72px 18px;
  }
  .header-wrap{
    padding:14px 18px;
  }
  .brand-logo{
    height:46px;
  }
  .hero-shell,.price-shell,.scarcity-shell,.form-shell{
    padding:30px 18px;
  }
  .hero-actions{
    flex-direction:column;
  }
  .btn{
    width:100%;
  }
  .floating-apply{
    left:18px;
    right:18px;
  }
}


/* Final spacing polish */
.eyebrow{
  margin-bottom:22px !important;
  opacity:.9;
}

h1{
  margin:24px 0 34px !important;
}
