*{box-sizing:border-box}
:root{
  --yellow:#ffd20a;
  --charcoal:#4b4e4f;
  --text:#303536;
  --muted:#6e7475;
  --soft:#fffaf0;
  --border:#eee7d4;
}
html,body{margin:0;min-height:100%;font-family:Arial,Helvetica,sans-serif;color:var(--text)}
body{
  min-height:100vh;
  background:
    radial-gradient(circle at 15% 15%,rgba(255,210,10,.18),transparent 27rem),
    radial-gradient(circle at 88% 88%,rgba(75,78,79,.08),transparent 30rem),
    #f8f8f6;
}
.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:42px 18px;
}
.card{
  position:relative;
  width:min(920px,100%);
  overflow:hidden;
  padding:58px 70px 52px;
  text-align:center;
  background:rgba(255,255,255,.97);
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:0 22px 60px rgba(44,48,49,.10);
}
.card:before{
  content:"";
  position:absolute;
  width:230px;height:230px;
  left:-115px;top:-115px;
  border-radius:50%;
  background:var(--yellow);
  opacity:.85;
}
.card:after{
  content:"";
  position:absolute;
  width:150px;height:150px;
  right:-70px;bottom:-70px;
  border-radius:50%;
  border:28px solid rgba(75,78,79,.08);
}
.logos{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:30px;
  min-height:125px;
  margin:0 auto 32px;
}
.logos a{display:block;line-height:0}
.logo-anthisnes{
  display:block;
  width:145px;
  height:145px;
  object-fit:contain;
}
.logo-agora{
  display:block;
  width:155px;
  height:70px;
  object-fit:contain;
}
.divider{
  width:1px;
  height:78px;
  background:#ddd;
}
.eyebrow{
  color:#676b6c;
  font-size:13px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}
h1{
  margin:12px 0 22px;
  color:var(--charcoal);
  font-size:clamp(34px,5vw,56px);
  line-height:1.05;
  letter-spacing:-.035em;
}
.intro{
  max-width:690px;
  margin:0 auto 25px;
  font-size:19px;
  line-height:1.65;
}
.status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:4px 0 24px;
  padding:10px 17px;
  color:#343839;
  background:#fff9d9;
  border:1px solid #f1dd6c;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.dot{
  width:10px;height:10px;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 0 4px rgba(255,210,10,.22);
}
.message{
  max-width:650px;
  margin:0 auto;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}
.line{
  width:70px;height:4px;
  margin:32px auto 24px;
  border-radius:4px;
  background:var(--yellow);
}
.footer-text{
  position:relative;
  z-index:1;
  margin:0;
  color:#555b5c;
  line-height:1.55;
}
@media(max-width:650px){
  .page{padding:18px 12px}
  .card{padding:38px 20px 36px;border-radius:20px}
  .logos{gap:18px;margin-bottom:26px}
  .logo-anthisnes{width:110px;height:110px}
  .logo-agora{width:120px;height:55px}
  .divider{height:62px}
  .intro{font-size:17px}
  .message{font-size:16px}
}
