/* Shared minimal utility styles (kept tiny on purpose) */
.is-hidden{display:none !important;}
.row{display:flex;align-items:center;}
.gap-10{gap:10px;}
.mt-10{margin-top:10px;}
.pad-12{padding:12px;}
.card{border:1px solid rgba(0,0,0,.12);border-radius:10px;}
/* M.V.P. v2 (Leetify-ish + Siege palette) */
:root{
  --gold: #FFD24A;
  --panel2:rgba(10,12,18,.50);
  --red:#F2B632;
  --red2:#ff3a54;

  --bg:#07090d; --bg2:#0b0f18;
  --panel:rgba(10,12,18,.72);
  --text:rgba(233,238,251,.94); --muted:rgba(154,166,193,.92);
  --border:rgba(255,255,255,.08); --border2:rgba(255,255,255,.12);
  --accent:#f0b429; --accent2:#ffcf4d;
  --good:#2be090; --warn:#ffb020; --bad:#ff5c75;
  --shadow:0 14px 48px rgba(0,0,0,.55); --shadow2:0 10px 30px rgba(0,0,0,.45);
  --radius:18px; --radius2:14px;
  --focus:0 0 0 4px rgba(240,180,41,.18);
  --font:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:var(--font); color:var(--text);
  background:
    radial-gradient(1100px 520px at 18% -8%, rgba(240,180,41,.10), transparent 60%),
    radial-gradient(900px 520px at 82% 0%, rgba(240,180,41,.06), transparent 58%),
    radial-gradient(900px 600px at 50% 100%, rgba(255,255,255,.04), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
a{color:inherit; text-decoration:none}
.container{max-width:1240px; margin:0 auto; padding:18px 18px 34px;}
.narrow{max-width:560px}
.muted{color:var(--muted)}
.row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.divider{height:1px; background:rgba(255,255,255,.08); margin:16px 0}
.msg{margin-top:10px; color:rgba(154,166,193,.95); font-size:13px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  padding:12px 16px; border-bottom:1px solid var(--border);
  background:rgba(7,8,11,.72); backdrop-filter:blur(10px);
}
.topbarApp{display:flex; align-items:center; justify-content:space-between; gap:12px}
.leftGroup,.rightGroup{display:flex; align-items:center; gap:10px; min-width:240px}
.centerGroup{flex:1; display:flex; justify-content:center}
.logo{font-weight:900; letter-spacing:.16em; text-transform:uppercase; display:inline-flex; align-items:center; gap:10px}
.logo::before{
  content:""; width:10px; height:10px; border-radius:3px;
  background:linear-gradient(180deg,var(--accent2),var(--accent));
  box-shadow:0 0 0 6px rgba(240,180,41,.09), 0 10px 25px rgba(240,180,41,.10);
}
.brandSub{color:var(--muted); font-size:12px}
.searchWrap{width:min(560px,100%); position:relative}
.searchWrap::before{content:"⌕"; position:absolute; left:14px; top:50%; transform:translateY(-50%); color:rgba(154,166,193,.9)}
.searchInput{
  width:100%; padding:11px 12px 11px 42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.72);
  color:var(--text); outline:none;
}
.searchInput:focus{border-color:rgba(240,180,41,.55); box-shadow:var(--focus)}
@media (max-width:980px){ .leftGroup,.rightGroup{min-width:unset} }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px; border:1px solid var(--border2);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color:var(--text); cursor:pointer; user-select:none;
  transition:transform .08s ease, border-color .12s ease, box-shadow .12s ease;
}
.btn:hover{border-color:rgba(240,180,41,.40); box-shadow:0 0 0 4px rgba(240,180,41,.10)}
.btn:active{transform:translateY(1px)}
.btn.ghost{background:transparent}
.btn.primary{border-color:rgba(240,180,41,.55); background:linear-gradient(180deg, rgba(240,180,41,.22), rgba(240,180,41,.08)); box-shadow:0 14px 40px rgba(240,180,41,.10)}
.iconBtn{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12); background:rgba(9,11,16,.55);
  color:rgba(233,238,251,.92); cursor:pointer;
}
.proPill{
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px;
  border:1px solid rgba(240,180,41,.45);
  background:linear-gradient(180deg, rgba(240,180,41,.18), rgba(240,180,41,.06));
  color:rgba(255,243,210,.95); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
}
.proDot{width:8px; height:8px; border-radius:3px; background:linear-gradient(180deg,var(--accent2),var(--accent)); box-shadow:0 0 0 6px rgba(240,180,41,.10)}
.profileChip{display:inline-flex; align-items:center; gap:10px; padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background:rgba(9,11,16,.55)}
.avatar{width:28px; height:28px; border-radius:10px; border:1px solid rgba(255,255,255,.10); background:radial-gradient(circle at 30% 30%, rgba(240,180,41,.28), rgba(255,255,255,.05))}
.profileEmail{font-size:12px; font-weight:800; color:rgba(233,238,251,.92); max-width:170px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
.profileMeta{font-size:11px; color:var(--muted)}

/* Cards / forms */
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  background:linear-gradient(180deg, rgba(15,19,27,.92), rgba(12,15,22,.92));
  box-shadow:var(--shadow2);
}
.form{display:flex; flex-direction:column; gap:10px; margin-top:12px}
label{color:rgba(154,166,193,.95); font-size:12px}
input,textarea,select{
  width:100%; padding:11px 12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.82);
  color:var(--text); outline:none;
}
input:focus,textarea:focus,select:focus{border-color:rgba(240,180,41,.55); box-shadow:var(--focus); background:rgba(9,11,16,.92)}
textarea{min-height:110px; resize:vertical; font-family:var(--font)}

/* Landing */
.hero{padding:34px 0 22px}
.hero h1{margin:0 0 10px; font-size:clamp(34px,4.2vw,50px); line-height:1.04; letter-spacing:-0.02em}
.sub{margin:0 0 16px; color:var(--muted); max-width:72ch; font-size:15px; line-height:1.55}
.ctaRow,.pillRow{display:flex; gap:10px; flex-wrap:wrap}
.pill{border:1px solid var(--border); border-radius:999px; padding:7px 11px; color:rgba(233,238,251,.86); font-size:12px; background:rgba(15,19,27,.55)}
.grid3{display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:16px}
.grid2{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:14px}
@media (max-width:920px){ .grid3,.grid2{grid-template-columns:1fr} }
.footer{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-top:18px; color:rgba(154,166,193,.9); font-size:12px}

/* Dashboard layout */
.layout{display:grid; grid-template-columns:260px minmax(0,1fr); gap:14px; align-items:start}
@media (max-width:980px){ .layout{grid-template-columns:1fr} }
.sidebar{position:sticky; top:74px; border:1px solid var(--border); border-radius:var(--radius); background:var(--panel); box-shadow:var(--shadow2); padding:12px}
.sideTitle{font-size:12px; color:var(--muted); letter-spacing:.14em; text-transform:uppercase; margin:6px 8px 10px}
.sideDivider{height:1px; background:rgba(255,255,255,.08); margin:10px 6px}
.sideIconNav{display:flex; flex-direction:column; gap:10px}
.sideItem{display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:16px; border:1px solid transparent; background:rgba(9,11,16,.35)}
.sideItem:hover{border-color:rgba(240,180,41,.25); background:rgba(9,11,16,.55); box-shadow:0 0 0 4px rgba(240,180,41,.07)}
.sideItem.active{border-color:rgba(240,180,41,.55); background:linear-gradient(180deg, rgba(240,180,41,.16), rgba(240,180,41,.06))}
.sideIcon{width:38px; height:38px; border-radius:14px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.55)}
.sideName{font-weight:900} .sideHint{font-size:11px; color:var(--muted)}

