/* ================================================================
   OpsMonsters — CSS
   Font: Helvetica, sans-serif
   Primary: #ff6041
   ================================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0; }


/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 48px;
}

/* Logo — left */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 26px;
  width: auto;
}

/* Nav — flows after logo */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 100px;
}

.navbar__link {
  font-family: 'Fragment Mono', monospace;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Left-to-right orange wipe on hover */
.navbar__wipe {
  position: relative;
  display: inline-block;
}
.navbar__wipe::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  color: #ff6041;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease;
  pointer-events: none;
}
.navbar__link:hover .navbar__wipe::after,
.navbar__contact:hover .navbar__wipe::after {
  clip-path: inset(0 0% 0 0);
}

/* Count badge — small bordered superscript */
.navbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 14px;
  background: #fff;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  line-height: 1;
  vertical-align: super;
  margin-left: 3px;
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: inherit;
}

/* CONTACT — right */
.navbar__contact {
  margin-left: auto;
  flex-shrink: 0;
  font-family: 'Fragment Mono', monospace;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hamburger — mobile only */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  margin-left: auto;
  flex-shrink: 0;
}
.navbar__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #000;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtitle */
.hero__subtitle-wrap {
  position: absolute;
  top: calc(56px + 56px);
  left: 33.33%;
  right: 60px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero__subtitle {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}

.hero__subtitle-dot {
  color: #ff6041;
}

/* Left decoration column — 3 items spread top to bottom */
.hero__decos {
  position: absolute;
  top: 56px; /* below navbar */
  bottom: 0;
  left: 60px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  pointer-events: none;
  user-select: none;
}

/* Single decoration item */
.hero__deco {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Marker dot + horizontal line on one row */
.hero__deco-lines {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 12px;
  overflow: hidden;
}

.hero__deco-marker {
  width: 5px;
  height: 5px;
  background: #fff;
  flex-shrink: 0;
}

.hero__deco-line {
  width: 22px;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

/* Code label below the line */
.hero__deco-text {
  font-family: 'Fragment Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

/* Big title */
.hero__title {
  position: absolute;
  left: 10vw;
  top: 34vh;
  z-index: 1;
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(60px, 9.5vw, 145px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
}
.hero__title-line   { display: block; }
.hero__title-orange { color: #ff6041; }
.hero__title-white  { color: #fff; }

/* Bottom-left content */
.hero__bottom {
  position: absolute;
  left: 10vw;
  bottom: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__desc {
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero__divider {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.hero__time {
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero__ctas {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Fragment Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero__btn--primary {
  background: #ff6041;
  color: #fff;
  border: 1px solid #ff6041;
}
.hero__btn--primary:hover {
  background: #e8502e;
  border-color: #e8502e;
}

.hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.hero__btn--ghost:hover {
  border-color: #fff;
}

.hero__btn-arrow {
  font-style: normal;
}

/* Right stat */
.hero__stat {
  position: absolute;
  top: calc(56px + 60px);
  right: 60px;
  z-index: 1;
  text-align: right;
}

.hero__stat-value {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 700;
  color: #ff6041;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__stat-label {
  font-family: 'Fragment Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 8px;
}

/* Right video preview */
.hero__preview {
  position: absolute;
  right: 60px;
  bottom: 24px;
  z-index: 1;
  width: 290px;
}

.hero__preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.hero__preview-label {
  font-family: 'Fragment Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__preview-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.hero__preview-year {
  font-family: 'Fragment Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.hero__preview-video {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.hero__preview-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__preview-footer {
  font-family: 'Fragment Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar__inner  { padding: 0 20px; height: 48px; }
  .navbar__logo img { height: 22px; }
  .navbar__nav    { display: none; }
  .navbar__contact { display: none; }
  .navbar__burger { display: flex; }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .navbar__inner { padding: 0 40px; }
  .navbar__nav   { gap: 36px; }
}
