/* ===================================
   WUP — style.css  (enlarged)
=================================== */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --purple:#7C5CFC;
  --purple2:#9B7FFF;
  --purple3:#C4B2FF;
  --dark:#0C0A1A;
  --white:#fff;
  --light-bg:#F4F2FF;
  --light-bg2:#EDE9FF;
  --gray:#888;
  --text:#1A1530;
}

html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--white);color:var(--text);overflow-x:hidden}

.fade-up{opacity:0;transform:translateY(32px);transition:opacity .65s ease,transform .65s ease}
.fade-up.in{opacity:1;transform:translateY(0)}

/* shared */
section{padding:120px 72px}
.s-center{text-align:center}
.s-title{
  font-family:'Geologica',sans-serif;
  font-size:48px;font-weight:800;color:var(--text);line-height:1.12;margin-bottom:16px;
}
.s-sub{font-size:17px;color:var(--gray);line-height:1.75}
.s-tag{font-size:12px;font-weight:700;color:var(--purple);letter-spacing:2px;text-transform:uppercase;margin-bottom:14px}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 48px;height:64px;
  background:rgba(12,10,26,0.97);
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.nav-logo-text{font-family:'Geologica',sans-serif;font-weight:900;font-size:22px;color:#fff}
.nav-logo-text span{color:var(--purple2)}

.nav-socials{display:flex;align-items:center;gap:10px}
.nav-socials a{
  width:36px;height:36px;border-radius:9px;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.75);text-decoration:none;transition:background .2s;
}
.nav-socials a:hover{background:var(--purple)}
.nav-socials svg{width:16px;height:16px}

.nav-right{display:flex;align-items:center;gap:12px}

.btn-login{
  padding:9px 24px;border-radius:9px;
  background:transparent;border:1.5px solid rgba(255,255,255,0.25);
  color:rgba(255,255,255,0.85);font-size:14px;font-weight:500;font-family:'Inter',sans-serif;
  cursor:pointer;transition:all .2s;
}
.btn-login:hover{border-color:var(--purple2);color:#fff}

.nav-hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:6px 4px}
.nav-hamburger span{width:22px;height:2px;background:rgba(255,255,255,0.7);border-radius:2px;display:block}

.nav-dropdown{
  position:absolute;top:64px;right:72px;
  background:#fff;border-radius:14px;
  box-shadow:0 10px 48px rgba(0,0,0,0.18);
  padding:8px 0;min-width:190px;
  display:none;z-index:300;
}
.nav-dropdown.open{display:block;animation:dropIn .18s ease}
@keyframes dropIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.nav-dropdown a{
  display:block;padding:12px 24px;
  font-size:15px;color:var(--text);text-decoration:none;transition:background .15s;
}
.nav-dropdown a:hover{background:var(--light-bg)}

/* ─── HERO ─── */
.hero{
  min-height:90vh;
  background:linear-gradient(155deg,#0C0A1A 0%,#130838 35%,#1C0B4E 55%,#0C0A1A 100%);
  padding-top:64px;
  position:relative;overflow:hidden;display:flex;flex-direction:column;
}
.hero-blob1{
  position:absolute;top:-60px;right:-40px;width:700px;height:700px;
  background:radial-gradient(circle,rgba(150,100,255,0.5) 0%,rgba(110,65,230,0.22) 40%,transparent 70%);
  pointer-events:none;animation:blobPulse 7s ease-in-out infinite;
}
.hero-blob2{
  position:absolute;bottom:-120px;left:25%;width:520px;height:520px;
  background:radial-gradient(circle,rgba(180,140,255,0.2) 0%,transparent 65%);
  pointer-events:none;animation:blobPulse 9s ease-in-out infinite reverse;
}
@keyframes blobPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.09) translateY(-18px)}}

.hero-inner{
  display:flex;align-items:center;
  padding:70px 72px;gap:60px;
  position:relative;z-index:2;flex:1;
}

.hero-left{width:50%;flex-shrink:0}

.hero-title{
  font-family:'Geologica',sans-serif;
  font-size:58px;font-weight:800;line-height:1.08;color:#fff;
}
.hero-title .purple-line{color:var(--purple2)}

.hero-desc{
  color:rgba(255,255,255,0.55);
  font-size:17px;line-height:1.75;
  margin:24px 0 40px;max-width:420px;
}

