/* ============================================================
   SYMATRON CORPORATION — COMING SOON
   coming-soon.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --red:       #d72329;
  --red-dark:  #a01820;
  --black:     #000000;
  --white:     #ffffff;
  --gray:      rgba(255,255,255,0.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: 'Barlow', 'Segoe UI', sans-serif;
  background: #000;
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── VIDEO BACKGROUND ── */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

/* ── NAV BAR ── */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 90px;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.top-nav.scrolled {
  background: rgba(0,0,0,0.85);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.nav-logo img {
  height: 100px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.nav-right a {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--red); }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.scroll-dot.active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.4);
}

/* ── SECTION 1: HERO ── */
#section-hero {
  justify-content: center;
  padding: 120px 10vw 80px;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  text-align: left;
  min-height: 100vh;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.hero-label.visible { opacity: 1; transform: translateY(0); }
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }
.hero-title .red { color: var(--red); }
.hero-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 28px;
  max-width: 520px;
  text-align: left;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
.hero-subtitle.visible { opacity: 1; transform: translateY(0); }

/* ── INLINE COUNTDOWN (right side of hero) ── */
.hero-countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease 0.7s, transform 0.9s ease 0.7s;
}
.hero-countdown.visible { opacity: 1; transform: translateY(0); }
.hcd-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hcd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: rgba(215,35,41,0.3);
  margin-bottom: 16px;
}
.hcd-box {
  background: rgba(0,0,0,0.75);
  padding: 28px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s;
}
.hcd-box:hover { background: rgba(20,0,0,0.9); }
.hcd-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hcd-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hcd-date {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-align: center;
}

/* Scroll down arrow */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-down:hover { opacity: 1; }
.scroll-down span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION 2: CONTACT CTA ── */
#section-contact {
  background: rgba(0,0,0,0.2);
}
.contact-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.contact-eyebrow.visible { opacity: 1; transform: translateY(0); }
.contact-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s;
}
.contact-heading.visible { opacity: 1; transform: translateY(0); }
.contact-heading span { color: var(--red); }
.contact-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}
.contact-sub.visible { opacity: 1; transform: translateY(0); }

/* Contact info cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: 100%;
  max-width: 860px;
  background: rgba(215,35,41,0.2);
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.contact-cards.visible { opacity: 1; transform: translateY(0); }
.cc-card {
  background: rgba(0,0,0,0.7);
  padding: 36px 28px;
  text-align: left;
  border-top: 2px solid transparent;
  transition: background 0.25s, border-top-color 0.25s;
  backdrop-filter: blur(8px);
}
.cc-card:hover {
  background: rgba(20,0,0,0.85);
  border-top-color: var(--red);
}
.cc-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.cc-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
}
.cc-text a {
  color: var(--white);
  font-weight: 400;
  transition: color 0.2s;
}
.cc-text a:hover { color: var(--red); }

/* ── SECTION 4: FOOTER ── */
#section-footer {
  min-height: auto;
  padding: 40px 60px;
  scroll-snap-align: none;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-copy a:hover { color: var(--red); }
.footer-logo img { height: 65px; opacity: 0.7; }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  #section-hero {
    grid-template-columns: 1fr 360px;
    gap: 40px;
    padding: 120px 6vw 80px;
  }
}
@media (max-width: 900px) {
  .top-nav { padding: 0 30px; height: 75px; }
  #section-hero {
    grid-template-columns: 1fr;
    padding: 110px 30px 100px;
    gap: 48px;
  }
  .hero-countdown { max-width: 500px; }
  .hcd-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  #section-footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 30px; }
  .scroll-indicator { display: none; }
}
@media (max-width: 600px) {
  .top-nav { padding: 0 20px; }
  section { padding: 70px 24px; }
  #section-hero { padding: 100px 24px 90px; }
  .hero-title { font-size: clamp(44px, 13vw, 72px); }
  .hcd-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-logo img { height: 50px; }
}
