/* /var/www/html/evaluation_raw/style.css */

:root{
  --red:#E1252A;
  --navy:#071A33;
  --navy2:#0B2A4A;
  --ink:#EAF1FF;
  --muted:rgba(234,241,255,.72);
  --glass:rgba(7,26,51,.55);
  --stroke:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.40);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--ink);
  overflow-x:hidden;
}

.bg{
  position:fixed; inset:0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(225,37,42,.65), transparent 55%),
    radial-gradient(900px 550px at 75% 20%, rgba(11,42,74,.75), transparent 60%),
    linear-gradient(135deg, rgba(225,37,42,.92), rgba(7,26,51,.92));
  z-index:-3;
}

.noise{
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  z-index:-2;
  pointer-events:none;
}

.vignette{
  position:fixed; inset:0;
  background:radial-gradient(circle at 50% 35%, transparent 20%, rgba(0,0,0,.45) 85%);
  z-index:-1;
  pointer-events:none;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 26px;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:14px}
.logo{width:50px;height:50px; filter:drop-shadow(0 8px 18px rgba(0,0,0,.35))}
.brandname{font-weight:800; letter-spacing:.3px; font-size:18px}
.brandsub{color:var(--muted); font-size:12px; margin-top:2px}

.stats{display:flex; gap:10px}
.chip{
  background:rgba(7,26,51,.50);
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:14px;
  box-shadow:var(--shadow);
  min-width:92px;
}
.chipk{color:var(--muted); font-size:11px; letter-spacing:.8px}
.chipv{font-size:18px; font-weight:800; margin-top:2px}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:10px 18px 44px;
}

.toast{
  margin:10px 0 14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(7,26,51,.50);
  box-shadow:var(--shadow);
}
.toast.ok{outline:1px solid rgba(120,255,180,.28)}
.toast.err{outline:1px solid rgba(255,120,120,.28)}

.card{
  background:var(--glass);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:18px 18px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}

.cardtitle{
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:12px;
}

.muted{color:var(--muted)}

.row{display:flex; gap:12px; align-items:center}
.file{
  flex:1;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  color:var(--ink);
}

.hint{
  color:var(--muted);
  font-size:12px;
  margin-top:10px;
  line-height:1.4;
}
.hint code{
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
  padding:2px 6px;
  border-radius:10px;
}

.grid{
  display:grid;
  grid-template-columns: 1.55fr .95fr;
  gap:14px;
  margin-top:14px;
}
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
  .stats{display:none}
}

.stack{display:flex; flex-direction:column; gap:14px}
.two{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 520px){ .two{grid-template-columns:1fr} }

.field span{display:block; color:var(--muted); font-size:12px; margin:0 0 6px 2px}
.field input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  color:var(--ink);
  outline:none;
}
.field input:focus{border-color:rgba(234,241,255,.32)}

.ratewrap{
  display:flex; align-items:center;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  overflow:hidden;
}
.prefix{
  padding:12px 12px;
  color:var(--muted);
  border-right:1px solid rgba(255,255,255,.10);
}
.ratewrap input{
  border:0;
  background:transparent;
  padding:12px 12px;
}

.divider{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:2px 0;
}

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

.slider{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px 12px;
  background:rgba(0,0,0,.16);
}
.shead{
  display:flex; justify-content:space-between; align-items:center;
  font-weight:800;
}
.shead output{
  font-variant-numeric: tabular-nums;
  color:rgba(255,255,255,.92);
}
.slider input[type="range"]{
  width:100%;
  margin:10px 0 6px;
}
.shelp{color:var(--muted); font-size:11px}

.actions{display:flex; justify-content:flex-end}

.btn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.20);
  color:var(--ink);
  padding:12px 14px;
  border-radius:16px;
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .08s ease, filter .18s ease;
}
.btn:hover{filter:brightness(1.08)}
.btn:active{transform: translateY(1px)}

.btn.primary{
  background:linear-gradient(135deg, rgba(225,37,42,.85), rgba(11,42,74,.70));
  border-color:rgba(255,255,255,.20);
}

.hero .bullets{
  margin:0;
  padding-left:18px;
  color:rgba(234,241,255,.90);
  line-height:1.5;
}
.hero .bullets li{margin:10px 0}
.badge{
  margin-top:14px;
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(234,241,255,.86);
  font-size:12px;
  letter-spacing:.3px;
}

.footer{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 14px;
  text-align:center;
  font-size:11px;
  color:rgba(234,241,255,.70);
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.35));
  backdrop-filter: blur(8px);
  border-top:1px solid rgba(255,255,255,.10);
}