.btn-cta{
  display:inline-block;
  padding:18px 38px;border-radius:14px;
  background:linear-gradient(135deg,#7048E8,#9B7FFF);
  color:#fff;font-size:17px;font-weight:700;font-family:'Inter',sans-serif;
  text-decoration:none;border:none;cursor:pointer;
  box-shadow:0 8px 32px rgba(112,72,232,0.5);transition:all .25s;
}
.btn-cta:hover{transform:translateY(-3px);box-shadow:0 14px 44px rgba(112,72,232,0.65)}

/* laptop */
.hero-right{width:50%;display:flex;justify-content:flex-end;align-items:center}

.laptop-wrap{width:100%;animation:floatLaptop 5s ease-in-out infinite}
@keyframes floatLaptop{0%,100%{transform:translateY(0)}50%{transform:translateY(-16px)}}

.laptop-outer{
  background:#1C1535;border-radius:16px 16px 0 0;
  border:2px solid rgba(255,255,255,0.1);overflow:hidden;
  box-shadow:0 48px 100px rgba(0,0,0,0.65),0 0 0 1px rgba(255,255,255,0.04);
}
.laptop-topbar{background:#130E25;padding:10px 18px;display:flex;align-items:center;gap:7px}
.ldot{width:11px;height:11px;border-radius:50%}
.ldot.r{background:#FF5F57}.ldot.y{background:#FEBC2E}.ldot.g{background:#28C840}
.laptop-url{
  margin-left:10px;flex:1;background:rgba(255,255,255,0.05);border-radius:6px;
  padding:4px 12px;font-size:10px;color:rgba(255,255,255,0.3);
}

.laptop-content{display:flex;min-height:360px}

.laptop-sidebar{
  width:155px;flex-shrink:0;
  background:#120D23;padding:16px 12px;
  border-right:1px solid rgba(255,255,255,0.05);
}
.lsb-logo{font-family:'Geologica',sans-serif;font-weight:900;font-size:14px;color:#fff;margin-bottom:18px;padding:0 4px}
.lsb-logo span{color:var(--purple2)}
.lsb-section{font-size:9px;color:rgba(255,255,255,0.22);text-transform:uppercase;letter-spacing:1px;margin:10px 0 5px 4px}
.lsb-item{
  font-size:11.5px;color:rgba(255,255,255,0.45);
  padding:7px 10px;border-radius:7px;margin-bottom:3px;cursor:pointer;transition:all .2s;
}
.lsb-item.active{background:rgba(124,92,252,0.22);color:var(--purple3)}
.lsb-item:hover:not(.active){background:rgba(255,255,255,0.04);color:rgba(255,255,255,0.7)}

.laptop-main{flex:1;padding:18px 20px;overflow:hidden}
.lm-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.lm-title{font-size:13px;font-weight:600;color:#fff}
.lm-badge{font-size:10px;background:rgba(124,92,252,0.25);color:var(--purple3);padding:4px 10px;border-radius:20px}

.lm-question{
  background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);
  border-radius:12px;padding:16px;margin-bottom:10px;
}
.lm-q-num{font-size:10px;color:var(--purple2);font-weight:600;margin-bottom:6px}
.lm-q-text{font-size:12px;color:rgba(255,255,255,0.82);line-height:1.6;margin-bottom:12px}
.lm-options{display:flex;flex-direction:column;gap:6px}
.lm-opt{
  font-size:11px;color:rgba(255,255,255,0.5);
  padding:7px 12px;border-radius:7px;
  border:1px solid rgba(255,255,255,0.07);
  cursor:pointer;transition:all .2s;display:flex;align-items:center;gap:9px;
}
.lm-opt::before{
  content:'';width:12px;height:12px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.18);flex-shrink:0;transition:all .2s;
}
.lm-opt.selected{background:rgba(124,92,252,0.22);border-color:rgba(124,92,252,0.55);color:#fff}
.lm-opt.selected::before{background:var(--purple);border-color:var(--purple)}

.lm-progress{display:flex;gap:4px;margin-top:10px}
.lm-prog-seg{height:4px;border-radius:2px;flex:1}

.laptop-base{
  height:18px;background:linear-gradient(180deg,#1C1535,#130E25);
  border-radius:0 0 8px 8px;border:2px solid rgba(255,255,255,0.07);border-top:none;
}
.laptop-stand{
  height:10px;width:35%;margin:0 auto;
  background:#130E25;border-radius:0 0 10px 10px;
  border:1px solid rgba(255,255,255,0.06);border-top:none;
}

/* ─── STATS BAR ─── */
.stats-bar{background:#0C0B1A;border-top:1px solid rgba(255,255,255,0.05)}
.stats-inner{display:flex}
.stat-block{
  flex:1;display:flex;align-items:baseline;gap:14px;
  padding:36px 48px;justify-content:center;
  border-right:1px solid rgba(255,255,255,0.06);
}
.stat-block:last-child{border-right:none}
.stat-num{font-family:'Geologica',sans-serif;font-size:38px;font-weight:800;color:#fff;white-space:nowrap}
.stat-label{font-size:14px;color:rgba(255,255,255,0.38);line-height:1.4;max-width:90px}

/* ─── SUBJECTS (glass) ─── */
/* ─── SUBJECTS SECTION ─── */
.subjects-section{
  background:linear-gradient(160deg,#0D0A20 0%,#160B40 45%,#1E0B55 70%,#0D0A20 100%);
  padding:120px 0;
  position:relative;overflow:hidden;
}

/* Animated background orbs */
.subj-blob{
  position:absolute;top:-160px;right:-100px;width:600px;height:600px;
  background:radial-gradient(circle,rgba(124,92,252,0.35) 0%,rgba(80,40,200,0.15) 45%,transparent 70%);
  pointer-events:none;
  animation:orbFloat 10s ease-in-out infinite;
}
.subj-blob2{
  position:absolute;bottom:-140px;left:-80px;width:500px;height:500px;
  background:radial-gradient(circle,rgba(155,127,255,0.22) 0%,transparent 65%);
  pointer-events:none;
  animation:orbFloat 13s ease-in-out infinite reverse;
}
.subj-blob3{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:700px;height:350px;
  background:radial-gradient(ellipse,rgba(100,60,220,0.15) 0%,transparent 65%);
  pointer-events:none;
}
@keyframes orbFloat{
  0%,100%{transform:scale(1) translateY(0)}
  50%{transform:scale(1.08) translateY(-24px)}
}

/* Section title overrides for dark bg */
.subjects-section .s-title{color:#fff}
.subjects-section .s-sub{color:rgba(255,255,255,0.5)}
.subjects-section .s-center{position:relative;z-index:2}

/* Grid: 85vw, centered */
.subjects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  width:85vw;
  max-width:1400px;
  margin:80px auto 0;
  position:relative;z-index:2;
}

/* ── Glass purple card ── */
.subject-card{
  background:linear-gradient(135deg,
    rgba(124,92,252,0.22) 0%,
    rgba(80,40,200,0.14) 50%,
    rgba(155,127,255,0.1) 100%);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-radius:28px;
  padding:48px 40px 40px;
  border:1px solid rgba(155,127,255,0.3);
  box-shadow:
    0 8px 40px rgba(80,40,200,0.25),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(124,92,252,0.12);
  cursor:pointer;
  display:flex;flex-direction:column;gap:20px;
  position:relative;overflow:hidden;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1),
             box-shadow .4s ease,
             border-color .3s ease;
}

/* Shimmer sweep on hover */
.subject-card::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:60%;height:100%;
  background:linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.12) 50%,
    transparent 70%
  );
  transition:left .6s ease;
  pointer-events:none;
  z-index:0;
}
.subject-card:hover::before{left:160%}

/* Top gloss line */
.subject-card::after{
  content:'';
  position:absolute;top:0;left:16px;right:16px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.4),transparent);
  pointer-events:none;
  z-index:1;
}

.subject-card:hover{
  transform:translateY(-10px) scale(1.025);
  border-color:rgba(196,178,255,0.55);
  box-shadow:
    0 28px 72px rgba(80,40,200,0.42),
    0 0 0 1px rgba(155,127,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

/* Card content */
.sc-top-row{
  display:flex;align-items:center;justify-content:space-between;
  position:relative;z-index:1;
}

.sc-name{
  font-family:'Geologica',sans-serif;
  font-size:14px;font-weight:800;
  text-transform:uppercase;letter-spacing:2px;
  color:rgba(255,255,255,0.92);
  position:relative;z-index:1;
}

.sc-icon{
  width:48px;height:48px;border-radius:14px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  position:relative;z-index:1;
  flex-shrink:0;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1), background .3s;
}
.subject-card:hover .sc-icon{
  transform:rotate(-8deg) scale(1.15);
  background:rgba(124,92,252,0.35);
}

.sc-desc{
  font-size:14px;
  color:rgba(196,178,255,0.8);
  line-height:1.72;
  flex:1;
  position:relative;z-index:1;
}

.sc-footer{
  display:flex;align-items:center;gap:10px;
  position:relative;z-index:1;
  padding-top:18px;
  border-top:1px solid rgba(155,127,255,0.2);
}
.sc-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--purple2);
  box-shadow:0 0 8px rgba(155,127,255,0.7);
  animation:dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(0.7)}
}
.sc-cta{
  font-size:12px;font-weight:700;color:rgba(196,178,255,0.7);
  text-transform:uppercase;letter-spacing:1.2px;
  transition:color .2s;
}
.subject-card:hover .sc-cta{color:#fff}
.sc-arrow{
  margin-left:auto;font-size:16px;color:rgba(155,127,255,0.5);
  transition:transform .3s ease, color .2s;
}
.subject-card:hover .sc-arrow{transform:translateX(5px);color:var(--purple3)}

/* Stagger entrance animation */
.subject-card:nth-child(1){animation-delay:0s}
.subject-card:nth-child(2){animation-delay:.12s}
.subject-card:nth-child(3){animation-delay:.24s}

/* Number badge floating in bg */
.sc-bg-num{
  position:absolute;bottom:-10px;right:20px;
  font-family:'Geologica',sans-serif;
  font-size:96px;font-weight:900;
  color:rgba(124,92,252,0.06);
  line-height:1;pointer-events:none;z-index:0;
  user-select:none;
  transition:color .35s;
}
.subject-card:hover .sc-bg-num{color:rgba(124,92,252,0.12)}

/* ─── WHY US ─── */
/* ─── WHY SECTION ─── */
.why-section{
  background:linear-gradient(180deg,#fff 0%,#F4F2FF 50%,#fff 100%);
  padding:120px 72px;
  position:relative;overflow:hidden;
}
/* decorative blobs */
.why-section::before{
  content:'';position:absolute;top:-120px;left:-120px;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(124,92,252,0.07) 0%,transparent 65%);
  pointer-events:none;
}
.why-section::after{
  content:'';position:absolute;bottom:-100px;right:-80px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(155,127,255,0.09) 0%,transparent 65%);
  pointer-events:none;
}

