:root{
  /* Reputeo Slate (Daytime) */
  --bg0:#EEF3FA;
  --bg1:#F6F9FE;
  --surface:#FFFFFF;
  --card:#FFFFFF;
  --card2:#F3F7FF;
  --stroke:rgba(16,42,76,.14);
  --stroke2:rgba(16,42,76,.10);

  --text:#102A4C;
  --muted:rgba(16,42,76,.72);

  --primary:#2D6DFF;
  --primary2:#1E56D9;

  --radius:16px;
  --shadow:0 14px 40px rgba(16,42,76,.12);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(45,109,255,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(31,174,115,.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  line-height:1.5;
}

a{color:rgba(16,42,76,.92);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:1120px;margin:0 auto;padding:22px}
.section{padding:54px 0}
.thin{padding:26px 0}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-inner{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(243,247,255,.92));
  border:1px solid var(--stroke2);
  border-radius:calc(var(--radius) - 2px);
  padding:22px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
}

.brand img{height:28px;width:auto;display:block}

.nav{display:flex;gap:10px;align-items:center;flex-wrap:wrap}

.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.70);
  font-size:13px;
  color:rgba(16,42,76,.86);
  white-space:nowrap;
}
.pill:hover{background:rgba(255,255,255,.92)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  letter-spacing:.1px;
  cursor:pointer;
  transition:transform .06s ease, background .12s ease;
  box-shadow:0 10px 22px rgba(45,109,255,.18);
}
.btn:hover{background:var(--primary2)}
.btn:active{transform:translateY(1px)}

.btn.secondary{
  background:rgba(255,255,255,.75);
  border:1px solid var(--stroke);
  color:rgba(16,42,76,.92);
  box-shadow:none;
}

.hero{display:grid;grid-template-columns:1.05fr .95fr;gap:22px;align-items:center}

h1{margin:0 0 12px;font-size:44px;line-height:1.08;letter-spacing:-.6px}

h2{margin:0 0 12px;font-size:28px;letter-spacing:-.3px}

h3{margin:0 0 8px;font-size:16px}

.subhead{margin:0 0 14px;font-size:17px;color:var(--muted);max-width:56ch}
.muted{color:var(--muted);font-size:14px}

.trust{margin:0 0 18px;font-size:13px;color:rgba(16,42,76,.70);display:flex;flex-wrap:wrap;gap:10px}
.trust span{display:inline-flex;align-items:center;gap:8px}
.trust i{display:inline-block;width:6px;height:6px;border-radius:999px;background:rgba(16,42,76,.35)}

.ctaRow{display:flex;gap:10px;flex-wrap:wrap}

.grid{display:grid;gap:14px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.tile{
  padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,247,255,.86));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
}
.tile p{margin:0;color:var(--muted);font-size:13px}

.tag{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.70);
  color:rgba(16,42,76,.82);
  font-size:12px;
  font-weight:700;
}

.shot img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(16,42,76,.14);
  box-shadow:0 18px 40px rgba(16,42,76,.12);
  background:#fff;
}

.shotCap{
  margin-top:10px;
  font-size:12px;
  color:rgba(16,42,76,.70);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

footer{
  border-top:1px solid rgba(16,42,76,.14);
  padding:24px 0 10px;
  color:rgba(16,42,76,.70);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

details{
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:14px 16px;
  background:rgba(255,255,255,.70);
}
details + details{margin-top:10px}
summary{cursor:pointer;font-weight:800;color:rgba(16,42,76,.92);list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0;color:var(--muted);font-size:13px}

@media (max-width:980px){
  .hero{grid-template-columns:1fr}
  h1{font-size:38px}
  .grid-4{grid-template-columns:1fr 1fr}
}

@media (max-width:680px){
  .wrap{padding:18px}
  h1{font-size:34px}
  .grid-3,.grid-4{grid-template-columns:1fr}
  .ctaRow .btn{width:100%}
  .nav{width:100%}
  .pill{width:100%;text-align:center;justify-content:center}
}
