:root {
  --black: #08090a;
  --graphite: #121416;
  --steel: #24282c;
  --steel-2: #343a40;
  --zinc: #b5b8b8;
  --paper: #f3f2ef;
  --white: #ffffff;
  --ink: #171717;
  --orange: #f47d00;
  --red: #f04e2a;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(18, 20, 22, 0.14);
  --max: 1500px;
  --gutter: clamp(28px, 5vw, 86px);
  --radius: 8px;
  --shadow: 0 28px 90px rgba(8, 9, 10, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.industrial-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.industrial-nav,
.hero-layout,
.proof-row,
.section,
.contact-layout,
.footer-layout,
.footer-bottom,
.single-article,
.legal-page,
.contact-strip {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.industrial-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: min(230px, 30vw);
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  padding: 7px 10px;
  border: 1px solid rgba(244, 125, 0, 0.5);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(244, 125, 0, 0.16);
  outline: none;
}

.return-link {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-industrial {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 30%, rgba(244, 125, 0, 0.18), transparent 34%),
    linear-gradient(116deg, var(--black) 0 46%, #191b1e 46% 100%);
}

.technical-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 86%);
  pointer-events: none;
}

.hero-industrial::after {
  content: "INDUSTRIAL";
  position: absolute;
  right: -1vw;
  bottom: -3.5vw;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(6rem, 13vw, 17rem);
  font-weight: 900;
  line-height: 0.82;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: min(820px, calc(100vh - 86px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
  padding: clamp(54px, 7vw, 94px) 0 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-copy > * + * {
  margin-top: 18px;
}

.hero-copy {
  max-width: 860px;
  min-width: 0;
}

.hero-copy h1 {
  max-width: 840px;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  line-height: 0.98;
  hyphens: auto;
  overflow-wrap: break-word;
  text-transform: none;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.55vw, 1.36rem);
  line-height: 1.55;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: var(--black);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: clamp(420px, 36vw, 620px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 54%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72));
}

.hero-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: rgba(8, 9, 10, 0.74);
  backdrop-filter: blur(10px);
}

.hero-visual figcaption strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-visual figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.proof-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 10, 0.42);
}

.proof-row span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-align: center;
}

.proof-row span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(70px, 9vw, 126px) 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92)),
    var(--paper);
  padding-bottom: clamp(44px, 5vw, 78px);
}

.section-head {
  max-width: 860px;
}

.section-head.compact {
  max-width: 720px;
}

.section-head > * + * {
  margin-top: 18px;
}

.section-head h2 {
  color: var(--ink);
  max-width: 960px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  overflow-wrap: break-word;
}

