/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: #231f20;
  background-color: #231f20;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; font-family: inherit; }
video { display: block; }

/* ===== FONTS ===== */
.font-heading { font-family: 'DM Sans', sans-serif; }
.font-body { font-family: 'Barlow', sans-serif; }
.font-mono-tech {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 4vw;
  height: 72px;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
#main-nav.nav-transparent { background-color: transparent; border-bottom: 1px solid transparent; }
#main-nav.nav-visible {
  background-color: rgba(35, 31, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192, 155, 82, 0.15);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { height: 36px; width: auto; filter: brightness(1.2); }
#main-nav.nav-visible .nav-logo img { filter: none; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fef1d0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
}
.nav-link:hover { color: #c09b52; }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fef1d0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(35, 31, 32, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fef1d0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  min-height: 100vh;
  background-color: #231f20;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  min-height: 100vh;
  gap: 4vw;
}
.hero-left { position: relative; z-index: 2; }
.hero-heading {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: #fef1d0;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(60px);
}
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #c09b52;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
}
.hero-right { position: relative; height: 70vh; min-height: 500px; }
.btn-industrial {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid #c09b52;
  background-color: transparent;
  color: #fef1d0;
  cursor: pointer;
  border-radius: 0;
  display: inline-block;
  transition: none;
}
.btn-industrial:hover {
  background-color: #fef1d0;
  color: #231f20;
  border-color: #fef1d0;
}
.hero-spec-left {
  position: absolute;
  bottom: 40px;
  left: 4vw;
  font-size: 11px;
  color: #828282;
  z-index: 5;
  line-height: 1.8;
  opacity: 0;
}
.hero-spec-right {
  position: absolute;
  bottom: 40px;
  right: 4vw;
  font-size: 11px;
  color: #828282;
  z-index: 5;
  text-align: right;
  line-height: 1.8;
  opacity: 0;
}

