/* css/style.css */
:root{
  --c-white: rgb(255, 255, 255);
  --c-gold: rgb(237, 181, 72);
  --c-gold-2: rgb(210, 159, 50);

  --c-bg: rgb(21, 30, 44);
  --c-bg-2: rgb(21, 36, 58);
  --c-surface: rgb(47, 58, 78);

  --c-text-muted: rgb(183, 206, 221);
  --c-text-muted-2: rgb(158, 178, 192);
  --c-text-muted-3: rgb(165, 185, 198);

  --c-border: rgba(255, 255, 255, 0.2);
  --c-border-soft: rgba(183, 206, 221, 0.3);

  --radius: 18px;
  --shadow: 0 22px 70px rgba(0,0,0,0.55);
  color-scheme: dark;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--c-white);
  min-height:100vh;
  overflow-x:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(21,36,58,0.88),
      rgba(21,30,44,0.96)
    ),
    url("/assets/img/backgroundhy.png") center center / cover no-repeat fixed;
}

.bg-orb{
  position:fixed;
  width:650px;
  height:650px;
  filter: blur(95px);
  opacity:0.18;
  pointer-events:none;
  z-index:0;
}
.orb-a{
  top:-340px;
  left:-280px;
  background: radial-gradient(circle, rgba(183,206,221,0.75), transparent 60%);
}
.orb-b{
  bottom:-380px;
  right:-300px;
  background: radial-gradient(circle, rgba(237,181,72,0.55), transparent 62%);
}

.wrap{
  position:relative;
  z-index:1;
  max-width:1120px;
  margin:0 auto;
  padding:0 18px;
}

/* Tighter hero spacing for Chrome and overall layout */
.hero{
  padding:14px 0 8px;
}

.heroRow{
  display:grid;
  grid-template-columns: 300px 1fr;
  align-items:center;
  gap:14px;
  margin-top:6px;
}

.heroLogoLink{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
  padding-top:2px;
}

.heroLogo{
  width: 340px;
  max-width: 100%;
  height:auto;
  display:block;

  /* Chrome/Safari rendering stability */
  image-rendering:auto;
  transform: translateZ(0);

  border:none;
  background:none;
  box-shadow:none;
  filter:
    saturate(0.95)
    brightness(0.98)
    drop-shadow(0 0 18px rgba(183,206,221,0.22))
    drop-shadow(0 0 10px rgba(237,181,72,0.18));
}

.heroText{ min-width:0; }

h1{
  margin:0 0 8px;
  font-size:46px;
  font-weight:900;
  line-height:1.06;
  letter-spacing:-0.3px;
}

.lead{
  margin:0;
  max-width:900px;
  font-size:16px;
  line-height:1.82;
  color: var(--c-text-muted);
}

.heroactions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.disclaimer{
  margin-top:14px;
  color: var(--c-text-muted-2);
  font-size:12px;
  line-height:1.6;
}

@media (max-width: 900px){
  .heroRow{
    grid-template-columns: 260px 1fr;
    gap:12px;
  }
  .heroLogo{
    width: 320px;
  }
}

@media (max-width: 760px){
  .heroRow{
    grid-template-columns: 1fr;
    justify-items:start;
    gap:10px;
  }
  .heroLogo{
    width: 300px;
    max-width:78vw;
  }
  h1{ font-size:38px; }
}

.card{
  margin:18px 0;
  border-radius: var(--radius);
  padding:20px;
  border:1px solid var(--c-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.00)),
    rgba(47,58,78,0.35);
  box-shadow: var(--shadow);
}

.cardhead h2{
  margin:0 0 6px;
  font-size:22px;
  font-weight:900;
}
.cardhead p{
  margin:0;
  color: var(--c-text-muted);
  font-size:14px;
  line-height:1.75;
}

.grid{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
  margin-top:14px;
}
@media (min-width: 900px){
  .grid{ grid-template-columns:1fr 1fr; }
}