/* Decorative floating rings */
.why-deco-ring{
  position:absolute;border-radius:50%;pointer-events:none;
  border:1.5px solid rgba(124,92,252,0.1);
}
.why-deco-ring-1{
  width:340px;height:340px;
  top:50%;left:-170px;transform:translateY(-50%);
  animation:ringRotate 20s linear infinite;
}
.why-deco-ring-1::before{
  content:'';position:absolute;top:20px;right:20px;
  width:10px;height:10px;border-radius:50%;
  background:var(--purple2);opacity:.4;
  box-shadow:0 0 12px var(--purple2);
}
.why-deco-ring-2{
  width:220px;height:220px;
  bottom:-60px;right:38%;
  border-color:rgba(155,127,255,0.12);
  animation:ringRotate 14s linear infinite reverse;
}
@keyframes ringRotate{
  from{transform:translateY(-50%) rotate(0deg)}
  to{transform:translateY(-50%) rotate(360deg)}
}
.why-deco-ring-2{animation:ringRotate2 14s linear infinite reverse}
@keyframes ringRotate2{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.why-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;
  max-width:1200px;margin:0 auto;align-items:center;
  position:relative;z-index:1;
}

/* Left side */
.why-left .s-tag{margin-bottom:14px}
.why-left .s-title{text-align:left;font-size:42px;margin-bottom:20px}
.why-left .s-sub{text-align:left;font-size:16px;line-height:1.82;color:#555;max-width:460px}
.why-left .s-sub a{
  color:var(--purple);text-decoration:none;font-weight:600;
  background:linear-gradient(var(--purple),var(--purple)) bottom/0% 1.5px no-repeat;
  transition:background-size .25s ease;padding-bottom:1px;
}
.why-left .s-sub a:hover{background-size:100% 1.5px}

/* Stat pills */
.why-stats{display:flex;gap:14px;margin-top:36px;flex-wrap:wrap}
.why-stat-pill{
  display:flex;align-items:center;gap:10px;
  padding:12px 20px;border-radius:50px;
  background:#fff;border:1.5px solid rgba(124,92,252,0.15);
  box-shadow:0 4px 20px rgba(124,92,252,0.08);
  transition:all .25s;cursor:default;
}
.why-stat-pill:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(124,92,252,0.14);
  border-color:rgba(124,92,252,0.3);
}
.wsp-icon{font-size:18px}
.wsp-text{font-size:13px;font-weight:700;color:var(--text)}
.wsp-text span{color:var(--purple)}

