:root{
  --bg:#070B14;
  --bg2:#0B1220;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text:#E7ECF6;
  --muted: rgba(231,236,246,.72);
  --faint: rgba(231,236,246,.48);
  --line: rgba(231,236,246,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --amber: #F7B955; /* subtle warning accent */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);

  /* Cohesive, blended background */
  background:
    /* subtle noise for “premium” blending */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E"),

    /* big ambient glows (low contrast, huge radius) */
    radial-gradient(1200px 900px at 15% 15%, rgba(90,140,255,.14), transparent 60%),
    radial-gradient(1200px 900px at 85% 20%, rgba(247,185,85,.12), transparent 62%),
    radial-gradient(1400px 1000px at 50% 95%, rgba(120,110,255,.10), transparent 62%),

    /* smooth base blend */
    linear-gradient(180deg, #060912 0%, #070B14 35%, #0B1220 100%);

  background-blend-mode: soft-light, normal, normal, normal, normal;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px;}
.section{padding:86px 0;}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.section__head{max-width:760px; margin-bottom:26px;}
.section__head h2{margin:0 0 10px; font-size:34px; letter-spacing:-.02em;}
.section__head p{margin:0; color:var(--muted); line-height:1.6;}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;

  height: 68px;                 /* fixed height prevents “jank” */
  display: flex;
  align-items: center;

  background: rgba(7,11,20,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto; /* brand | nav | right */
  align-items: center;
  gap: 18px;
  padding: 0 22px;
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:700; letter-spacing:-.02em}
.brand__sub{font-size:12px; color:var(--faint); letter-spacing:.08em; text-transform:uppercase}
.brand__logo{
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.brand:hover .brand__logo{
  filter: drop-shadow(0 8px 22px rgba(247,185,85,.35));
}

.nav{
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .12s ease, color .12s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.topbar__right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__cta{display:flex; gap:10px; align-items:center;}

.hamburger{
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease;
}
.hamburger:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(231,236,246,.85);
  margin: 5px auto;
}
.mobilemenu{
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;

  background: rgba(7,11,20,.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}
.mobilemenu__inner{
  padding: 14px 22px 18px;
  display: grid;
  gap: 10px;
}
.mobilemenu a{
  color: var(--muted);
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.02);
}
.mobilemenu a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18);}
.btn--primary{
  background: linear-gradient(145deg, rgba(247,185,85,.22), rgba(247,185,85,.14));
  border-color: rgba(247,185,85,.28);
}
.btn--secondary{
  background: rgba(90,140,255,.10);
  border-color: rgba(90,140,255,.22);
}
.btn--ghost{background: transparent;}
.btn--large{padding:12px 16px; border-radius:16px; font-size:15px}

.hero{
  padding:86px 0 64px;
  position: relative;
}

.hero__panel{
  position: relative;
}

.hero__ambient{
  position: absolute;
  inset: -22px -22px auto -22px;
  height: 260px;
  width: calc(100% + 44px);
  object-fit: cover;
  border-radius: var(--radius2);
  opacity: .35;
  filter: blur(0px) saturate(1.05);
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__panel .panel{
  position: relative;
  overflow: hidden;
}

.panel__bgimg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: .28;
  filter: saturate(1.05) contrast(1.05);
  mix-blend-mode: screen;

  pointer-events: none;
  z-index: 0;
}

.panel > *:not(.panel__bgimg){
  position: relative;
  z-index: 1;
}

/* Image card used in Product section */
.imgcard{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.imgcard img{
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  opacity: .95;
}

.imgcard__cap{
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}\

.hero::before{
  content:"";
  position:absolute;
  inset:-120px 0 auto 0;
  height:420px;
  background: radial-gradient(700px 340px at 40% 45%, rgba(255,255,255,.05), transparent 70%);
  pointer-events:none;
}

.hero__inner{display:grid; grid-template-columns: 1.05fr .95fr; gap:30px; align-items:start;}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
.dot{width:8px; height:8px; border-radius:50%; background: var(--amber); box-shadow: 0 0 24px rgba(247,185,85,.35);}
.hero h1{margin:16px 0 10px; font-size:46px; letter-spacing:-.04em; line-height:1.05;}
.lead{margin:0; color:var(--muted); line-height:1.65; font-size:16px;}
.em{color:var(--text)}
.hero__actions{display:flex; gap:12px; margin:20px 0 18px; flex-wrap:wrap;}

.trustline{display:grid; gap:10px; margin-top:10px;}
.trustline__item{
  display:flex; justify-content:space-between; gap:16px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.k{color:var(--text); font-weight:600;}
.v{color:var(--muted); font-size:14px}

.hero__panel .panel{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:18px;
}
.panel__header{display:flex; justify-content:space-between; align-items:flex-start; gap:14px; margin-bottom:16px;}
.panel__title{font-weight:700; letter-spacing:-.02em}
.panel__subtitle{color:var(--muted); font-size:13px; margin-top:4px}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(90,140,255,.12);
  border:1px solid rgba(90,140,255,.22);
  color: rgba(231,236,246,.9);
}

.scorecard{display:grid; grid-template-columns: 170px 1fr; gap:14px; align-items:center; margin-bottom:14px;}
.scorecard__ring{position:relative; width:170px; height:170px; margin:0 auto;}
.scorecard__ring svg{width:170px; height:170px;}
.ring__bg{fill:none; stroke: rgba(231,236,246,.10); stroke-width:12;}
.ring__fg{fill:none; stroke: rgba(247,185,85,.85); stroke-width:12; stroke-linecap:round; transform: rotate(-90deg); transform-origin: 60px 60px;}
.scorecard__value{position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column;}
.scorecard__value .num{font-size:42px; font-weight:800; letter-spacing:-.03em;}
.scorecard__value .lbl{font-size:12px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase;}
.scorecard__meta{display:grid; gap:10px;}
.meta__row{display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border:1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.03);}
.meta__k{color:var(--muted); font-size:13px;}
.meta__v{color:var(--text); font-size:13px; text-align:right;}
.warn{color: rgba(247,185,85,.95); font-weight:700;}

.diagram{margin-top:14px; border:1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.03); padding:12px;}
.diagram__title{font-weight:700; font-size:13px; margin-bottom:8px;}
.diagram svg{width:100%; height:auto; color: rgba(231,236,246,.92);}
.diagram__caption{color:var(--muted); font-size:12px; margin-top:8px; line-height:1.4;}
.panel__footnote{margin-top:10px; color: var(--faint); font-size:12px; line-height:1.5;}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;}
.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.card__title{font-weight:700; margin-bottom:8px; letter-spacing:-.01em}
.card p{margin:0; color:var(--muted); line-height:1.6;}
.card--tight{padding:14px}

