/* GENUP — Under Construction
   Brand palette: navy #0E1B43 · teal #0C8A99 */

:root{
  --navy:#0E1B43;
  --navy-2:#1b2c5c;
  --teal:#0C8A99;
  --teal-2:#15A9BC;
  --ink:#3f4a60;
  --muted:#8893a6;
  --bg:#eef3f7;
  --card:#ffffff;
  --ring:rgba(12,138,153,.18);
  --shadow:0 30px 70px -24px rgba(14,27,67,.30);
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1100px 700px at 85% -10%, #ffffff 0%, rgba(255,255,255,0) 60%),
    linear-gradient(160deg, #f3f7fb 0%, #e7eef5 100%);
  overflow:hidden;
}

/* soft decorative brand blobs */
.bg-blob{
  position:fixed;
  border-radius:50%;
  filter:blur(70px);
  opacity:.18;
  z-index:0;
  pointer-events:none;
}
.bg-blob--teal{ width:520px; height:520px; background:var(--teal); top:-180px; right:-140px; }
.bg-blob--navy{ width:560px; height:560px; background:var(--navy); bottom:-220px; left:-180px; opacity:.14; }

/* card */
.card{
  position:relative;
  z-index:1;
  width:100%;
  max-width:600px;
  background:var(--card);
  border:1px solid rgba(14,27,67,.06);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:54px 48px 30px;
  text-align:center;
  animation:rise .7s cubic-bezier(.21,.7,.3,1) both;
}
@keyframes rise{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }

/* status pill */
.status{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--teal);
  background:var(--ring);
  padding:7px 15px;
  border-radius:999px;
  margin-bottom:30px;
}
.status__dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 0 0 rgba(12,138,153,.55);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(12,138,153,.5); }
  70%{ box-shadow:0 0 0 10px rgba(12,138,153,0); }
  100%{ box-shadow:0 0 0 0 rgba(12,138,153,0); }
}

/* logo */
.logo{
  width:min(280px, 74%);
  height:auto;
  display:block;
  margin:0 auto 6px;
}

/* gears accent */
.gears{
  width:62px;
  height:auto;
  display:block;
  margin:14px auto 20px;
  opacity:.9;
}

/* typography */
.title{
  margin:0;
  font-weight:600;
  font-size:clamp(26px, 4.4vw, 34px);
  line-height:1.15;
  color:var(--navy);
  letter-spacing:-.01em;
}
.subtitle{
  margin:6px 0 0;
  font-weight:400;
  font-size:clamp(14px, 2.4vw, 17px);
  color:var(--teal);
}

.subtitle2{
  margin:6px 0 0;
  font-weight:400;
  font-size:clamp(12px, 2vw, 14px);
  color:var(--teal);
}

.lead{
  margin:22px auto 0;
  max-width:42ch;
  font-weight:300;
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
}
.lead--en{ margin-top:6px; color:var(--muted); }

/* divider before contact */
.contact{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:30px;
  padding-top:30px;
  border-top:1px solid rgba(14,27,67,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  padding:12px 22px;
  border-radius:999px;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform:translateY(-2px); }

.btn--primary{
  color:#fff;
  background:linear-gradient(135deg, var(--navy) 0%, var(--teal) 130%);
  box-shadow:0 14px 26px -12px rgba(12,138,153,.7);
}
.btn--primary:hover{ box-shadow:0 18px 30px -12px rgba(12,138,153,.85); }

.btn--ghost{
  color:var(--navy);
  background:transparent;
  border:1.5px solid rgba(14,27,67,.18);
}
.btn--ghost:hover{
  border-color:var(--teal);
  color:var(--teal);
}

/* footer */
.credit{
  margin-top:28px;
  font-size:12.5px;
  font-weight:300;
  color:var(--muted);
}
.credit a{
  color:var(--navy);
  font-weight:500;
  text-decoration:none;
  border-bottom:1px solid rgba(12,138,153,.4);
  padding-bottom:1px;
}
.credit a:hover{ color:var(--teal); border-color:var(--teal); }

/* responsive */
@media (max-width:520px){
  .card{ padding:40px 24px 26px; border-radius:22px; }
  .contact{ gap:10px; }
  .btn{ width:100%; justify-content:center; }
}

@media (prefers-reduced-motion:reduce){
  .card{ animation:none; }
  .status__dot{ animation:none; }
  .gears *{ animation:none !important; }
}
