:root{
  --bg0:#0b0d10;
  --bg1:#121722;
  --text:#ffffff;
  --muted:#a0a6b1;
  --muted2:#7f8693;
  --gold:#C6922E;
  --gold2:#b58224;
  --glass: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.14);
}

*{margin:0;padding:0;box-sizing:border-box}
html,body{min-height:100%; height:auto}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
  overflow-y:auto;
}

/* ===== Background layers ===== */
.bg{ position:fixed; inset:0; pointer-events:none; }

.bg-grid{
  position:absolute; inset:-20%;
  opacity:0.06;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 80px 80px;
  /* removed mask to prevent horizontal banding */
  mask-image:none;
  -webkit-mask-image:none;
}

.bg-orb{
  position:absolute;
  width:720px; height:720px;
  border-radius:50%;
  filter: blur(18px);
  opacity:0.75;
  animation: float 10s ease-in-out infinite;
}

.bg-orb-1{
  left:-220px; top:-220px;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.03) 35%,
    rgba(255,255,255,0.00) 70%);
}

.bg-orb-2{
  right:-260px; bottom:-260px;
  background: radial-gradient(circle at 35% 35%,
    rgba(198,146,46,0.16) 0%,
    rgba(198,146,46,0.06) 35%,
    rgba(198,146,46,0.00) 70%);
  animation-delay:-2.5s;
}

@keyframes float{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(0,-16px) scale(1.02); }
}

.bg-noise{
  position:absolute; inset:0;
  opacity:0.06;
  background-image:
    repeating-radial-gradient(circle at 0 0,
      rgba(255,255,255,0.06) 0,
      rgba(255,255,255,0.06) 1px,
      rgba(0,0,0,0) 2px,
      rgba(0,0,0,0) 3px);
  mix-blend-mode: soft-light;
}

/* ===== Layout ===== */
.wrap{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 72px 7% 72px;
}


.stack{
  width: min(860px, 100%);
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* ===== Card ===== */
.card{
  width: 100%;
  padding: 28px 34px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45), 0 2px 18px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toprow{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}

/* Logo (no cutoff, consistent size) */
.logo{
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

h1{
  font-size: 54px;
  font-weight: 720;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

h2{
  font-size: 18px;
  font-weight: 520;
  color: rgba(198,146,46,0.95);
  margin-bottom: 18px;
}

.desc{
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 62ch;
}

.form{
  display:flex;
  gap: 12px;
  margin-bottom: 16px;
}

input{
  flex: 1;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,12,16,0.35);
  color: var(--text);
  outline: none;
}

input::placeholder{ color: rgba(160,166,177,0.75); }

input:focus{
  border-color: rgba(198,146,46,0.45);
  box-shadow: 0 0 0 4px rgba(198,146,46,0.12);
}

button{
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(198,146,46,0.30);
  background: linear-gradient(180deg, rgba(198,146,46,1), rgba(181,130,36,1));
  color:#0b0d10;
  font-weight: 700;
  cursor:pointer;
  transition: transform .15s ease, filter .2s ease;
  white-space: nowrap;
}

button:hover{ transform: translateY(-1px); filter: brightness(1.04); }
button:active{ transform: translateY(0px) scale(0.99); }

.meta{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted2);
  font-size: 13px;
  margin-bottom: 18px;
}

.dot{
  width:4px; height:4px;
  border-radius:50%;
  background: rgba(255,255,255,0.25);
}

footer{
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== Poster ===== */
.poster{
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.30);
}

.poster-inner{
  border-radius: 14px;
  overflow-x:hidden;
  overflow-y:auto;
  background: rgba(0,0,0,0.25);
}

/* Limit height so it doesn’t look huge */
.brand-image{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display:block;
  opacity: 0.98;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,0.35));
}

.poster-caption{
  text-align:center;
  padding: 12px 0 2px;
}

.poster-title{
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.poster-sub{
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 720px){
  body{ overflow:auto; }
  .wrap{ height:auto; padding: 40px 7%; }
  h1{ font-size: 40px; }
  .form{ flex-direction: column; }
  button{ width: 100%; }
  .brand-image{ height: 220px; }
}

/* ===== Poster links ===== */
.poster-link{
  display:block;
  text-decoration:none;
  color:inherit;
}
.poster-link:focus-visible{
  outline: 2px solid rgba(198,146,46,0.55);
  outline-offset: 6px;
  border-radius: 18px;
}
.poster-cta{
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.poster-link:hover .poster{
  transform: translateY(-2px);
}
.poster{
  transition: transform 180ms ease;
}

/* ===== Product pages ===== */
.product-wrap{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 72px 7% 72px;
}

.product-shell{
  width: min(980px, 100%);
}

.product-topbar{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  margin-bottom: 18px;
}

.product-topbar img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.95;
}

.product-hero{
  text-align:center;
  padding: 28px 28px 20px;
  border: 1px solid var(--border);
  background: var(--glass);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.product-hero img{
  width: min(560px, 92%);
  border-radius: 18px;
  display:block;
  margin: 0 auto 18px;
}

.product-hero h1{
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.product-powered{
  color: var(--muted);
  margin-bottom: 14px;
}

.product-lede{
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
}

.section-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 880px){
  .section-grid{
    grid-template-columns: 1fr 1fr;
  }
  .section-grid .wide{
    grid-column: 1 / -1;
  }
}

.pcard{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.pcard h3{
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.pcard p, .pcard li{
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 15px;
}

.pcard ul{
  padding-left: 18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198,146,46,0.40);
  background: rgba(198,146,46,0.10);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 14px;
}

.back-home{
  display:inline-block;
  margin-top: 20px;
  color: rgba(255,255,255,0.76);
  text-decoration:none;
}
.back-home:hover{
  text-decoration: underline;
}
