:root {
  color-scheme: dark;
  --bg: #060604;
  --bg-soft: #11110e;
  --ink: #fbfbf2;
  --muted: rgba(251, 251, 242, 0.72);
  --soft: rgba(251, 251, 242, 0.54);
  --line: rgba(251, 251, 242, 0.16);
  --panel: rgba(251, 251, 242, 0.055);
  --panel-strong: rgba(251, 251, 242, 0.1);
  --lime: #c7f12f;
  --lime-soft: rgba(199, 241, 47, 0.22);
  --ember: #f28a24;
  --silver: #d7d6ce;
  --charcoal: #1b1c19;
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 10%, rgba(242, 138, 36, 0.16), transparent 26rem),
    radial-gradient(circle at 18% 32%, rgba(199, 241, 47, 0.09), transparent 30rem),
    linear-gradient(180deg, #050504 0%, #0b0d09 34%, #050504 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, black, transparent 65%);
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9.2ch;
  margin-bottom: 1.1rem;
  font-size: clamp(6rem, 13vw, 14rem);
  line-height: 0.79;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5.6vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2.1vw, 2.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  background: var(--lime);
  color: #070706;
}

.skip-link:focus {
  top: 1rem;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
  padding: 0 3.2vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 4, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 13rem;
}

.brand-mark {
  width: 2.1rem;
  aspect-ratio: 1;
  display: inline-block;
  border: 2px solid var(--lime);
  transform: rotate(45deg);
  box-shadow:
    inset 0 0 0 0.42rem #060604,
    0 0 24px rgba(199, 241, 47, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--soft);
  font-size: 0.72rem;
}

.primary-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(0.65rem, 1.45vw, 1.25rem);
  color: var(--muted);
  font-size: 0.82rem;
}

.primary-nav a {
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.quote-link,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.quote-link,
.button-primary {
  background: var(--lime);
  color: #090908;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
}

.quote-link:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(5.2rem, 9vw, 9rem) 3.2vw clamp(4.4rem, 7vw, 7rem);
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98), rgba(5, 5, 4, 0.78) 34%, rgba(5, 5, 4, 0.16) 62%, rgba(5, 5, 4, 0.5)),
    radial-gradient(circle at 76% 38%, rgba(242, 138, 36, 0.28), transparent 26rem);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 20rem;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.95) contrast(1.14);
  transform: scale(1.01);
  animation: imageSettle 900ms ease both;
}

.hero-content {
  width: min(100%, 58rem);
  animation: heroLift 680ms ease both;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  width: min(100%, 38rem);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin: 2rem 0 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: min(100%, 52rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(199, 241, 47, 0.36);
  background: rgba(5, 5, 4, 0.58);
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-icon-rail {
  position: absolute;
  top: clamp(7rem, 16vw, 12rem);
  right: 3.2vw;
  z-index: 2;
  display: grid;
  gap: 0.9rem;
  animation: railIn 780ms ease 160ms both;
}

.hero-icon-rail span {
  width: clamp(3.4rem, 4.8vw, 4.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 241, 47, 0.48);
  background: rgba(5, 5, 4, 0.42);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 4, 0.8),
    0 0 34px rgba(199, 241, 47, 0.12);
}

.content-section,
.contact-section {
  width: min(calc(100% - 6.4vw), var(--max));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.muted-section {
  position: relative;
}

.muted-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: rgba(255, 255, 255, 0.028);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
}

.poster-section .section-heading {
  align-items: start;
}

.poster-section .section-heading h2 {
  max-width: 10.8ch;
}

.split-grid,
.export-grid,
.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-grid h3,
.export-grid h3,
.media-row h3,
.product-card h3 {
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: 0.02em;
}

.media-row {
  align-items: center;
}

.media-row.reverse img {
  order: 2;
}

.media-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.42);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-showcase h3 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  line-height: 0.92;
}

.product-showcase p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted);
}

.product-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(199, 241, 47, 0.2);
  box-shadow:
    0 2rem 6rem rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.tag-grid,
.use-list,
.check-list,
.quality-grid,
.spec-table,
.product-grid,
.faq-list,
.process-list {
  display: grid;
  gap: 0.85rem;
  background: transparent;
  border: 0;
}

.tag-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag-grid span,
.use-list p,
.check-list p,
.quality-grid span,
.spec-table div,
.product-card,
.faq-list details,
.process-list li,
.contact-options p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(7, 8, 6, 0.78);
}

.tag-grid span,
.use-list p,
.check-list p,
.quality-grid span {
  padding: 1rem;
  color: var(--muted);
}

.tag-grid span::before,
.use-list p::before,
.check-list p::before,
.quality-grid span::before {
  content: "";
  width: 0.42rem;
  aspect-ratio: 1;
  display: inline-block;
  margin-right: 0.56rem;
  vertical-align: 0.1em;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199, 241, 47, 0.35);
}