.field{
  border-radius: 16px;
  padding:14px;
  border:1px solid var(--c-border-soft);
  background: rgba(21,30,44,0.55);
}

.label{
  font-size:12px;
  font-weight:900;
  margin:0 0 8px;
  color: var(--c-white);
}

/* Chrome form control normalization */
select, button, input{
  font: inherit;
}

select, input[type="range"]{ width:100%; }

select{
  -webkit-appearance: none;
  appearance: none;

  background: rgba(21,36,58,0.85);
  border:1px solid var(--c-border);
  border-radius:14px;
  padding:10px 34px 10px 12px; /* room for custom arrow */
  color: var(--c-white);
  outline:none;
  line-height:1.2;

  /* custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.65) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select:focus{
  border-color: rgba(237,181,72,0.55);
  box-shadow: 0 0 0 3px rgba(237,181,72,0.18);
}

/* Range slider with gold filled track (Chrome/Safari + Firefox) */
input[type="range"]{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--c-border-soft);
  outline: none;
  padding: 0;
}

input[type="range"]::-webkit-slider-runnable-track{
  height: 10px;
  border-radius: 999px;
  background: transparent;
}

input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--c-gold), var(--c-gold-2));
  border: 1px solid rgba(0,0,0,0.35);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.35),
    0 0 0 3px rgba(237,181,72,0.18);
  cursor: pointer;
  margin-top: -4px;
}

input[type="range"]:focus::-webkit-slider-thumb{
  box-shadow:
    0 10px 22px rgba(0,0,0,0.35),
    0 0 0 4px rgba(237,181,72,0.22);
}

input[type="range"]::-moz-range-track{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--c-border-soft);
}
input[type="range"]::-moz-range-progress{
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-2));
}
input[type="range"]::-moz-range-thumb{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--c-gold), var(--c-gold-2));
  border: 1px solid rgba(0,0,0,0.35);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.35),
    0 0 0 3px rgba(237,181,72,0.18);
  cursor: pointer;
}

.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:8px;
}

.pill{
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,0,0,0.18);
  border:1px solid var(--c-border);
  font-size:12px;
  color: var(--c-white);
}

.hint{
  font-size:12px;
  color: var(--c-text-muted-2);
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  border:0;
  cursor:pointer;
  color: rgb(71, 62, 38);
  background: linear-gradient(180deg, var(--c-gold), var(--c-gold-2));
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.btn:hover{ filter:brightness(1.04); }
.btn:active{ transform: translateY(1px); }

.btn.ghost{
  background: rgba(255,255,255,0.06);
  color: var(--c-white);
  border:1px solid var(--c-border);
  box-shadow:none;
}

.btn.small{
  padding:8px 10px;
  border-radius:12px;
  font-weight:800;
}

.result{
  margin-top:16px;
  border-radius:16px;
  padding:16px;
  border:1px solid var(--c-border);
  background: rgba(21,30,44,0.52);
}

.resulttop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.resulttop h3{
  margin:0;
  font-size:18px;
  font-weight:900;
}

.badge{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--c-border);
  background: rgba(0,0,0,0.18);
  color: var(--c-text-muted);
}

.kpis{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin:12px 0;
}
@media (min-width: 900px){
  .kpis{ grid-template-columns: 1fr 1fr 1fr; }
}
.kpi{
  background: rgba(0,0,0,0.18);
  border:1px solid var(--c-border);
  border-radius:16px;
  padding:12px;
}
.kpit{
  font-size:12px;
  font-weight:900;
  color: var(--c-text-muted-2);
  margin-bottom:6px;
}
.kpiv{
  font-size:15px;
  font-weight:900;
  color: var(--c-white);
}

