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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background:
    radial-gradient(circle at top, rgba(241,196,15,0.10), transparent 34%),
    linear-gradient(180deg, #1a1400 0%, #120e00 100%);
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
}

.caution-tape {
  background: repeating-linear-gradient(
    -45deg,
    #f1c40f,
    #f1c40f 24px,
    #1a1400 24px,
    #1a1400 48px
  );
  height: 28px;
  width: 100%;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 16, 0, 0.96);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #f1c40f;
  backdrop-filter: blur(8px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #4d4300;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f1c40f;
  margin: 4px 0;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f1c40f;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  transition: color .15s;
}

.nav-links a:hover { color: #f1c40f; }

.nav-links a:focus-visible,
.btn:focus-visible,
footer a:focus-visible,
.nav-brand:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #f1c40f;
  outline-offset: 3px;
}

.nav-cta {
  background: #f1c40f !important;
  color: #1a1400 !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: #ffd700 !important; color: #1a1400 !important; }

.hero {
  display: block;
  padding: 72px 48px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1400;
}

::-webkit-scrollbar-thumb {
  background: #f1c40f;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffd700;
}

scrollbar-color: #f1c40f #1a1400;
scrollbar-width: thin;

.site-tag::before {
  content: '⚠';
  font-size: 14px;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h1 .yellow { color: #f1c40f; }

h1 .outline {
  -webkit-text-stroke: 2px #f1c40f;
  color: transparent;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #aaa;
  max-width: 560px;
  margin-bottom: 40px;
  border-left: 4px solid #f1c40f;
  padding-left: 20px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
}

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

.btn-primary {
  background: #f1c40f;
  color: #1a1400;
}

.btn-primary:hover { background: #ffd700; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #f1c40f;
  border: 2px solid #f1c40f;
}

.btn-outline:hover { background: rgba(241,196,15,.1); transform: translateY(-2px); }

.tape-divider {
  background: repeating-linear-gradient(
    -45deg,
    #f1c40f,
    #f1c40f 20px,
    #1a1400 20px,
    #1a1400 40px
  );
  height: 20px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.reveal-show {
  opacity: 1;
  transform: translateY(0);
}

.section {
  background: #111000;
  padding: 64px 48px;
}

.section-alt {
  background: #0d0b00;
  padding: 64px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f1c40f;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2a2200;
}

.tickets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #2a2200;
}

.ticket {
  background: #111000;
  padding: 28px;
  position: relative;
  border-top: 3px solid transparent;
  transition: border-color .2s, transform .2s;
}

.ticket:hover { border-color: #f1c40f; transform: translateY(-2px); }

.ticket-id {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #f1c40f;
  margin-bottom: 12px;
}

.ticket h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.ticket p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.ticket-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: rgba(241,196,15,0.04);
  line-height: 1;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #2a2200;
}

.job {
  background: #111000;
  padding: 28px;
  border-top: 3px solid transparent;
  transition: border-color .2s, transform .2s;
}

.job:hover { border-color: #f1c40f; transform: translateY(-2px); }

.job-type {
  display: inline-block;
  background: #f1c40f;
  color: #1a1400;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 2px 10px;
  margin-bottom: 12px;
}

.job-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.job-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.bottom-actions {
  margin-top: 32px;
}

.code-block {
  background: #0a0900;
  border-left: 4px solid #f1c40f;
  padding: 24px 28px;
  font-family: 'SF Mono', 'Roboto Mono', Menlo, monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 32px;
  overflow-x: auto;
  white-space: pre;
}

.code-block code {
  font: inherit;
}

.code-block .dim { color: #444; }
.code-block .hi { color: #f1c40f; }
.code-block .green { color: #33d6a6; }

footer {
  background: #0a0900;
  border-top: 3px solid #f1c40f;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #444;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer a { color: #666; text-decoration: none; }
footer a:hover { color: #f1c40f; }

@media (max-width: 600px) {
  nav {
    padding: 14px 20px;
    position: sticky;
  }
  .hero { padding: 48px 20px 40px; }
  .section, .section-alt { padding: 48px 20px; }
  footer { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    width: min(260px, calc(100vw - 40px));
    background: #111000;
    border: 1px solid #3a3200;
    border-top: 3px solid #f1c40f;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    flex-direction: column;
    gap: 2px;
    list-style: none;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 6px;
  }
  .nav-links .nav-cta {
    text-align: center;
  }
  .jobs { grid-template-columns: 1fr; }
  .tickets { grid-template-columns: 1fr; }
}



.hero-note {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-links {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}