:root{
  --cream:#f0f0e8;
  --white:#ffffff;
  --blue:#81bef6;
  --blue2:#608bbf;
  --ink:#0f1720;
  --muted:#4b5563;
  --line:rgba(15,23,32,.10);
  --shadow: 0 14px 40px rgba(15,23,32,.08);
  --r:22px;
  --r2:16px;
  --max:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--ink);
  background:var(--cream);
  line-height:1.45;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

header{
  position:sticky; top:0;
  background:rgba(240,240,232,.80);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:50;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:900}
.brand img{height:38px; width:auto; display:block}
nav{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.navlink{
  text-decoration:none; color:var(--muted);
  font-size:14px; padding:8px 10px; border-radius:999px;
}
.navlink:hover{background:rgba(255,255,255,.7); color:var(--ink)}
.navlink.active{background:rgba(255,255,255,.95); color:var(--ink); border:1px solid var(--line)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px; border-radius:999px;
  font-weight:800; font-size:14px; text-decoration:none;
  border:1px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}
.btn.primary{background:var(--blue); color:var(--white); border-color:var(--blue)}
.btn.primary:hover{background:var(--blue2); border-color:var(--blue2)}
.btn.ghost{background:rgba(255,255,255,.65); border-color:rgba(255,255,255,.3)}
.btn.ghost:hover{background:rgba(255,255,255,.9)}

.hero{padding:44px 0 24px}
.heroGrid{
  display:grid; gap:18px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(255,255,255,.4);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  width:fit-content;
}
h1{margin:14px 0 10px; font-size:46px; line-height:1.05}
.sub{margin:0; color:var(--muted); font-size:16px; max-width:62ch}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.heroCard{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.imgSlot{
  border-radius:var(--r2);
  border:1px dashed rgba(15,23,32,.25);
  background:linear-gradient(135deg, rgba(129,190,246,.20), rgba(96,139,191,.12));
  min-height:260px;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding:18px;
  color:rgba(15,23,32,.70);
  font-weight:700;
}

section{padding:36px 0}
.sectionCard{
  background:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.35);
  border-radius:var(--r);
  padding:18px;
}
h2{margin:0 0 10px; font-size:26px}
.mini{color:var(--muted); font-size:13px}

.grid{display:grid; gap:14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));}
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:16px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.pill{
  display:inline-block; margin-top:12px;
  font-size:12px; color:var(--muted);
  border:1px solid var(--line);
  padding:7px 10px; border-radius:999px;
  background:rgba(240,240,232,.55);
}

.split{
  display:grid; gap:14px;
  grid-template-columns: 1fr 1fr;
  align-items:start;
}

details{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
}
summary{cursor:pointer; font-weight:900}
details p{margin:10px 0 0; color:var(--muted); font-size:14px}

form{display:grid; gap:10px; margin-top:10px}
label{font-weight:900; font-size:13px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,32,.18);
  background:rgba(255,255,255,.9);
  font:inherit;
}

footer{
  padding:28px 0;
  border-top:1px solid rgba(15,23,32,.10);
  color:var(--muted);
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  h1{font-size:38px}
  .split{grid-template-columns:1fr}
}