.panels{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin:10px 0 12px;
}
@media (min-width: 900px){
  .panels{ grid-template-columns: 1fr 1fr; }
}
.panel{
  background: rgba(0,0,0,0.16);
  border:1px solid var(--c-border);
  border-radius:16px;
  padding:12px;
}
.paneltitle{
  font-size:12px;
  font-weight:900;
  color: var(--c-text-muted-2);
  margin-bottom:8px;
}
.list{
  margin:0;
  padding-left:18px;
  color: var(--c-text-muted);
  line-height:1.75;
  font-size:13px;
}

.copybox{
  background: rgba(0,0,0,0.18);
  border:1px solid var(--c-border);
  border-radius:16px;
  overflow:hidden;
}
.copyhead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-bottom:1px solid var(--c-border);
}
.copytitle{
  font-size:12px;
  font-weight:900;
  color: var(--c-text-muted-2);
}
.copyactions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
pre{
  margin:0;
  padding:12px;
  white-space:pre-wrap;
  font-size:12px;
  line-height:1.65;
  color: var(--c-white);
}

.ctarow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.micro{
  margin-top:10px;
  font-size:12px;
  color: var(--c-text-muted-2);
  line-height:1.6;
}

.namebox{
  margin-top:12px;
  background: rgba(0,0,0,0.16);
  border:1px solid var(--c-border);
  border-radius:16px;
  padding:14px;
}
.nameout{
  font-size:22px;
  font-weight:900;
  padding:10px 10px;
  border-radius:14px;
  background: rgba(255,255,255,0.04);
  border:1px solid var(--c-border);
}
.nameactions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.namesub{
  margin-top:10px;
  color: var(--c-text-muted-2);
  font-size:12px;
  line-height:1.6;
}

.presetgrid{
  display:grid;
  gap:10px;
  grid-template-columns:1fr;
  margin-top:12px;
}
@media (min-width: 900px){
  .presetgrid{ grid-template-columns: 1fr 1fr 1fr; }
}
.preset{
  text-align:left;
  border:1px solid var(--c-border);
  background: rgba(255,255,255,0.04);
  border-radius:16px;
  padding:14px;
  cursor:pointer;
  color: var(--c-white);
}
.preset:hover{
  border-color: rgba(237,181,72,0.55);
}

.bullets{
  margin:12px 0 0;
  padding-left:18px;
  color: var(--c-text-muted);
  line-height:1.85;
  font-size:13px;
}

.tablewrap{
  margin-top:12px;
  overflow:auto;
  border:1px solid var(--c-border);
  border-radius:16px;
  background: rgba(0,0,0,0.12);
}
.table{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
}
.table th,
.table td{
  padding:12px;
  border-bottom:1px solid var(--c-border);
  text-align:left;
  vertical-align:top;
  color: var(--c-text-muted);
  font-size:13px;
  line-height:1.6;
}
.table th{
  color: var(--c-white);
  font-weight:900;
  background: rgba(255,255,255,0.04);
}

.comparecta{
  margin-top:12px;
}

.faq{
  border:1px solid var(--c-border);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,0.04);
  margin-top:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  color: var(--c-white);
}
.faqbody{
  margin-top:10px;
  color: var(--c-text-muted);
  line-height:1.75;
  font-size:13px;
}

.footer{
  margin:26px 0 60px;
  color: var(--c-text-muted-2);
}
.footgrid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:14px 0;
  border-top:1px solid var(--c-border);
}
@media (min-width: 900px){
  .footgrid{ grid-template-columns:1fr 1fr; }
}
.foottitle{
  font-weight:900;
  margin-bottom:6px;
  color: var(--c-text-muted);
}
.foottext{
  font-size:12px;
  line-height:1.7;
}
.footbottom{
  padding-top:10px;
  font-size:12px;
  border-top:1px solid var(--c-border);
}
.footlink{
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 12px;
}

.hero{
  position: relative;
  padding: 6px 0 4px;

  background: transparent;
    url("../assets/img/backgroundhy.png") center top / cover no-repeat;
}

.hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;

}