.section-head p {
  max-width: 780px;
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.capability-card {
  position: relative;
  min-height: 285px;
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-top: 5px solid var(--steel);
  background: var(--white);
  box-shadow: 0 18px 58px rgba(18, 20, 22, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.capability-card:nth-child(3n + 1) {
  border-top-color: var(--orange);
}

.capability-card:nth-child(3n + 2) {
  border-top-color: var(--steel-2);
}

.capability-card:nth-child(3n + 3) {
  border-top-color: var(--red);
}

.capability-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(18, 20, 22, 0.08);
  transform: rotate(26deg);
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 125, 0, 0.34);
  box-shadow: 0 28px 74px rgba(18, 20, 22, 0.12);
}

.capability-icon {
  width: 54px;
  height: 54px;
  padding: 10px;
  border: 1px solid rgba(244, 125, 0, 0.34);
  border-radius: 8px;
  background: rgba(244, 125, 0, 0.08);
  color: var(--orange);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card h3 {
  margin-top: 24px;
  font-size: clamp(1.28rem, 2vw, 1.82rem);
  overflow-wrap: break-word;
}

.capability-card p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(23, 23, 23, 0.68);
}

.application-section {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  color: var(--white);
  background:
    linear-gradient(112deg, var(--black) 0 54%, var(--steel) 54% 100%);
}

.application-layout,
.process-section > .section-head,
.process-section > .process-track {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.application-section .eyebrow,
.process-section .eyebrow {
  color: var(--orange);
}

.application-section h2,
.process-section h2 {
  color: var(--white);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.application-section .section-head h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
}

.application-list {
  display: grid;
  gap: 14px;
}

.application-list article {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.application-list strong {
  display: block;
  font-size: 1.28rem;
}

.application-list p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.process-section .section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-track article {
  min-height: 280px;
  padding: 28px;
  background: rgba(18, 20, 22, 0.96);
}

.process-track span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-track h3 {
  margin-top: 42px;
  color: var(--white);
  font-size: 1.42rem;
}

.process-track p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 125, 0, 0.2), transparent 28%),
    var(--black);
  padding: clamp(70px, 9vw, 128px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(40px, 6vw, 102px);
  align-items: start;
}

.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.contact-copy p {
  margin-top: 18px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-quick {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-quick a {
  width: fit-content;
  color: var(--orange);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full,
.form-notice,
.contact-form button {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(8, 9, 10, 0.48);
  color: var(--white);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-notice {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.form-notice.success {
  border-color: rgba(244, 125, 0, 0.62);
}

.form-notice.error {
  border-color: rgba(240, 78, 42, 0.64);
}

.industrial-footer {
  color: var(--white);
  background: var(--black);
  padding: 44px 0 26px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.footer-layout img {
  width: min(220px, 100%);
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
}

.footer-layout p {
  max-width: 380px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-layout nav,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-layout a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-layout a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contact strong {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.compact-footer {
  padding-top: 28px;
}

.compact-footer .footer-bottom {
  margin-top: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.empty-state {
  width: min(var(--max), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--dark-line);
  background: var(--white);
}

.empty-state h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.empty-state p {
  margin-top: 12px;
  color: rgba(23, 23, 23, 0.7);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  margin-bottom: clamp(56px, 8vw, 96px);
  color: var(--white);
  background: var(--graphite);
}

.contact-strip h2 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

.contact-strip p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.single-article,
.legal-page {
  padding: clamp(62px, 8vw, 112px) 0;
}

.single-hero,
.legal-page > .eyebrow,
.legal-page > h1,
.legal-content,
.single-content,
.single-image {
  max-width: 900px;
}

.single-hero h1,
.legal-page h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
}

.single-hero p {
  margin-top: 14px;
  color: rgba(23, 23, 23, 0.64);
  font-weight: 800;
}

.single-image {
  margin: 34px 0;
  border: 1px solid var(--dark-line);
}

.single-image img {
  width: 100%;
  height: auto;
}

.single-content,
.legal-content {
  margin-top: 34px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--dark-line);
  background: var(--white);
  box-shadow: 0 22px 70px rgba(18, 20, 22, 0.07);
}

.single-content > * + *,
.legal-content > * + * {
  margin-top: 16px;
}

.single-content p,
.single-content li,
.legal-content p,
.legal-content li {
  color: rgba(23, 23, 23, 0.78);
  font-size: 1rem;
  line-height: 1.76;
}

.single-content h2,
.legal-content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.single-content h2::before,
.legal-content h2::before {
  content: "";
  flex: 0 0 30px;
  height: 2px;
  background: var(--orange);
}

.single-content ul,
.legal-content ul {
  padding: 20px 24px;
  border: 1px solid var(--dark-line);
  background: #f7f5f0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (min-width: 1700px) {
  :root {
    --max: 1660px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(680px, 1.06fr);
  }

  .hero-copy h1 {
    max-width: 920px;
    font-size: 6.2rem;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .application-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .capability-grid,
  .process-track,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  :root {
    --gutter: 28px;
  }

  .industrial-nav {
    min-height: 76px;
  }

  .brand img {
    width: 176px;
    max-height: 52px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 10, 0.98);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 4.8rem);
  }

  .hero-visual {
    min-height: 340px;
    aspect-ratio: 1.18;
  }

  .capability-grid,
  .process-track,
  .footer-layout,
  .proof-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-track article {
    min-height: 210px;
  }

  .contact-strip,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 58px 0;
  }

  .proof-row span {
    min-height: 68px;
  }

  .contact-form,
  .single-content,
  .legal-content {
    padding: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

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

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