/* Tiles */
.tiles{display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:12px}
@media (max-width:980px){ .tiles{grid-template-columns:repeat(6,minmax(0,1fr))} }
@media (max-width:620px){ .tiles{grid-template-columns:repeat(2,minmax(0,1fr))} }
.tile{grid-column:span 3; border:1px solid var(--border); border-radius:var(--radius); background:var(--panel); box-shadow:var(--shadow2); padding:14px; overflow:hidden}
.tileLabel{font-size:12px; color:rgba(154,166,193,.95); letter-spacing:.08em; text-transform:uppercase}
.tileValue{font-size:28px; font-weight:950; letter-spacing:-0.02em; margin-top:8px}
.tileDelta{font-size:12px; color:rgba(154,166,193,.95); margin-top:6px}
.deltaGood{color:rgba(43,224,144,.95)} .deltaBad{color:rgba(255,92,117,.95)} .deltaWarn{color:rgba(255,176,32,.95)}
.spark{margin-top:12px; height:32px; border-radius:12px; border:1px solid rgba(255,255,255,.08); background:linear-gradient(180deg, rgba(9,11,16,.55), rgba(9,11,16,.25))}

/* Feed */
.feedHead{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; margin-top:10px}
.feedTitle{font-size:18px; font-weight:950}
.feedMeta{color:var(--muted); font-size:13px}
.feedFilters{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.selectPill{padding:10px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.72); color:rgba(233,238,251,.92)}

/* Match cards */
.matchFeed{display:flex; flex-direction:column; gap:12px; margin-top:14px}
.matchCard{border:1px solid rgba(255,255,255,.10); border-radius:var(--radius); background:var(--panel); box-shadow:var(--shadow2); overflow:hidden; cursor:pointer}
.matchCard::before{content:""; display:block; height:2px; background:linear-gradient(90deg, rgba(240,180,41,.85), rgba(240,180,41,.10), transparent)}
.matchTop{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 14px; background:rgba(9,11,16,.35); border-bottom:1px solid rgba(255,255,255,.06)}
.matchLeft{display:flex; align-items:center; gap:12px}
.resultPip{width:10px; height:10px; border-radius:4px; box-shadow:0 0 0 6px rgba(255,255,255,.03)}
.pipWin{background:rgba(43,224,144,.95)} .pipLoss{background:rgba(255,92,117,.95)}
.matchMap{font-weight:950}
.matchSub{font-size:12px; color:var(--muted)}
.matchRight{display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.chip{display:inline-flex; align-items:center; gap:6px; padding:7px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.55); font-size:12px}
.matchBody{padding:12px 14px 14px}
.statGrid{display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:10px}
@media (max-width:980px){ .statGrid{grid-template-columns:repeat(6,minmax(0,1fr))} }
@media (max-width:620px){ .statGrid{grid-template-columns:repeat(2,minmax(0,1fr))} }
.statMini{grid-column:span 3; border:1px solid rgba(255,255,255,.08); background:rgba(9,11,16,.40); border-radius:16px; padding:10px}
.statMiniLabel{color:var(--muted); font-size:11px; letter-spacing:.10em; text-transform:uppercase}
.statMiniValue{margin-top:6px; font-size:18px; font-weight:950}

/* Coaching */
.coachGrid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:14px}
.coachGrid.single{grid-template-columns:1fr}
@media (max-width:980px){ .coachGrid{grid-template-columns:1fr} }
.coachCard{border:1px solid rgba(255,255,255,.10); border-radius:var(--radius); background:var(--panel); box-shadow:var(--shadow2); padding:14px}
.coachTop{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
.coachHint{color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase}
.miniChip{display:inline-flex; align-items:center; padding:7px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.55); font-size:12px}
.sevTag{display:inline-flex; align-items:center; gap:8px; padding:7px 10px; border-radius:999px; font-size:12px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; border:1px solid rgba(255,255,255,.10); background:rgba(9,11,16,.55)}
.sevTag::before{content:""; width:8px; height:8px; border-radius:3px}
.sevTag.critical::before{background:rgba(255,92,117,.95)}
.sevTag.high::before{background:rgba(255,176,32,.95)}
.sevTag.medium::before{background:rgba(240,180,41,.95)}
.sevTag.low::before{background:rgba(43,224,144,.95)}

/* Drawer */
.drawerOverlay{position:fixed; inset:0; background:rgba(0,0,0,.55); backdrop-filter:blur(2px)}
.drawer{
  position:fixed; top:0; right:0; height:100vh; width:min(520px,92vw);
  background:linear-gradient(180deg, rgba(15,19,27,.98), rgba(12,15,22,.98));
  border-left:1px solid rgba(255,255,255,.10); box-shadow:var(--shadow);
  padding:14px; overflow:auto;
}
.drawerHead{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:12px}
.drawerTitle{font-weight:950; font-size:18px}
.drawerSub{color:var(--muted); font-size:13px; margin-top:4px}
.drawerKpis{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-bottom:14px}
.drawerSectionTitle{font-size:12px; color:rgba(154,166,193,.95); letter-spacing:.12em; text-transform:uppercase; margin-bottom:8px}

/* Tables */
.tableWrap{margin-top:14px; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; background:rgba(9,11,16,.45); box-shadow:var(--shadow2)}
.table{width:100%; border-collapse:collapse; font-size:13px}
.table thead th{padding:12px; color:rgba(154,166,193,.95); font-size:12px; letter-spacing:.10em; text-transform:uppercase; background:rgba(15,19,27,.82); border-bottom:1px solid rgba(255,255,255,.08); text-align:left}
.table tbody td{padding:12px; border-bottom:1px solid rgba(255,255,255,.06); color:rgba(233,238,251,.88)}
.tRight{text-align:right}

/* My profile */
.profileHero{display:flex; flex-direction:column; gap:14px}
.banner{
  position:relative; border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius); overflow:hidden; min-height:220px;
  background:radial-gradient(700px 220px at 20% 0%, rgba(240,180,41,.18), transparent 60%),
    linear-gradient(180deg, rgba(9,11,16,.75), rgba(9,11,16,.55));
  box-shadow:var(--shadow2);
}
.bannerOverlay{position:absolute; inset:0; background:linear-gradient(90deg, rgba(0,0,0,.60), rgba(0,0,0,.10))}
.bannerContent{position:relative; display:flex; align-items:flex-end; gap:14px; padding:16px}
.bigAvatar{width:84px; height:84px; border-radius:24px; border:1px solid rgba(255,255,255,.14);
  background:radial-gradient(circle at 30% 30%, rgba(240,180,41,.28), rgba(255,255,255,.05));}
