:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --accent:#f97316; /* orange */
  --accent2:#fb923c;
  --radius:16px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:var(--bg);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.header{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:64px; display:flex; align-items:center; justify-content:space-between;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.brand-dot{
  width:10px; height:10px; border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(249,115,22,.12);
}
.nav{display:flex; align-items:center; gap:18px; font-weight:600; color:#111827}
.nav a{color:#111827}
.nav .mutedlink{color:var(--muted); font-weight:600}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px; padding:0 16px;
  border-radius:12px; border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  transition:transform .05s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:linear-gradient(180deg,var(--accent2),var(--accent));
  color:#111827;
  box-shadow:0 10px 24px rgba(249,115,22,.22);
}
.btn-outline{
  background:#fff; border-color:var(--line); color:#111827;
}
.btn-ghost{
  background:transparent; border-color:transparent; color:var(--muted);
}

.hero{
  padding:56px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}
h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.6px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:62ch;
}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 0}
.pill{
  font-size:12px; font-weight:700;
  color:#111827;
  border:1px solid var(--line);
  padding:7px 10px;
  border-radius:999px;
  background:#fff;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-pad{padding:18px}

.scanbar{
  display:flex; gap:10px; align-items:center;
}
.input{
  flex:1;
  height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  padding:0 14px;
  font-size:14px;
  outline:none;
}
.input:focus{border-color:rgba(249,115,22,.6); box-shadow:0 0 0 5px rgba(249,115,22,.12)}
.smallnote{margin:10px 0 0; color:var(--muted); font-size:12px; line-height:1.45}

.section{padding:26px 0}
.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.h2{margin:0 0 8px; font-size:18px; letter-spacing:-.2px}
.p{margin:0; color:var(--muted); font-size:13px; line-height:1.6}

.placeholder{
  margin-top:14px;
  height:90px;
  border-radius:12px;
  border:1px dashed var(--line);
  background:linear-gradient(180deg,#fff, #fafafa);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.cta-row{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;
}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:12px;
}
.footer a{color:var(--muted); text-decoration:underline}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:36px}
  .nav{display:none}
}
