:root{
  --orange:#f6a33a;
  --orange-dark:#d88318;
  --dark:#34363d;
  --text:#202532;
  --muted:#596273;
  --line:#ececec;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  min-height:100vh;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  overflow-x:hidden;
  background:
    radial-gradient(circle at top left, rgba(246,163,58,.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(246,163,58,.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f7f7 48%, #eeeeee 100%);
}

.background{
  position:fixed;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.bubble{
  position:absolute;
  display:block;
  border-radius:50%;
  background:rgba(246,163,58,.18);
  filter:blur(.5px);
  animation:float 8s ease-in-out infinite;
}

.bubble-one{
  width:180px;
  height:180px;
  top:-45px;
  left:-45px;
}

.bubble-two{
  width:230px;
  height:230px;
  right:-80px;
  top:40px;
  animation-delay:1.8s;
}

.bubble-three{
  width:150px;
  height:150px;
  left:8%;
  bottom:-55px;
  animation-delay:3s;
}

.page{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:32px 18px;
}

.card{
  position:relative;
  width:min(720px, 100%);
  padding:42px 54px 34px;
  text-align:center;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.7);
  border-radius:26px;
  box-shadow:0 26px 70px rgba(0,0,0,.14);
  overflow:hidden;
  animation:enter .8s ease both;
}

.top-line{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:8px;
  background:linear-gradient(90deg, var(--orange), var(--orange-dark), var(--orange));
}

.logo-wrap{
  position:relative;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin-bottom:24px;
}

.logo-wrap::before{
  content:"";
  position:absolute;
  width:72%;
  height:54%;
  background:rgba(246,163,58,.18);
  filter:blur(35px);
  border-radius:999px;
  opacity:.8;
  transition:.35s ease;
}

.logo{
  position:relative;
  width:min(430px, 82vw);
  display:block;
  border-radius:10px;
  transition:transform .35s ease, filter .35s ease;
  animation:logoFloat 4.8s ease-in-out infinite;
}

.logo-wrap:hover .logo{
  transform:scale(1.08);
  filter:drop-shadow(0 16px 22px rgba(246,163,58,.42));
}

.logo-wrap:hover::before{
  opacity:1;
  transform:scale(1.12);
}

.badge{
  display:inline-block;
  margin-bottom:22px;
  padding:11px 24px;
  border:1px solid rgba(246,163,58,.7);
  border-radius:999px;
  color:#1f2732;
  background:rgba(246,163,58,.09);
  font-size:14px;
  font-weight:800;
  letter-spacing:.8px;
}

h1{
  max-width:610px;
  margin:0 auto 18px;
  color:var(--dark);
  font-size:clamp(34px, 5vw, 54px);
  line-height:1.05;
  font-weight:800;
}

.description{
  max-width:590px;
  margin:0 auto 30px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.loader-area{
  max-width:560px;
  margin:0 auto 28px;
}

.loader-text{
  display:flex;
  justify-content:center;
  margin-bottom:11px;
  color:#394252;
  font-size:15px;
  font-weight:700;
}

.loader{
  position:relative;
  width:100%;
  height:15px;
  background:#e7e7e7;
  border-radius:999px;
  overflow:hidden;
  box-shadow:inset 0 1px 3px rgba(0,0,0,.13);
}

.loader span{
  position:absolute;
  top:0;
  left:-40%;
  width:45%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--dark), var(--orange));
  animation:loading 2.2s ease-in-out infinite;
}

.phrase{
  max-width:540px;
  margin:2px auto 24px;
  padding-top:24px;
  border-top:1px solid var(--line);
  color:#313945;
  font-size:18px;
  font-weight:700;
  line-height:1.45;
}

.contact{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-bottom:26px;
  color:var(--muted);
  font-size:16px;
}

.contact a{
  color:var(--orange-dark);
  font-weight:800;
  text-decoration:none;
}

.contact a:hover{
  text-decoration:underline;
}

footer{
  color:#747d8d;
  font-size:14px;
}

@keyframes loading{
  0%{left:-45%;}
  55%{left:45%;}
  100%{left:105%;}
}

@keyframes logoFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

@keyframes enter{
  from{opacity:0; transform:translateY(18px) scale(.98);}
  to{opacity:1; transform:translateY(0) scale(1);}
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(22px);}
}

@media (max-width:600px){
  .page{
    padding:22px 14px;
  }

  .card{
    padding:34px 22px 28px;
    border-radius:22px;
  }

  .logo{
    width:min(330px, 88vw);
  }

  .description{
    font-size:16px;
  }

  .phrase{
    font-size:16px;
  }
}