.displayName{font-weight:950; font-size:26px; letter-spacing:-0.02em}
.profileActions{display:grid; grid-template-columns:1.1fr .9fr; gap:12px}
@media (max-width:980px){ .profileActions{grid-template-columns:1fr} }
.miniList{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.miniRow{display:flex; gap:12px; align-items:baseline; border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:12px; background:rgba(9,11,16,.55)}
.miniLabel{color:rgba(154,166,193,.9); font-size:12px; width:120px}
.miniValue{font-weight:700; color:rgba(233,238,251,.90)}

::selection{background:rgba(240,180,41,.28); color:var(--text)}


/* Role badges */
.roleBadge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,11,16,.55);
  font-size:12px; font-weight:900; letter-spacing:.06em; text-transform:uppercase;
  white-space:nowrap;
}
.roleBadge::before{
  content:""; width:8px; height:8px; border-radius:3px; background:rgba(240,180,41,.95);
  box-shadow:0 0 0 6px rgba(240,180,41,.08);
}
.roleBadge.role-coach::before{ background:rgba(155,119,255,.95); box-shadow:0 0 0 6px rgba(155,119,255,.10); }
.roleBadge.role-roamer::before{ background:rgba(43,224,144,.95); box-shadow:0 0 0 6px rgba(43,224,144,.10); }
.roleBadge.role-anchor::before{ background:rgba(64,196,255,.95); box-shadow:0 0 0 6px rgba(64,196,255,.10); }
.roleBadge.role-igl::before{ background:rgba(255,92,117,.95); box-shadow:0 0 0 6px rgba(255,92,117,.10); }
.roleBadge.role-entry::before{ background:rgba(255,176,32,.95); box-shadow:0 0 0 6px rgba(255,176,32,.10); }
.roleBadge.role-support::before{ background:rgba(240,180,41,.95); box-shadow:0 0 0 6px rgba(240,180,41,.10); }
.roleBadge.role-flex::before{ background:rgba(200,210,230,.85); box-shadow:0 0 0 6px rgba(200,210,230,.08); }
.roleBadge.role-analyst::before{ background:rgba(255,121,0,.95); box-shadow:0 0 0 6px rgba(255,121,0,.10); }

.clubBadge{
  display:flex; align-items:center; justify-content:center;
  font-weight:950; letter-spacing:.12em; text-transform:uppercase;
}


/* Tabs */
.tabBar{
  display:flex; gap:10px; flex-wrap:wrap;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,11,16,.45);
  border-radius:999px;
  padding:6px;
}
.tabBtn{
  appearance:none; border:1px solid transparent; cursor:pointer;
  padding:10px 14px; border-radius:999px;
  background:transparent; color:rgba(233,238,251,.92);
  font-weight:900; letter-spacing:.06em; text-transform:uppercase; font-size:12px;
}
.tabBtn:hover{border-color:rgba(240,180,41,.25); background:rgba(9,11,16,.35)}
.tabBtn.active{border-color:rgba(240,180,41,.55); background:linear-gradient(180deg, rgba(240,180,41,.16), rgba(240,180,41,.06))}
.tabPane{margin-top:12px}


/* Landing (Leetify-ish, Siege palette: black + red + gold) */
.landingWrap{min-height:calc(100vh - 64px); display:flex; flex-direction:column; gap:18px}
.landingHero{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(1100px 520px at 18% -10%, rgba(240,180,41,.12), transparent 60%),
    radial-gradient(900px 560px at 82% 0%, rgba(255,92,117,.10), transparent 58%),
    linear-gradient(180deg, rgba(9,11,16,.85), rgba(9,11,16,.55));
  box-shadow:var(--shadow);
}
.landingHero::before{
  content:"";
  position:absolute; inset:-80px -40px auto -60px; height:260px;
  background:linear-gradient(90deg, rgba(255,59,77,.22), transparent 55%);
  transform:rotate(-8deg);
}
.landingHero::after{
  content:"";
  position:absolute; inset:auto -60px -120px auto; width:520px; height:520px;
  background:radial-gradient(circle at 30% 30%, rgba(240,180,41,.16), transparent 62%);
}
.landingHeroInner{position:relative; padding:28px; display:grid; grid-template-columns:1.15fr .85fr; gap:16px}
@media (max-width:980px){ .landingHeroInner{grid-template-columns:1fr} }
.bigTitle{margin:0; font-size:clamp(36px,4.8vw,58px); line-height:1.02; letter-spacing:-0.03em; white-space:pre-line}
.bigSub{margin:12px 0 0; color:rgba(154,166,193,.95); font-size:15px; line-height:1.55; max-width:72ch}
.heroCtas{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; align-items:center}
.r6Button{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,59,77,.18), rgba(255,59,77,.08));
  box-shadow:0 16px 44px rgba(255,59,77,.10);
  font-weight:950; letter-spacing:.06em; text-transform:uppercase;
}
.r6Button:hover{border-color:rgba(255,59,77,.45); box-shadow:0 0 0 4px rgba(255,59,77,.12), 0 16px 44px rgba(255,59,77,.12)}
.r6Shield{
  width:42px; height:42px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(9,11,16,.65), rgba(9,11,16,.35));
  display:flex; align-items:center; justify-content:center;
}
.r6Shield svg{width:28px; height:28px; opacity:.95}
.heroCardStack{display:flex; flex-direction:column; gap:12px}
.miniStatCard{
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  background:rgba(9,11,16,.55);
  padding:14px;
}
.miniStatTitle{color:rgba(154,166,193,.95); font-size:12px; letter-spacing:.10em; text-transform:uppercase}
.miniStatValue{margin-top:8px; font-size:18px; font-weight:950}
.miniStatHint{margin-top:6px; color:rgba(154,166,193,.95); font-size:12px; line-height:1.5}
.offerGrid{display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:12px}
@media (max-width:980px){ .offerGrid{grid-template-columns:repeat(6,minmax(0,1fr))} }
@media (max-width:620px){ .offerGrid{grid-template-columns:repeat(2,minmax(0,1fr))} }
.offerCard{grid-column:span 4; border:1px solid rgba(255,255,255,.10); border-radius:20px; background:rgba(9,11,16,.50); padding:14px; box-shadow:var(--shadow2)}
.offerCard h3{margin:0 0 8px; font-size:14px}
.offerCard p{margin:0; color:rgba(154,166,193,.95); font-size:13px; line-height:1.55}
.priceWrap{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px}
@media (max-width:980px){ .priceWrap{grid-template-columns:1fr} }
.priceCard{
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(9,11,16,.65), rgba(9,11,16,.35));
  padding:16px;
  box-shadow:var(--shadow2);
}
.priceTop{display:flex; align-items:center; justify-content:space-between; gap:10px}
.priceName{font-weight:950; letter-spacing:.10em; text-transform:uppercase; font-size:12px; color:rgba(154,166,193,.95)}
.priceVal{font-size:28px; font-weight:950}
.bullet{display:flex; gap:10px; margin-top:10px; color:rgba(233,238,251,.88); font-size:13px; align-items:flex-start}
.bullet::before{content:""; width:8px; height:8px; border-radius:3px; margin-top:5px; background:rgba(240,180,41,.95); box-shadow:0 0 0 6px rgba(240,180,41,.08)}
.bullet.red::before{background:rgba(255,59,77,.95); box-shadow:0 0 0 6px rgba(255,59,77,.10)}
.noteTiny{color:rgba(154,166,193,.95); font-size:12px; margin-top:10px}
.kpiTableWrap{margin-top:12px}
.smallTitle{font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(154,166,193,.95); margin:14px 0 8px}
.coachRow{display:flex; flex-direction:column; gap:10px; margin-top:10px}
.coachCard.team{border-left:3px solid rgba(255,59,77,.70)}


