/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-tap-highlight-color:transparent; }
body {
  font-family:'Inter', sans-serif;
  background: #070705;
  color: #ffffff;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
:root {
  --red: #e4cd82;
  --red-deep: #e4cd82;
  --red-soft:#FFF0F0;
  --white:#ffffff;
  --off: #231f12;
  --gray:#6B7280;
  --line:#F0F0F0;
  --dark: #000000;
  --ease:cubic-bezier(.4,0,.2,1);
  --nav:64px;
}
img,svg { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
button { font-family:inherit; cursor:pointer; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 20px; }
@media(min-width:768px){ .container{ padding:0 40px; } }

.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 28px; border-radius:8px; font-weight:600; font-size:15px;
  transition:.25s var(--ease); border:2px solid transparent; cursor:pointer;
  white-space:nowrap;
}
.btn-red   {background:var(--red);color: #000000;border-color:var(--red);}
.btn-red:hover { background:var(--red-deep); border-color:var(--red-deep); transform:translateY(-2px); box-shadow:0 8px 24px rgba(227,28,37,.3); }
.btn-ghost { background:transparent; color:var(--red); border-color:var(--red); }
.btn-ghost:hover { background:var(--red); color:#000000; transform:translateY(-2px); }
.btn-ghosting { background:transparent; color:#fff; border-color:var(--red); }
.btn-ghosting:hover { background:var(--red); color:#fff; transform:translateY(-2px); }
.btn-white { background:#fff; color:var(--red); border-color:#fff; }
.btn-white:hover { background:var(--red-soft); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.15); }

.tag {
  display:inline-block; font-size:11px; font-weight:700; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--red); margin-bottom:14px;
}
h2.title {
  font-family:'Poppins',sans-serif;
  font-weight:800;
  font-size:clamp(26px,5vw,50px);
  line-height:1.15;
  margin-bottom:16px;
  color: #ffffff;
}
.sub {
  font-size:clamp(14px,2vw,17px); color:var(--gray); line-height:1.75; max-width:540px;
}

.page { display:none; }
.page.active { display:block; }

.fade { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.fade.in { opacity:1; transform:none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR (GLASS STYLE)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;

  background:rgb(0 0 0 / 75%);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(0,0,0,0.06);
}

.nav-wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  height:var(--nav);
}

@media(min-width:768px){
  .nav-wrap{ padding:0 40px; }
}

/* LOGO */
.logo img {
  display:block;
}

/* NAV LINKS */
.nav-links { display:none; }

@media(min-width:900px){
  .nav-links {
    display:flex;
    gap:32px;
    list-style:none;
  }

  .nav-links a {
    font-size:14px;
    font-weight:500;
    color: #ffffff;
  }

  .nav-links a:hover {
    color:var(--red);
  }
}

/* CTA */
.nav-cta { display:none; }

@media(min-width:900px){
  .nav-cta {
    display:flex;
    gap:10px;
  }

  .nav-cta .btn {
    padding:9px 20px;
    border-radius:8px;
  }
}

/* HAMBURGER */
.ham {
  display:flex;
  flex-direction:column;
  gap:5px;
  justify-content:center;
  align-items:center;
  width:44px;
  height:44px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  /* box-shadow:0 4px 12px rgba(0,0,0,0.06); */
}

@media(min-width:900px){
  .ham{ display:none; }
}

.ham span {
  width:20px;
  height:2px;
  background:var(--dark);
  border-radius:2px;
}

.drawer-wrap {
  position: fixed;
  inset: 0;
  top: var(--nav); /* sits below navbar */
  z-index: 890;
  visibility: hidden;
  pointer-events: none;
}
.drawer-wrap.open {
  visibility: visible;
  pointer-events: all;
}

.fullmenu {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s cubic-bezier(.4,0,.2,1);
}
.drawer-wrap.open .fullmenu {
  transform: translateY(0);
  opacity: 1;
}

/* Top bar */
.fm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
  flex-shrink: 0;
}
.fm-greeting {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}
.fm-close {
  width: 34px; height: 34px;
  border: none; border-radius: 8px;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.fm-close:hover { background: #E31C25; }
.fm-close:hover svg { stroke: #fff; }
.fm-close svg {
  width: 15px; height: 15px;
  stroke: #555; stroke-width: 2.5; stroke-linecap: round;
  fill: none;
}

/* Nav list */
.fm-nav {
  flex: 1;
  padding: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.fm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  border: 1px solid transparent;
}
.fm-item:hover { background: rgb(227 189 28 / 5%); }
.fm-item.active {background: rgb(227 208 28 / 7%);}
.fm-item--cta {
  background: rgba(227,28,37,.04);
  border-color: rgba(227,28,37,.14);
}
.fm-item--cta:hover { background: rgba(227,28,37,.08); }

/* Icon boxes */
.fm-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.fm-icon--active {background: #e4cd82;}
.fm-icon--cta    { background: rgb(95 2 7 / 10%); }

/* Labels */
.fm-label { flex: 1; }
.fm-label h4 {
  font-size: 15px; font-weight: 600;
  color: #ffffff; margin: 0 0 2px;
}
.fm-label p {
  font-size: 12px; color: #999; margin: 0;
}
.fm-item.active  .fm-label h4 {color: #e4cd82;}
.fm-cta-text { color: #750000 !important; }

/* Chevron */
.fm-chev {
  width: 14px; height: 14px;
  stroke: #ccc; stroke-width: 2;
  stroke-linecap: round; fill: none; flex-shrink: 0;
}
.fm-item.active .fm-chev { stroke: #750000; }
.fm-item:hover  .fm-chev { stroke: #750000; }

.fm-divider { height: 1px; background: #f0f0f0; margin: 6px 0; }

/* Footer */
.fm-footer {
  display: flex; gap: 10px;
  padding: 14px 16px 32px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.fm-btn-ghost {
  flex: 1;
  padding: 13px;
  border-radius: 10px;
  border: 1.5px solid #e4cd82;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #e4cd82;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.fm-btn-ghost:hover { background: #e4cd82; color: #000000; }
.fm-btn-solid {
  flex: 1;
  padding: 13px;
  border-radius: 10px;
  border: none;
  background: #e4cd82;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background .2s;
}
.fm-btn-solid:hover { background: #e4cd82; }
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#hero {
  padding-top:var(--nav);
  display:flex; align-items:center; position:relative; overflow:hidden;
}
.hero-blob {
  position:absolute; inset:0;
  background:linear-gradient(135deg,var(--red) 0%,var(--red-deep) 100%);
  opacity:.06; z-index:0;
}
@media(min-width:900px){
  .hero-blob {
    left:auto; right:0; bottom:0; top:0; width:52%;
    opacity:1; clip-path:polygon(14% 0,100% 0,100% 100%,0 100%);
  }
}
.hero-blob::after {
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
 
.hero-inner {
  position:relative; z-index:1; width:100%;
  display:grid;
  grid-template-columns:1fr;
  grid-template-rows:auto auto;
  gap:36px;
  padding:60px 20px 72px;
}
@media(min-width:768px){ .hero-inner{ padding:80px 40px; gap:48px; } }
@media(min-width:900px){
  .hero-inner{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
    align-items:center;
    padding:80px 40px;
    max-width:1200px; margin:0 auto;
  }
}
 
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--red-soft); border:1px solid rgba(227,28,37,.2);
  border-radius:30px; padding:6px 14px; font-size:12px; font-weight:600;
  color:var(--red); margin-bottom:20px;
}
.hero-badge .dot { width:7px; height:7px; background:var(--red); border-radius:50%; animation:ping 2s ease-in-out infinite; }
@keyframes ping { 0%,100%{opacity:1;} 50%{opacity:.3;} }
 
.hero-left h1 {
  font-size: clamp(34px, 7vw, 70px);
  font-family:'Poppins',sans-serif; 
  font-weight:900;
  line-height:1.1;
  margin-bottom:18px; 
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 55px;
  }
}

.hero-left h1 em { 
  color: var(--red); 
  font-style: normal; 
}

.hero-left p {
  font-size: clamp(15px, 2vw, 17px); 
  color: var(--gray); 
  line-height: 1.75;
  margin-bottom: 30px; 
  max-width: 480px;
}
 
.hero-btns { display:flex; flex-wrap:wrap; gap:12px; }
@media(max-width:380px){ .hero-btns{ flex-direction:column; } .hero-btns .btn{ width:100%; } }
 
.hero-stats {
  display:flex; flex-wrap:wrap; gap:20px 32px;
  margin-top:36px; padding-top:28px;
  border-top:1px solid rgba(0,0,0,.08);
}
.stat h3 {
  font-family:'Poppins',sans-serif; font-size:clamp(22px,4vw,34px);
  font-weight:800; color:var(--red);
}
.stat p { font-size:13px; color:var(--gray); font-weight:500; margin-top:2px; }
 
/* hero layout â€” image below text on mobile, side-by-side on desktop */
.hero-left  { order:1; }
.hero-right { order:2; display:flex; justify-content:center; align-items:center; }
 
@media(min-width:900px){
  .hero-left  { order:unset; }
  .hero-right { order:unset; }
}
 
/* hero image */
.fc-image { width:100%; display:flex; justify-content:center; }
.fc-image img {
  width:100%; max-width:420px; height:auto;
  border-radius:20px;
  box-shadow:0 16px 48px rgba(0,0,0,.12);
}
@media(min-width:900px){
  .fc-image img { max-width:100%; border-radius:24px; box-shadow:none; }
}
 
/* keep float-card styles for any pages still using it */
.float-card {
  background:rgba(255,255,255,.15); backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.3); border-radius:24px;
  padding:32px 28px; width:280px; animation:float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
.fc-icon {
  width:50px; height:50px; background:rgba(255,255,255,.25);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.fc-icon svg { width:26px; height:26px; }
.float-card h3 { color:#fff; font-size:19px; font-weight:700; margin-bottom:10px; }
.float-card p  { color:rgba(255,255,255,.82); font-size:13px; line-height:1.65; }
.live-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.2); border-radius:30px;
  padding:5px 12px; font-size:12px; font-weight:600; color:#fff; margin-top:16px;
}
.live-badge::before { content:''; width:7px; height:7px; background:#4ade80; border-radius:50%; animation:ping 2s ease-in-out infinite; }
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#about { background:var(--off); padding:72px 0; }
@media(min-width:768px){ #about{ padding:100px 0; } }

.about-grid {
  display:grid; grid-template-columns:1fr; gap:48px; align-items:center;
}
@media(min-width:900px){ .about-grid{ grid-template-columns:1fr 1fr; gap:72px; } }

.about-vis { position:relative; padding-bottom:28px; }
@media(min-width:900px){ .about-vis{ padding-bottom:0; } }

.about-box {
  background:var(--red); border-radius:20px; padding:36px 30px;
  position:relative; overflow:hidden;
}
.about-box::before {
  content:'R'; position:absolute; right:-12px; bottom:-32px;
  font-family:'Poppins',sans-serif; font-size:180px; font-weight:900;
  color:rgba(255,255,255,.07); line-height:1; pointer-events:none;
}
.about-box h3 { font-family:'Poppins',sans-serif; font-size:clamp(18px,3vw,26px); font-weight:800; color:#fff; margin-bottom:12px; }
.about-box p  { font-size:15px; line-height:1.7; color:rgba(255,255,255,.9); }

.about-float {
  position:absolute; bottom:-18px; right:12px;
  background:#fff; border-radius:14px; padding:16px 20px;
  box-shadow:0 16px 48px rgba(0,0,0,.12);
  display:inline-flex; align-items:center; gap:12px;
}
@media(max-width:480px){ .about-float{ right:0; left:0; margin:0 auto; width:fit-content; } }

.af-icon { display:flex; align-items:center; }
.af-text h4 { font-size:17px; font-weight:800; color:var(--red); }
.af-text p  { font-size:11px; color:var(--gray); }

.about-list { list-style:none; display:flex; flex-direction:column; gap:13px; margin-top:22px; }
.about-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:15px; color:var(--gray); line-height:1.6;
}
.check {
  width:22px; height:22px; border-radius:50%; background:var(--red);
  display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;
}
.check svg { width:11px; height:11px; }
.check svg path { stroke:#fff; stroke-width:2.5; stroke-linecap:round; fill:none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOW IT WORKS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#how {background: #000000;padding:72px 0;}
@media(min-width:768px){ #how{ padding:100px 0; } }

.how-head { text-align:center; max-width:560px; margin:0 auto 52px; }
.how-head .sub { margin:0 auto; }

.steps {
  display:grid; grid-template-columns:1fr; gap:16px;
}
@media(min-width:560px){ .steps{ grid-template-columns:1fr 1fr; } }
@media(min-width:900px){ .steps{ grid-template-columns:repeat(4,1fr); gap:20px; } }

.step {
  background:var(--off); border-radius:18px; padding:26px 22px;
  border:2px solid transparent; transition:.3s var(--ease);
}
.step:hover { border-color:var(--red); transform:translateY(-6px); box-shadow:0 20px 48px rgba(227,28,37,.1); }
.step-num {
  width:46px; height:46px; border-radius:50%; background:var(--red);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif; font-size:19px; font-weight:800;
  margin-bottom:18px; box-shadow:0 6px 20px rgba(227,28,37,.35);
}
.step-icon { margin-bottom:12px; display:flex; }
.step h3 { font-size:16px; font-weight:700; margin-bottom:9px; }
.step p  { font-size:14px; color:var(--gray); line-height:1.65; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#features { background:var(--dark); padding:72px 0; }
@media(min-width:768px){ #features{ padding:100px 0; } }

.feat-head { text-align:center; max-width:560px; margin:0 auto 52px; }
.feat-head h2 { color:#fff; }
.feat-head .sub { color:rgba(255,255,255,.55); margin:0 auto; }

.feat-grid {
  display:grid; grid-template-columns:1fr; gap:14px;
}
@media(min-width:560px){ .feat-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:900px){ .feat-grid{ grid-template-columns:repeat(3,1fr); gap:18px; } }

.feat-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:18px; padding:26px 22px; transition:.3s var(--ease);
}
.feat-card:hover { background:rgba(227,28,37,.09); border-color:var(--red); transform:translateY(-5px); }
.feat-icon {
  width:46px; height:46px; background:rgba(227,28,37,.15); border-radius:11px;
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.feat-icon svg { width:20px; height:20px; stroke:#E31C25; }
.feat-card h3 { font-size:16px; font-weight:700; color:#fff; margin-bottom:9px; }
.feat-card p  { font-size:13px; color:rgba(255,255,255,.5); line-height:1.7; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA BAND
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#cta { background:var(--red); padding:68px 0; text-align:center; position:relative; overflow:hidden; }
#cta::before {
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
#cta .container { position:relative; }
#cta h2 {
  font-family:'Poppins',sans-serif;
  font-size:clamp(22px,5vw,44px);
  font-weight:800;
  color: #000000;
  margin-bottom:12px;
}
#cta p {
  font-size:clamp(14px,2vw,17px);
  color: rgb(0 0 0 / 85%);
  margin-bottom:30px;
  max-width:480px;
  margin-left:auto;
  margin-right:auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer { background:var(--dark); padding:56px 0 24px; border-top:1px solid rgba(227,28,37,.18); }

.foot-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-bottom:36px;
}
@media(min-width:900px){ .foot-grid{ grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; } }

.foot-brand { grid-column:1/-1; }
@media(min-width:900px){ .foot-brand{ grid-column:auto; } }

.foot-brand .logo-name { color:#fff; }
.foot-brand p { font-size:14px; line-height:1.7; color:rgba(255,255,255,.45); margin-top:12px; max-width:280px; }

.foot-col h4 {
  font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:#fff; margin-bottom:16px;
}
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.foot-col ul li a { font-size:14px; color:rgba(255,255,255,.45); cursor:pointer; transition:color .2s; }
.foot-col ul li a:hover { color:var(--red); }

.foot-bottom {
  border-top:1px solid rgba(255,255,255,.07); padding-top:22px;
  display:flex; flex-wrap:wrap; gap:8px; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,.35);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AUTH PAGES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.auth-wrap {
  min-height:100svh; padding-top:var(--nav);
  display:grid; grid-template-columns:1fr;
}
@media(min-width:768px){ .auth-wrap{ grid-template-columns:1fr 1fr; } }

.auth-panel {
  background:linear-gradient(140deg,var(--red) 0%,var(--red-deep) 100%);
  display:none; align-items:center; justify-content:center;
  padding:60px 48px; position:relative; overflow:hidden;
}
@media(min-width:768px){ .auth-panel{ display:flex; } }
.auth-panel::before {
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.panel-inner { position:relative; z-index:1; text-align:center; max-width:360px; }
.panel-logo {
  width:68px; height:68px; background:rgba(255,255,255,.18);
  border-radius:16px; display:flex; align-items:center; justify-content:center; margin:0 auto 22px;
}
.panel-inner h2 { font-family:'Poppins',sans-serif; font-size:30px; font-weight:800; color:#fff; margin-bottom:12px; }
.panel-inner p  { font-size:15px; color:rgba(255,255,255,.82); line-height:1.7; }
.perks { margin-top:32px; display:flex; flex-direction:column; gap:13px; text-align:left; }
.perk  { display:flex; align-items:center; gap:10px; font-size:14px; color:rgba(255,255,255,.9); }
.perk-dot { width:7px; height:7px; background:#fff; border-radius:50%; flex-shrink:0; }

/* auth form */
.auth-form-side {
  display:flex; align-items:flex-start; justify-content:center;
  padding:32px 20px 48px; background:#fff;
  overflow-y:auto;
}
@media(min-width:480px){ .auth-form-side{ padding:48px 40px; align-items:center; } }

.form-box { width:100%; max-width:420px; }

/* mobile auth top */
.auth-mobile-top {
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-bottom:24px;
}
@media(min-width:768px){ .auth-mobile-top{ display:none; } }

.form-box h3 {
  font-family:'Poppins',sans-serif; font-size:clamp(22px,4vw,30px);
  font-weight:800; color:var(--dark); margin-bottom:6px;
}
.form-box > p.sub-p { color:var(--gray); font-size:15px; margin-bottom:28px; }

.form-group { margin-bottom:16px; }
.form-group label {
  display:block; font-size:13px; font-weight:600; color:var(--dark);
  margin-bottom:6px;
}
.form-group input {
  width:100%; padding:12px 14px; border:1.5px solid #E5E5E5;
  border-radius:9px; font-family:'Inter',sans-serif; font-size:15px;
  color:var(--dark); background:#fff; outline:none; transition:.2s var(--ease);
}
.form-group input:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(227,28,37,.1); }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:380px){ .form-row{ grid-template-columns:1fr; } }

.label-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:6px; }
.label-row label { margin-bottom:0; }
.forgot { font-size:12px; font-weight:600; color:var(--red); cursor:pointer; }
.forgot:hover { text-decoration:underline; }

.form-submit {
  width:100%; padding:14px; background:var(--red); color:#fff; border:none;
  border-radius:9px; font-family:'Poppins',sans-serif; font-size:15px; font-weight:700;
  cursor:pointer; transition:.25s var(--ease); margin-top:6px;
}
.form-submit:hover { background:var(--red-deep); transform:translateY(-2px); box-shadow:0 8px 24px rgba(227,28,37,.3); }

.divider { display:flex; align-items:center; gap:12px; margin:20px 0; }
.divider::before,.divider::after { content:''; flex:1; height:1px; background:#E5E5E5; }
.divider span { font-size:12px; color:var(--gray); white-space:nowrap; }

.social-btn {
  width:100%; padding:12px; border:1.5px solid #E5E5E5;
  border-radius:9px; background:#fff; font-family:'Inter',sans-serif;
  font-size:14px; font-weight:500; color:var(--dark); cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:10px;
  transition:.2s var(--ease);
}
.social-btn:hover { border-color:var(--red); background:var(--red-soft); }

.auth-switch { text-align:center; margin-top:18px; font-size:14px; color:var(--gray); }
.auth-switch a { color:var(--red); font-weight:600; cursor:pointer; }
.auth-switch a:hover { text-decoration:underline; }
.back-home { text-align:center; margin-top:10px; }
.back-home a { font-size:13px; color:var(--gray); cursor:pointer; }
.back-home a:hover { color:var(--red); }