:root {
  --black: #080909;
  --black-2: #111312;
  --black-3: #191c1a;
  --white: #ffffff;
  --paper: #f5f5f1;
  --paper-2: #ededE7;
  --ink: #151815;
  --muted: #626a63;
  --line: #ddddD2;
  --yellow: #ffc400;
  --yellow-2: #e2a900;
  --danger: #ffde59;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  --radius: 18px;
  color-scheme: light;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

p,
li,
small,
.button,
.site-nav a,
.quote-button,
.download-row,
.contact-card,
.site-footer {
  font-family: Arial, Helvetica, sans-serif;
}

code {
  background: rgba(255, 196, 0, 0.18);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 50;
  background: var(--yellow);
  color: #000;
  padding: 0.6rem 0.9rem;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 218px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--yellow);
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.quote-button,
.button.primary {
  background: var(--yellow);
  color: #080909;
}

.quote-button:hover,
.button.primary:hover,
.button.primary:focus {
  background: #ffdb4d;
  transform: translateY(-1px);
}

.button.outline {
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.button.outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.button.outline:hover,
.button.outline-light:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 0.55rem 0.8rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b0c0c;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.12) 42%);
}

.hero-bg::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 150px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  letter-spacing: -0.03em;
}

h1 span {
  display: block;
  color: var(--yellow);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(12, 13, 13, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 12px;
  align-items: center;
  padding: 20px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-features div:first-child {
  border-left: 0;
}

.line-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 196, 0, 0.6);
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.hero-features strong {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-features small {
  color: rgba(255, 255, 255, 0.64);
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.product-body p,
.product-body li,
.industry-layout p,
.project-card span,
.resources p,
.why p,
.contact-section p,
.site-footer p,
.legal p {
  color: var(--muted);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.product-card.is-featured {
  border-bottom: 4px solid var(--yellow);
}

.badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: #000;
  padding: 0.35rem 0.6rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-image {
  display: block;
  background: #141614;
  border-bottom: 3px solid var(--yellow);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.2s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-body {
  padding: 20px;
}

.product-tag {
  margin: 0 0 8px;
  color: var(--yellow-2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body p {
  margin-bottom: 14px;
}

.product-body ul {
  margin: 0 0 18px;
  padding-left: 1.05rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 1.45rem;
  color: #000;
}

.notice {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 6px solid var(--yellow);
  background: #fff8d8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.notice span {
  display: block;
  color: #615200;
}

.dark-section {
  background: var(--black);
  color: #fff;
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 46px;
  align-items: center;
}

.detail-image {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 4px solid var(--yellow);
  background: #171a18;
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.icon-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

.icon-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 900;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.industry-grid article {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36)),
    linear-gradient(135deg, #3c403d, #171817);
  color: #fff;
  border-bottom: 3px solid var(--yellow);
}

.industry-grid span {
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.industry-grid strong {
  text-transform: uppercase;
}

.light-panel {
  background: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  background: var(--paper);
  border: 1px solid var(--line);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.project-card div {
  padding: 18px;
}

.project-card p {
  margin: 0 0 6px;
  color: var(--yellow-2);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.resources {
  background: var(--paper-2);
}

.resource-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.download-card {
  background: #fff;
  border: 1px solid var(--line);
}

.download-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.download-row:last-child {
  border-bottom: 0;
}

.download-row span {
  display: inline-flex;
  justify-content: center;
  padding: 0.25rem 0.45rem;
  background: var(--black);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.download-row a {
  color: var(--yellow-2);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-grid article {
  text-align: center;
  padding: 26px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.why-grid .line-icon {
  margin-inline: auto;
  margin-bottom: 16px;
  grid-row: auto;
}

.contact-section {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.92), rgba(255, 196, 0, 0.78)),
    #ffc400;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: #090909;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.contact-card {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin-top: 0;
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #cfc8a8;
  background: #fffdf3;
  color: #111;
  border-radius: 0;
  padding: 0.82rem 0.9rem;
  font: 500 1rem Arial, Helvetica, sans-serif;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 3px solid rgba(0, 0, 0, 0.12);
  border-color: #111;
}

.form-note {
  margin: 0;
  color: #111 !important;
  font-size: 0.9rem;
}

.form-note a {
  font-weight: 900;
}

.site-footer {
  padding: 44px 0;
  background: #090909;
  color: #fff;
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer a {
  display: block;
  margin: 0.3rem 0;
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34)),
    var(--black);
}

.simple-card {
  max-width: 780px;
  padding: clamp(28px, 6vw, 56px);
  background: #fff;
  box-shadow: var(--shadow);
}

.simple-card h1 {
  margin-top: 28px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
}

.simple-card h2 {
  margin-top: 28px;
  font-size: 1.3rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--ink);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .quote-button {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-features,
  .product-grid,
  .detail-grid,
  .industry-layout,
  .project-grid,
  .resource-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 178px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 70px 0 120px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-features,
  .product-grid,
  .detail-grid,
  .industry-layout,
  .industry-grid,
  .project-grid,
  .resource-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-features div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 60px 0;
  }

  .product-footer,
  .download-row {
    grid-template-columns: 1fr;
  }
}
