@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#07080d;
  --panel:rgba(18,20,30,.72);
  --panel-solid:#11131b;
  --border:rgba(255,255,255,.09);
  --text:#f7f8fc;
  --muted:#9ba1b2;
  --pink:#ff2d55;
  --violet:#7c3aed;
  --cyan:#22d3ee;
  --shadow:0 24px 80px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;min-height:100vh;color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 8% 10%,rgba(255,45,85,.20),transparent 28rem),
    radial-gradient(circle at 90% 8%,rgba(124,58,237,.24),transparent 30rem),
    radial-gradient(circle at 50% 100%,rgba(34,211,238,.08),transparent 32rem),
    var(--bg);
  overflow-x:hidden;
}
body:before{
  content:"";position:fixed;inset:0;pointer-events:none;opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,black,transparent 80%);
}
a{color:inherit;text-decoration:none}
.top{
  height:78px;position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 max(22px,5vw);
  background:rgba(7,8,13,.72);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(20px) saturate(150%);
  -webkit-backdrop-filter:blur(20px) saturate(150%);
}
.brand{display:flex;align-items:center;gap:12px;font-size:18px;font-weight:800;letter-spacing:-.02em}
.logo{
  width:40px;height:40px;border-radius:13px;display:grid;place-items:center;
  font-weight:900;color:#fff;
  background:linear-gradient(135deg,var(--pink),var(--violet));
  box-shadow:0 12px 34px rgba(255,45,85,.28);
}
.top nav{display:flex;align-items:center;gap:8px}
.top nav a{padding:10px 13px;border-radius:10px;color:#aeb4c3;font-size:13px;font-weight:600}
.top nav a:hover{background:rgba(255,255,255,.06);color:#fff}

.wrap{position:relative;z-index:1;max-width:1180px;margin:0 auto;padding:72px 24px 90px}
.hero{padding:52px 0 88px;max-width:900px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;letter-spacing:.20em;color:#ff7c96;font-weight:800;margin-bottom:18px
}
.eyebrow:before{content:"";width:7px;height:7px;border-radius:50%;background:var(--pink);box-shadow:0 0 18px var(--pink)}
.hero h1,.pagehead h1,.account h1,.login h1{
  font-size:clamp(42px,7vw,82px);line-height:.96;letter-spacing:-.065em;margin:0 0 25px
}
.hero h1 span{
  background:linear-gradient(90deg,#fff 0%,#a9afbf 55%,#7f8799 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.hero p{max-width:680px;color:var(--muted);font-size:17px;line-height:1.8;margin:0}
.actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:44px;padding:0 17px;border:1px solid var(--border);border-radius:13px;
  background:rgba(255,255,255,.045);color:#fff;font-weight:700;font-size:13px;
  cursor:pointer;transition:.22s ease;box-shadow:0 8px 24px rgba(0,0,0,.15)
}
.btn:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.08)}
.btn.primary{border:0;background:linear-gradient(135deg,var(--pink),#e11d48 45%,var(--violet));box-shadow:0 14px 40px rgba(255,45,85,.24)}
.btn.primary:hover{box-shadow:0 18px 50px rgba(255,45,85,.32)}
.btn.ghost{background:transparent}
.btn.small{min-height:36px;padding:0 11px;font-size:12px;margin-top:14px}

.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{
  position:relative;overflow:hidden;
  border:1px solid var(--border);border-radius:22px;padding:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  box-shadow:var(--shadow)
}
.card:after{
  content:"";position:absolute;width:130px;height:130px;border-radius:50%;
  right:-70px;top:-70px;background:rgba(124,58,237,.13);filter:blur(10px)
}
.card>b{font-size:12px;color:#ff7189}
.card h2,.card h3{margin:12px 0 8px;font-size:20px;letter-spacing:-.025em}
.card p{color:var(--muted);line-height:1.65;margin:0}
.notice,.alert{
  border-radius:16px;padding:15px 17px;margin:24px 0;font-size:13px;line-height:1.6
}
.notice{background:rgba(255,255,255,.035);border:1px solid var(--border);color:#b9bfcc}
.alert.success{background:rgba(16,185,129,.10);border:1px solid rgba(16,185,129,.30)}
.alert.error{background:rgba(244,63,94,.10);border:1px solid rgba(244,63,94,.30)}

.account{
  display:flex;align-items:center;gap:20px;padding:25px;border:1px solid var(--border);
  border-radius:24px;background:var(--panel);backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);box-shadow:var(--shadow)
}
.avatar{width:76px;height:76px;border-radius:50%;object-fit:cover;background:#1b1e28;border:2px solid rgba(255,255,255,.12)}
.account h1{font-size:32px;margin:0 0 8px}
.account p{margin:0;color:var(--muted)}
.account .btn{margin-left:auto}

.pagehead{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:28px}
.pagehead h1{font-size:44px;margin:0}
.videos{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.video{
  display:grid;grid-template-columns:190px 1fr;overflow:hidden;
  border:1px solid var(--border);border-radius:21px;background:rgba(15,17,24,.88);
  box-shadow:0 16px 50px rgba(0,0,0,.25);transition:.22s ease
}
.video:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.15)}
.video>img{width:190px;height:250px;object-fit:cover;background:#171a23}
.vbody{padding:19px}.vbody h3{margin:8px 0;font-size:18px;letter-spacing:-.02em}.stats{color:#858b9b;font-size:12px;margin-top:9px}
.muted{color:var(--muted);font-size:12px}
.empty{
  border:1px dashed rgba(255,255,255,.14);border-radius:22px;padding:60px 25px;text-align:center;
  background:rgba(255,255,255,.025)
}
.empty h2{margin-top:0}

.login{max-width:470px;margin:30px auto}
.login h1{font-size:40px}
.login form{display:grid;gap:16px}
label{display:grid;gap:8px;color:#b9bfcc;font-size:12px;font-weight:600}
input{
  width:100%;height:48px;padding:0 14px;border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.20);color:#fff;border-radius:12px;outline:none;
  font:inherit
}
input:focus{border-color:rgba(255,45,85,.7);box-shadow:0 0 0 4px rgba(255,45,85,.10)}

.table{margin-top:12px}.table>div{
  display:grid;grid-template-columns:1fr 1.2fr 1fr;gap:15px;
  padding:15px 0;border-bottom:1px solid rgba(255,255,255,.07);color:#aeb3c2;font-size:13px
}
.table>div strong{color:#fff}
footer{position:relative;z-index:1;text-align:center;color:#62697a;padding:35px 20px;border-top:1px solid var(--border);font-size:12px}

@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .top,.card,.account{background:#11131b}
}
@media(max-width:850px){
  .card-grid,.videos{grid-template-columns:1fr}
  .hero{padding-top:25px}
}
@media(max-width:650px){
  .top{height:68px}.top nav a{padding:8px}
  .wrap{padding:45px 17px 70px}
  .hero h1{font-size:46px}.pagehead{align-items:flex-start;flex-direction:column}.pagehead h1{font-size:38px}
  .video{grid-template-columns:125px 1fr}.video>img{width:125px;height:190px}
  .account{flex-wrap:wrap}.account .btn{margin-left:0}
  .table>div{grid-template-columns:1fr;gap:5px}
}

/* Compact landing page */
.hero-compact{
  min-height:0;
  padding:46px 0 48px;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(390px,.78fr);
  align-items:center;
  gap:70px;
}
.hero-compact .hero-copy{padding-top:4px}
.hero-compact h1{font-size:clamp(46px,5.5vw,72px);margin-bottom:20px}
.hero-compact p{font-size:16px;max-width:590px;line-height:1.65}
.hero-compact .actions{margin-top:26px}
.mini-proof{display:flex;gap:18px;flex-wrap:wrap;margin-top:25px;color:#777f90;font-size:11px;font-weight:600}
.mini-proof span{display:inline-flex;align-items:center;gap:7px}
.mini-proof i{width:6px;height:6px;border-radius:50%;background:#34d399;box-shadow:0 0 10px #34d39955}

.hero-panel{
  position:relative;overflow:hidden;
  padding:18px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.025));
  box-shadow:0 28px 80px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.05);
  transform:rotate(1deg);
}
.hero-panel:before{
  content:"";position:absolute;right:-90px;top:-100px;width:280px;height:280px;border-radius:50%;
  background:rgba(124,58,237,.22);filter:blur(35px)
}
.panel-top{position:relative;display:flex;align-items:center;gap:9px;padding:0 2px 17px;color:#a8afbf;font-size:11px;font-weight:700}
.panel-dot{width:8px;height:8px;border-radius:50%;background:#34d399;box-shadow:0 0 14px #34d399}
.panel-menu{margin-left:auto;letter-spacing:3px;color:#555c6d}
.mock-profile{
  position:relative;display:flex;align-items:center;gap:11px;padding:14px;
  border:1px solid rgba(255,255,255,.07);border-radius:15px;background:rgba(5,6,10,.38)
}
.mock-avatar{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;font-weight:800;background:linear-gradient(135deg,#ff2d55,#7c3aed)}
.mock-profile strong{display:block;font-size:12px}.mock-profile small{display:block;color:#737b8c;font-size:9px;margin-top:3px}
.status{margin-left:auto;font-size:8px;font-weight:800;letter-spacing:.12em;color:#86efac}
.mock-search{display:flex;align-items:center;gap:9px;margin:12px 0;padding:11px 12px;border-radius:12px;background:rgba(255,255,255,.045);color:#666e80;font-size:10px}
.mock-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.mock-video{height:175px;border-radius:12px;position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:#171a22}
.mock-video:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.65))}
.mock-video span{position:absolute;z-index:1;left:50%;top:50%;transform:translate(-50%,-50%);width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.88);color:#111;font-size:11px}
.mock-video.v1{background:linear-gradient(155deg,#ff315e,#3d163f 58%,#0d1118)}
.mock-video.v2{background:linear-gradient(155deg,#6d3cff,#171b3c 58%,#0d1118)}
.mock-video.v3{background:linear-gradient(155deg,#16b7b1,#102c38 58%,#0d1118)}
.mock-video.v4{background:linear-gradient(155deg,#ff8a3d,#482022 58%,#0d1118)}
.mock-footer{display:flex;justify-content:space-between;margin-top:12px;color:#70788a;font-size:9px}.mock-footer b{color:#c7ccd6}

.trust-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  margin:0 0 58px;border:1px solid var(--border);border-radius:17px;overflow:hidden;background:var(--border)
}
.trust-row>div{padding:17px 20px;background:rgba(255,255,255,.028)}
.trust-row strong{display:block;font-size:13px;margin-bottom:4px}.trust-row span{display:block;color:#777f90;font-size:10px;line-height:1.5}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:20px}.section-head h2{font-size:31px;letter-spacing:-.04em;margin:0}.section-head>p{max-width:300px;color:#777f90;font-size:12px;line-height:1.6;margin:0}
.feature-grid{margin-bottom:20px}.compact-notice{margin-top:0}

@media(max-width:950px){
 .hero-compact{grid-template-columns:1fr;gap:35px;padding-top:30px}
 .hero-panel{max-width:620px;width:100%;justify-self:center;transform:none}
 .trust-row{margin-bottom:45px}
}
@media(max-width:650px){
 .hero-compact{padding:28px 0 36px}
 .hero-compact h1{font-size:44px}
 .mock-grid{grid-template-columns:repeat(2,1fr)}
 .mock-video{height:150px}
 .trust-row{grid-template-columns:1fr}
 .section-head{align-items:flex-start;flex-direction:column;gap:8px}
}
/* TokSave 1.2 polished application UI */
.main-nav{display:flex;align-items:center;gap:3px}.main-nav a{padding:10px 12px!important;color:#8e96a8!important;font-size:12px!important}.main-nav a:hover,.main-nav a.active{color:#fff!important;background:rgba(255,255,255,.04)!important}.main-nav a.active{box-shadow:inset 0 -2px 0 #ff2d73}
.top-actions{display:flex;align-items:center;gap:12px}.top-login{display:inline-flex;align-items:center;gap:7px;color:#aeb4c3;font-size:12px;font-weight:700}.top-login svg{width:17px;height:17px}.top-start{min-height:39px;padding:0 15px!important;border-radius:11px!important;font-size:12px!important}
.hero-copy{min-width:0}.hero-compact .hero-copy{max-width:650px}.hero-panel{min-height:420px}.hero-panel .mock-video{height:190px}
.text-link{display:inline-block;margin-top:17px;color:#ff5d88;font-size:12px;font-weight:700}.text-link:hover{color:#fff}
.account-empty{padding:55px 0;max-width:690px}.account-empty h1{font-size:clamp(45px,6vw,68px);margin:0 0 18px;line-height:.98;letter-spacing:-.06em}.account-empty h1 span{color:#aeb4c3}.account-empty p{max-width:560px;color:var(--muted);line-height:1.7;margin-bottom:28px}
.account-premium{justify-content:space-between}.account-main{display:flex;align-items:center;gap:20px}.account-actions{display:flex;gap:9px;flex-wrap:wrap}.account-actions svg{width:16px;height:16px}.stats-row,.library-top{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:17px;overflow:hidden;margin:18px 0 52px}.stats-row>div,.library-top>div{background:rgba(255,255,255,.025);padding:18px 20px}.stats-row b,.library-top span{display:block;color:#697184;font-size:9px;letter-spacing:.13em;font-weight:800;margin-bottom:7px}.stats-row strong,.library-top strong{font-size:13px}.live-dot{display:inline-block;width:6px;height:6px;border-radius:50%;background:#34d399;box-shadow:0 0 12px #34d399;vertical-align:middle;margin-right:5px}.head-sub{color:#777f90;margin:7px 0 0;font-size:12px}.page-actions{display:flex;gap:8px}.page-actions svg{width:15px;height:15px}
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:17px}.video-card{overflow:hidden;border:1px solid var(--border);border-radius:20px;background:rgba(15,17,24,.88);box-shadow:0 15px 45px rgba(0,0,0,.23);transition:.2s}.video-card:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.16)}.video-cover{height:255px;display:block;position:relative;overflow:hidden;background:#151822}.video-cover img{width:100%;height:100%;display:block;object-fit:cover}.video-cover:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.68))}.play{position:absolute;z-index:2;left:50%;top:50%;transform:translate(-50%,-50%);width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.9);color:#111;font-size:13px;box-shadow:0 10px 25px rgba(0,0,0,.3)}.duration{position:absolute;z-index:2;right:11px;bottom:10px;padding:4px 7px;border-radius:7px;background:rgba(0,0,0,.62);font-size:9px;font-weight:700}.video-body{padding:16px}.video-title{font-size:14px;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.video-desc{height:34px;margin-top:7px;color:#747c8d;font-size:10px;line-height:1.55;overflow:hidden}.video-stats{display:flex;gap:12px;margin-top:13px;color:#8d95a5;font-size:10px}.video-actions{display:flex;gap:7px;margin-top:14px}.video-actions .btn{margin:0}.video-actions svg{width:13px;height:13px}.empty.compact{padding:32px}.empty-icon{width:46px;height:46px;display:grid;place-items:center;margin:0 auto 14px;border-radius:14px;color:#ff4e82;background:rgba(255,45,85,.09);border:1px solid rgba(255,45,85,.2)}.empty-icon svg{width:22px;height:22px}
.dashboard-head{display:flex;justify-content:space-between;align-items:flex-end;gap:25px;margin:18px 0 25px}.dashboard-head h1{font-size:54px;line-height:1;margin:0;letter-spacing:-.055em}.dashboard-head p{color:#7f8797;margin:9px 0 0;font-size:13px}.dashboard-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:13px;margin-bottom:17px}.dash-card{position:relative;overflow:hidden;padding:19px;border:1px solid var(--border);border-radius:18px;background:rgba(255,255,255,.03)}.dash-card.accent{background:linear-gradient(145deg,rgba(255,45,85,.13),rgba(124,58,237,.06))}.dash-icon{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:rgba(255,255,255,.055);color:#b8c0d0;margin-bottom:18px}.dash-icon svg{width:17px;height:17px}.dash-card small{display:block;color:#70788a;font-size:8px;letter-spacing:.13em;font-weight:800}.dash-card strong{display:block;font-size:22px;margin:5px 0 3px}.dash-card>span:last-child{color:#7b8393;font-size:10px}.admin-layout{display:grid;grid-template-columns:1.5fr .8fr;gap:17px}.section-mini{display:flex;justify-content:space-between;align-items:center;gap:15px}.section-mini h2{margin:2px 0 0;font-size:20px}.account-list{margin-top:17px}.account-list-row{display:flex;align-items:center;gap:12px;padding:13px 0;border-top:1px solid rgba(255,255,255,.06)}.list-avatar{width:38px;height:38px;display:grid;place-items:center;border-radius:11px;background:rgba(255,45,85,.1);color:#ff5c89}.list-avatar svg{width:18px}.account-list-row strong{display:block;font-size:12px}.account-list-row small{display:block;color:#686f80;font-size:9px;margin-top:3px}.list-status{margin-left:auto;color:#7ee2a7;font-size:9px;font-weight:700}.quick-card{display:flex;flex-direction:column}.quick-card h2{font-size:26px;margin:2px 0 15px}.quick-link{display:flex;align-items:center;gap:10px;padding:13px 0;border-top:1px solid rgba(255,255,255,.06);font-size:12px;font-weight:700}.quick-link svg{width:17px;color:#aeb5c5}.quick-link span{margin-left:auto;color:#5f6677}.quick-link.danger{color:#fb7185}.quick-link.danger svg{color:#fb7185}
.login-premium{max-width:470px;margin:45px auto}.login-badge{width:52px;height:52px;display:grid;place-items:center;border-radius:15px;margin-bottom:23px;background:linear-gradient(135deg,#ff2d55,#7c3aed);box-shadow:0 15px 35px rgba(255,45,85,.22)}.login-badge svg{width:24px}.login-premium h1{font-size:48px;line-height:.98;margin-bottom:13px}.login-premium h1 span{color:#aeb4c3}.login-premium form{margin-top:25px}.login-premium .btn{width:100%;margin-top:2px}.back-link{display:block;text-align:center;margin-top:19px;color:#72798a;font-size:11px}.back-link:hover{color:#fff}
footer{margin-top:15px}.footer-inner{max-width:1180px;margin:auto;padding:0 24px;display:flex;justify-content:space-between;gap:20px}
@media(max-width:1050px){.main-nav{display:none}.video-grid{grid-template-columns:repeat(2,1fr)}.dashboard-grid{grid-template-columns:repeat(2,1fr)}.admin-layout{grid-template-columns:1fr}.hero-compact{gap:40px}}
@media(max-width:700px){.top{padding:0 17px}.top-actions .top-login{display:none}.top-start{display:none}.wrap{padding-left:17px;padding-right:17px}.hero-compact h1{font-size:43px}.hero-panel{min-height:0}.stats-row,.library-top{grid-template-columns:1fr 1fr;margin-bottom:38px}.account-premium{align-items:flex-start}.account-main{flex-direction:column;align-items:flex-start}.account h1{font-size:30px}.pagehead,.dashboard-head{align-items:flex-start;flex-direction:column}.video-grid{grid-template-columns:1fr}.video-cover{height:300px}.dashboard-grid{grid-template-columns:1fr 1fr}.footer-inner{flex-direction:column;text-align:center}.hero-compact .hero-copy{max-width:none}}
@media(max-width:460px){.stats-row,.library-top,.dashboard-grid{grid-template-columns:1fr}.video-cover{height:270px}.login-premium{margin-top:25px}.hero-compact .actions{flex-direction:column;align-items:stretch}.hero-compact .btn{width:100%}}

/* TokSave 1.3 — approved reference landing page */
.wrap{padding-top:0}
.hero-reference{
  max-width:none;
  padding:56px 0 42px;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(520px,1.08fr);
  align-items:center;
  gap:52px;
}
.hero-reference .hero-copy{max-width:650px}
.hero-reference h1{
  font-size:clamp(50px,5.1vw,76px);
  line-height:.93;
  margin:0 0 24px;
}
.hero-reference h1 span{
  background:linear-gradient(90deg,#fff 0%,#c0c5d1 52%,#9da4b4 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.hero-reference p{max-width:610px;font-size:16px;line-height:1.65}
.hero-reference .actions{margin-top:28px}
.hero-reference .btn.primary{padding:0 20px}
.hero-reference .btn.primary strong{font-size:17px;font-weight:500}
.hero-reference .mini-proof{margin-top:22px;gap:22px;color:#a4aaba}
.hero-reference .mini-proof span{color:#a4aaba}
.hero-reference .mini-proof span:first-letter{color:#ff4b82}

.hero-product{min-width:0}
.product-window{
  width:100%;min-height:455px;padding:11px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.025));
  box-shadow:0 30px 90px rgba(0,0,0,.45),0 0 80px rgba(124,58,237,.09);
}
.window-head{height:46px;display:flex;align-items:center;padding:0 12px;color:#dfe3ec}
.window-brand{display:flex;align-items:center;gap:10px;font-size:13px}.window-logo{width:31px;height:31px;border-radius:9px;display:grid;place-items:center;background:linear-gradient(135deg,#ff2d62,#7c3aed);font-weight:900;color:white;box-shadow:0 8px 20px rgba(255,45,85,.2)}
.window-menu{margin-left:auto;color:#697183;letter-spacing:3px}
.product-body{display:grid;grid-template-columns:160px 1fr;min-height:388px;border:1px solid rgba(255,255,255,.055);border-radius:17px;overflow:hidden;background:rgba(4,6,11,.48)}
.product-sidebar{padding:17px 10px;border-right:1px solid rgba(255,255,255,.06);color:#8d96a8;font-size:10px}
.product-sidebar div{padding:11px 10px;border-radius:9px;margin-bottom:3px}.product-sidebar .side-active{color:#fff;background:linear-gradient(90deg,rgba(255,45,95,.30),rgba(124,58,237,.16))}
.product-content{padding:20px 20px 17px;min-width:0}
.product-user{display:flex;align-items:center;gap:9px;padding:11px;border-radius:12px;background:rgba(124,58,237,.10);border:1px solid rgba(255,255,255,.05);font-size:10px}
.product-user strong,.product-user small{display:block}.product-user small{font-size:8px;color:#717a8d;margin-top:2px}.product-user b{margin-left:auto;color:#6ee7a3;font-size:7px;letter-spacing:.1em}
.product-title{display:flex;justify-content:space-between;align-items:end;margin:18px 0 12px}.product-title strong{display:block;font-size:17px}.product-title small{display:block;color:#70798b;font-size:8px;margin-top:4px}.product-title span{font-size:8px;color:#b9c0ce;border:1px solid rgba(255,255,255,.10);border-radius:8px;padding:7px}
.product-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin-bottom:12px}.product-stats div{padding:10px;border:1px solid rgba(255,255,255,.055);background:rgba(255,255,255,.025);border-radius:10px}.product-stats small{display:block;color:#687184;font-size:6px;letter-spacing:.11em}.product-stats strong{display:block;font-size:14px;margin-top:4px}
.product-videos{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.pv{height:183px;border-radius:11px;position:relative;overflow:hidden;padding:9px;background:#1a1d25;display:flex;flex-direction:column;justify-content:end}.pv:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.78))}
.pv i{position:absolute;z-index:2;left:50%;top:43%;transform:translate(-50%,-50%);width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.9);color:#111;font-style:normal;font-size:10px}.pv b,.pv small{position:relative;z-index:2}.pv b{font-size:9px}.pv small{font-size:7px;color:#a9b0bf;margin-top:3px}
.pv1{background:linear-gradient(155deg,#ff506f,#5d1b43 52%,#10141e)}.pv2{background:linear-gradient(155deg,#ffc06a,#a94c37 44%,#10141e)}.pv3{background:linear-gradient(155deg,#39b9bd,#1c4960 46%,#10141e)}

.reference-trust{grid-template-columns:repeat(4,1fr);margin:0 0 54px}
.reference-trust>div{padding:15px 18px}
.reference-trust strong{font-size:14px}.reference-trust span{font-size:9px}

.feature-card{display:flex;gap:17px;align-items:flex-start;padding:23px}
.feature-icon{width:45px;height:45px;flex:0 0 45px;border-radius:13px;display:grid;place-items:center;font-size:21px;color:white;background:linear-gradient(135deg,#ff2d67,#b327b8);box-shadow:0 12px 28px rgba(255,45,100,.18)}
.feature-icon.violet{background:linear-gradient(135deg,#7c3aed,#4f46e5);box-shadow:0 12px 28px rgba(124,58,237,.18)}
.feature-card>b,.feature-card div>b{font-size:10px}.feature-card h3{margin:6px 0 7px}.feature-card p{font-size:12px}
.compact-notice{margin-top:17px;margin-bottom:0}

@media(max-width:1100px){
 .hero-reference{grid-template-columns:1fr;gap:35px}.hero-reference .hero-copy{max-width:760px}.hero-product{max-width:800px;width:100%;justify-self:center}.product-window{min-height:0}
}
@media(max-width:760px){
 .hero-reference{padding:38px 0 35px}.hero-reference h1{font-size:48px}.reference-trust{grid-template-columns:repeat(2,1fr)}.product-body{grid-template-columns:1fr}.product-sidebar{display:none}.product-videos{grid-template-columns:repeat(3,1fr)}.pv{height:155px}
}
@media(max-width:520px){
 .hero-reference h1{font-size:41px}.reference-trust{grid-template-columns:1fr}.product-content{padding:12px}.product-stats{grid-template-columns:repeat(2,1fr)}.product-videos{grid-template-columns:1fr 1fr}.pv{height:170px}.hero-reference .mini-proof{gap:10px;flex-direction:column}.feature-card{padding:19px}
}

/* TokSave legal pages */
.legal-page{max-width:940px;margin:0 auto;padding:46px 0 70px}
.legal-page h1{font-size:clamp(42px,5vw,64px);line-height:1;margin:9px 0 18px;letter-spacing:-.045em}
.legal-intro{max-width:720px;color:#8d96a8;font-size:15px;line-height:1.7;margin-bottom:28px}
.legal-card{padding:30px 34px;border:1px solid rgba(255,255,255,.09);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));box-shadow:0 20px 55px rgba(0,0,0,.22)}
.legal-card h2{font-size:18px;margin:26px 0 9px}.legal-card h2:first-child{margin-top:0}
.legal-card p{color:#9da5b5;font-size:13px;line-height:1.75;margin:0 0 11px}
.legal-date{padding-top:16px;border-top:1px solid rgba(255,255,255,.07);margin-top:25px!important;color:#70798a!important;font-size:11px!important}
.legal-footer-links{display:flex;justify-content:center;align-items:center;gap:12px;padding:18px 0 4px;margin-top:18px;border-top:1px solid rgba(255,255,255,.07);color:#626b7c;font-size:11px}
.legal-footer-links a{color:#858e9f;text-decoration:none;transition:color .2s ease}
.legal-footer-links a:hover{color:#fff}
.legal-footer-links span{color:#414958}
@media(max-width:650px){.legal-page{padding:32px 0 50px}.legal-card{padding:22px 19px}.legal-footer-links{gap:13px;flex-wrap:wrap}}