/* Leetify-like landing structure */
.leetHero{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  overflow:hidden;
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(255,59,77,.18), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(240,180,41,.16), transparent 60%),
    linear-gradient(180deg, rgba(9,11,16,.90), rgba(9,11,16,.55));
  box-shadow:var(--shadow);
}
.leetHero::before{
  content:"";
  position:absolute; inset:-120px -80px auto -80px; height:360px;
  background:linear-gradient(90deg, rgba(255,59,77,.22), transparent 55%);
  transform:rotate(-10deg);
}
.leetHeroInner{
  position:relative;
  padding:34px 28px 26px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
}
@media (max-width:980px){ .leetHeroInner{grid-template-columns:1fr} }
.centerStack{display:flex; flex-direction:column; gap:12px}
.heroTitle2{
  margin:0;
  font-size:clamp(36px,4.6vw,64px);
  line-height:1.02;
  letter-spacing:-0.04em;
}
.heroSub2{
  margin:0;
  color:rgba(154,166,193,.98);
  font-size:15px;
  line-height:1.6;
  max-width:70ch;
}
.heroCtas2{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:6px}
.statRow{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:10px;
}
.statPill{
  display:flex; flex-direction:column; gap:4px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,11,16,.45);
  min-width:140px;
}
.statPill .k{color:rgba(154,166,193,.95); font-size:11px; letter-spacing:.12em; text-transform:uppercase}
.statPill .v{font-weight:950; font-size:16px}

.mockWrap{display:flex; flex-direction:column; gap:12px}
.mockShot{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 28px 70px rgba(0,0,0,.45);
  overflow:hidden;
}
.mockTopbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(9,11,16,.55);
}
.dots{display:flex; gap:7px; align-items:center}
.dot{width:9px; height:9px; border-radius:99px; background:rgba(255,255,255,.14)}
.dot.red{background:rgba(255,59,77,.70)}
.dot.gold{background:rgba(240,180,41,.80)}
.mockBody{
  padding:14px;
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px;
}
.mockCard{
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  background:rgba(9,11,16,.55);
  padding:12px;
}
.mockCard .t{color:rgba(154,166,193,.95); font-size:11px; letter-spacing:.12em; text-transform:uppercase}
.mockCard .n{margin-top:8px; font-size:18px; font-weight:950}
.mockCard .s{margin-top:6px; color:rgba(154,166,193,.95); font-size:12px; line-height:1.5}

.logoStrip{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.logoChip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,11,16,.40);
  color:rgba(233,238,251,.86);
  font-size:12px;
}

.featureRows{display:flex; flex-direction:column; gap:12px}
.featureRow{display:grid; grid-template-columns:1fr 1fr; gap:12px; align-items:stretch}
@media (max-width:980px){ .featureRow{grid-template-columns:1fr} }
.featurePanel{
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:rgba(9,11,16,.50);
  padding:16px;
  box-shadow:var(--shadow2);
}
.featureArt{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(255,59,77,.18), transparent 60%),
    radial-gradient(520px 260px at 80% 30%, rgba(240,180,41,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  min-height:220px;
  box-shadow:var(--shadow2);
  position:relative;
  overflow:hidden;
}
.featureArt::after{
  content:"";
  position:absolute; inset:auto -80px -120px auto; width:460px; height:460px;
  background:radial-gradient(circle at 30% 30%, rgba(240,180,41,.18), transparent 62%);
}
.kbd{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,11,16,.55);
  font-size:12px;
  color:rgba(233,238,251,.90);
}


