:root{
  --base:#F6F6EF;
  --accent:#2B2B2B;
  --muted:#6E6E6E;
  --accent-soft:#EDEDE8;
  --glass: rgba(255,255,255,0.6);
}

/* reset / base */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--base) 0%, #FFFFFF 100%);
  color: var(--accent);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* container: top-aligned and responsive to safe-area insets */
.wrap{
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* align to top */
  justify-content: center;
  padding: calc(16px + env(safe-area-inset-top)) 16px 48px 16px;
  gap: 24px;
}

/* card */
.card{
  width: 100%;
  max-width: 720px;
  background: linear-gradient(180deg, var(--glass), var(--accent-soft));
  border: 1px solid rgba(43,43,43,0.06);
  box-shadow: 0 8px 30px rgba(11,12,14,0.06);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(6px);
  margin: 0;
}

/* typography */
h1{
  margin: 0 0 8px 0;
  font-size: 28px;
  letter-spacing: -0.2px;
  color: var(--accent);
  font-weight: 600;
}

p.lead{
  margin: 0 0 28px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* mailto button */
.mailto{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 18px;a
  background: transparent;
  border: 1px solid rgba(43,43,43,0.08);
  color: var(--accent);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.mailto:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(43,43,43,0.08);
  background: rgba(43,43,43,0.02);
}

.mailto:active{ transform: translateY(-1px); }

.mailto .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5bb584;
  box-shadow: 0 4px 10px rgba(255,209,102,0.18);
}
/* footer */
footer{
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

/* responsive tweaks */
@media (max-width: 420px){
  .card{ padding: 28px; border-radius: 12px; }
  h1{ font-size: 22px; }
}