:root {
  --green: #a8ff00;
  --green-soft: #c1ff45;
  --background: #050505;
  --panel: #101010;
  --panel-2: #151515;
  --text: #ffffff;
  --muted: #c8c8c8;
  --line: #292929;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

.hero-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 1536px;
  aspect-ratio: 3 / 2;
}
.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.hotspot {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  outline: 0 solid transparent;
  transition: box-shadow .18s ease, outline-color .18s ease, transform .18s ease;
}
.hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hotspot:hover, .hotspot:focus-visible {
  outline: 2px solid rgba(168, 255, 0, .9);
  box-shadow: 0 0 26px rgba(168, 255, 0, .7);
  transform: translateY(-1px);
}
.nav-home     { left: 29.8%; top: 2.0%; width: 5.4%; height: 5.8%; }
.nav-about    { left: 36.0%; top: 2.0%; width: 7.2%; height: 5.8%; }
.nav-machines { left: 44.6%; top: 2.0%; width: 9.0%; height: 5.8%; }
.nav-partner  { left: 54.4%; top: 2.0%; width: 10.5%; height: 5.8%; }
.nav-contact  { left: 65.2%; top: 2.0%; width: 6.2%; height: 5.8%; }
.top-cta      { left: 84.5%; top: 2.0%; width: 12.4%; height: 5.5%; }
.main-cta     { left: 4.2%; top: 74.1%; width: 20.8%; height: 7.0%; }
.learn-more   { left: 27.3%; top: 74.7%; width: 9.1%; height: 6.1%; }


.mobile-hero-actions {
  display: none;
}
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 15px 24px;
  color: var(--green-soft);
  font-weight: 900;
  text-decoration: none;
}

.content-section {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.content-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.content-section > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .78rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 42px 0 32px;
}
.feature-grid article {
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-2), #0b0b0b);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.feature-grid strong { color: var(--green-soft); font-size: 1.05rem; }
.feature-grid p { color: var(--muted); line-height: 1.6; }
.primary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 10px;
  padding: 16px 24px;
  background: var(--green);
  color: #000;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(168,255,0,.17);
}
.primary-button:hover { background: var(--green-soft); }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 28px 0; }
.contact-links a { color: var(--green-soft); font-weight: 800; text-decoration: none; }
footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 54px;
  color: #8f8f8f;
  font-size: .9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.is-open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  background: #0c0c0c;
  border: 1px solid #303030;
  border-radius: 18px;
  box-shadow: 0 0 80px rgba(168,255,0,.14);
}
.modal-card h2 { margin: 0 45px 10px 0; font-size: clamp(1.8rem, 4vw, 3rem); }
.modal-intro { color: var(--muted); line-height: 1.6; }
.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid #333;
  border-radius: 50%;
  background: #151515;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
form { display: grid; gap: 17px; margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
label { display: grid; gap: 8px; font-weight: 700; font-size: .92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid #353535;
  border-radius: 9px;
  padding: 14px;
  background: #141414;
  color: var(--text);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--green); outline-offset: 1px; }
.full-width { width: 100%; }
.hidden-field { position: absolute; left: -9999px; }
.form-contact { color: #999; line-height: 1.6; font-size: .9rem; }
.form-contact a { color: var(--green-soft); }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero-shell {
    min-height: auto;
    display: block;
    overflow: hidden;
  }
  .hero-image-wrap {
    width: 100%;
    min-width: 0;
    max-width: none;
    aspect-ratio: 3 / 2;
  }
  .hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-image-wrap .hotspot { display: none; }
  .mobile-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    padding: 16px 18px 24px;
    background: #000;
  }
  .mobile-hero-actions .primary-button,
  .mobile-hero-actions .secondary-button {
    width: 100%;
    min-height: 52px;
    padding: 14px 12px;
    text-align: center;
  }
  .content-section {
    width: min(100% - 32px, 1080px);
    padding: 64px 0;
  }
  .feature-grid, .form-row { grid-template-columns: 1fr; }
  .feature-grid article { min-height: auto; }
  .contact-links { flex-direction: column; gap: 14px; }
  .contact-links a { overflow-wrap: anywhere; }
  .modal { padding: 10px; }
  .modal-card { padding: 26px 20px; max-height: calc(100dvh - 20px); }
}

@media (max-width: 420px) {
  .mobile-hero-actions { grid-template-columns: 1fr; }
  .content-section h2 { font-size: 2.25rem; }
}


.inline-success {
  padding: 24px 4px 8px;
  text-align: center;
}
.inline-success h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}
.inline-success p:not(.eyebrow) {
  margin: 0 auto 24px;
  max-width: 560px;
  color: #d6d6d6;
  line-height: 1.6;
}