/* New Landing: Centerpiece button + offer columns */
.centerpiece{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:34px 10px 10px;
  text-align:center;
}
.centerpiece .tagline{
  margin-top:12px;
  color:rgba(154,166,193,.96);
  font-size:14px;
  line-height:1.6;
  max-width:70ch;
}
.centerpieceButton{
  width:min(340px, 92vw);
  height:340px;
  border-radius:42px;
  border:1px solid rgba(240,180,41,.18);
  background:
    radial-gradient(240px 240px at 30% 25%, rgba(255,51,71,.26), transparent 62%),
    radial-gradient(240px 240px at 70% 65%, rgba(240,180,41,.20), transparent 62%),
    linear-gradient(180deg, rgba(9,11,16,.75), rgba(9,11,16,.45));
  box-shadow:
    0 40px 110px rgba(0,0,0,.55),
    0 0 0 6px rgba(255,51,71,.10),
    0 0 0 1px rgba(240,180,41,.12) inset;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  text-decoration:none;
  color:rgba(233,238,251,.96);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.centerpieceButton:hover{
  transform:translateY(-2px);
  border-color:rgba(255,51,71,.45);
  box-shadow:
    0 46px 140px rgba(0,0,0,.62),
    0 0 0 8px rgba(255,51,71,.12),
    0 0 0 1px rgba(240,180,41,.16) inset;
}
.centerpieceIcon{
  width:86px; height:86px;
  border-radius:26px;
  border:1px solid rgba(240,180,41,.22);
  background:rgba(7,9,13,.45);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 22px 60px rgba(255,51,71,.12);
}
.centerpieceIcon svg{width:54px; height:54px}
.centerpieceLabel{
  font-weight:1000;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:13px;
  color:rgba(240,180,41,.98);
}
.centerpieceTitle{
  font-size:22px;
  font-weight:1000;
  letter-spacing:-.02em;
}
.centerpieceHint{
  font-size:12px;
  color:rgba(154,166,193,.95);
  max-width:34ch;
  line-height:1.5;
}

.offerCols{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:12px;
}
@media (max-width:980px){ .offerCols{grid-template-columns:repeat(6,minmax(0,1fr))} }
@media (max-width:640px){ .offerCols{grid-template-columns:repeat(2,minmax(0,1fr))} }

.offerCol{
  grid-column:span 4;
  border:1px solid rgba(240,180,41,.14);
  border-left:3px solid rgba(240,180,41,.55);
  border-radius:22px;
  background:
    radial-gradient(520px 260px at 10% 10%, rgba(255,51,71,.12), transparent 60%),
    linear-gradient(180deg, rgba(12,14,20,.65), rgba(12,14,20,.40));
  padding:16px;
  box-shadow:var(--shadow2);
}
.offerCol h3{
  margin:0 0 8px;
  font-size:14px;
  font-weight:1000;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.offerCol p{
  margin:0;
  color:rgba(154,166,193,.95);
  font-size:13px;
  line-height:1.6;
}
.offerList{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.offerItem{
  display:flex; gap:10px; align-items:flex-start;
  color:rgba(233,238,251,.90);
  font-size:13px;
  line-height:1.55;
}
.offerItem::before{
  content:"";
  width:10px; height:10px;
  border-radius:4px;
  margin-top:5px;
  background:rgba(255,51,71,.85);
  box-shadow:0 0 0 6px rgba(255,51,71,.10);
}
.offerItem strong{color:rgba(233,238,251,.96)}
.goldEdge{border-left-color:rgba(240,180,41,.65)}


/* Pro polish overrides */
.card, .miniStatCard, .priceCard, .offerCol, .matchCard, .tableWrap, .panel, .featurePanel, .mockShot{
  border-color:rgba(240,180,41,.16);
}
.card, .miniStatCard, .priceCard, .offerCol, .matchCard, .tableWrap, .panel, .featurePanel{
  border-radius:24px;
}
.topbar{
  border-bottom:1px solid rgba(240,180,41,.14);
  backdrop-filter:saturate(120%) blur(10px);
}
.btn.primary{
  background:linear-gradient(180deg, rgba(242,182,50,.95), rgba(242,182,50,.78));
  border-color:rgba(242,182,50,.40);
  box-shadow:0 16px 46px rgba(242,182,50,.18);
}
.btn.primary:hover{
  box-shadow:0 0 0 4px rgba(242,182,50,.16), 0 16px 46px rgba(242,182,50,.20);
}
.btn.ghost:hover{
  border-color:rgba(240,180,41,.26);
}
.logo{letter-spacing:.12em;}
h1,h2,h3{letter-spacing:-0.02em}


/* Match Value explainer modal */
.mvModal{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:none; align-items:center; justify-content:center;
  z-index:2000;
}
.mvModal.open{display:flex}
.mvModalCard{
  max-width:520px; width:92vw;
  border-radius:22px;
  border:1px solid rgba(240,180,41,.18);
  background:
    radial-gradient(420px 240px at 10% 10%, rgba(242,182,50,.18), transparent 60%),
    linear-gradient(180deg, rgba(10,12,18,.92), rgba(10,12,18,.72));
  box-shadow:0 40px 120px rgba(0,0,0,.65);
  padding:18px;
}
.mvModalHeader{display:flex; align-items:center; justify-content:space-between}
.mvModalTitle{
  font-weight:1000; letter-spacing:.04em; text-transform:uppercase; font-size:13px;
  color:rgba(240,180,41,.98);
}
.mvModalClose{
  border:1px solid rgba(240,180,41,.22);
  background:transparent; color:rgba(233,238,251,.92);
  border-radius:12px; padding:6px 10px; cursor:pointer;
}
.mvModalBody{margin-top:10px; color:rgba(233,238,251,.94); line-height:1.6; font-size:14px}
.mvModalBody ul{margin:10px 0 0 18px}
.mvInfo{
  display:inline-flex; align-items:center; justify-content:center;
  width:18px; height:18px; border-radius:999px;
  border:1px solid rgba(240,180,41,.35);
  color:rgba(240,180,41,.98);
  font-size:12px; cursor:pointer;
}

/* Logo mark */
.logoMark{height:34px; width:auto; display:block}
@media (max-width:560px){ .logoMark{height:30px} }


/* POLISH PASS v1: rhythm, spacing, typography, navigation consistency */
:root{
  --radius:24px;
  --radius2:18px;
  --border:rgba(242,182,50,.16);
  --border2:rgba(242,182,50,.28);
  --shadowStrong:0 30px 90px rgba(0,0,0,.55);
}
html{scroll-behavior:smooth}
body{
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(242,182,50,.14), transparent 62%),
    radial-gradient(900px 520px at 85% 0%, rgba(242,182,50,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

/* Make the page feel “bigger” and more premium */
.container{max-width:1320px; padding:22px 22px 44px;}
@media (max-width:560px){ .container{padding:16px 14px 34px;} }

/* Section rhythm */
.landingWrap{gap:22px}
section{scroll-margin-top:90px}
.divider{height:1px; background:rgba(242,182,50,.12); margin:16px 0}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:1200;
  background:rgba(7,9,13,.70);
  border-bottom:1px solid rgba(242,182,50,.14);
}
.topbarApp{
  height:66px;
  max-width:1320px;
  margin:0 auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
@media (max-width:560px){ .topbarApp{padding:0 14px; height:62px;} }
.leftGroup{display:flex; align-items:center; gap:12px}
.brandSub{color:rgba(154,166,193,.92); font-size:12px; letter-spacing:.04em}
.rightGroup{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

/* Logo mark container */
.logo{display:inline-flex; align-items:center}
.logoMark{height:32px}
@media (max-width:560px){ .logoMark{height:28px} }

/* Buttons (more defined edges) */
.btn{
  border-radius:16px;
  border:1px solid rgba(242,182,50,.18);
  padding:10px 14px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}
.btn.ghost{
  background:rgba(10,12,18,.35);
}
.btn.ghost:hover{
  border-color:rgba(242,182,50,.28);
  background:rgba(10,12,18,.48);
}
.btn.primary{
  border-color:rgba(242,182,50,.42);
  background:linear-gradient(180deg, rgba(242,182,50,.98), rgba(242,182,50,.72));
  box-shadow:0 18px 54px rgba(242,182,50,.16);
}
.btn.primary:hover{
  box-shadow:0 0 0 4px rgba(242,182,50,.16), 0 18px 54px rgba(242,182,50,.20);
}

/* Cards/panels */
.card, .miniStatCard, .priceCard, .offerCol, .matchCard, .tableWrap, .panel, .featurePanel{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow2);
}
.offerCol{border-left-width:4px}

/* Tables */
.table{border-collapse:separate; border-spacing:0}
.table thead th{
  color:rgba(154,166,193,.92);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.table td, .table th{padding:12px 12px}
.table tbody tr:hover{background:rgba(255,255,255,.03)}

/* Inputs */
input, textarea, select{
  border-radius:16px;
  border:1px solid rgba(242,182,50,.16);
  background:rgba(10,12,18,.42);
}
input:focus, textarea:focus, select:focus{
  outline:none;
  border-color:rgba(242,182,50,.40);
  box-shadow:0 0 0 4px rgba(242,182,50,.12);
}

/* Typography polish */
h1{font-size:34px}
h2{font-size:20px}
h3{font-size:14px}
.muted{color:rgba(154,166,193,.92)}

/* Centerpiece: slightly sharper */
.centerpieceButton{
  border-radius:46px;
  border:1px solid rgba(242,182,50,.30);
  box-shadow:var(--shadowStrong), 0 0 0 6px rgba(242,182,50,.10), 0 0 0 1px rgba(242,182,50,.12) inset;
}
.centerpieceButton:hover{
  border-color:rgba(242,182,50,.55);
  box-shadow:0 52px 160px rgba(0,0,0,.66), 0 0 0 8px rgba(242,182,50,.12), 0 0 0 1px rgba(242,182,50,.16) inset;
}

/* Footer */
.footer{
  border-top:1px solid rgba(242,182,50,.12);
  padding-top:18px;
  margin-top:10px;
}

/* Pills/chips */
.pill, .chip, .proPill, .miniChip{
  border-radius:999px;
  border:1px solid rgba(242,182,50,.14);
}


/* Phase A: Match Value Logs UI */
.panelHead{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:12px;}
.panelTitle{font-weight:1000; letter-spacing:.08em; text-transform:uppercase; font-size:12px; color:rgba(240,180,41,.98);}
.panelActions{display:flex; align-items:center; gap:8px; flex-wrap:wrap;}
.grid2{display:grid; grid-template-columns:1.2fr .8fr; gap:14px;}
@media (max-width:980px){ .grid2{grid-template-columns:1fr;} }

.feed{display:flex; flex-direction:column; gap:10px;}
.feedItem{
  border:1px solid rgba(242,182,50,.14);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(10,12,18,.62), rgba(10,12,18,.42));
  padding:12px;
}
.feedTop{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex-wrap:wrap;}
.feedTitle{font-weight:1000; letter-spacing:-.02em;}
.feedMeta{display:flex; gap:8px; flex-wrap:wrap; align-items:center; color:rgba(154,166,193,.92); font-size:12px;}
.kvRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px;}
.kv{border:1px solid rgba(242,182,50,.12); border-radius:999px; padding:6px 10px; font-size:12px; color:rgba(233,238,251,.92); background:rgba(7,9,13,.35);}
.kv strong{color:rgba(240,180,41,.98); font-weight:1000;}
.feedNotes{margin-top:8px; color:rgba(154,166,193,.92); font-size:13px; line-height:1.55;}
.iconBtn{
  border:1px solid rgba(242,182,50,.18);
  background:rgba(10,12,18,.35);
  color:rgba(233,238,251,.92);
  border-radius:14px;
  padding:8px 10px;
  cursor:pointer;
}
.iconBtn.danger{border-color:rgba(242,182,50,.35); color:rgba(242,182,50,.92);}

.cards{display:flex; flex-direction:column; gap:10px;}
.cardItem{
  border:1px solid rgba(242,182,50,.14);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(10,12,18,.62), rgba(10,12,18,.42));
  padding:12px;
}
.cardHead{display:flex; align-items:center; justify-content:space-between; gap:10px;}
.cardTitle{font-weight:1000;}
.sev{border-radius:999px; padding:6px 10px; font-size:11px; letter-spacing:.10em; text-transform:uppercase; border:1px solid rgba(242,182,50,.14);}
.sev.critical{border-color:rgba(242,182,50,.45); color:rgba(242,182,50,.95); background:rgba(242,182,50,.08);}
.sev.high{border-color:rgba(242,182,50,.26); color:rgba(255,170,176,.95); background:rgba(242,182,50,.06);}
.sev.medium{border-color:rgba(242,182,50,.24); color:rgba(242,182,50,.95); background:rgba(242,182,50,.06);}
.sev.low{border-color:rgba(154,166,193,.26); color:rgba(154,166,193,.95); background:rgba(154,166,193,.06);}
.cardBody{margin-top:8px; color:rgba(154,166,193,.92); line-height:1.55; font-size:13px;}

.drawer{position:fixed; inset:0; display:none; align-items:flex-end; justify-content:center; z-index:2100; background:rgba(0,0,0,.55);}
.drawer.open{display:flex;}
.drawerCard{
  width:min(980px, 96vw);
  max-height:90vh;
  overflow:auto;
  margin:0 0 14px;
  border:1px solid rgba(242,182,50,.18);
  border-radius:24px;
  background:
    radial-gradient(700px 340px at 10% 10%, rgba(242,182,50,.18), transparent 60%),
    linear-gradient(180deg, rgba(10,12,18,.92), rgba(10,12,18,.70));
  box-shadow:0 50px 160px rgba(0,0,0,.70);
  padding:16px;
}
.drawerHead{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex-wrap:wrap;}
.drawerTitle{font-weight:1000; font-size:16px;}
.drawerActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;}

.formGrid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; margin-top:12px;}
@media (max-width:800px){ .formGrid{grid-template-columns:1fr;} }
.field label{display:block; margin-bottom:6px; color:rgba(154,166,193,.92); font-size:12px; letter-spacing:.08em; text-transform:uppercase;}
.field input, .field select, .field textarea{width:100%;}
.span2{grid-column:span 2;}
@media (max-width:800px){ .span2{grid-column:auto;} }
.checkGrid{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:8px; margin-top:6px;}
@media (max-width:800px){ .checkGrid{grid-template-columns:repeat(2, minmax(0,1fr));} }
.check{display:flex; gap:8px; align-items:center; font-size:13px; color:rgba(233,238,251,.92);}
.noteTiny{margin-top:10px; color:rgba(154,166,193,.88); font-size:12px;}


/* CSV mapper UI */
.csvMapGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
  margin-top:10px;
}
@media (max-width:760px){ .csvMapGrid{grid-template-columns:1fr;} }
.csvMapRow{
  border:1px solid rgba(242,182,50,.14);
  border-radius:18px;
  background:rgba(10,12,18,.45);
  padding:10px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}
