/* ─────────────────────────────────────────
   ROOT & RESET
───────────────────────────────────────── */
:root {
  --c-bg:        #0a0a0f;
  --c-surface:   #13131f;
  --c-surface2:  #1c1c2e;
  --c-border:    rgba(255,255,255,0.07);

  --c-lime:      #c8ff00;
  --c-pink:      #ff3cac;
  --c-cyan:      #00e5ff;
  --c-orange:    #ff6b35;
  --c-purple:    #7c3aed;

  --c-text:      #f0f0fa;
  --c-muted:     #7a7a9a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─────────────────────────────────────────
   ANIMATED BACKGROUND BLOBS
───────────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  width: 700px; height: 700px;
  background: var(--c-purple);
  top: -200px; left: -200px;
  animation-duration: 20s;
}
.blob-2 {
  width: 600px; height: 600px;
  background: var(--c-pink);
  top: 30%; right: -150px;
  animation-duration: 25s;
  animation-delay: -8s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: var(--c-cyan);
  bottom: -100px; left: 30%;
  animation-duration: 22s;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -80px) scale(1.05); }
  66%       { transform: translate(-40px, 60px) scale(0.95); }
}

/* ─────────────────────────────────────────
   BACK BAR
───────────────────────────────────────── */
.back-bar {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 2.5rem;
  background: rgba(7, 7, 12, 0.85);
  border-bottom: 1px solid rgba(200, 255, 0, 0.12);
  backdrop-filter: blur(8px);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-lime);
  transition: gap var(--transition), opacity var(--transition);
  text-decoration: none;
}
.back-btn:hover { gap: 0.7rem; opacity: 0.8; }
.back-btn svg { flex-shrink: 0; transition: transform var(--transition); }
.back-btn:hover svg { transform: translateX(-3px); }

.back-bar-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  text-transform: lowercase;
}

@media (max-width: 480px) {
  .back-bar { padding: 0.5rem 1.25rem; }
  .back-bar-brand { display: none; }
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 15, 0.6);
  position: sticky;
  top: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--c-text);
}
.logo span { color: var(--c-lime); }

nav { display: flex; gap: 2rem; }
nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-muted);
  transition: color var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav a:hover { color: var(--c-lime); }

/* ─────────────────────────────────────────
   HERO / COUNTDOWN SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-lime);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--c-cyan) 50%, var(--c-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--c-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero-sub strong { color: var(--c-text); }

/* ─────────────────────────────────────────
   COUNTDOWN BOARD
───────────────────────────────────────── */
.countdown-board {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.count-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.count-card:hover { transform: translateY(-4px); }

#card-weeks {
  border-color: rgba(200, 255, 0, 0.25);
  background: linear-gradient(135deg, var(--c-surface) 0%, rgba(200, 255, 0, 0.04) 100%);
}
#card-weeks::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(200,255,0,0.4), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
#card-days {
  border-color: rgba(255, 60, 172, 0.25);
  background: linear-gradient(135deg, var(--c-surface) 0%, rgba(255,60,172,0.04) 100%);
}
#card-hours {
  border-color: rgba(0, 229, 255, 0.25);
  background: linear-gradient(135deg, var(--c-surface) 0%, rgba(0,229,255,0.04) 100%);
}

.count-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  display: block;
  animation: countIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#card-weeks .count-number { color: var(--c-lime); }
#card-days  .count-number { color: var(--c-pink); }
#card-hours .count-number { color: var(--c-cyan); }

@keyframes countIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.count-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.count-divider {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--c-muted);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────── */
.progress-wrap {
  margin-bottom: 2.5rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.progress-bar {
  height: 12px;
  background: var(--c-surface2);
  border-radius: 100px;
  position: relative;
  overflow: visible;
  border: 1px solid var(--c-border);
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-pink), var(--c-orange), var(--c-lime));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.progress-dot {
  position: absolute;
  top: 50%;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--c-lime);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.7);
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────
   STAT PILLS
───────────────────────────────────────── */
.stat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pill {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition);
}
.pill:hover { transform: scale(1.04); }

.pill-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
}

.pill-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
}

.update-note {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 0.5rem;
}

/* ─────────────────────────────────────────
   SEO ARTICLE
───────────────────────────────────────── */
.seo-article {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 5rem;
}

.article-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2.5rem;
}

.article-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--c-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-intro {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--c-muted);
}
.article-intro strong { color: var(--c-text); }

/* Article sections */
.article-body { display: flex; flex-direction: column; gap: 2rem; }

.article-section {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 1rem;
}

.article-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #b0b0c8;
  margin-bottom: 1rem;
}
.article-section p:last-child { margin-bottom: 0; }
.article-section strong { color: var(--c-text); }

/* Highlight block */
.article-highlight {
  background: linear-gradient(135deg, rgba(200,255,0,0.05), rgba(0,229,255,0.05));
  border: 1px solid rgba(200,255,0,0.25);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.highlight-icon { font-size: 1.8rem; flex-shrink: 0; }
.article-highlight p { font-size: 1rem; line-height: 1.8; color: #b0b0c8; }
.article-highlight strong { color: var(--c-lime); }

/* Lists */
.article-list {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.article-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0c8;
}
.article-list li strong { color: var(--c-text); }

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.styled-table thead {
  background: rgba(255,255,255,0.04);
}
.styled-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-border);
}
.styled-table td {
  padding: 0.75rem 1rem;
  color: #b0b0c8;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(255,255,255,0.02); }
.styled-table td:first-child { font-weight: 600; color: var(--c-text); }
.styled-table td:nth-child(2) { color: var(--c-lime); font-weight: 700; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

.faq-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(200,255,0,0.25); }

.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--c-text);
  transition: color var(--transition);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-lime);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--c-lime); }

.faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-muted);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--c-border);
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.25rem; }
  nav { gap: 1.25rem; }

  .hero { padding: 3rem 1.25rem 2.5rem; }

  .countdown-board { gap: 0.75rem; }
  .count-card { padding: 1.5rem 1.75rem; min-width: 130px; }
  .count-divider { font-size: 1.5rem; }

  .stat-pills { gap: 0.5rem; }
  .pill { padding: 0.4rem 0.9rem; }

  .seo-article { padding: 2.5rem 1.25rem 3rem; }
  .article-section { padding: 1.5rem; }
  .article-highlight { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .count-divider { display: none; }
  .countdown-board { gap: 0.75rem; }
  .count-card { min-width: calc(50% - 0.75rem); flex: 1 1 auto; }
  #card-hours { min-width: 100%; }
}

/* ─────────────────────────────────────────
   UTILITY — ENTRANCE ANIMATION
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp 0.7s ease both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.45s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.55s; }
.hero-inner > *:nth-child(7) { animation-delay: 0.65s; }
