* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
  display: grid;
  min-height: 100dvh;
  grid-template-rows: 1fr auto;
}
.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  min-height: calc(100vh - 60px);
  text-align: center;
}
.logo {
  width: clamp(160px, 50vw, 360px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255,255,255,.06));
  user-select: none;
}
.blurb {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}
.links-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: min(92vw, 360px);
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
}
.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.btn {
  display: inline-block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #444;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
  backdrop-filter: blur(2px);
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
  text-align: center;
}
.btn:hover, .btn:focus-visible {
  border-color: #888;
  background: rgba(255,255,255,.06);
  outline: none;
  transform: translateY(-1px);
}
.contact { width: 100%; color: #fff; line-height: 1.6; }
.contact p { margin: 0; }
.contact a { color: #fff; font-weight: 600; text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.foot { display:none; }
.copyright { 
  margin-top: .75rem; 
  text-align: center; 
  color: #aaa; 
  font-size: .95rem; 
}


/* --- Footer placement hardening --- */
.wrap { padding-bottom: 3.5rem; }          /* ensure space above footer */
.foot { 
  text-align: center; 
  padding: 1rem 0; 
  margin-top: 1.5rem; 
   
  position: static; 
  clear: both; 
}
.foot small { display: inline-block; line-height: 1.2; }


/* --- Ensure logo is not cut off --- */
.wrap {
  padding-top: 2rem;
}


/* --- Place content at top to avoid clipping --- */
.wrap { 
  padding-top: 3rem !important; 
  min-height: auto !important; 
}
.logo { 
  margin-top: 0.5rem; 
}
