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

:root {
  --bg:        #0b0c10;
  --surface:   #13151c;
  --border:    #1e2130;
  --accent:    #f5c842;
  --accent2:   #e87c3e;
  --text:      #eaeaea;
  --muted:     #6b7280;
  --success:   #4ade80;
  --radius:    12px;
  --radius-lg: 24px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,12,16,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.4rem;
  display: inline-block;
  animation: spin 8s linear infinite;
  color: var(--accent);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.header-nav a:hover { color: var(--text); }

.header-nav .nav-email {
  background: var(--border);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.header-nav .nav-email:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ─── MAIN ────────────────────────────────────────── */
.main-content {
  flex: 1;
  padding-top: 68px;
  position: relative;
}

/* Decorative grid lines */
.grid-lines {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.grid-lines span {
  width: 1px;
  background: #fff;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

/* Glow blob behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,200,66,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,200,66,0.08);
  border: 1px solid rgba(245,200,66,0.25);
  color: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.6s ease both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245,200,66,0.6);
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,200,66,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(245,200,66,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,200,66,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.65s 0.1s ease both;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  animation: lineGrow 0.8s 0.5s ease both;
  transform-origin: left;
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  animation: fadeSlideUp 0.65s 0.2s ease both;
}

/* ─── COUNTDOWN ───────────────────────────────────── */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeSlideUp 0.65s 0.3s ease both;
}

.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  min-width: 90px;
}

.count-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.count-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.count-sep {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 1.5rem;
}

/* ─── CONTACT SECTION ─────────────────────────────── */
.contact-section {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  animation: fadeSlideUp 0.65s 0.4s ease both;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Top accent stripe */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.contact-header {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-header h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ─── FORM ────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 300;
  padding: 0.85rem 1.1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  color: #3a3e50;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.1);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}

.submit-btn:hover {
  background: #f7d46a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,200,66,0.25);
}

.submit-btn:active { transform: translateY(0); }

.btn-icon {
  transition: transform var(--transition);
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.form-success {
  display: none;
  text-align: center;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  color: var(--success);
  border-radius: var(--radius);
  padding: 0.85rem;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color var(--transition), border-color var(--transition);
}

.footer-socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 700px) {
  .header-nav .nav-email { display: none; }

  .hero { padding: 5rem 1.25rem 3rem; }
  .hero-title { letter-spacing: -1px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-card { padding: 2rem 1.5rem; }

  .countdown { gap: 0.5rem; }
  .count-block { padding: 0.9rem 1.1rem; min-width: 70px; }
  .count-num { font-size: 1.8rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 420px) {
  .header-nav { gap: 1rem; }
  .count-block { min-width: 60px; padding: 0.75rem 0.9rem; }
  .count-num { font-size: 1.5rem; }
}