.csvMapLabel{
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(233,238,251,.92);
}
.csvMapHint{font-size:12px; color:rgba(154,166,193,.92); margin-top:4px}
.csvMapLeft{display:flex; flex-direction:column; gap:2px}
.csvMapSelect{
  min-width:260px;
}
.csvPreviewWrap{margin-top:12px}

/* BLACK + GOLD THEME OVERRIDE */
:root{
  --bg:#050607;
  --bg2:#07080A;
  --panel:rgba(12,13,16,.72);
  --panel2:rgba(12,13,16,.52);
  --text:rgba(242,244,252,.94);
  --muted:rgba(170,178,198,.88);
  --gold: #FFD24A;
  --gold2: #C88A12;
  --border:rgba(242,182,50,.18);
  --borderStrong:rgba(242,182,50,.32);
  --shadow2:0 18px 60px rgba(0,0,0,.55);
  --radius:24px;
}

body{
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(242,182,50,.10), transparent 62%),
    radial-gradient(900px 520px at 80% 0%, rgba(242,182,50,.06), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:rgba(242,182,50,.94)}
a:hover{color:rgba(242,182,50,1)}

.btn{
  border:1px solid var(--border);
  background:rgba(12,13,16,.42);
}
.btn.ghost{background:rgba(12,13,16,.30)}
.btn.primary{
  background:linear-gradient(180deg, rgba(242,182,50,.96), rgba(184,131,18,.92));
  border-color:rgba(242,182,50,.40);
  color:#0A0B0E;
  box-shadow:0 16px 50px rgba(242,182,50,.10);
}
.btn.primary:hover{
  box-shadow:0 0 0 4px rgba(242,182,50,.16), 0 16px 50px rgba(242,182,50,.14);
}

.pill, .chip, .proPill, .miniChip{
  border:1px solid var(--border);
  background:rgba(12,13,16,.40);
}
.proDot{background:var(--gold)}

.card, .miniStatCard, .priceCard, .offerCol, .matchCard, .tableWrap, .panel, .featurePanel{
  border:1px solid var(--border);
  background:
    radial-gradient(520px 280px at 10% 10%, rgba(242,182,50,.08), transparent 60%),
    linear-gradient(180deg, rgba(12,13,16,.78), rgba(12,13,16,.58));
}

input, textarea, select{
  border:1px solid rgba(242,182,50,.18);
  background:rgba(12,13,16,.55);
}
input:focus, textarea:focus, select:focus{
  border-color:rgba(242,182,50,.42);
  box-shadow:0 0 0 4px rgba(242,182,50,.14);
}

.centerpieceButton{
  border:1px solid rgba(242,182,50,.40);
  box-shadow:0 40px 120px rgba(0,0,0,.60), 0 0 0 6px rgba(242,182,50,.10), 0 0 0 1px rgba(242,182,50,.12) inset;
}
.centerpieceButton:hover{
  box-shadow:0 52px 160px rgba(0,0,0,.66), 0 0 0 8px rgba(242,182,50,.12), 0 0 0 1px rgba(242,182,50,.18) inset;
}