/* ── COMPARE CARD ── */
.compare-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:
    0 12px 60px rgba(124,92,252,0.13),
    0 2px 8px rgba(0,0,0,0.05),
    0 0 0 1px rgba(124,92,252,0.07);
  position:relative;
}

/* Thin top accent line */
.compare-card::before{
  content:'';
  display:block;
  height:3px;
  background:linear-gradient(90deg,var(--purple),var(--purple2),var(--purple3));
}

/* Column headers */
.compare-top{
  display:grid;
  grid-template-columns:1fr 80px 120px;
  align-items:stretch;
  margin-bottom:0;
}
.compare-col-label{
  padding:16px 20px;
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1.5px;
  display:flex;align-items:center;justify-content:center;gap:6px;
}
.compare-col-label.feat{
  justify-content:flex-start;
  color:#bbb;padding-left:24px;
  font-size:10px;
}
.compare-col-label.wup-col{
  background:linear-gradient(155deg,#6C43D0,#9B7FFF);
  justify-content:center;
}
.compare-logo-sm{
  font-family:'Geologica',sans-serif;font-weight:900;font-size:16px;color:#fff;
}
.compare-logo-sm span{color:rgba(255,255,255,0.7)}

.compare-col-label.old-col{
  color:rgba(0,0,0,0.25);
  border-left:1px solid rgba(0,0,0,0.05);
  background:#f8f7ff;
  font-size:10px;
}

/* Row */
.compare-row{
  display:grid;
  grid-template-columns:1fr 80px 120px;
  align-items:center;
  border-top:1px solid rgba(0,0,0,0.05);
  transition:background .18s;
}
.compare-row:hover{background:#faf9ff}

.cr-label{
  padding:15px 24px;
  font-size:13px;color:#333;font-weight:500;line-height:1.4;
}

/* WUP column cell */
.cr-new{
  display:flex;align-items:center;justify-content:center;
  padding:15px 8px;
  background:rgba(124,92,252,0.03);
  border-left:1px solid rgba(124,92,252,0.07);
}
.compare-row:hover .cr-new{background:rgba(124,92,252,0.06)}

/* Old column cell */
.cr-old{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:4px;
  padding:12px 10px;
  border-left:1px solid rgba(0,0,0,0.05);
  background:#f8f7ff;
}
.compare-row:hover .cr-old{background:#f2f0ff}

/* ✓ badge */
.badge-yes{
  display:inline-flex;align-items:center;justify-content:center;
  width:30px;height:30px;border-radius:9px;
  background:linear-gradient(135deg,rgba(34,197,94,0.15),rgba(22,163,74,0.08));
  border:1px solid rgba(34,197,94,0.25);
  color:#16A34A;font-size:15px;font-weight:800;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.compare-row:hover .badge-yes{
  transform:scale(1.18);
  box-shadow:0 4px 14px rgba(34,197,94,0.22);
}

/* ✕ badge */
.badge-no{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;border-radius:8px;
  background:rgba(239,68,68,0.08);
  border:1px solid rgba(239,68,68,0.18);
  color:#DC2626;font-size:14px;font-weight:800;
  flex-shrink:0;
}

.cr-old-text{
  font-size:10.5px;color:rgba(0,0,0,0.28);
  text-align:center;line-height:1.3;
}

/* Footer */
.compare-footer{
  padding:18px 24px;
  background:linear-gradient(135deg,rgba(124,92,252,0.04),rgba(155,127,255,0.07));
  border-top:1px solid rgba(124,92,252,0.08);
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
}
.compare-footer-text{font-size:13px;color:#888;line-height:1.5}
.compare-footer-text strong{color:var(--purple)}
.btn-compare-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 22px;border-radius:11px;
  background:linear-gradient(135deg,var(--purple),var(--purple2));
  color:#fff;font-size:13px;font-weight:700;font-family:'Inter',sans-serif;
  text-decoration:none;white-space:nowrap;border:none;cursor:pointer;
  box-shadow:0 4px 18px rgba(124,92,252,0.32);
  transition:all .25s;
}
.btn-compare-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(124,92,252,0.44);
}

/* ─── DISCORD SECTION ─── */
.discord-section{
  background:linear-gradient(160deg,#F0ECFF 0%,#C5B3FF 38%,#9674F5 65%,#6C43D0 85%,#4B2CA0 100%);
  padding:120px 72px;
  position:relative;overflow:hidden;min-height:520px;
  display:flex;align-items:center;
}
.discord-section::after{
  content:'';position:absolute;bottom:-80px;left:50%;transform:translateX(-50%);
  width:800px;height:320px;
  background:radial-gradient(ellipse,rgba(60,20,160,0.55) 0%,transparent 70%);
  pointer-events:none;
}

.discord-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;
  max-width:1200px;margin:0 auto;width:100%;
  position:relative;z-index:2;align-items:center;
}

.discord-left .s-tag{color:rgba(255,255,255,0.6)}
.discord-left .s-title{color:#fff;font-size:42px;text-align:left;margin-bottom:20px}
.discord-left p{color:rgba(255,255,255,0.7);font-size:17px;line-height:1.8;max-width:460px;margin-bottom:36px}

.btn-discord{
  display:inline-flex;align-items:center;gap:12px;
  padding:17px 32px;border-radius:14px;
  background:#5865F2;color:#fff;
  font-size:16px;font-weight:700;font-family:'Inter',sans-serif;
  text-decoration:none;border:none;cursor:pointer;
  box-shadow:0 8px 28px rgba(88,101,242,0.5);transition:all .25s;
}
.btn-discord:hover{transform:translateY(-2px);box-shadow:0 12px 36px rgba(88,101,242,0.65);background:#4752c4}
.btn-discord svg{width:22px;height:22px}

.discord-card{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:24px;padding:0;overflow:hidden;
  box-shadow:0 30px 72px rgba(0,0,0,0.32);
  animation:floatCard 6s ease-in-out infinite;
}
@keyframes floatCard{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

.dc-topbar{background:rgba(0,0,0,0.25);padding:14px 20px;display:flex;align-items:center;gap:12px}
.dc-server-icon{
  width:38px;height:38px;border-radius:12px;
  background:linear-gradient(135deg,#5865F2,#7289DA);
  display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0;
}
.dc-server-name{font-size:15px;font-weight:700;color:#fff}
.dc-online{font-size:11px;color:rgba(255,255,255,0.4);margin-top:2px}
.dc-dot{
  width:9px;height:9px;border-radius:50%;background:#23A55A;margin-left:auto;
  box-shadow:0 0 8px #23A55A;animation:pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:.45}}

.dc-body{display:flex}
.dc-sidebar{
  width:64px;background:rgba(0,0,0,0.2);
  padding:12px 10px;display:flex;flex-direction:column;gap:10px;align-items:center;
  border-right:1px solid rgba(255,255,255,0.06);
}
.dc-ch-icon{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;cursor:pointer;transition:background .2s;
}
.dc-ch-icon:hover,.dc-ch-icon.active{background:rgba(88,101,242,0.4)}
.dc-ch-icon.active{background:rgba(88,101,242,0.55)}

.dc-main{flex:1;padding:16px 18px;min-height:280px}
.dc-channel-name{
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;
  color:rgba(255,255,255,0.35);margin-bottom:14px;display:flex;align-items:center;gap:5px;
}
.dc-channel-name span{font-size:14px}

.dc-message{display:flex;gap:10px;margin-bottom:14px;align-items:flex-start}
.dc-avatar{
  width:34px;height:34px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;color:#fff;
}
.dc-msg-author{font-size:12px;font-weight:700;color:rgba(255,255,255,0.8);margin-bottom:3px}
.dc-msg-text{font-size:12px;color:rgba(255,255,255,0.55);line-height:1.55}
.dc-msg-text .hi{color:#FFD700}

.dc-members-pill{
  margin-top:16px;background:rgba(255,255,255,0.07);border-radius:12px;
  padding:10px 14px;display:flex;align-items:center;gap:10px;
}
.dc-avatars{display:flex}
.dc-av-sm{
  width:24px;height:24px;border-radius:50%;
  border:2px solid rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;color:#fff;margin-left:-7px;
}
.dc-av-sm:first-child{margin-left:0}
.dc-members-text{font-size:12px;color:rgba(255,255,255,0.5)}
.dc-members-text strong{color:rgba(255,255,255,0.85)}

.sparkle{position:absolute;border-radius:50%;background:#fff;animation:twinkle 3s ease-in-out infinite}
@keyframes twinkle{0%,100%{opacity:.55;transform:scale(1)}50%{opacity:1;transform:scale(1.5)}}

/* ─── REVIEWS CAROUSEL ─── */
.reviews-section{background:var(--light-bg);padding:120px 0}
.reviews-section .s-center{padding:0 72px;margin-bottom:60px}

.carousel-track-wrap{overflow:hidden;position:relative;width:100%}
.carousel-track-wrap::before,
.carousel-track-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:140px;z-index:10;pointer-events:none;
}
.carousel-track-wrap::before{left:0;background:linear-gradient(to right,var(--light-bg),transparent)}
.carousel-track-wrap::after{right:0;background:linear-gradient(to left,var(--light-bg),transparent)}

.carousel-track{
  display:flex;gap:28px;width:max-content;
  animation:scroll-left 32s linear infinite;
  padding:16px 0;
}
.carousel-track:hover{animation-play-state:paused}
@keyframes scroll-left{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

.review-card{
  background:#fff;border-radius:24px;padding:36px 32px;
  border:1px solid rgba(124,92,252,0.08);
  box-shadow:0 4px 24px rgba(0,0,0,0.07);
  width:380px;flex-shrink:0;
}
.stars{color:#F59E0B;font-size:18px;letter-spacing:2px;margin-bottom:18px}
.review-text{font-size:15px;color:#444;line-height:1.75;margin-bottom:22px}
.reviewer-name{font-size:15px;font-weight:700;color:var(--text)}
.reviewer-year{font-size:13px;color:var(--gray);margin-top:4px}

/* ─── CONTACT ─── */
.contact-section{background:#fff;padding:100px 72px;border-top:1px solid rgba(0,0,0,0.05)}
.contact-inner-wrap{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:auto 1fr;gap:80px;align-items:center;
}
.contact-left .s-tag{margin-bottom:10px}
.contact-left .s-title{font-size:40px;text-align:left;margin-bottom:10px}
.contact-sub{font-size:16px;color:var(--gray);line-height:1.65}

.contact-buttons{
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px;
}
.contact-btn{
  display:flex;align-items:center;gap:18px;
  padding:22px 28px;border-radius:18px;
  border:2px solid transparent;text-decoration:none;
  font-size:15px;font-weight:700;font-family:'Inter',sans-serif;
  cursor:pointer;transition:all .25s;
}
.contact-btn .cb-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:26px;flex-shrink:0;
}
.contact-btn .cb-label{display:flex;flex-direction:column;gap:3px}
.contact-btn .cb-name{font-size:15px;font-weight:700}
.contact-btn .cb-hint{font-size:13px;font-weight:400;opacity:0.65}

.cb-phone{background:#F0FDF4;border-color:#BBF7D0;color:#15803D}
.cb-phone .cb-icon{background:#D1FAE5}
.cb-phone:hover{background:#DCFCE7;border-color:#86EFAC;transform:translateY(-3px);box-shadow:0 10px 28px rgba(21,128,61,0.13)}

.cb-viber{background:#F5F3FF;border-color:#DDD6FE;color:#6D28D9}
.cb-viber .cb-icon{background:#EDE9FE}
.cb-viber:hover{background:#EDE9FE;border-color:#C4B5FD;transform:translateY(-3px);box-shadow:0 10px 28px rgba(109,40,217,0.13)}

.cb-whatsapp{background:#F0FDF4;border-color:#BBF7D0;color:#065F46}
.cb-whatsapp .cb-icon{background:#DCFCE7}
.cb-whatsapp:hover{background:#DCFCE7;border-color:#6EE7B7;transform:translateY(-3px);box-shadow:0 10px 28px rgba(6,95,70,0.13)}

.cb-telegram{background:#EFF6FF;border-color:#BFDBFE;color:#1D4ED8}
.cb-telegram .cb-icon{background:#DBEAFE}
.cb-telegram:hover{background:#DBEAFE;border-color:#93C5FD;transform:translateY(-3px);box-shadow:0 10px 28px rgba(29,78,216,0.13)}

/* ─── FOOTER ─── */
footer{
  background:#0C0B1A;padding:28px 72px;
  display:flex;align-items:center;justify-content:space-between;
  border-top:1px solid rgba(255,255,255,0.05);
}
.footer-logo{height: 60px; width: 60px;}
.footer-logo span{color:var(--purple2)}
.footer-links{display:flex;gap:28px;flex-wrap:wrap}
.footer-links a{font-size:13px;color:rgba(255,255,255,0.3);text-decoration:none;transition:color .2s}
.footer-links a:hover{color:rgba(255,255,255,0.8)}

/* ─── RESPONSIVE ─── */
@media(max-width:1100px){
  section,.subjects-section,.why-section,.discord-section,.contact-section{padding:100px 48px}
  .hero-inner{padding:60px 48px}
  .reviews-section{padding:100px 0}
  .reviews-section .s-center{padding:0 48px}
  .stats-inner{flex-wrap:wrap}
  .stat-block{padding:28px 32px}
}

@media(max-width:960px){
  .hero-inner{flex-direction:column;padding:40px 24px 36px}
  .hero-left,.hero-right{width:100%}
  .hero-title{font-size:40px}
  .subjects-grid,.discord-inner,.contact-inner-wrap{grid-template-columns:1fr;gap:24px;width:92vw}
  section,.subjects-section,.why-section,.discord-section,.contact-section{padding:80px 24px}
  .reviews-section{padding:80px 0}
  .reviews-section .s-center{padding:0 24px}
  .why-inner{grid-template-columns:1fr;gap:40px}
  .stat-block{min-width:50%;border-right:none;border-bottom:1px solid rgba(255,255,255,0.06);padding:24px}
  footer{flex-direction:column;gap:20px;padding:28px 24px;text-align:center}
  .footer-links{justify-content:center}
  .contact-buttons{grid-template-columns:1fr}
  nav{padding:0 24px;height:56px}
  .nav-dropdown{top:56px}
}

/* ═══════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════════════════════ */
.theme-toggle{
  position:relative;
  width:52px;height:28px;
  border-radius:30px;
  border:none;cursor:pointer;
  padding:3px;
  background:rgba(255,255,255,0.12);
  border:1.5px solid rgba(255,255,255,0.18);
  transition:background .35s ease, border-color .35s ease;
  flex-shrink:0;
  display:flex;align-items:center;
}
.theme-toggle:hover{background:rgba(255,255,255,0.2)}

.tt-track{
  position:relative;width:100%;height:100%;
  display:flex;align-items:center;
}
.tt-thumb{
  position:absolute;
  left:0;
  width:20px;height:20px;border-radius:50%;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.25);
  transition:transform .35s cubic-bezier(.34,1.56,.64,1), background .3s;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;line-height:1;
  z-index:1;
}
.tt-icon-sun{position:absolute;right:4px;font-size:11px;opacity:.55;transition:opacity .3s;pointer-events:none}
.tt-icon-moon{position:absolute;left:4px;font-size:11px;opacity:0;transition:opacity .3s;pointer-events:none}

/* dark mode active state */
body.dark .theme-toggle{
  background:rgba(124,92,252,0.25);
  border-color:rgba(155,127,255,0.35);
}
body.dark .tt-thumb{transform:translateX(24px);background:var(--purple2)}
body.dark .tt-icon-sun{opacity:0}
body.dark .tt-icon-moon{opacity:.7}

/* ═══════════════════════════════════════════════════════
   DARK THEME — body.dark overrides
═══════════════════════════════════════════════════════ */
body.dark{
  --bg-page:#0E0C1E;
  --bg-surface:#16132A;
  --bg-elevated:#1E1A36;
  --border-subtle:rgba(255,255,255,0.07);
  --text-primary:#F0EEFF;
  --text-secondary:rgba(196,178,255,0.7);
  --text-muted:rgba(255,255,255,0.3);
  background:var(--bg-page);
  color:var(--text-primary);
  transition:background .4s ease, color .4s ease;
}

/* NAV dark */
body.dark nav{
  background:rgba(14,12,30,0.98);
  border-bottom-color:rgba(255,255,255,0.06);
}
body.dark .nav-dropdown{
  background:#1E1A36;
  box-shadow:0 10px 48px rgba(0,0,0,0.45);
}
body.dark .nav-dropdown a{color:#F0EEFF}
body.dark .nav-dropdown a:hover{background:rgba(124,92,252,0.15)}

/* WHY section dark */
body.dark .why-section{
  background:linear-gradient(180deg,#0E0C1E 0%,#130838 50%,#0E0C1E 100%);
}
body.dark .why-deco-ring{border-color:rgba(124,92,252,0.18)}
body.dark .why-left .s-title{color:#F0EEFF}
body.dark .why-left .s-sub{color:rgba(196,178,255,0.65)}
body.dark .why-stat-pill{
  background:#1E1A36;
  border-color:rgba(124,92,252,0.25);
  box-shadow:0 4px 20px rgba(0,0,0,0.3);
}
body.dark .why-stat-pill:hover{border-color:rgba(155,127,255,0.45)}
body.dark .wsp-text{color:#F0EEFF}

/* COMPARE CARD dark */
body.dark .compare-card{
  background:#1E1A36;
  box-shadow:0 12px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(124,92,252,0.12);
}
body.dark .compare-col-label.feat{color:rgba(255,255,255,0.2)}
body.dark .compare-col-label.old-col{
  background:rgba(255,255,255,0.04);
  border-left-color:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.2);
}
body.dark .compare-row{border-top-color:rgba(255,255,255,0.05)}
body.dark .compare-row:hover{background:rgba(124,92,252,0.08)}
body.dark .cr-label{color:rgba(240,238,255,0.85)}
body.dark .cr-new{
  background:rgba(124,92,252,0.06);
  border-left-color:rgba(124,92,252,0.12);
}
body.dark .compare-row:hover .cr-new{background:rgba(124,92,252,0.12)}
body.dark .cr-old{
  background:rgba(255,255,255,0.03);
  border-left-color:rgba(255,255,255,0.05);
}
body.dark .compare-row:hover .cr-old{background:rgba(255,255,255,0.06)}
body.dark .cr-old-text{color:rgba(255,255,255,0.2)}
body.dark .compare-footer{
  background:rgba(124,92,252,0.08);
  border-top-color:rgba(124,92,252,0.12);
}
body.dark .compare-footer-text{color:rgba(255,255,255,0.45)}

/* REVIEWS dark */
body.dark .reviews-section{background:#0E0C1E}
body.dark .carousel-track-wrap::before{background:linear-gradient(to right,#0E0C1E,transparent)}
body.dark .carousel-track-wrap::after{background:linear-gradient(to left,#0E0C1E,transparent)}
body.dark .review-card{
  background:#1E1A36;
  border-color:rgba(124,92,252,0.12);
  box-shadow:0 4px 24px rgba(0,0,0,0.3);
}
body.dark .review-text{color:rgba(196,178,255,0.75)}
body.dark .reviewer-name{color:#F0EEFF}
body.dark .reviewer-year{color:rgba(255,255,255,0.3)}

/* CONTACT dark */
body.dark .contact-section{
  background:#0E0C1E;
  border-top-color:rgba(255,255,255,0.05);
}
body.dark .contact-left .s-title{color:#F0EEFF}
body.dark .contact-sub{color:rgba(196,178,255,0.6)}
body.dark .s-tag{color:var(--purple3)}

body.dark .cb-phone{background:#0D2418;border-color:#166534;color:#4ADE80}
body.dark .cb-phone .cb-icon{background:#14532D}
body.dark .cb-phone:hover{background:#14532D;border-color:#15803D}

body.dark .cb-viber{background:#1A1040;border-color:#4C1D95;color:#A78BFA}
body.dark .cb-viber .cb-icon{background:#2E1065}
body.dark .cb-viber:hover{background:#2E1065;border-color:#6D28D9}

body.dark .cb-whatsapp{background:#0A2318;border-color:#065F46;color:#34D399}
body.dark .cb-whatsapp .cb-icon{background:#064E3B}
body.dark .cb-whatsapp:hover{background:#064E3B;border-color:#059669}

body.dark .cb-telegram{background:#0C1A35;border-color:#1E3A8A;color:#60A5FA}
body.dark .cb-telegram .cb-icon{background:#1E3A8A}
body.dark .cb-telegram:hover{background:#1E3A8A;border-color:#2563EB}

/* General text overrides dark */
body.dark .s-title{color:#F0EEFF}
body.dark .s-sub{color:rgba(196,178,255,0.6)}
body.dark section{background:transparent}

/* smooth transition for all themed elements */
nav, .why-section, .compare-card, .review-card,
.contact-section, .reviews-section, .why-stat-pill,
.cr-new, .cr-old, .compare-row, .compare-footer,
.contact-btn, .s-title, .s-sub, .s-tag{
  transition:background .4s ease, color .4s ease,
             border-color .4s ease, box-shadow .4s ease;
}