:root{
  --bg0:#07080b;
  --bg1:#0b0d12;
  --panel: rgba(16,18,26,.70);
  --panel2: rgba(12,14,22,.55);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.14);
  --muted: rgba(255,255,255,.62);
  --text: rgba(255,255,255,.92);

  --amber:#ff7a18;
  --amber2:#ffb36b;
  --amberSoft: rgba(255,122,24,.22);
  --glow: 0 0 22px rgba(255,122,24,.35), 0 0 70px rgba(255,122,24,.12);

  --rad: 18px;
  --ease: cubic-bezier(.2,.9,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 700px at 50% 35%, rgba(255,122,24,.10), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1120px, calc(100% - 36px));
  margin:0 auto;
}

.bg{position:fixed; inset:0; pointer-events:none; z-index:0;}
.bg .scan{
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 50% 50%, rgba(255,122,24,.07), transparent 58%);
  opacity:.95;
  animation: camDriftA 16s ease-in-out infinite;
}
.bg .grid{
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity:.08;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,1), rgba(0,0,0,.1) 60%, transparent 78%);
  animation: camDriftB 22s ease-in-out infinite;
}
@keyframes camDriftA{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%    { transform: translate3d(-10px, 6px, 0) scale(1.02); }
}
@keyframes camDriftB{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%    { transform: translate3d(8px, -6px, 0) scale(1.01); }
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  padding:14px 0;
  background: linear-gradient(180deg, rgba(7,8,11,.78), rgba(7,8,11,.18));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--amber);
  box-shadow: var(--glow);
}
.brand .name{
  font-weight:900; letter-spacing:.8px;
}
.brand .sub{
  font-size:12px; color:var(--muted);
  margin-top:2px;
}
.navlinks{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.navlinks a{
  padding:10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,12,18,.35);
  transition: transform 150ms var(--ease), border-color 150ms var(--ease), box-shadow 150ms var(--ease);
  font-size:13px;
  color: rgba(255,255,255,.86);
}
.navlinks a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,24,.30);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.navlinks a.primary{
  border-color: rgba(255,122,24,.35);
  background: rgba(255,122,24,.10);
  box-shadow: 0 0 0 1px rgba(255,122,24,.14) inset;
}

.hero{
  position:relative;
  z-index:1;
  padding: 56px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
}
.card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,18,28,.72), rgba(10,12,18,.55));
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  overflow:hidden;
}
.cardInner{ padding:22px; }
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-size:12px;
}
.kicker .chip{
  width:8px; height:8px; border-radius:50%;
  background: var(--amber);
  box-shadow: var(--glow);
}
.h1{
  margin:12px 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: .4px;
}
.p{
  margin:0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.ctaRow{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  transition: transform 150ms var(--ease), border-color 150ms var(--ease), box-shadow 150ms var(--ease);
  cursor:pointer;
  font-weight:800;
  letter-spacing:.2px;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,24,.30);
  box-shadow: 0 18px 44px rgba(0,0,0,.45), 0 0 0 1px rgba(255,122,24,.10) inset;
}
.btn.primary{
  border-color: rgba(255,122,24,.40);
  background: rgba(255,122,24,.10);
  box-shadow: 0 0 0 1px rgba(255,122,24,.14) inset, 0 0 22px rgba(255,122,24,.12);
}
.btn .dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--amber);
  box-shadow: var(--glow);
}

.preview{
  position:relative;
  height:100%;
  min-height: 280px;
}
.previewTop{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(10,12,18,.35);
}
.previewTop .t{
  font-weight:900; letter-spacing:.6px;
}
.previewTop .s{
  font-size:12px; color: var(--muted);
}
.logoWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
}
.logoWrap img{
  max-width: 88%;
  height:auto;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.60))
          drop-shadow(0 0 34px rgba(255,122,24,.35));
}

.sections{ position:relative; z-index:1; padding: 14px 0 70px; }
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){ .grid3{ grid-template-columns: 1fr; } }

.feature{
  padding:18px;
}
.feature .h{
  font-weight:950; letter-spacing:.4px;
  margin-bottom:6px;
}
.feature .m{
  font-size:13px;
  color: rgba(255,255,255,.70);
  line-height: 1.5;
}
.iconBox{
  width:38px; height:38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle at 30% 30%, rgba(255,122,24,.28), rgba(255,122,24,.06));
  box-shadow: var(--glow);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  margin-bottom:10px;
}

.pageHeader{
  position:relative; z-index:1;
  padding: 34px 0 14px;
}
.pageHeader .title{
  font-size: 28px;
  font-weight: 950;
  letter-spacing: .4px;
  margin:0 0 6px;
}
.pageHeader .desc{
  margin:0;
  color: rgba(255,255,255,.72);
}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){ .twoCol{ grid-template-columns: 1fr; } }

.table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}
.table th{
  text-align:left;
  background: rgba(10,12,18,.35);
  color: rgba(255,255,255,.86);
  font-weight: 900;
}
.table td{ color: rgba(255,255,255,.72); }
.table tr:last-child td{ border-bottom:none; }

.formRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.input{
  flex:1;
  min-width: 220px;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.90);
  outline:none;
}
.input:focus{
  border-color: rgba(255,122,24,.35);
  box-shadow: 0 0 0 3px rgba(255,122,24,.10);
}
.small{
  font-size:12px;
  color: rgba(255,255,255,.60);
  line-height:1.45;
  margin-top:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.badge .dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--amber);
  box-shadow: var(--glow);
}

.footer{
  position:relative;
  z-index:1;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(7,8,11,.22);
  backdrop-filter: blur(10px);
}
.footerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.64);
  font-size: 12px;
}
.footerRow a{
  color: rgba(255,255,255,.74);
  border-bottom: 1px dotted rgba(255,255,255,.22);
}
.footerRow a:hover{
  border-bottom-color: rgba(255,122,24,.35);
  color: rgba(255,255,255,.86);
}

.notice{
  border: 1px solid rgba(255,122,24,.25);
  background: rgba(255,122,24,.07);
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,214,180,.92);
  font-size: 13px;
}
.hidden{ display:none !important; }