.logoMark{height:34px; width:auto; display:block}

/* LOGO BADGE + GATE LAYOUT */
.logoBadge{
  background:#ffffff;
  padding:8px 10px;
  border:1px solid rgba(242,182,50,.55);
  box-shadow:0 12px 40px rgba(0,0,0,.35);
  display:inline-flex;
  align-items:center;
  border-radius:10px; /* badge can be slightly rounded, not the page boxes */
}
.logoBadge .logoMark{height:32px}
.topbar .leftGroup{gap:10px}
.topbarApp{justify-content:flex-start}
.topbarApp .rightGroup{margin-left:auto}

body.gate{
  background:#050607 !important;
}
.gateMain{
  min-height:calc(100vh - 66px);
  display:flex;
  align-items:center;
  justify-content:center;
}
.gateStack{
  width:min(520px, 92vw);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}
.gateStack .logoBadge{
  padding:14px 16px;
}
.gateForm{
  width:100%;
  border:1px solid rgba(242,182,50,.22);
  border-radius:0; /* fully straight */
  background:rgba(12,13,16,.55);
  padding:14px;
  display:flex;
  gap:10px;
  align-items:center;
}
.gateForm input{
  border-radius:0;
  flex:1;
  min-width:220px;
}
.gateForm .btn{
  border-radius:0;
}
.gateHint{
  width:100%;
  text-align:center;
  color:rgba(170,178,198,.88);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* LAYOUT WIDENING */
.container{
  max-width:1400px; /* was narrower */
}

.topbarApp{
  padding-left:24px; /* bring logo closer to edge */
  padding-right:24px;
}

.topbar{
  padding-left:0;
  padding-right:0;
}

.logoBadge{
  margin-left:0;
}

/* FLUID RESPONSIVE SCALING */
:root{
  --gutter: clamp(14px, 2.2vw, 34px);
  --maxw: min(1560px, calc(100vw - (var(--gutter) * 2)));
}

/* Container becomes fluid: always fills, with a max width */
.container{
  width: var(--maxw);
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* Topbar content uses fluid gutters so logo can hug the left naturally */
.topbar{
  padding-left: 0;
  padding-right: 0;
}
.topbarApp{
  width: var(--maxw);
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Make layout comfy on small screens */
@media (max-width: 520px){
  .logoBadge{ padding: 10px 12px; }
  .logoBadge .logoMark{ height: 28px; }
}



/* ==============================
   PRECISE BLACK + GOLD SYSTEM
   - Black is the only main color
   - Gold is accents only (borders, buttons, highlights)
   - Straight edges (no rounding)
   - No gradients, no glows
================================ */

:root{
  --bg: #000000;
  --bg2:#000000;
  --panel:#000000;
  --panel2:#000000;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.58);
  --gold: #FFD24A;
  --gold2: #C88A12;
  --border: rgba(242,182,50,.25);
  --borderStrong: rgba(242,182,50,.40);
  --radius: 0px;
}

html, body{background: var(--bg) !important;}
body{
  background: var(--bg) !important;
  color: var(--text);
}

/* Layout */
.container{padding-left:0; padding-right:0;}
.topbar{
  background: #000 !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: none !important;
}
.topbarApp{
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo badge: white background only behind logo, straight edges */
.logoBadge{
  background:#ffffff !important;
  border: 1px solid var(--borderStrong) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 10px;
}
.logoBadge .logoMark{height:32px}

/* Links */
a{color: var(--gold); text-decoration: none;}
a:hover{color: var(--gold); opacity:.92}

/* Cards/panels/tables: straight edges, pure black */
.card, .panel, .featurePanel, .miniStatCard, .priceCard, .offerCol, .matchCard, .tableWrap, .mvModalCard{
  background: #000 !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Dividers */
.divider{
  border-color: rgba(255,255,255,.10) !important;
}

/* Inputs */
input, textarea, select{
  background:#000 !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
input::placeholder, textarea::placeholder{
  color: rgba(255,255,255,.42) !important;
}
input:focus, textarea:focus, select:focus{
  outline: none !important;
  border-color: var(--borderStrong) !important;
  box-shadow: none !important;
}

/* Buttons */
.btn{
  background:#000 !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.btn:hover{
  border-color: rgba(255,255,255,.22) !important;
}
.btn.primary{
  background:#000 !important;
  border-color: var(--borderStrong) !important;
  color: var(--gold) !important;
}
.btn.primary:hover{
  border-color: rgba(242,182,50,.55) !important;
}
.btn.ghost{
  background:#000 !important;
}

/* Chips/pills */
.pill, .chip, .proPill, .miniChip{
  background:#000 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Tables */
.table th, .table td{
  border-color: rgba(255,255,255,.10) !important;
}
.table thead th{
  color: rgba(255,255,255,.76) !important;
}

/* Modals */
.mvModal{
  background: rgba(0,0,0,.82) !important;
}

/* Reduce decorative effects if any */
*{
  text-shadow: none !important;
}

/* CLEAN PASSWORD PAGE (TOPBAR + CENTER BODY) */
body.gate{ background:#000 !important; }
.gateMain{
  min-height: calc(100vh - 64px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 32px var(--gutter);
}
.gateStack{
  width: min(720px, 92vw);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 16px;
}
.gateLogo{
  width: min(520px, 86vw);
  height:auto;
  display:block;
}
.gateForm{
  width:100%;
  border: 1px solid var(--border);
  background:#000;
  padding: 12px;
  display:flex;
  gap: 8px;
  align-items:center;
}
.gateForm input{ flex:1; }
#gateMsg{
  color: rgba(255,255,255,.55);
  font-size: 12px;
  min-height: 16px;
  text-align:center;
}

/* ---------- NAV + LOGO (PURE GOLD, NO WHITE BACKPLATE) ---------- */
.logoBadge{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.logoMark{height:34px; width:auto}

/* Dropdown nav */
.navRow{display:flex; gap:12px; align-items:center}
.dd{position:relative; display:inline-flex}
.ddBtn{
  background:#000;
  color:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.14);
  padding:8px 10px;
  border-radius:0;
  font-size:13px;
  letter-spacing:.02em;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.ddBtn:hover{border-color:rgba(255,255,255,.22)}
.ddMenu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:220px;
  background:#000;
  border:1px solid rgba(255,255,255,.14);
  display:none;
  z-index:40;
}
.dd.isOpen .ddMenu{display:block}
.ddMenu a{
  display:block;
  padding:10px 12px;
  color:rgba(255,255,255,.84);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.ddMenu a:hover{background:rgba(255,255,255,.04)}
.ddMenu a:last-child{border-bottom:none}

/* Home hero */
.homeHero{
  padding: clamp(34px, 6vw, 78px) 0;
}
.homeHeroInner{
  max-width: 980px;
  margin: 0 auto;
  text-align:center;
}
.homeHeroTitle{
  margin: 0;
  color: #F2B632;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(28px, 4vw, 56px);
}
.homeHeroSub{
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.65;
}
.homeHeroActions{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Topbar spacing cleanup */
.topbarApp{gap:16px}
.rightGroup{display:flex; align-items:center; gap:12px}

/* Slightly lift gate content */
.gateStack{transform: translateY(-14px);} 
.gateMain{padding-top: 18px !important;}

/* Inputs: ensure text is visible and clickable */
input, select, textarea{
  background: #0b0b0b;
  color: #f5f5f5;
  border: 1px solid rgba(255,210,74,.28);
  outline: none;
}
input::placeholder, textarea::placeholder{
  color: rgba(245,245,245,.55);
}
input:focus, textarea:focus, select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255,210,74,.14);
}

/* Slightly lift gate content */
.gateStack{transform: translateY(-18px);}
.card{position: relative;}

.verifyBanner{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.88);
  border-bottom: 1px solid rgba(255,210,74,.22);
}
.verifyBannerInner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: #f5f5f5;
}


/* Layout utilities (to avoid inline styles; keeps CSP strict) */
.cardPad{ padding: 18px; }
.formNarrow{ display:grid; gap:10px; max-width:520px; }
.minH18{ min-height:18px; }
.lh16{ line-height:1.6; }
.footer{ max-width:1180px; margin: 22px auto 28px; padding: 0 14px; opacity:.65; font-size: 12px; }



/* Utilities */
.mt12{ margin-top:12px; }
.mt16{ margin-top:16px; }

/* R6 page */
.r6Form{ display:grid; grid-template-columns: 140px 1fr 1fr auto; gap:12px; margin-top:12px; align-items:end; }
.fieldBtn{ display:flex; flex-direction:column; }
.accountsList{ display:flex; flex-direction:column; gap:10px; margin-top:10px; }
.accountRow{ display:flex; gap:12px; align-items:center; border:1px solid rgba(212,175,55,0.18); padding:10px; }
.acctMeta{ flex:1; min-width:0; }
.acctTitle{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.acctLabel{ background:#0b0b0b; color:#fff; border:1px solid rgba(212,175,55,0.25); padding:8px 10px; }
.pill{ display:inline-flex; align-items:center; padding:4px 8px; border:1px solid rgba(212,175,55,0.25); color:rgba(212,175,55,0.9); font-size:12px; }
.acctBtns{ display:flex; gap:8px; }
.notice{ padding:10px; border:1px solid rgba(212,175,55,0.25); }
.notice.error{ border-color: rgba(255,80,80,0.5); color: rgba(255,140,140,0.95); }
.notice.ok{ border-color: rgba(90,220,150,0.45); color: rgba(180,255,210,0.95); }
.codeBlock{ background:#0b0b0b; color:#d6d6d6; border:1px solid rgba(212,175,55,0.18); padding:10px; overflow:auto; max-height:320px; }

@media (max-width: 980px){
  .r6Form{ grid-template-columns: 1fr; }
  .accountRow{ flex-direction:column; align-items:stretch; }
  .acctBtns{ justify-content:flex-end; }
}


/* R6 Tabs + Tables (v43.16) */
.r6Tabs{ display:flex; flex-wrap:wrap; gap:8px; }
.tabBtn{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 8px 10px;
  font: inherit;
  cursor: pointer;
}
.tabBtn.isActive{ border-color: var(--accent); }
.r6Panels{ }
.r6Panel{ display:none; }
.r6Panel.isActive{ display:block; }

.rowGap{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.select.small, .input.small{ padding:8px 10px; font-size: 14px; }

.tableWrap{ overflow:auto; border:1px solid var(--line); }
.table{ width:100%; border-collapse:collapse; min-width:520px; }
.table th, .table td{ padding:10px; border-bottom:1px solid var(--line); text-align:left; white-space:nowrap; }
.table th{ font-weight:700; }
.sparkWrap svg{ width:100%; height:100px; display:block; }
.badge{ display:inline-block; padding:2px 8px; border:1px solid var(--line); border-radius:0; font-size:12px; }
.badge.ok{ border-color: #2ecc71; }
.badge.warn{ border-color: #f1c40f; }
.badge.bad{ border-color: #e74c3c; }

.pillGold{border-color: var(--gold, #d4af37) !important; color: var(--gold, #d4af37) !important;}
.pillMuted{opacity:.75;}

/* Profile tabs */
.tabsBar{display:flex;gap:8px;align-items:center;margin:10px 0 14px 0;flex-wrap:wrap}
.tabBtn{border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.06);color:rgba(255,255,255,.92);padding:8px 10px;border-radius:10px;cursor:pointer;font-size:14px}
.tabBtn.isActive{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.26)}
.tabBtn:focus{outline:2px solid rgba(255,255,255,.25);outline-offset:2px}
.tabPanel{display:none}
.tabPanel.isActive{display:block}


/* App header (logged-in) */
.topbar{ display:flex; align-items:center; justify-content:space-between; padding: 14px 22px; border-bottom:1px solid rgba(216,179,74,0.18); }
.topbar-left{ display:flex; align-items:center; gap:12px; }
.logoLink{ display:flex; align-items:center; }
.logoImg{ height:34px; width:auto; display:block; }

.topbar-center{ display:flex; align-items:center; gap:14px; }
.navLink{ color: rgba(255,255,255,0.86); text-decoration:none; padding: 8px 10px; border:1px solid transparent; }
.navLink:hover{ border-color: rgba(216,179,74,0.30); }
.navLink.isActive{ border-color: rgba(216,179,74,0.55); color:#fff; }

.topbar-right{ display:flex; align-items:center; gap:12px; }
.iconBtn{ background: transparent; border:1px solid rgba(216,179,74,0.28); color:#fff; padding:8px 10px; cursor:pointer; }
.iconBtn:hover{ border-color: rgba(216,179,74,0.55); }

.profileMenu{ position: relative; }
.profileBtn{ display:flex; align-items:center; gap:10px; background: transparent; border:1px solid rgba(216,179,74,0.28); color:#fff; padding:6px 10px; cursor:pointer; }
.profileBtn:hover{ border-color: rgba(216,179,74,0.55); }
.avatar{ width:28px; height:28px; border-radius:999px; border:1px solid rgba(216,179,74,0.45); object-fit:cover; background:#111; }
.profileName{ font-size: 13px; max-width: 160px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.menu{ position:absolute; right:0; top: calc(100% + 8px); min-width: 240px; background:#0b0b0b; border:1px solid rgba(216,179,74,0.28); display:none; padding:8px; z-index: 50; }
.menu.open{ display:block; }
.menuItem{ display:block; width:100%; text-align:left; background:transparent; border:0; color: rgba(255,255,255,0.88); padding:10px 10px; text-decoration:none; cursor:pointer; }
.menuItem:hover{ background: rgba(216,179,74,0.10); }
.menuSep{ height:1px; background: rgba(216,179,74,0.18); margin:6px 0; }
.menuItem.danger{ color: #ff6a6a; }
.menuItem.danger:hover{ background: rgba(255,106,106,0.10); }

.page{ max-width: 1100px; margin: 0 auto; padding: 26px 22px; }
.pageHeader{ margin-bottom: 18px; }
.h1{ font-size: 34px; margin:0 0 6px 0; }
.grid2{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
@media (max-width: 820px){ .grid2{ grid-template-columns: 1fr; } .topbar-center{ display:none; } }
