/* =============================================
   КНП СЕБ — Under Construction Page
   Фірмовий стиль: темно-синій + жовтий акцент
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:        #0a0f1e;
  --navy-mid:    #0d1528;
  --navy-light:  #111c35;
  --yellow:      #FFD600;
  --yellow-dim:  #c8a800;
  --white:       #ffffff;
  --gray:        #8a9bb8;
  --border:      rgba(255, 214, 0, 0.2);
  --glow:        rgba(255, 214, 0, 0.12);
  --font-head:   'Bebas Neue', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* ---------- BACKGROUND ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,214,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,214,0,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- CORNER BRACKETS ---------- */
.corner {
  position: fixed;
  width: 40px;
  height: 40px;
  border-color: var(--yellow);
  border-style: solid;
  z-index: 1;
  opacity: .5;
}
.corner--tl { top: 16px; left: 16px;  border-width: 2px 0 0 2px; }
.corner--tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.corner--bl { bottom: 16px; left: 16px;  border-width: 0 0 2px 2px; }
.corner--br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

/* ---------- HEADER ---------- */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10,15,30,.9) 0%, transparent 100%);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__svg {
  height: 58px;
  width: auto;
  flex-shrink: 0;
}

.logo__image {
  height: 58px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.5;
}

.header__meta {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ---------- MAIN ---------- */
.main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 28px;
}

/* STATUS BADGE */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,214,0,.07);
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--yellow);
  text-transform: uppercase;
}

.status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

/* TITLE */
.title {
  font-family: var(--font-head);
  display: flex;
  flex-direction: column;
  line-height: .95;
  gap: 4px;
}

.title__line {
  font-size: clamp(60px, 10vw, 110px);
  letter-spacing: 4px;
  color: var(--white);
}

.title__line--accent {
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(255,214,0,.35);
}

/* SUBTITLE */
.subtitle {
  max-width: 560px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 400;
}

/* PROGRESS BAR */
.progress-block {
  width: 100%;
  max-width: 520px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,214,0,.12);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,214,0,.2);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow-dim), var(--yellow));
  width: 0%;
  transition: width .3s ease;
  position: relative;
}

.progress-bar__glow {
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,.6));
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0%   { right: 100%; }
  100% { right: -40px; }
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy-light);
  border: 1px solid var(--border);
  padding: 14px 22px;
  min-width: 90px;
  position: relative;
}

.countdown__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity .3s;
}

.countdown__item:hover::before {
  opacity: 1;
}

.countdown__value {
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 2px;
}

.countdown__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-top: 4px;
}

.countdown__sep {
  font-family: var(--font-head);
  font-size: 38px;
  color: var(--yellow);
  padding: 0 4px;
  margin-bottom: 18px;
  opacity: .6;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  z-index: 10;
  padding: 0 48px 28px;
}

.footer__line {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__icon {
  font-size: 22px;
  color: var(--yellow);
  opacity: .8;
}

.footer__label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .5px;
  transition: color .2s;
}

.footer__link:hover {
  color: var(--yellow);
}

.footer__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  html, body { overflow: auto; }

  .header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .header__meta { display: none; }

  .main { padding: 32px 16px; gap: 22px; }

  .countdown { gap: 2px; }
  .countdown__item { min-width: 64px; padding: 10px 14px; }
  .countdown__value { font-size: 32px; }
  .countdown__sep { font-size: 28px; }

  .footer { padding: 0 16px 20px; }
  .footer__content { gap: 18px; }
  .footer__divider { display: none; }
}

