
:root{
  --yellow:#ffc300;
  --black:#111111;
  --white:#ffffff;
  --red:#e10600;
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  background:var(--yellow);
  color:var(--black);
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.wrapper{width:clamp(320px, 92vw, 1100px); padding:24px 16px 56px}
/* Logo */
.logo{
  display:block;
  width:min(900px, 95%);
  margin:8px auto 10px auto; /* tight spacing as requested */
}
/* Red pill */
.pill{
  display:inline-block;
  background:var(--red);
  color:var(--white);
  padding:12px 20px;
  border-radius:999px;
  font-weight:800;
  font-size:clamp(14px, 2.2vw, 20px);
  letter-spacing:.2px;
  margin:6px auto 14px;
}
.center{text-align:center}
/* Headline */
h1{
  margin: 12px 0 10px;
  font-size:clamp(22px, 6vw, 48px);
  line-height:1.15;
  font-weight:900;
  letter-spacing:.5px;
  text-align:center;
}
.sub{
  text-align:center;
  font-weight:800;
  margin-top:8px;
  font-size:clamp(13px, 2.2vw, 16px);
}
.desc{
  text-align:center;
  margin:10px auto 18px;
  font-size:clamp(13px, 2.2vw, 16px);
  max-width:920px;
}
/* Buttons rows */
.row{display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-top:6px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px;
  background:var(--black);
  color:var(--white);
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  font-size:clamp(13px, 2vw, 16px);
}
/* No shadows anywhere */
.btn, .pill, .email-btn, .logo{filter:none; box-shadow:none}
/* SVG icons */
.btn svg{width:22px; height:22px; display:block; fill:currentColor}
/* Email chip */
.email-btn{background:var(--black); color:var(--white); border-radius:14px; padding:12px 18px; text-decoration:none; font-weight:800; display:inline-flex; align-items:center; gap:10px;}
.email-icon{width:20px; height:20px; display:block; fill:currentColor}
.footer{text-align:center; margin-top:16px; font-size:12px; opacity:.85}
