@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap");
:root{
  --bg:#0b241a;
  --bg2:#0f2f22;
  --gold:#d6b67d;
  --text:rgba(255,255,255,.84);
  --muted:rgba(255,255,255,.62);
  --stroke:rgba(214,182,125,.22);
}

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

body{
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(27,74,55,.65) 0%, rgba(11,36,26,0) 70%),
    radial-gradient(700px 500px at 15% 90%, rgba(214,182,125,.10) 0%, rgba(11,36,26,0) 65%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 70%);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px 18px;
}

.stage{width:100%;display:flex;justify-content:center}

.panel{
  width:min(640px, 100%);
  text-align:center;
  padding:44px 34px 38px;
  border-radius:22px;
  background:rgba(8, 22, 16, .42);
  border:1px solid rgba(214,182,125,.14);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

.logo{
  width:min(340px, 78%);
  height:auto;
  display:block;
  margin:0 auto 26px;
  border-radius:18px; 
  filter:
    drop-shadow(0 12px 28px rgba(0,0,0,.55))
    drop-shadow(0 0 18px rgba(214,182,125,.18));
}

.kicker{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  color:var(--muted);
  margin:6px 0 14px;
}

h1{
  font-family:"Cormorant Garamond", serif;
  font-weight:600;
  font-size:46px;
  line-height:1.05;
  margin:0 0 14px;
  color:var(--gold);
}

.lead{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.74);
  margin:0 0 26px;
}

.email{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  display:inline-block;
  padding:12px 16px;
  border-radius:999px;
  color:var(--gold);
  text-decoration:none;
  border:1px solid var(--stroke);
  background:rgba(214,182,125,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.email:hover{
  transform: translateY(-1px);
  border-color: rgba(214,182,125,.38);
  background: rgba(214,182,125,.10);
}

.note{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin:12px 0 0;
  font-size:12px;
  color:rgba(255,255,255,.55);
}

@media (max-width:520px){
  .panel{padding:34px 20px 30px}
  h1{font-size:38px}
}