.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start;}
.lead2{color:var(--muted); line-height:1.7; margin:0 0 14px;}
.checks{margin:0; padding-left:18px; color:var(--muted); line-height:1.8;}
.checks strong{color:var(--text)}
.stack{display:grid; gap:12px;}

.callout{
  margin-top:14px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(247,185,85,.22);
  background: rgba(247,185,85,.06);
}
.callout__title{font-weight:800; letter-spacing:-.01em; margin-bottom:6px;}
.callout p{margin:0; color:var(--muted); line-height:1.6;}

.timeline{display:grid; gap:12px; max-width:860px;}
.step{
  display:grid; grid-template-columns: 44px 1fr; gap:12px; align-items:start;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.step__num{
  width:44px; height:44px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(90,140,255,.22);
  background: rgba(90,140,255,.10);
  font-weight:800;
}
.step__title{font-weight:800; margin-bottom:4px;}
.step p{margin:0; color:var(--muted); line-height:1.6;}

.cta{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:start;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  padding:18px;
}
.cta__copy h2{margin:0 0 10px; font-size:32px; letter-spacing:-.03em;}
.cta__copy p{margin:0; color:var(--muted); line-height:1.65;}
.fineprint{margin-top:10px; color:var(--faint); font-size:13px; line-height:1.5;}

.form{display:grid; gap:12px;}
label{display:grid; gap:7px; color:var(--muted); font-size:13px;}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(7,11,20,.45);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(90,140,255,.35)}
.form__status{min-height:18px; color:var(--muted); font-size:13px;}
.form__legal{color:var(--faint); font-size:12px; line-height:1.4;}

.faq{max-width:860px; display:grid; gap:10px;}
details{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:14px 14px;
}
summary{
  cursor:pointer;
  font-weight:800;
  letter-spacing:-.01em;
}
.faq__body{margin-top:10px; color:var(--muted); line-height:1.6;}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background: rgba(7,11,20,.7);
}
.footer__inner{display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;}
.footer__tag{color:var(--muted); font-size:13px; margin-top:4px;}
.footer__links{display:flex; gap:14px; color:var(--muted); font-size:13px;}
.footer__links a:hover{color:var(--text)}
.footer__copy{color:var(--faint); font-size:12px;}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr; }
  .split{grid-template-columns: 1fr;}
  .cta{grid-template-columns: 1fr;}
  .grid3{grid-template-columns: 1fr;}
  .grid2{grid-template-columns: 1fr;}
  .nav, .topbar__cta{display:none;}
  .topbar__right .btn{ display: none; } /* keep header clean on mobile */
  .hamburger{ display: inline-flex; align-items:center; justify-content:center; }
}
