/* Colisbri DOM-TOM — Coming soon */
:root{
  --yellow:#F7D000;
  --blue:#014F9D;
  --txt:#0E1B2A;
  --pill:#11111114;
  --white:#ffffff;
}
*{box-sizing:border-box}
html,body{height:100%;}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--txt);
  background:var(--yellow);
}
.page{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:48px 16px;
}
.card{
  text-align:center;
  max-width:760px;
}
.logo{
  display:block;
  margin:0 auto 16px auto;
}
h1{
  font-size:clamp(28px, 3.2vw, 44px);
  margin:8px 0 12px 0;
  letter-spacing:0.2px;
}
.subtitle{
  margin:0 auto 20px;
  font-size:clamp(16px, 1.9vw, 20px);
  line-height:1.5;
  max-width:680px;
}
.cta{
  display:inline-block;
  background:#0F4FE6;
  color:var(--yellow);
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:transform .08s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow:0 6px 16px rgba(0,0,0,.15);
}
.cta:hover{ transform:translateY(-1px); }
.cta:active{ transform:translateY(0); }
.pills{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:0;
  margin:18px auto 0 auto;
  justify-content:center;
}
.pills li{
  border:1px solid #00000016;
  background:var(--pill);
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
}
.footer{
  margin-top:26px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-size:14px;
}
.footer .ig{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  background:#00000010;
  border:1px solid #00000014;
  color:inherit;
}
.footer .ig:hover{ background:#00000018;}
/* Small utility to make everything look nice on very small phones */
@media (max-width:360px){
  .pills li{font-size:14px;padding:8px 12px}
}


/* Instagram button with gradient */
.footer .ig {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: white;
  font-weight: 600;
  border: none;
}
.footer .ig:hover {
  opacity: 0.9;
}
.footer .ig img {
  filter: brightness(0) invert(1);
}

.cta:focus{outline:3px solid #00000044; outline-offset:3px}


.title-blue{
  color:var(--blue);
}