.use-list,
.check-list.two-col,
.quality-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  min-height: 25rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 241, 47, 0.42);
  background:
    linear-gradient(180deg, rgba(199, 241, 47, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(7, 8, 6, 0.86);
}

.product-card.featured {
  background:
    linear-gradient(180deg, rgba(199, 241, 47, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(7, 8, 6, 0.86);
  border-color: rgba(199, 241, 47, 0.34);
}

.product-size {
  margin-bottom: 1.6rem;
  color: var(--lime);
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
}

dl {
  margin: 2rem 0 0;
}

dt {
  color: var(--soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

dd {
  margin: 0.2rem 0 1rem;
  color: var(--muted);
}

.spec-table {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
  gap: 0.72rem;
}

.spec-table.compact {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.spec-table.vertical {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.spec-table div {
  min-height: 6.2rem;
  padding: 0.9rem;
}

.spec-table span,
.spec-table strong {
  display: block;
}

.spec-table span {
  color: var(--soft);
  font-size: 0.78rem;
}

.spec-table strong {
  margin-top: 0.42rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.brand-panel {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: #070706;
  background:
    linear-gradient(135deg, rgba(199, 241, 47, 0.96), rgba(242, 138, 36, 0.9)),
    var(--lime);
  box-shadow: 0 2rem 6rem rgba(199, 241, 47, 0.12);
}

.brand-lockup {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.buyer-reminder {
  margin: 2rem 0 0;
  padding: 1rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
}

.process-list span {
  color: var(--ember);
  font-weight: 900;
}

.process-list strong {
  font-size: 1.18rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.inline-cta {
  margin-top: 1.5rem;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: rgba(199, 241, 47, 0.34);
  background:
    linear-gradient(180deg, rgba(199, 241, 47, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 8, 6, 0.82);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list p {
  max-width: 52rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.contact-section {
  border-top: 1px solid var(--line);
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  background: transparent;
  border: 0;
}

.rfq-form label {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(7, 8, 6, 0.78);
  color: var(--soft);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.78rem;
  background: rgba(5, 5, 4, 0.86);
  color: var(--ink);
  font: inherit;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  outline: 1px solid var(--lime);
  border-color: var(--lime);
}

.form-wide {
  grid-column: 1 / -1;
}

.rfq-form button {
  width: fit-content;
  margin: 1rem;
  border: 0;
  cursor: pointer;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
  background: transparent;
  border: 0;
}

.contact-options p {
  padding: 1rem;
  color: var(--soft);
}

.contact-options strong {
  display: block;
  color: var(--ink);
}

.site-footer {
  width: min(calc(100% - 6.4vw), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 52rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  opacity: 1;
}

@keyframes heroLift {
  from {
    opacity: 1;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSettle {
  from {
    transform: scale(1.045);
    filter: saturate(0.78) contrast(1.03);
  }

  to {
    transform: scale(1.01);
    filter: saturate(0.95) contrast(1.14);
  }
}

@keyframes railIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    padding: 1rem 5vw;
  }

  .primary-nav {
    order: 3;
    justify-content: flex-start;
    flex-basis: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .hero-section {
    min-height: auto;
    padding: 4rem 5vw 5rem;
  }

  .hero-section::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 4, 0.98), rgba(5, 5, 4, 0.82) 58%, rgba(5, 5, 4, 0.34)),
      radial-gradient(circle at 76% 38%, rgba(242, 138, 36, 0.22), transparent 24rem);
  }

  .hero-icon-rail {
    right: 5vw;
  }

  .content-section,
  .contact-section,
  .site-footer {
    width: min(calc(100% - 10vw), var(--max));
  }

  .section-heading,
  .split-grid,
  .export-grid,
  .media-row,
  .media-row.reverse,
  .product-showcase,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .media-row.reverse img {
    order: 0;
  }

  .product-grid,
  .spec-table,
  .spec-table.compact,
  .process-list,
  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quote-link {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.65rem, 17vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .hero-section {
    padding-top: 3.4rem;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 4, 0.72), rgba(5, 5, 4, 0.98) 78%),
      linear-gradient(90deg, rgba(5, 5, 4, 0.8), rgba(5, 5, 4, 0.18));
  }

  .hero-media img {
    object-position: 62% top;
  }

  .hero-icon-rail {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.3rem;
  }

  .hero-icon-rail span {
    width: auto;
    min-height: 3.2rem;
  }

  .hero-points {
    display: none;
  }

  .product-showcase h3 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .tag-grid,
  .use-list,
  .check-list.two-col,
  .quality-grid,
  .product-grid,
  .spec-table,
  .spec-table.compact,
  .process-list,
  .contact-options,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
