/* ===========================================================
   SKS ХХК — Coming Soon  (modern, animated)
   Palette: teal #244350 · gold #E0B873 · cream #FBE5BE · red #EE3135
   =========================================================== */

:root {
  --sks-teal: #244350;
  --sks-teal-deep: #112229;
  --sks-teal-mid: #2d5366;
  --sks-red: #EE3135;
  --sks-cream: #FBE5BE;
  --sks-gold: #E0B873;
  --sks-white: #FFFFFF;
  --sks-muted: rgba(251, 229, 190, 0.70);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--sks-white);
  background: var(--sks-teal-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* ---------- Animated aurora mesh background ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(900px 700px at 75% -10%, rgba(45, 83, 102, 0.9), transparent 60%),
    radial-gradient(700px 700px at 15% 110%, rgba(36, 67, 80, 0.9), transparent 60%),
    var(--sks-teal-deep);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.orb--gold {
  width: 460px; height: 460px;
  background: var(--sks-gold);
  top: -140px; right: -100px;
  opacity: 0.34;
  animation: float1 16s var(--ease) infinite alternate;
}
.orb--red {
  width: 420px; height: 420px;
  background: var(--sks-red);
  bottom: -180px; left: -120px;
  opacity: 0.18;
  animation: float2 20s var(--ease) infinite alternate;
}
.orb--teal {
  width: 380px; height: 380px;
  background: var(--sks-teal-mid);
  top: 40%; left: 60%;
  opacity: 0.4;
  animation: float3 24s var(--ease) infinite alternate;
}
@keyframes float1 { to { transform: translate(-60px, 70px) scale(1.1); } }
@keyframes float2 { to { transform: translate(80px, -50px) scale(1.15); } }
@keyframes float3 { to { transform: translate(-90px, -40px) scale(0.9); } }

/* Subtle moving grid overlay */
.bg::after {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(224, 184, 115, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 184, 115, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  animation: gridpan 30s linear infinite;
}
@keyframes gridpan { to { background-position: 56px 56px; } }

/* ---------- Layout ---------- */
.wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* ---------- Brand wordmark with shimmer ---------- */
.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 18px;
  font-weight: 800;
  letter-spacing: 6px;
  font-size: clamp(44px, 10vw, 76px);
  line-height: 1;
  margin-bottom: 38px;
  background: linear-gradient(110deg, var(--sks-cream) 20%, var(--sks-gold) 40%, #fff7e8 50%, var(--sks-gold) 60%, var(--sks-cream) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite, reveal 0.9s var(--ease) both;
}
.brand .dot { color: var(--sks-red); -webkit-text-fill-color: var(--sks-red); }
.brand .brand-suffix {
  font-size: 0.28em;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--sks-muted);
  -webkit-text-fill-color: var(--sks-muted);
}
@keyframes shimmer { to { background-position: -250% 0; } }

/* ---------- Status badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 1px solid rgba(224, 184, 115, 0.35);
  border-radius: 999px;
  background: rgba(224, 184, 115, 0.08);
  color: var(--sks-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  animation: reveal 0.9s 0.16s var(--ease) both;
}
.badge .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sks-gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 184, 115, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(224, 184, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 184, 115, 0); }
}

/* ---------- Headline ---------- */
h1 {
  font-size: clamp(30px, 6.2vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  animation: reveal 0.9s 0.24s var(--ease) both;
}
h1 .accent {
  position: relative;
  background: linear-gradient(90deg, var(--sks-gold), var(--sks-cream));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.75;
  color: var(--sks-muted);
  max-width: 560px;
  margin: 0 auto 30px;
  animation: reveal 0.9s 0.32s var(--ease) both;
}

/* ---------- Build progress bar ---------- */
.progress {
  width: min(420px, 80%);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 46px;
  animation: reveal 0.9s 0.4s var(--ease) both;
}
.progress span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sks-gold), var(--sks-red));
  animation: load 2.6s var(--ease) infinite;
}
@keyframes load {
  0%   { transform: translateX(-100%); width: 45%; }
  50%  { width: 70%; }
  100% { transform: translateX(280%); width: 45%; }
}

/* ---------- Group brands ---------- */
.brands {
  width: 100%;
  max-width: 580px;
  margin-bottom: 26px;
  animation: reveal 0.9s 0.44s var(--ease) both;
}
.brands-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sks-gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.brand-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sks-white);
  text-decoration: none;
  text-align: left;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.brand-link:hover {
  transform: translateY(-4px);
  background: rgba(224, 184, 115, 0.1);
  border-color: rgba(224, 184, 115, 0.45);
}
.bl-icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s var(--ease);
}
.bl-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-link:hover .bl-icon { transform: scale(1.06); }
.bl-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.bl-text strong { font-size: 15px; font-weight: 700; }
.bl-text small { font-size: 12px; color: var(--sks-muted); }
.bl-arrow {
  margin-left: auto;
  font-size: 12px;
  color: var(--sks-muted);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.brand-link:hover .bl-arrow { color: var(--sks-gold); transform: translate(2px, -2px); }

/* ---------- Contact glass card ---------- */
.contact {
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  animation: reveal 0.9s 0.48s var(--ease) both;
}
.contact-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sks-gold);
  margin-bottom: 22px;
  font-weight: 700;
}
.contact-list { display: grid; gap: 12px; text-align: left; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 14px;
  font-size: 15px;
  color: var(--sks-white);
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact-item:hover { background: rgba(224, 184, 115, 0.1); transform: translateX(4px); }
.contact-item .ico {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(224, 184, 115, 0.14);
  color: var(--sks-gold);
  font-size: 16px;
  transition: all 0.25s var(--ease);
}
.contact-item:hover .ico { background: var(--sks-gold); color: var(--sks-teal-deep); }

.socials { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--sks-white);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.socials a:hover {
  background: var(--sks-gold);
  border-color: var(--sks-gold);
  color: var(--sks-teal-deep);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -8px rgba(224, 184, 115, 0.6);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 26px 16px 30px;
  font-size: 13px;
  color: var(--sks-muted);
  animation: reveal 0.9s 0.56s var(--ease) both;
}

/* ---------- Motion primitives ---------- */
@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 480px) {
  .wrap { padding-top: 40px; }
  .brand { letter-spacing: 4px; gap: 0 12px; }
  .brand .brand-suffix { letter-spacing: 3px; }
  .brand-links { grid-template-columns: 1fr; }
  .contact { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