/* ===== MANIFESTO ===== */
.manifesto-wrapper {
  height: 300vh;
  position: relative;
  background-color: #fef1d0;
}
.manifesto-sticky {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.manifesto-grid {
  width: 100%;
  max-width: 1200px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
}
.manifesto-headings {
  position: relative;
  height: clamp(120px, 15vw, 200px);
  overflow: hidden;
}
.manifesto-heading {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.heading-1 { opacity: 1; }
.heading-2 { transform: translateY(100%); opacity: 0; }
.heading-3 { transform: translateY(100%); opacity: 0; }
.manifesto-text { padding-top: 20px; }
.manifesto-paragraph {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #231f20;
  max-width: 420px;
  opacity: 0;
  transform: translateY(30px);
}
.manifesto-brand {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.manifesto-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #c09b52;
}
.manifesto-brand-text { color: #c09b52; }

/* ===== PRODUCT SPECS ===== */
.product-specs {
  width: 100%;
  background-color: #fef1d0;
  padding: 15vh 4vw;
  position: relative;
}
.specs-container { max-width: 1400px; margin: 0 auto; }
.specs-header {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.specs-label {
  font-size: 12px;
  color: #c09b52;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.specs-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.specs-model {
  font-size: 12px;
  color: #828282;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: right;
}

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.spec-card {
  border: 1px solid rgba(192, 155, 82, 0.3);
  padding: 40px 32px;
  background-color: transparent;
  cursor: default;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.25s ease;
}
.spec-card:hover { background-color: #231f20; }
.spec-card:hover .spec-icon { color: #c09b52; }
.spec-card:hover .spec-title { color: #fef1d0; }
.spec-card:hover .spec-desc { color: #828282; }
.spec-icon {
  color: #231f20;
  margin-bottom: 24px;
  transition: color 0.25s ease;
}
.spec-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}
.spec-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #828282;
  margin-bottom: 40px;
  min-height: 72px;
  transition: color 0.25s ease;
}
.spec-code {
  font-size: 11px;
  color: #c09b52;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Product Detail */
.product-detail-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-detail-img { width: 100%; max-width: 500px; height: auto; }
.product-detail-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}
.product-detail-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #231f20;
  margin-bottom: 24px;
}
.product-params { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.param-row {
  border-bottom: 1px solid rgba(192, 155, 82, 0.3);
  padding-bottom: 8px;
}
.param-label { font-size: 11px; color: #828282; text-transform: uppercase; }
.param-value {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #231f20;
  font-weight: 500;
}

/* Color Variants */
.color-variants { margin-top: 100px; }
.variants-frame {
  overflow: hidden;
  border: 1px solid rgba(192, 155, 82, 0.3);
}
.variants-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  padding: 40px;
}

/* ===== DEPLOYMENT GALLERY ===== */
.deployment-wrapper {
  height: 300vh;
  position: relative;
  background-color: #231f20;
}
.deployment-sticky {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.deployment-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#deployment-video-2 { opacity: 0; }
.deployment-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 31, 32, 0.65);
  z-index: 2;
}
.deployment-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8vw;
}
.deployment-text-1, .deployment-text-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8vw;
  max-width: 520px;
  opacity: 0;
}
.deployment-label {
  font-size: 12px;
  color: #c09b52;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.deployment-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fef1d0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 24px;
  overflow: hidden;
}
.deployment-heading .char-span {
  display: inline-block;
  white-space: pre;
}
.deployment-body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #828282;
}
.deployment-progress {
  position: absolute;
  bottom: 40px;
  right: 8vw;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.deployment-dot {
  width: 40px;
  height: 2px;
  background-color: rgba(254, 241, 208, 0.3);
  transition: background-color 0.3s ease;
}
.deployment-dot.active { background-color: #c09b52; }

/* ===== NETWORK TICKER ===== */
.network-ticker {
  width: 100%;
  background-color: #231f20;
  padding: 10vh 0;
  overflow: hidden;
  position: relative;
}
.ticker-header {
  padding: 0 8vw;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ticker-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #fef1d0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ticker-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #828282;
  max-width: 360px;
  text-align: right;
}
.ticker-wrapper {
  border-top: 1px solid rgba(192, 155, 82, 0.15);
  border-bottom: 1px solid rgba(192, 155, 82, 0.15);
  overflow: hidden;
}
.ticker-row {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-row:hover { animation-play-state: paused; }
.ticker-row-reverse { animation-direction: reverse; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 40px;
  white-space: nowrap;
  border-right: 1px solid rgba(192, 155, 82, 0.15);
}
.ticker-item span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #828282;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.site-footer {
  width: 100%;
  background-color: #231f20;
  padding: 10vh 4vw 5vh;
  position: relative;
}
.footer-top-line {
  position: absolute;
  top: 0; left: 4vw; right: 4vw;
  height: 1px;
  background-color: rgba(192, 155, 82, 0.3);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4vw;
}
.footer-logo { height: 48px; width: auto; filter: brightness(0.9); margin-bottom: 32px; }
.footer-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #828282;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-legal {
  font-size: 11px;
  color: #828282;
  line-height: 1.8;
}
.footer-label {
  font-size: 12px;
  color: #c09b52;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.footer-nav { display: flex; flex-direction: column; gap: 16px; }
.footer-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fef1d0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-nav-link:hover { color: #c09b52; }
.footer-contact {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-label {
  font-size: 12px;
  color: #c09b52;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-contact-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #828282;
  letter-spacing: 0.5px;
}
a.footer-contact-item:hover { color: #fef1d0; }
.footer-newsletter-text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #828282;
  margin-bottom: 24px;
}
.footer-form { display: flex; flex-direction: column; gap: 16px; }
.footer-input {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  border: 1px solid rgba(192, 155, 82, 0.3);
  color: #fef1d0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  outline: none;
  border-radius: 0;
}
.footer-input::placeholder { color: #828282; }
.footer-submit {
  padding: 16px;
  background-color: transparent;
  border: 1px solid #c09b52;
  color: #fef1d0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-submit:hover {
  background-color: #fef1d0;
  color: #231f20;
  border-color: #fef1d0;
}
.footer-quote {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid rgba(192, 155, 82, 0.15);
}
.footer-quote-label {
  font-size: 11px;
  color: #c09b52;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-quote-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #828282;
}
.footer-quote-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #fef1d0;
  letter-spacing: 0.5px;
}
.footer-quote-link:hover { color: #c09b52; }
.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(192, 155, 82, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .ticker-header { flex-direction: column; align-items: flex-start !important; gap: 20px; }
  .ticker-desc { text-align: left !important; }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    padding-top: 100px !important;
    padding-bottom: 60px !important;
    gap: 2vw !important;
  }
  .hero-left { order: 2; text-align: center; }
  .hero-right { order: 1; height: 50vh !important; min-height: 300px !important; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-spec-left, .hero-spec-right { display: none; }

  .manifesto-grid { grid-template-columns: 1fr !important; text-align: center; }
  .manifesto-text { display: none; }

  .specs-grid { grid-template-columns: 1fr !important; }
  .specs-header { flex-direction: column; align-items: flex-start !important; gap: 20px; }
  .specs-model { text-align: left !important; }
  .product-detail-grid { grid-template-columns: 1fr !important; }

  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }

  .footer-grid { grid-template-columns: 1fr !important; gap: 60px !important; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
