:root{
  --bg:#0b0b0b; --txt:#f6f6f6; --muted:#c8c8c8;
  --panel: rgba(255,255,255,.06); --stroke: rgba(255,255,255,.18);
  --orange:#ff7a18; --orange-strong:#ff8c32; --good:#40d39b;
  --shadow: 0 18px 48px rgba(0,0,0,.46);
}
*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg); color:var(--txt); overflow-x:hidden;
}

/* Background */
.bg-mesh{
  position:fixed; inset:-10vmax; z-index:-3;
  background:
    radial-gradient(42vmax 42vmax at 12% 18%, rgba(255,122,24,.18), transparent 60%),
    radial-gradient(50vmax 50vmax at 88% 22%, rgba(255,122,24,.08), transparent 60%),
    radial-gradient(55vmax 55vmax at 50% 88%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #0a0a0a 100%);
  animation: float 24s ease-in-out infinite alternate;
  filter:saturate(1.05);
}
@keyframes float{ 0%{transform:translateY(0)} 100%{transform:translateY(-1.2vh)} }
.grid-overlay{
  position:fixed; inset:0; z-index:-2; pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px) 0 0/44px 44px,
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0/44px 44px;
  mask-image: radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,.9), transparent 80%);
}
.orbs{ position:fixed; inset:0; z-index:-1; pointer-events:none }
.orb{ position:absolute; border-radius:50%; filter:blur(30px);
  background:radial-gradient(closest-side, rgba(255,122,24,.22), transparent 70%) }
.o1{ width:26vmax;height:26vmax; top:6%; left:-8% }
.o2{ width:22vmax;height:22vmax; bottom:-12%; right:-6% }
.o3{ width:20vmax;height:20vmax; top:62%; left:62% }

/* Utilities */
.container{ width:min(1200px,92vw); margin-inline:auto }
.glass{
  background:var(--panel); border:1px solid var(--stroke);
  border-radius:22px; backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  box-shadow:var(--shadow)
}
.muted{ color:var(--muted) }
.accent{ color:var(--orange-strong); text-shadow: 0 0 18px rgba(255,122,24,.35) }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:.75rem 1.1rem; border-radius:14px; border:1px solid rgba(255,255,255,.24);
  color:var(--txt); background:rgba(255,255,255,.06); font-weight:800; transition:.22s
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(255,122,24,.22) }
.btn.primary{ background:linear-gradient(135deg,#ff7a18,#ff9538); border-color:#ff9a3f; color:#0a0a0a }
.btn.ghost{ background:transparent }
.upgrade{ background:linear-gradient(135deg,#ff7a18,#ff9538); border-color:#ff9a3f; color:#0a0a0a }

/* Topbar */
.topbar{ display:flex; align-items:center; justify-content:space-between; padding:20px 0 }
.brand{ display:flex; align-items:center; gap:.6rem; text-decoration:none; color:var(--txt) }
.logo-dot{ width:14px;height:14px;border-radius:50%; background:linear-gradient(135deg,#ff7a18,#ff9538); box-shadow:0 0 16px rgba(255,122,24,.6) }
.brand-text{ font-weight:800; letter-spacing:.02em }
.nav{ display:flex; gap:.6rem; flex-wrap:wrap }
.nav a{ color:var(--txt); text-decoration:none; opacity:.9; padding:.55rem .8rem; border-radius:10px }
.nav a:hover{ background:rgba(255,255,255,.08); opacity:1 }

/* Gate */
.gate{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:1.2rem;
  padding:1rem; margin-top:.5rem; animation: fadeUp .5s ease both;
}
@keyframes fadeUp{ from{ opacity:0; transform:translateY(8px)} to{opacity:1; transform:none} }
.left{ padding:1rem 1.2rem 1.2rem }
.right{ padding:1rem 1.2rem 1.2rem; display:grid; gap:1rem; align-items:start }

.tag{
  display:inline-block; padding:.4rem .6rem; border-radius:999px;
  background:rgba(255,255,255,.08); border:1px solid var(--stroke); font-weight:800; margin-bottom:.5rem
}
h1{ margin:.2rem 0 .35rem; font-size: clamp(26px, 3.8vw, 40px) }
.lede{ margin:.2rem 0 .8rem; color:var(--muted); max-width:60ch; line-height:1.45 }
.points{ list-style:none; padding:0; margin:.2rem 0 1rem; display:grid; gap:.45rem }
.dot{ width:10px;height:10px;border-radius:50%; display:inline-block; margin-right:.45rem; transform:translateY(1px) }
.good{ background:var(--good); box-shadow:0 0 10px rgba(64,211,155,.5) }
.pills{ display:flex; gap:.5rem; flex-wrap:wrap; margin:.2rem 0 1rem }
.pill{ padding:.45rem .7rem; border-radius:999px; background:rgba(255,255,255,.07); border:1px solid var(--stroke); font-weight:800 }

.remember{ display:flex; align-items:center; gap:.5rem; margin:.2rem 0 .9rem; user-select:none }
.remember input{ width:18px;height:18px; accent-color:#ff9538 }

.cta-row{ display:flex; gap:.7rem; flex-wrap:wrap }
.fineprint{ color:var(--muted); margin:.7rem 0 0; font-size:.9rem }

/* ---- Circular badge (logo only + soft sheen) ---- */

.logo-only{
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.logo-big{
  width: 400px;   /* adjust size as needed */
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(255,122,24,.35));
}

/* Optional: a tighter version on small screens */

/* Shield panel */
.shield{ padding:1rem; border-radius:16px }
.shield-row{ display:flex; gap:.7rem; align-items:center; margin-bottom:.7rem }
.shield-dot{ width:12px;height:12px;border-radius:50%; background:var(--good); box-shadow:0 0 12px rgba(64,211,155,.6) }
.shield-title{ font-weight:800 }
.shield-sub{ color:var(--muted); font-size:.95rem }
.bar {
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid var(--stroke);
    overflow: hidden;
    padding-top: 0;
}

.bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff7a18, #ff9538);
    box-shadow: 0 8px 20px rgba(255,122,24,.35) inset;
    transition: width .6s ease;
}

/* Overlay popup while redirecting */
.overlay{ position:fixed; inset:0; display:grid; place-items:center; background:rgba(0,0,0,.35); backdrop-filter: blur(2px); z-index:1000 }
.overlay[hidden]{ display:none }
.overlay .card{ padding:1rem 1.2rem; border-radius:16px }
.spinner{ width:26px;height:26px; border:3px solid rgba(255,255,255,.25); border-top-color:#ff9333; border-radius:50%; animation:spin 1s linear infinite }

/* Responsive */
@media (max-width: 940px){
  .gate{ grid-template-columns: 1fr; }
  .right{ order:-1 }
}

.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 80px;     /* match your other pages */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255,122,24,.4));
  transition: transform .25s ease;
}

.brand-logo:hover{
  transform: scale(1.05);
}