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

body{
  margin:0; font-family:var(--font); color:var(--text);
  line-height:1.5;
}

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

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.nav{
  position:sticky; top:0; z-index:30;
  background: rgba(247,248,251,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, rgba(109,40,217,1), rgba(22,163,74,.95));
  box-shadow: 0 14px 28px rgba(109,40,217,.18);
}
.nav-links{
  display:flex; align-items:center; gap:18px;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}
.nav-links a{ opacity:.95; }
.nav-links a:hover{ opacity:1; color:var(--text); }
.nav-cta{ display:flex; align-items:center; gap:10px; }

.hamburger{
  display:none;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.9);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.hamburger span{ display:block; width:20px; height:2px; background:rgba(15,23,42,.75); margin:4px 0; border-radius:2px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:7px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.9);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition:.18s ease;
  user-select:none;
  white-space:nowrap;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 28px rgba(2,6,23,.10); }
.btn:active{ transform: translateY(0px); }
.btn.primary{
  border:1px solid rgba(109,40,217,.25);
  background: linear-gradient(135deg, rgba(109,40,217,1), rgba(109,40,217,.82));
  color:white;
  box-shadow: 0 16px 34px rgba(109,40,217,.20);
}
.btn.primary:hover{ filter: brightness(1.02); }
.btn.ghost{
  background: transparent;
  border:1px solid rgba(15,23,42,.14);
  box-shadow:none;
  color: var(--muted);
  font-weight:700;
}
.btn.ghost:hover{
  background: rgba(255,255,255,.75);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

footer{ padding: 28px 0 40px; color: var(--faint); font-size: 13px; }
.foot-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
  border-top:1px solid rgba(15,23,42,.10);
  padding-top: 18px;
}
.foot-links{ display:flex; gap:14px; flex-wrap:wrap; }
.foot-links a{ color: var(--faint); }
.foot-links a:hover{ color: var(--text); }

.pending-dot{
  width:8px; 
  height:8px; 
  border-radius:50%; 
  background: rgba(251,113,133,.95); 
  box-shadow:0 0 0 4px rgba(251,113,133,.12);
}
.signed-dot{
  width:8px; 
  height:8px; 
  border-radius:50%; 
  background:var(--brand2); 
  box-shadow:0 0 0 4px rgba(22,163,74,.12);
}
.review-dot{
  width:8px; 
  height:8px; 
  border-radius:50%; 
  background:rgba(251,191,36,.95); 
  box-shadow:0 0 0 4px rgba(251,191,36,.12);
}