:root {
  --green: #2f8f3a;
  --deep-green: #006030;
  --leaf: #74b84a;
  --heat: #e85a24;
  --heat-dark: #b8421f;
  --ink: #101312;
  --charcoal: #1f2524;
  --steel: #737b78;
  --line: #d9ded7;
  --paper: #f7faf3;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 18, 15, 0.14);
  --radius: 8px;
  --section: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(247, 250, 243, 0.91);
  border-bottom: 1px solid rgba(16, 19, 18, 0.09);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--deep-green);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--steel);
  font-size: 0.77rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--deep-green);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 132px clamp(20px, 5vw, 64px) 132px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/orc-machine-front.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 12, 0.86) 0%, rgba(10, 14, 12, 0.66) 48%, rgba(10, 14, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 14, 12, 0.54), rgba(10, 14, 12, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin-top: 6vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--heat);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.orc-3d-copy h2,
.media-copy h2 {
  margin: 0;
  line-height: 1.04;
  font-weight: 820;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
  max-width: 900px;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.section-heading-row,
.contact-details {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 40px rgba(0, 96, 48, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 12, 10, 0.62);
  backdrop-filter: blur(14px);
}

.proof-strip div {
  padding: 17px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.34rem);
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  width: var(--section);
  margin-inline: auto;
  padding: 96px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section h2,
.media-copy h2,
.orc-3d-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.section p,
.media-copy p,
.orc-3d-copy p {
  color: #4f5855;
  font-size: 1rem;
}

.metric-grid,
.feature-grid,
.product-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid article,
.problem-grid article,
.feature-grid article,
.product-card,
.industry-list article,
.case-stack article,
.resource-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(14, 20, 17, 0.05);
}

.metric-grid article,
.feature-grid article,
.resource-grid article {
  padding: 22px;
}

.metric-grid span {
  color: var(--heat);
  font-weight: 850;
}

h3 {
  margin: 0 0 8px;
  color: var(--charcoal);
  font-size: 1.15rem;
  line-height: 1.18;
}

.metric-grid p,
.feature-grid p,
.product-card p,
.industry-list p,
.case-stack p,
.resource-grid p {
  margin: 0;
  color: #5d6662;
}

.problem-band {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.problem-band h2 {
  max-width: 980px;
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.problem-grid article {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.problem-grid h3 {
  color: var(--white);
}

.problem-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.technology-copy {
  align-items: center;
}

.cycle-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cycle;
}

.cycle-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: cycle;
}

.cycle-steps li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--deep-green);
  border-radius: 50%;
  font-weight: 850;
  content: counter(cycle);
  grid-row: span 2;
}

.cycle-steps strong,
.cycle-steps span {
  display: block;
}

.cycle-steps span {
  color: #65706c;
}

.orc-3d-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #0a0f0d;
}

#orc-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orc-3d-copy {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 40px));
  margin-left: max(20px, calc((100% - 1180px) / 2));
  padding-top: 110px;
}

.orc-3d-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.flow-legend {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 34px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.flow-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.flow-legend i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.flow-legend .hot {
  background: var(--heat);
}

.flow-legend .power {
  background: #45e077;
}

.flow-legend .fluid {
  background: #87bfff;
}

.section-heading-row {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading-row h2 {
  width: min(690px, 100%);
}

.section-heading-row p {
  width: min(380px, 100%);
  margin: 0;
}

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

.product-card {
  padding: 26px;
}

.product-card > span,
.case-main span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--heat);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card dl {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
}

.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.product-card dt {
  color: var(--steel);
}

.product-card dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 750;
  text-align: right;
}

.featured-product {
  border-color: rgba(47, 143, 58, 0.36);
  background: #f1f8ed;
}

.media-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
  padding: 80px max(20px, calc((100% - 1180px) / 2));
  background: #e9eee8;
}

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

.media-grid img,
.media-grid video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.industry-list article {
  padding: 20px;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}

.case-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.case-main img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.case-main div {
  padding: clamp(24px, 5vw, 44px);
}

.case-stack {
  display: grid;
  gap: 14px;
}

.case-stack article {
  padding: 24px;
}

.calculator-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--white);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: start;
}

.calculator,
.lead-form {
  display: grid;
  gap: 16px;
}

.calculator {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd5cf;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 143, 58, 0.18);
  border-color: var(--green);
}

input[type="range"] {
  accent-color: var(--green);
  padding-inline: 0;
}

.range-value {
  color: var(--steel);
  font-weight: 650;
}

.calculator-result {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 8px;
}

.calculator-result div {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.calculator-result span,
.calculator-result strong {
  display: block;
}

.calculator-result span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.calculator-result strong {
  color: var(--white);
  margin-top: 4px;
  font-size: 1rem;
}

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

.contact-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: var(--charcoal);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  color: var(--white);
}

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-panel .contact-details {
  display: grid;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details a {
  color: var(--leaf);
  font-weight: 800;
}

.lead-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  color: rgba(255, 255, 255, 0.88);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 42px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #070a09;
}

.site-footer img {
  width: 74px;
  height: auto;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

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

.footer-trust {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .proof-strip,
  .split,
  .media-band,
  .case-layout,
  .calculator-layout,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 56px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .problem-grid,
  .product-grid,
  .industry-list,
  .resource-grid,
  .calculator-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --section: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 48px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 30px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip,
  .metric-grid,
  .feature-grid,
  .product-grid,
  .problem-grid,
  .industry-list,
  .resource-grid,
  .calculator,
  .calculator-result,
  .media-grid,
  .case-main {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .problem-band,
  .calculator-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section h2,
  .media-copy h2,
  .orc-3d-copy h2 {
    font-size: 2.15rem;
  }

  .orc-3d-section {
    min-height: 660px;
  }

  .orc-3d-copy {
    padding-top: 72px;
  }

  .flow-legend {
    left: 20px;
    right: 20px;
  }

  .case-main img {
    min-height: 240px;
  }
}

/* Multi-page company website structure */
.site-nav {
  gap: clamp(10px, 1.4vw, 18px);
  font-size: 0.9rem;
}

.site-nav .active {
  color: var(--deep-green);
}

.home-hero {
  position: relative;
  padding-top: 70px;
  background: var(--ink);
}

.hero-slide {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.home-hero .hero-media {
  position: absolute;
  inset: 0;
  background-image: none;
  background-color: #06140d;
  background-position: center;
  background-size: cover;
}

.home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100% - 1180px) / 2));
  padding-top: 150px;
}

.home-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.95;
}

.home-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.home-pillars {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -88px auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-pillars article {
  min-height: 176px;
  padding: 26px;
  color: var(--white);
  background: var(--deep-green);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.home-pillars article:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.home-pillars article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-right: 0;
  background: var(--heat);
}

.home-pillars span,
.home-pillars strong {
  display: block;
}

.home-pillars span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 850;
}

.home-pillars strong {
  margin-top: 18px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.home-pillars p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 76px;
  padding-bottom: 42px;
}

.experience-strip div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.experience-strip strong,
.experience-strip span {
  display: block;
}

.experience-strip strong {
  color: var(--deep-green);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.experience-strip span {
  margin-top: 8px;
  color: var(--steel);
}

.intro-block {
  padding-top: 54px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-green);
  font-weight: 850;
}

.text-link::after {
  content: ">";
}

.text-link.light {
  color: var(--white);
}

.link-card {
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover,
.link-card:focus-visible,
.resource-card:hover,
.resource-card:focus-visible,
.case-stack a:hover,
.case-stack a:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.solution-finder {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 13, 11, 0.92), rgba(8, 13, 11, 0.72)),
    url("assets/images/orc-machine-side.jpeg") center / cover;
}

.solution-finder .section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.solution-finder h2 {
  color: var(--white);
}

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

.solution-grid a {
  min-height: 96px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
  transition: background 160ms ease, transform 160ms ease;
}

.solution-grid a:hover,
.solution-grid a:focus-visible {
  background: rgba(47, 143, 58, 0.72);
  transform: translateY(-2px);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.highlight-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(11, 16, 13, 0.06);
}

.highlight-grid img,
.highlight-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.highlight-grid div {
  padding: 22px;
}

.highlight-grid span,
.resource-card span,
.reference-grid span,
.product-detail span,
.mission-grid span,
.service-grid span,
.resource-hub span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--heat);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.case-teaser > div:first-child p:not(.section-kicker) {
  color: #56605c;
}

.case-stack a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.case-stack strong,
.case-stack span {
  display: block;
}

.case-stack span {
  margin-top: 5px;
  color: var(--steel);
}

.news-strip {
  padding-top: 52px;
}

.resource-card {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 64px max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--deep-green);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.cta-band .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  padding: 170px max(20px, calc((100% - 1180px) / 2)) 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 14, 12, 0.9), rgba(9, 14, 12, 0.64) 48%, rgba(9, 14, 12, 0.18)),
    linear-gradient(0deg, rgba(9, 14, 12, 0.55), rgba(9, 14, 12, 0));
}

.page-hero > div {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.breadcrumb {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.breadcrumb a {
  color: var(--white);
}

.company-hero::before {
  background-image: url("assets/images/orc-machine-angle.jpeg");
}

.technology-hero::before,
.products-hero::before {
  background-image: url("assets/images/orc-machine-side.jpeg");
}

.solutions-hero::before {
  background-image: url("assets/images/orc-machine-rear.jpeg");
}

.services-hero::before,
.references-hero::before,
.resources-hero::before,
.contact-hero::before {
  background-image: url("assets/images/orc-machine-front.jpeg");
}

.story-section {
  padding-bottom: 50px;
}

.mission-grid,
.product-detail-grid,
.service-grid,
.resource-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-grid article,
.product-detail,
.service-grid article,
.resource-hub article,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(11, 16, 13, 0.05);
}

.product-detail h2,
.service-grid h2,
.resource-hub h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.product-detail ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #56605c;
}

.dark-card {
  color: var(--white);
  background: var(--charcoal);
}

.dark-card h2,
.dark-card p,
.dark-card li {
  color: var(--white);
}

.media-band.compact {
  margin-top: 34px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--white);
  background: var(--charcoal);
}

td {
  color: #4f5855;
}

tr:last-child td {
  border-bottom: 0;
}

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

.solution-detail-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-detail-grid h2 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.08;
}

.solution-detail-grid p {
  color: #58615e;
}

.solution-detail-grid a {
  color: var(--deep-green);
  font-weight: 850;
}

.process-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: step;
}

.timeline li::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--deep-green);
  border-radius: 50%;
  content: counter(step);
  font-weight: 850;
  grid-row: span 2;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  color: #56605c;
}

.service-grid article span {
  color: var(--deep-green);
}

.service-cta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

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

.checklist span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #4f5855;
  font-weight: 750;
}

.reference-grid {
  display: grid;
  gap: 20px;
}

.reference-grid article {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.reference-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.reference-grid div {
  padding: clamp(24px, 5vw, 46px);
}

.reference-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.reference-grid a {
  display: inline-block;
  margin-top: 18px;
  color: var(--deep-green);
  font-weight: 850;
}

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

.calculator-section.standalone {
  padding-inline: 0;
  background: transparent;
}

.contact-section-page {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-card .contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-card a {
  color: var(--deep-green);
  font-weight: 850;
}

.light-form {
  border-color: var(--line);
  background: var(--white);
}

.light-form label {
  color: var(--charcoal);
}

.light-form .form-note {
  color: var(--steel);
}

@media (max-width: 1180px) {
  .site-nav {
    font-size: 0.82rem;
    gap: 10px;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    font-size: 0.95rem;
  }

  .home-pillars,
  .experience-strip,
  .highlight-grid,
  .case-teaser,
  .mission-grid,
  .product-detail-grid,
  .process-band,
  .service-grid,
  .service-cta,
  .reference-grid article,
  .resource-hub,
  .contact-section-page {
    grid-template-columns: 1fr;
  }

  .home-pillars article,
  .home-pillars article:first-child,
  .home-pillars article:last-child {
    border-radius: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-pillars article:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .home-pillars article:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: 0;
  }

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

@media (max-width: 680px) {
  .hero-slide {
    min-height: 660px;
  }

  .home-hero .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 112px;
  }

  .home-hero h1 {
    font-size: 3.4rem;
  }

  .home-pillars {
    width: calc(100% - 28px);
    margin-top: -48px;
  }

  .experience-strip {
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .page-hero {
    min-height: 500px;
    padding: 126px 16px 58px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .solution-grid,
  .solution-detail-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .reference-grid img {
    min-height: 240px;
  }

  .cta-band {
    display: grid;
  }
}

/* Visual refinement pass: stronger readability, calmer scale, richer business feel */
:root {
  --font-body: "Segoe UI Variable Text", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --soft-green: #edf7ee;
  --mist: #eef2ec;
  --deep-ink: #0b100e;
}

body {
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, #f8fbf5 0%, #eef3eb 52%, #f8fbf5 100%);
  font-size: 16.5px;
}

h1,
h2,
h3,
.brand strong,
.button,
.site-nav,
.home-pillars strong,
.experience-strip strong {
  font-family: var(--font-display);
}

.site-header {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(250, 252, 248, 0.94);
}

.site-nav {
  color: #18201d;
  font-weight: 760;
}

.site-nav .nav-cta {
  padding: 11px 18px;
  box-shadow: 0 10px 26px rgba(0, 96, 48, 0.2);
}

.home-hero {
  background: var(--deep-ink);
}

.hero-slide {
  min-height: 760px;
}

.home-hero .hero-media {
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.02);
}

.home-hero .hero-overlay,
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 12, 10, 0.92) 0%, rgba(7, 12, 10, 0.74) 42%, rgba(7, 12, 10, 0.36) 74%, rgba(7, 12, 10, 0.56) 100%),
    radial-gradient(circle at 72% 42%, rgba(232, 90, 36, 0.2), transparent 30%),
    linear-gradient(0deg, rgba(7, 12, 10, 0.68), rgba(7, 12, 10, 0.02) 48%);
}

.home-hero .hero-content {
  width: min(690px, calc(100% - 40px));
  padding-top: 142px;
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 6.7vw, 5.9rem);
  line-height: 1.01;
  font-weight: 780;
}

.home-hero .hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.eyebrow,
.section-kicker {
  color: var(--heat);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.button {
  min-height: 52px;
  padding: 14px 20px;
  font-weight: 850;
}

.button-primary {
  background: #28983e;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-insight-panel {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 130px;
  width: min(370px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 16, 14, 0.74);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-topline,
.flow-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-topline {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-topline strong {
  color: #93e0a2;
}

.flow-card {
  justify-content: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.flow-card + .flow-card {
  margin-top: 10px;
}

.flow-card span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.hot-flow span {
  background: var(--heat);
}

.turbine-flow span {
  background: #6b7470;
}

.power-flow span {
  background: var(--green);
}

.flow-card strong,
.flow-card p {
  display: block;
  margin: 0;
}

.flow-card strong {
  color: var(--white);
  font-size: 1rem;
}

.flow-card p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-pillars {
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.home-pillars article {
  min-height: 158px;
  padding: 24px 26px;
  background: rgba(0, 96, 48, 0.94);
}

.home-pillars article:last-child {
  background: #e95a25;
}

.home-pillars strong {
  margin-top: 12px;
  font-size: 1.22rem;
}

.home-pillars p {
  line-height: 1.58;
}

.experience-strip div {
  background: rgba(255, 255, 255, 0.82);
}

.section h2,
.media-copy h2,
.orc-3d-copy h2,
.page-hero h1,
.cta-band h2 {
  color: #121817;
  font-weight: 760;
}

.page-hero h1,
.orc-3d-copy h2 {
  color: var(--white);
}

.section h2 {
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.08;
}

.section p,
.media-copy p,
.orc-3d-copy p,
.page-hero p:not(.eyebrow):not(.breadcrumb) {
  line-height: 1.74;
}

.product-card,
.resource-card,
.metric-grid article,
.feature-grid article,
.mission-grid article,
.product-detail,
.service-grid article,
.resource-hub article,
.contact-card,
.solution-detail-grid article {
  box-shadow: 0 16px 46px rgba(18, 24, 21, 0.06);
}

.product-card h3,
.resource-card h3,
.highlight-grid h3,
.solution-detail-grid h2 {
  font-weight: 760;
}

.highlight-grid article {
  background: #ffffff;
}

.highlight-grid div {
  padding: 24px 24px 28px;
}

.solution-finder {
  background:
    linear-gradient(90deg, rgba(8, 13, 11, 0.92), rgba(8, 13, 11, 0.75)),
    url("assets/images/orc-machine-side.jpeg") center / cover;
}

.solution-grid a {
  min-height: 112px;
  display: flex;
  align-items: end;
  font-size: 1.05rem;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.9rem, 5.8vw, 5.1rem);
  line-height: 1.03;
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.resource-hub article,
.service-grid article,
.product-detail {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-hub article:hover,
.service-grid article:hover,
.product-detail:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

@media (max-width: 1180px) {
  .hero-insight-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(680px, calc(100% - 40px));
    margin: 34px 0 120px max(20px, calc((100% - 1180px) / 2));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

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

  .home-hero .hero-content {
    padding-top: 118px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.9rem);
    line-height: 1.03;
  }

  .home-hero .hero-content p:not(.eyebrow) {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .hero-insight-panel {
    width: calc(100% - 32px);
    margin: 30px 16px 92px;
  }

  .home-pillars {
    margin-top: 0;
  }

  .section h2,
  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .solution-grid a {
    min-height: 82px;
  }
}

/* Clean v0-inspired redesign pass */
:root {
  --clean-bg: #f8fbf7;
  --clean-card: #ffffff;
  --clean-border: #dfe7dd;
  --clean-text: #102018;
  --clean-muted: #5d6b62;
  --clean-green: #16823a;
  --clean-green-2: #0b6b31;
  --clean-orange: #ee6a2c;
}

body {
  color: var(--clean-text);
  background: var(--clean-bg);
  font-size: 16px;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 32, 24, 0.08);
  box-shadow: 0 10px 35px rgba(16, 32, 24, 0.06);
}

.brand strong {
  color: var(--clean-green-2);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--clean-muted);
}

.site-nav {
  color: #203028;
  font-size: 0.88rem;
  font-weight: 720;
}

.site-nav .nav-cta {
  background: var(--clean-green-2);
  border-radius: 8px;
}

.home-hero {
  background: var(--clean-bg);
}

.hero-slide {
  min-height: 700px;
  background: #0d1712;
}

.home-hero .hero-media {
  background-position: center right;
  filter: saturate(0.9) contrast(1.02);
}

.home-hero .hero-overlay,
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 15, 10, 0.88) 0%, rgba(4, 15, 10, 0.7) 42%, rgba(4, 15, 10, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 15, 10, 0.72), rgba(4, 15, 10, 0.04) 58%);
}

.home-hero .hero-content {
  width: min(690px, calc(100% - 40px));
  padding-top: 150px;
}

.home-hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 5.8vw, 5.05rem);
  line-height: 1.05;
  font-weight: 760;
}

.home-hero .hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.hero-insight-panel {
  display: none;
}

.button {
  min-height: 48px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.button-primary {
  background: var(--clean-green);
  box-shadow: 0 16px 35px rgba(22, 130, 58, 0.24);
}

.home-hero .button-secondary {
  color: var(--clean-text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}

.home-pillars {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 0;
  gap: 16px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.home-pillars article,
.home-pillars article:last-child {
  min-height: 150px;
  padding: 24px;
  color: var(--clean-text);
  background: var(--clean-card);
  border: 1px solid var(--clean-border);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 32, 24, 0.08);
}

.home-pillars article {
  border-top: 4px solid var(--clean-green);
}

.home-pillars article:last-child {
  border-top-color: var(--clean-orange);
}

.home-pillars span {
  color: var(--clean-green);
}

.home-pillars strong {
  color: var(--clean-text);
  font-size: 1.16rem;
}

.home-pillars p {
  color: var(--clean-muted);
  font-size: 0.96rem;
}

.experience-strip {
  gap: 14px;
  padding-top: 54px;
}

.experience-strip div {
  border-radius: 8px;
  background: var(--clean-card);
  box-shadow: 0 12px 38px rgba(16, 32, 24, 0.05);
}

.experience-strip strong {
  color: var(--clean-green-2);
  font-size: clamp(1.22rem, 2.5vw, 1.8rem);
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.section h2,
.media-copy h2,
.page-hero h1,
.cta-band h2 {
  font-weight: 740;
}

.section h2 {
  color: var(--clean-text);
  font-size: clamp(2rem, 3.9vw, 3.15rem);
  line-height: 1.12;
}

.section p,
.media-copy p,
.resource-grid p,
.product-card p,
.solution-detail-grid p,
.service-grid p,
.resource-hub p {
  color: var(--clean-muted);
  line-height: 1.72;
}

.section-kicker,
.eyebrow {
  color: var(--clean-green);
  font-size: 0.75rem;
  letter-spacing: 0;
}

.product-card,
.resource-card,
.highlight-grid article,
.case-stack a,
.metric-grid article,
.feature-grid article,
.mission-grid article,
.product-detail,
.service-grid article,
.resource-hub article,
.contact-card,
.solution-detail-grid article,
.calculator,
.lead-form,
.light-form {
  border: 1px solid var(--clean-border);
  border-radius: 8px;
  background: var(--clean-card);
  box-shadow: 0 14px 45px rgba(16, 32, 24, 0.06);
}

.product-card:hover,
.resource-card:hover,
.highlight-grid article:hover,
.case-stack a:hover,
.product-detail:hover,
.service-grid article:hover,
.resource-hub article:hover,
.solution-detail-grid article:hover {
  box-shadow: 0 22px 65px rgba(16, 32, 24, 0.1);
}

.solution-finder {
  background: #0f2118;
}

.solution-finder .section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.solution-grid {
  gap: 14px;
}

.solution-grid a {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.highlight-grid {
  gap: 18px;
}

.highlight-grid img,
.highlight-grid video {
  aspect-ratio: 16 / 9;
}

.page-hero {
  min-height: 470px;
  padding-top: 145px;
  padding-bottom: 68px;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 15, 10, 0.88), rgba(4, 15, 10, 0.62) 55%, rgba(4, 15, 10, 0.16)),
    linear-gradient(0deg, rgba(4, 15, 10, 0.56), rgba(4, 15, 10, 0));
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 5vw, 4.45rem);
  line-height: 1.07;
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.orc-3d-section {
  min-height: 650px;
}

.orc-3d-copy h2 {
  max-width: 620px;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  line-height: 1.07;
}

.cta-band {
  background: linear-gradient(135deg, #0b6b31, #16823a);
}

.site-footer {
  background: #08130e;
}

@media (max-width: 1040px) {
  .home-pillars,
  .experience-strip {
    grid-template-columns: 1fr;
  }

  .home-pillars article,
  .home-pillars article:first-child,
  .home-pillars article:last-child {
    border-radius: 8px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 48px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 42px;
    margin-left: auto;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .home-hero,
  .hero-slide {
    overflow: hidden;
  }

  .home-hero .hero-content {
    width: calc(100% - 32px);
    padding-top: 126px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.2vw, 2.92rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .home-hero .hero-content p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.66;
  }

  .hero-actions {
    gap: 12px;
  }

  .home-pillars {
    width: calc(100% - 28px);
    margin-top: 20px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero {
    min-height: 440px;
    padding-top: 120px;
    padding-bottom: 54px;
  }
}

/* Content-plan completion pass */
.header-contact {
  display: grid;
  justify-items: end;
  gap: 2px;
  margin-left: auto;
  color: var(--clean-muted);
  font-size: 0.78rem;
  line-height: 1.15;
}

.header-contact a {
  color: var(--clean-green-2);
  font-size: 0.95rem;
  font-weight: 850;
}

.site-header .site-nav {
  margin-left: 4px;
}

.problem-band.section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: #0e1813;
}

.problem-band .section-kicker,
.problem-band h2 {
  color: var(--white);
}

.problem-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.problem-grid h3 {
  color: var(--white);
}

.problem-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.application-grid,
.research-source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.application-grid article,
.research-source-grid a {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--clean-border);
  border-radius: 8px;
  background: var(--clean-card);
  box-shadow: 0 14px 45px rgba(16, 32, 24, 0.06);
}

.application-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clean-orange);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.research-source-grid a {
  color: var(--clean-text);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.research-source-grid a:hover,
.research-source-grid a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 65px rgba(16, 32, 24, 0.1);
}

.research-source-grid strong,
.research-source-grid span {
  display: block;
}

.research-source-grid span {
  margin-top: 10px;
  color: var(--clean-muted);
  line-height: 1.6;
}

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

.product-note {
  margin: 16px 0 0;
  color: var(--clean-muted);
  font-size: 0.92rem;
}

.map-section {
  padding-top: 0;
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--clean-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 130, 58, 0.08), rgba(238, 106, 44, 0.07)),
    var(--clean-card);
  box-shadow: 0 14px 45px rgba(16, 32, 24, 0.06);
}

.map-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.map-card p:not(.section-kicker) {
  max-width: 650px;
  color: var(--clean-muted);
}

.dark-button {
  color: var(--white);
  border-color: transparent;
  background: var(--clean-green-2);
}

@media (max-width: 1240px) {
  .header-contact {
    display: none;
  }
}

@media (max-width: 1040px) {
  .application-grid,
  .research-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .problem-grid,
  .application-grid,
  .research-source-grid,
  .calculator-result {
    grid-template-columns: 1fr;
  }

  .map-card {
    display: grid;
    padding: 24px;
  }
}

/* Exact template match pass for the Datre homepage */
.template-main {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: none;
}

.template-header {
  left: 50%;
  right: auto;
  width: 100%;
  min-height: 84px;
  transform: translateX(-50%);
  padding: 13px 28px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: #006f38;
  box-shadow: 0 10px 30px rgba(8, 19, 14, 0.18);
}

.template-header .brand img {
  width: 76px;
  height: 56px;
}

.template-header .brand strong {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.template-header .brand small,
.template-header .site-nav a,
.template-contact a {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.template-header .site-nav {
  margin-left: auto;
  gap: clamp(12px, 1.45vw, 20px);
  font-size: 0.82rem;
}

.template-header .site-nav a {
  font-weight: 900;
}

.template-contact {
  display: grid;
  gap: 3px;
  margin-left: 10px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
}

.template-contact a::before {
  color: #ffffff;
  margin-right: 6px;
}

.template-contact a:first-child::before {
  content: "☎";
}

.template-contact a:last-child::before {
  content: "✉";
}

.template-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-left: 10px;
  padding: 0 20px;
  border-radius: 6px;
  color: #00602f;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
}

.template-hero {
  padding-top: 0;
  background: #ffffff;
}

.template-hero .hero-slide {
  min-height: 100svh;
  background: #08120d;
}

.template-hero .hero-media {
  background-image: url("assets/images/poster-product-orc.png");
  background-position: center 48%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #06140d;
}

.template-hero .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.template-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 16, 11, 0.52) 0%, rgba(3, 16, 11, 0.34) 36%, rgba(3, 16, 11, 0.14) 72%, rgba(3, 16, 11, 0.06) 100%),
    linear-gradient(180deg, rgba(3, 16, 11, 0.16) 0%, rgba(3, 16, 11, 0.03) 44%, rgba(3, 16, 11, 0.34) 100%);
  box-shadow:
    inset 0 78px 96px rgba(3, 16, 11, 0.16),
    inset 0 -105px 120px rgba(3, 16, 11, 0.26);
  backdrop-filter: saturate(1.04) contrast(1.02);
}

.hero-watermark {
  position: absolute;
  right: clamp(30px, 4.5vw, 84px);
  bottom: clamp(24px, 4vh, 48px);
  z-index: 3;
  width: clamp(92px, 9vw, 155px);
  height: auto;
  padding: 9px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  opacity: 0.34;
  mix-blend-mode: screen;
  pointer-events: none;
}

.template-hero .hero-content {
  position: relative;
  z-index: 4;
  width: 720px;
  margin-left: max(44px, calc((100vw - 1380px) / 2 + 44px));
  margin-top: 0;
  padding-top: clamp(132px, 19svh, 188px);
}

.template-hero .hero-content::before {
  position: absolute;
  inset: clamp(84px, 13svh, 136px) auto -34px -28px;
  z-index: -1;
  width: min(760px, calc(100vw - 40px));
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 22%, rgba(3, 16, 11, 0.42), transparent 36%),
    radial-gradient(circle at 62% 76%, rgba(3, 16, 11, 0.28), transparent 40%),
    linear-gradient(105deg, rgba(3, 16, 11, 0.52) 0%, rgba(3, 16, 11, 0.34) 45%, rgba(3, 16, 11, 0.12) 78%, transparent 100%);
  background-size: 135% 135%, 150% 150%, 100% 100%;
  box-shadow:
    0 18px 54px rgba(3, 16, 11, 0.2),
    inset 0 0 44px rgba(3, 16, 11, 0.14);
  filter: blur(0.1px);
  opacity: 0.78;
  content: "";
  pointer-events: none;
}

.template-hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 34%, #fffefa 48%, #ffffff 62%, #ffffff 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.16));
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: shinyTextSweep 2.1s ease-in-out infinite alternate;
  transition: filter 180ms ease, transform 180ms ease;
}

.template-hero .eyebrow:hover {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.28));
  transform: translateY(-1px);
}

.template-hero h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(3.15rem, 4.1vw, 4rem);
  line-height: 0.98;
  font-weight: 880;
  letter-spacing: 0;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.34), 0 0 8px rgba(255, 255, 255, 0.08);
  transition: filter 180ms ease;
}

.template-hero h1:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.template-hero h1 span {
  display: block;
}

.template-hero .reveal-title-line {
  display: block;
}

.template-hero .reveal-title-letter {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  cursor: default;
  opacity: 0;
  transform: scale(0.52) translateY(20px);
  animation: revealTitleLetter 780ms cubic-bezier(0.2, 1.35, 0.32, 1) forwards;
  animation-delay: var(--letter-delay);
  transition: color 150ms ease, filter 150ms ease, transform 180ms ease;
}

.template-hero .reveal-title-letter::before,
.template-hero .reveal-title-letter::after {
  position: absolute;
  inset: 0;
  opacity: 0;
  content: attr(data-letter);
  pointer-events: none;
}

.template-hero .reveal-title-letter::before {
  display: none;
}

.template-hero .reveal-title-letter::after {
  background:
    linear-gradient(120deg, #ffffff 0%, #ffffff 32%, #f05b22 48%, #16a052 62%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}

.template-hero .reveal-title-letter:hover {
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.28));
  transform: translateY(-2px) scale(1.03);
}

.template-hero .reveal-title-letter:hover::after {
  opacity: 1;
  animation: revealTitleHoverImage 2.4s ease-in-out infinite alternate;
}

.template-hero .hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.05vw, 1.18rem);
  line-height: 1.55;
}

.template-hero .hero-support {
  max-width: 520px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.42;
}

.text-reveal {
  color: rgba(255, 255, 255, 0.28);
}

.text-reveal-word {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.28);
  opacity: 0.65;
  transform: translateY(7px);
  will-change: color, opacity, transform;
}

.text-reveal.is-revealed .text-reveal-word {
  animation: revealWordWhite 0.68s ease forwards;
  animation-delay: var(--word-delay, 0ms);
}

.template-hero .hero-support.text-reveal {
  color: rgba(255, 255, 255, 0.25);
}

.hero-proof-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  max-width: min(100%, 560px);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.52), rgba(5, 30, 21, 0.42) 52%, rgba(0, 0, 0, 0.56));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px) saturate(1.1);
}

.hero-proof-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.2) 52%, rgba(255, 255, 255, 0.03) 70%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 300% 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation: heroProofShadeSweep 7.2s ease-in-out infinite;
}

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

.hero-proof-tags span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #38c36f;
  box-shadow: 0 0 12px rgba(56, 195, 111, 0.52);
  content: "";
}

@media (max-width: 680px) {
  .hero-proof-tags {
    width: min(100%, 360px);
    border-radius: 6px;
  }

  .hero-proof-tags span {
    flex: 1 1 100%;
    min-height: 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
  }

  .hero-proof-tags span:last-child {
    border-bottom: 0;
  }
}

.template-hero .button {
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 5px;
  font-size: 0.88rem;
}

.template-hero .button-secondary {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.18);
}

.template-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(1380px, calc(100% - 70px));
  margin: 28px auto 0;
  padding: 20px 30px;
  border: 1px solid #dce7dc;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 19, 14, 0.16);
}

.template-stats div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 54px;
}

.template-stats strong,
.template-stats small,
.template-stats em {
  display: block;
  grid-column: 2;
  font-style: normal;
}

.template-stats strong {
  color: #0a7a34;
  font-size: 2.16rem;
  line-height: 0.94;
}

.template-stats small {
  margin-top: 2px;
  color: #17241d;
  font-size: 0.92rem;
  font-weight: 900;
}

.template-stats em {
  margin-top: 2px;
  color: #4f5d54;
  font-size: 0.82rem;
  line-height: 1.25;
}

.line-icon {
  position: relative;
  grid-row: span 3;
  width: 42px;
  height: 42px;
  border: 2px solid #a9b9ae;
  border-radius: 50%;
}

.line-icon::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0a7a34;
  font-size: 1.2rem;
  font-weight: 900;
}

.gauge-icon::after { content: "✓"; }
.rupee-icon::after { content: "₹"; }
.order-icon::after { content: "▤"; }
.handshake-icon::after { content: "∞"; }
.clock-icon::after { content: "↻"; }

.template-panel {
  width: min(1380px, calc(100% - 70px));
  margin: 0 auto 16px;
  padding: 0;
}

.problem-panel {
  margin-top: 36px;
}

.template-panel h2 {
  margin: 0;
  color: #0d1712;
  font-size: clamp(2rem, 2.15vw, 2.48rem);
  line-height: 1.12;
  text-align: center;
}

.problem-panel > h2 {
  color: transparent;
  background:
    linear-gradient(105deg, #0d1712 0%, #0d1712 34%, #738679 45%, #000000 52%, #738679 61%, #0d1712 74%, #0d1712 100%);
  background-size: 360% 100%;
  background-position: 120% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headlineBlackTextSweep 5.4s ease-in-out infinite;
}

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

.template-card-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(104px, auto) 148px;
  min-height: 0;
  padding: 16px;
  border: 1px solid #e1e9e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 19, 14, 0.06);
}

.problem-number {
  position: absolute;
  left: 16px;
  top: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.heat-number,
.import-number {
  background: #f05b22;
}

.solution-number {
  background: #1a9940;
}

.template-card-grid h3 {
  margin-left: 44px;
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.18;
}

.template-card-grid p {
  min-height: 66px;
  margin: 0 0 0 44px;
  color: #4b5951;
  font-size: 1rem;
  line-height: 1.42;
}

.template-card-grid img {
  width: 100%;
  height: 148px;
  margin-top: 0;
  object-fit: contain;
  background: #f4f8f5;
  border-radius: 5px;
}

.orc-strip {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0 16px;
  border-top: 1px solid #edf2ed;
}

.orc-copy h2,
.orc-copy h3 {
  text-align: left;
}

.orc-copy h2 {
  font-size: clamp(2rem, 2.05vw, 2.36rem);
}

.orc-copy h3 {
  margin: 5px 0 10px;
  color: #0d1712;
  font-size: 1.18rem;
}

.orc-copy p {
  margin: 0 0 18px;
  color: #4b5951;
  font-size: 1.02rem;
  line-height: 1.55;
}

.diagram-button {
  min-height: 42px;
  color: #0b6b31;
  border-color: #0b6b31;
  background: #ffffff;
  font-size: 0.88rem;
}

.cycle-diagram {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.cycle-diagram i {
  display: none;
}

.cycle-diagram div {
  position: relative;
  min-height: 126px;
  text-align: center;
}

.cycle-diagram div + div::before {
  position: absolute;
  left: -24px;
  top: 31px;
  color: #748278;
  content: "→";
  font-size: 1.6rem;
}

.diagram-icon {
  display: block;
  width: 58px;
  height: 42px;
  margin: 0 auto 12px;
  border: 2px solid #2c9b5a;
  border-radius: 5px;
}

.diagram-icon.heat {
  border-color: #f05b22;
  border-radius: 50% 50% 8px 8px;
}

.diagram-icon.evap {
  border-color: #4c9bd8;
}

.diagram-icon.expand {
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 54px solid #f05b22;
  border-right: 0;
}

.diagram-icon.condense {
  border-color: #5ea7d8;
}

.diagram-icon.pump {
  border-radius: 50%;
}

.cycle-diagram strong {
  display: block;
  color: #102018;
  font-size: 0.75rem;
}

.cycle-diagram small {
  display: block;
  margin-top: 5px;
  color: #52625a;
  font-size: 0.68rem;
  line-height: 1.35;
}

.orc-flow-card {
  position: relative;
  display: block;
  padding: 8px 14px 9px;
  border: 1px solid #e5eee5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 19, 14, 0.05);
}

.flow-icons {
  position: relative;
  display: grid;
  grid-template-columns: 64px 28px 78px 28px 70px 32px 28px 70px 28px 64px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.flow-symbol,
.power-badge {
  display: grid;
  place-items: center;
}

.flow-symbol svg,
.power-badge svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.flow-symbol svg path,
.flow-symbol svg rect,
.flow-symbol svg circle,
.power-badge svg path,
.power-badge svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.heat-source,
.turbine {
  color: #ff6a2e;
}

.evaporator,
.condenser,
.power-badge {
  color: #4aa3e8;
}

.pump {
  color: #31a65b;
}

.turbine svg path {
  fill: rgba(255, 106, 46, 0.12);
}

.flow-arrow {
  position: relative;
  display: block;
  height: 2px;
  background: #747d78;
}

.flow-arrow::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #747d78;
  border-right: 2px solid #747d78;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.return-line {
  position: absolute;
  left: 80px;
  right: 56px;
  bottom: 4px;
  height: 2px;
  background: #7bbf8b;
}

.return-line::before,
.return-line::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-color: #7bbf8b;
  border-style: solid;
  content: "";
}

.return-line::before {
  left: -1px;
  border-width: 0 0 2px 2px;
  transform: translateY(-50%) rotate(45deg);
}

.return-line::after {
  right: -1px;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.flow-steps div {
  min-height: auto;
  text-align: left;
}

.flow-steps span {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin-right: 4px;
  border-radius: 50%;
  color: #ffffff;
  background: #179245;
  font-size: 0.62rem;
  font-weight: 900;
  vertical-align: 1px;
}

.flow-steps strong {
  display: inline;
  color: #102018;
  font-size: 0.88rem;
  line-height: 1.1;
}

.flow-steps small {
  display: block;
  margin-top: 4px;
  color: #26362d;
  font-size: 0.8rem;
  line-height: 1.32;
}

.template-heading {
  margin-bottom: 10px;
  text-align: center;
}

.template-heading p {
  margin: 4px 0 0;
  color: #52625a;
  font-size: 1.02rem;
}

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

.template-product-grid article {
  position: relative;
  padding: 0 14px 14px;
  border: 1px solid #e1e9e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 19, 14, 0.06);
}

.template-product-grid article > span {
  position: absolute;
  left: 14px;
  top: 10px;
  z-index: 2;
  padding: 7px 9px;
  border-radius: 5px;
  color: #ffffff;
  background: #087034;
  font-size: 0.82rem;
  font-weight: 900;
}

.template-product-grid img {
  width: calc(100% + 28px);
  height: 122px;
  margin: 0 -14px 12px;
  object-fit: contain;
  background: linear-gradient(180deg, #f6faf7, #eef5f1);
  border-radius: 8px 8px 0 0;
}

.template-product-grid ul {
  display: grid;
  gap: 6px;
  min-height: 64px;
  margin: 0 0 12px;
  padding: 0;
  color: #405046;
  font-size: 0.96rem;
  line-height: 1.36;
  list-style: none;
}

.template-product-grid li::before {
  color: #139441;
  content: "✓ ";
  font-weight: 900;
}

.template-product-grid a {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid #d7e2d7;
  border-radius: 5px;
  color: #102018;
  font-size: 0.9rem;
  font-weight: 900;
}

.spec-marquee {
  position: relative;
  overflow: hidden;
  margin: 16px auto 0;
  border: 1px solid #d9e8dc;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(237, 249, 239, 0.9), rgba(255, 255, 255, 0.94));
  box-shadow: 0 10px 24px rgba(8, 19, 14, 0.05);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.spec-marquee-track {
  display: flex;
  width: max-content;
  animation: specMarqueeScroll 24s linear infinite;
}

.spec-marquee:hover .spec-marquee-track {
  animation-play-state: paused;
}

.spec-marquee span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 42px;
  margin-right: 28px;
  color: #0a6c33;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.spec-marquee span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #f05b22;
  box-shadow: 0 0 0 4px rgba(240, 91, 34, 0.1);
  content: "";
}

.template-link {
  display: table;
  margin: 10px auto 0;
  color: #087034;
  font-size: 0.95rem;
  font-weight: 900;
}

.template-link::after {
  content: " →";
}

.industry-panel {
  padding: 0 0 8px;
  border-bottom: 1px solid #edf2ed;
}

.industry-panel .template-heading {
  margin-bottom: 6px;
}

.industry-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  padding: 2px 0 6px;
  mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.template-industry-grid {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: industryMarqueeScroll 32s linear infinite;
}

.industry-marquee:hover .template-industry-grid,
.industry-marquee:focus-within .template-industry-grid {
  animation-play-state: paused;
}

.template-industry-grid a {
  position: relative;
  display: grid;
  flex: 0 0 138px;
  gap: 5px;
  justify-items: center;
  min-height: 72px;
  padding: 6px 4px 8px;
  color: #17241d;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.template-industry-grid a::after {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #0a8f42;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.template-industry-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #d6e4d8;
  border-radius: 50%;
  color: #087034;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), rgba(237, 249, 239, 0.72));
  box-shadow: 0 8px 18px rgba(0, 96, 48, 0.08);
  font-size: 1rem;
  animation: industryFloat 4.8s ease-in-out infinite;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.template-industry-grid a:nth-child(2) span { animation-delay: 0.2s; }
.template-industry-grid a:nth-child(3) span { animation-delay: 0.4s; }
.template-industry-grid a:nth-child(4) span { animation-delay: 0.6s; }
.template-industry-grid a:nth-child(5) span { animation-delay: 0.8s; }
.template-industry-grid a:nth-child(6) span { animation-delay: 1s; }
.template-industry-grid a:nth-child(7) span { animation-delay: 1.2s; }
.template-industry-grid a:nth-child(8) span { animation-delay: 1.4s; }

.template-industry-grid a:hover,
.template-industry-grid a:focus-visible {
  color: #00602f;
  transform: translateY(-5px);
}

.template-industry-grid a:hover::after,
.template-industry-grid a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.template-industry-grid a:hover span,
.template-industry-grid a:focus-visible span {
  color: #ffffff;
  background: #087034;
  box-shadow: 0 12px 28px rgba(0, 96, 48, 0.2);
  transform: scale(1.08) rotate(-4deg);
}

.blur-fade {
  opacity: 0;
  filter: blur(var(--blur-amount, 6px));
  transform: translateY(var(--blur-y, 14px));
  transition:
    opacity var(--blur-duration, 520ms) ease,
    filter var(--blur-duration, 520ms) ease,
    transform var(--blur-duration, 520ms) ease;
  transition-delay: var(--blur-delay, 0ms);
  will-change: opacity, filter, transform;
}

.blur-fade.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes industryFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes industryMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes shinyTextSweep {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 100% center;
  }
}

@keyframes heroBlackShadeDrift {
  from {
    background-position: 0% 20%, 70% 100%, center;
    opacity: 0.82;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    background-position: 18% 8%, 48% 70%, center;
    opacity: 1;
    transform: translate3d(10px, -6px, 0) scale(1.02);
  }
}

@keyframes revealTitleLetter {
  0% {
    opacity: 0;
    transform: scale(0.52) translateY(20px);
  }
  62% {
    opacity: 1;
    transform: scale(1.08) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes revealTitleOverlay {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  9%,
  17% {
    opacity: 0.78;
    transform: translateX(0);
  }
  28% {
    opacity: 0;
    transform: translateX(120%);
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes headlineBlackTextSweep {
  0%,
  18% {
    background-position: 120% center;
  }
  46%,
  62% {
    background-position: 50% center;
  }
  90%,
  100% {
    background-position: -20% center;
  }
}

@keyframes heroBodyBlackTextSweep {
  0%,
  22% {
    background-position: 120% center;
  }
  48%,
  62% {
    background-position: 50% center;
  }
  88%,
  100% {
    background-position: -20% center;
  }
}

@keyframes heroProofShadeSweep {
  0%,
  28% {
    background-position: 120% center;
  }
  56%,
  68% {
    background-position: 50% center;
  }
  100% {
    background-position: -20% center;
  }
}

@keyframes revealTitleHoverImage {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 100% center;
  }
}

@keyframes revealWordWhite {
  to {
    color: rgba(255, 255, 255, 0.94);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes specMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .template-industry-grid a,
  .template-industry-grid a::after,
  .template-industry-grid,
  .template-industry-grid span,
  .template-hero .hero-content::before,
  .template-hero .eyebrow,
  .template-hero h1,
  .template-hero .reveal-title-letter,
  .template-hero .reveal-title-letter::before,
  .template-hero .reveal-title-letter::after,
  .text-reveal-word,
  .blur-fade,
  .case-stack-card,
  .case-shuffle,
  .spec-marquee-track {
    animation: none;
    transition: none;
  }

  .text-reveal,
  .text-reveal-word {
    color: rgba(255, 255, 255, 0.94);
    opacity: 1;
    transform: none;
  }

  .template-hero .reveal-title-letter {
    opacity: 1;
    transform: none;
  }

  .blur-fade {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .industry-marquee {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .template-industry-grid {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .template-industry-grid a[aria-hidden="true"] {
    display: none;
  }
}

.template-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.template-case-grid article {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #e1e9e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 19, 14, 0.06);
}

.template-case-grid article > div:first-child {
  padding: 20px;
}

.template-case-grid span {
  color: #087034;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.template-case-grid h3 {
  margin: 8px 0;
  font-size: 1.35rem;
  line-height: 1.16;
}

.template-case-grid p {
  margin: 0 0 14px;
  color: #52625a;
  font-size: 1.04rem;
  line-height: 1.48;
}

.template-case-grid a {
  color: #087034;
  font-size: 0.98rem;
  font-weight: 900;
}

.template-case-grid a::after {
  content: " →";
}

.template-case-grid img,
.star-mark,
.star-logo {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.star-logo {
  object-fit: contain;
  background: #ffffff;
  padding: 34px;
}

.case-surat-image {
  object-fit: contain;
  object-position: center center;
  padding: 8px;
  background: #f4f8f5;
}

.star-mark {
  display: grid;
  place-items: center;
  color: #111;
  background: #f7f8f6;
  font-size: 3.3rem;
  font-weight: 950;
  line-height: 0.72;
  text-align: center;
}

.proven-panel {
  padding-top: 28px;
}

.proven-heading {
  margin-bottom: 14px;
}

.case-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(440px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  overflow: hidden;
  min-height: 460px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(190, 222, 199, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 66, 23, 0.96) 0%, rgba(0, 66, 23, 0.9) 46%, rgba(0, 66, 23, 0.78) 100%),
    url("assets/images/orc-machine-angle.jpeg") center right / cover;
  box-shadow: 0 26px 70px rgba(8, 19, 14, 0.18);
}

.case-showcase::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.28;
  content: "";
  pointer-events: none;
}

.case-showcase::after {
  position: absolute;
  inset: auto -12% -42% auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(64, 205, 114, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 80, 25, 0.34), transparent 64%);
  content: "";
  pointer-events: none;
}

.case-narrative {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-narrative > span,
.case-stack-card span {
  color: #38c36f;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-narrative h3 {
  max-width: 360px;
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.case-narrative p {
  max-width: 390px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.case-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.case-proof-pills strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(2, 80, 25, 0.38);
  font-size: 0.86rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.case-shuffle {
  align-self: flex-start;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #ffffff;
  background: #025019;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 96, 48, 0.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.case-shuffle:hover,
.case-shuffle:focus-visible {
  background: #004217;
  box-shadow: 0 18px 32px rgba(0, 96, 48, 0.22);
  transform: translateY(-2px);
}

.case-stack {
  position: relative;
  min-height: 390px;
  z-index: 1;
}

.case-stack-card {
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  width: min(430px, calc(100% - 128px));
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(2, 80, 25, 0.98), rgba(0, 66, 23, 0.98));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  user-select: none;
  transition:
    transform 340ms ease,
    opacity 340ms ease,
    box-shadow 340ms ease;
  will-change: transform;
}

.case-stack-card[data-position="front"] {
  z-index: 3;
  opacity: 1;
  cursor: grab;
  transform: translateX(0) rotate(-2deg);
}

.case-stack-card[data-position="front"]:active {
  cursor: grabbing;
}

.case-stack-card[data-position="middle"] {
  z-index: 2;
  opacity: 0.76;
  transform: translateX(30%) translateY(16px) rotate(1deg) scale(0.96);
}

.case-stack-card[data-position="back"] {
  z-index: 1;
  opacity: 0.58;
  transform: translateX(58%) translateY(32px) rotate(3deg) scale(0.92);
}

.case-stack-card.is-dragging {
  transition: none;
  box-shadow: 0 28px 60px rgba(8, 19, 14, 0.2);
}

.case-stack-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #07130d;
  filter: saturate(0.9) contrast(1.04);
}

.case-stack-card .star-logo {
  object-fit: contain;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.case-stack-card > div {
  position: relative;
  padding: 18px 20px 22px;
  background:
    linear-gradient(180deg, #025019 0%, #004217 100%);
}

.case-stack-card h3 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.case-stack-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.45;
}

.case-stack-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(95, 226, 143, 0.38);
  border-radius: 6px;
  color: #ffffff;
  background: #025019;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.case-stack-card a::after {
  content: "  ->";
}

@media (max-width: 900px) {
  .case-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-stack {
    min-height: 420px;
  }

  .case-stack-card {
    width: min(370px, calc(100% - 96px));
  }
}

@media (max-width: 680px) {
  .case-showcase {
    padding: 20px;
  }

  .case-proof-pills {
    gap: 8px;
  }

  .case-stack {
    min-height: 398px;
  }

  .case-stack-card {
    width: min(310px, calc(100% - 58px));
    min-height: 330px;
  }

  .case-stack-card[data-position="middle"] {
    transform: translateX(20%) rotate(0deg) scale(0.97);
  }

  .case-stack-card[data-position="back"] {
    transform: translateX(40%) rotate(4deg) scale(0.94);
  }
}

.star-mark::first-letter {
  color: #e32222;
}

.star-mark small {
  color: #e32222;
  font-size: 1.05rem;
}

.template-bottom-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.35fr 1.2fr;
  gap: 18px;
  width: min(1380px, calc(100% - 70px));
  margin: 8px auto 0;
  padding: 10px 0 26px;
}

.template-bottom-grid > * {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid #e1e9e0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(8, 19, 14, 0.08);
}

.savings-intro h2,
.ready-card h2 {
  margin: 0 0 10px;
  color: #0d1712;
  font-size: 1.36rem;
  line-height: 1.12;
}

.savings-intro {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f1f8f3 100%);
}

.savings-intro p,
.ready-card p,
.savings-result p {
  margin: 0;
  color: #52625a;
  font-size: 0.98rem;
  line-height: 1.44;
}

.savings-visual {
  position: relative;
  margin: 6px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: #edf6ef;
}

.savings-visual img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  transform: translateY(0);
  animation: savingsMachineFloat 5.5s ease-in-out infinite;
}

.savings-visual figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(0, 96, 47, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
}

.mini-calculator {
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(237, 249, 239, 0.7), #ffffff 56%);
}

.calculator-head {
  display: grid;
  gap: 3px;
  padding-bottom: 4px;
}

.calculator-head span {
  color: #087034;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-head strong {
  color: #102018;
  font-size: 1.22rem;
  line-height: 1.1;
}

.mini-calculator label {
  display: grid;
  gap: 6px;
  color: #52625a;
  font-size: 0.88rem;
  font-weight: 760;
}

.mini-calculator input,
.mini-calculator select {
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cfdcd2;
  border-radius: 7px;
  font-size: 0.96rem;
  font-weight: 800;
  background: #ffffff;
}

.mini-calculator .button {
  min-height: 48px;
  margin-top: 4px;
  font-size: 0.95rem;
  box-shadow: 0 14px 28px rgba(0, 96, 47, 0.18);
}

.savings-result {
  isolation: isolate;
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(26, 153, 64, 0.16), transparent 28%),
    linear-gradient(135deg, #edf9ef, #ffffff);
}

.savings-result h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #087034;
  font-size: 1.48rem;
}

.savings-result div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.savings-result div span,
.savings-result strong,
.savings-result small {
  display: block;
  text-align: center;
}

.savings-result div span {
  padding: 14px 10px;
  border: 1px solid rgba(26, 153, 64, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(8, 19, 14, 0.05);
  animation: metricLift 4.8s ease-in-out infinite;
}

.savings-result div span:nth-child(2) {
  animation-delay: 0.25s;
}

.savings-result div span:nth-child(3) {
  animation-delay: 0.5s;
}

.savings-result strong {
  color: #087034;
  font-size: 1.18rem;
}

.savings-result small {
  margin-top: 3px;
  color: #52625a;
  font-size: 0.76rem;
}

.savings-result p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  text-align: center;
}

.savings-pulse {
  position: absolute;
  right: -40px;
  top: -44px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 96, 47, 0.16);
  border-radius: 50%;
  animation: savingsPulse 4.4s ease-in-out infinite;
}

.savings-pulse::after {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(0, 96, 47, 0.14);
  border-radius: 50%;
  content: "";
}

.ready-card {
  isolation: isolate;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 96, 47, 0.96), rgba(0, 108, 53, 0.9)),
    url("assets/images/generated-surat-textile-case.png") center / cover;
}

.ready-card h2,
.ready-card p,
.ready-card a,
.ready-card span {
  color: #ffffff;
}

.ready-card .button {
  width: 100%;
  min-height: 54px;
  margin: 12px 0;
  color: #087034;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.ready-card span {
  display: block;
  text-align: center;
  opacity: 0.75;
}

.ready-card > a:last-child {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

.ready-line {
  position: absolute;
  right: -54px;
  bottom: -42px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: readySpin 12s linear infinite;
}

.ready-line::before,
.ready-line::after {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.ready-line::after {
  inset: 68px;
}

.home-roi-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 4vw, 52px);
  width: min(1380px, calc(100% - 70px));
  margin: 22px auto 30px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 66, 23, 0.96), rgba(2, 80, 25, 0.9) 48%, rgba(0, 66, 23, 0.86)),
    url("assets/images/generated-orc-500kw.png") center right / cover;
  box-shadow: 0 26px 70px rgba(8, 19, 14, 0.2);
}

.home-roi-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.56;
  content: "";
  pointer-events: none;
}

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

.home-roi-intro {
  display: grid;
  align-content: center;
}

.home-roi-intro .section-kicker {
  color: #38c36f;
}

.home-roi-intro h2 {
  max-width: 520px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.home-roi-intro p {
  max-width: 540px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.62;
}

.home-roi-intro .button {
  width: fit-content;
  color: #00602f;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.home-roi-calculator {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.home-roi-calculator label {
  color: rgba(255, 255, 255, 0.86);
}

.home-roi-calculator input,
.home-roi-calculator select {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.26);
}

.home-roi-calculator option {
  color: #102018;
}

.home-roi-calculator .range-value {
  color: rgba(255, 255, 255, 0.8);
}

.home-roi-calculator .calculator-result {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-roi-calculator .calculator-result div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.32);
}

.home-roi-calculator .calculator-result span {
  color: rgba(255, 255, 255, 0.68);
}

.home-roi-calculator .calculator-result strong {
  color: #ffffff;
}

@keyframes savingsMachineFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes metricLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes savingsPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes readySpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .savings-visual img,
  .savings-result span,
  .savings-pulse,
  .ready-line {
    animation: none;
  }
}

.template-footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 0.75fr);
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 36px 20px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  background: #00602f;
}

.template-footer img {
  width: 82px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: #ffffff;
}

.template-footer p,
.template-footer a {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.template-footer strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1rem;
}

.template-footer small {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .template-main,
  .template-header,
  .template-footer {
    width: 100%;
  }

  .template-header {
    border-radius: 0;
  }

  .template-header .site-nav,
  .template-contact,
  .template-cta {
    display: none;
  }

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

  .template-hero .hero-content {
    width: min(620px, calc(100% - 40px));
    margin-left: 28px;
  }

  .template-stats,
  .template-card-grid,
  .orc-strip,
  .template-product-grid,
  .template-case-grid,
  .template-bottom-grid,
  .home-roi-section,
  .template-footer {
    grid-template-columns: 1fr 1fr;
  }

  .orc-strip {
    display: grid;
  }

  .cycle-diagram {
    grid-template-columns: 1fr;
  }

  .cycle-diagram div {
    min-height: auto;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    text-align: left;
  }

  .cycle-diagram div + div::before {
    display: none;
  }

  .diagram-icon {
    grid-row: span 2;
    margin: 0;
  }

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

  .template-footer small {
    grid-column: 1 / -1;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .template-hero .hero-content {
    width: min(680px, calc(100% - 88px));
    margin-left: 44px;
    margin-top: 0;
    padding-top: clamp(128px, 18svh, 168px);
  }

  .template-header {
    gap: 12px;
    padding-inline: 18px;
  }

  .template-header .brand img {
    width: 64px;
    height: 48px;
  }

  .template-header .nav-toggle {
    display: none;
  }

  .template-header .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.66rem;
  }

  .template-header .site-nav a {
    padding: 0;
  }

  .template-contact {
    display: grid;
    margin-left: 4px;
    font-size: 0.62rem;
  }

  .template-cta {
    display: inline-flex;
    min-height: 34px;
    margin-left: 2px;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .template-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 22px;
  }

  .template-stats div {
    grid-template-columns: 34px 1fr;
    column-gap: 9px;
  }

  .template-stats strong {
    font-size: 1.45rem;
  }

  .template-stats small {
    font-size: 0.82rem;
  }

  .template-stats em {
    font-size: 0.74rem;
  }

  .line-icon {
    width: 34px;
    height: 34px;
  }

  .orc-strip {
    grid-template-columns: 0.34fr 0.66fr;
  }

  .cycle-diagram {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .cycle-diagram div {
    display: block;
    min-height: 126px;
    text-align: center;
  }

  .cycle-diagram div + div::before {
    display: block;
  }

  .diagram-icon {
    margin: 0 auto 12px;
  }

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

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

  .template-product-grid article:last-child {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  .template-main {
    width: 100%;
    box-shadow: none;
  }

  .template-header {
    width: 100%;
    min-height: 76px;
    padding: 10px 16px;
    transform: translateX(-50%);
  }

  .template-header .brand img {
    width: 66px;
    height: 50px;
  }

  .template-hero .hero-slide {
    min-height: 100svh;
  }

  .template-hero .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 150px;
  }

  .template-hero h1 {
    max-width: 360px;
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
    line-height: 1.02;
  }

  .template-hero .hero-content p:not(.eyebrow) {
    max-width: 340px;
  }

  .template-stats,
  .template-panel,
  .template-bottom-grid {
    width: calc(100% - 28px);
  }

  .template-panel h2,
  .template-heading h2 {
    max-width: 520px;
    margin-inline: auto;
    font-size: clamp(1.72rem, 7.4vw, 2.15rem);
    overflow-wrap: break-word;
  }

  .template-stats {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 18px;
  }

  .template-card-grid,
  .orc-strip,
  .template-product-grid,
  .template-case-grid,
  .template-bottom-grid,
  .home-roi-section,
  .template-footer,
  .template-case-grid article {
    grid-template-columns: 1fr;
  }

  .home-roi-section {
    width: calc(100% - 28px);
  }

  .home-roi-calculator {
    grid-template-columns: 1fr;
  }

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

  .template-footer {
    padding: 28px 22px 18px;
    border-radius: 0;
  }
}

/* Keep the ORC schematic faithful to the reference image across template breakpoints. */
.orc-flow-card .flow-icons {
  display: grid;
  grid-template-columns: 42px 18px 52px 18px 48px 22px 18px 48px 18px 42px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: initial;
}

.orc-flow-card .flow-icons,
.orc-flow-card .flow-steps,
.orc-flow-card .flow-steps div {
  min-height: auto;
}

.orc-flow-card .flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.orc-flow-card .flow-steps div {
  display: block;
  text-align: left;
}

.orc-flow-card .flow-steps div::before,
.orc-flow-card .flow-steps div + div::before,
.orc-flow-card .flow-steps::before {
  display: none;
  content: none;
}

.orc-flow-card .flow-symbol {
  width: 100%;
}

.orc-strip {
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
}

.orc-flow-card {
  min-width: 0;
}

.return-line {
  left: 50px;
  right: 38px;
}

@media (max-width: 680px) {
  .orc-flow-card {
    overflow-x: auto;
  }

  .orc-flow-card .flow-icons,
  .orc-flow-card .flow-steps {
    min-width: 560px;
  }
}

/* Show complete, sharp media in card slots instead of cropping machinery. */
.orc-flow-card .flow-icons {
  display: block;
  min-height: 0;
  padding: 0 8px 2px;
}

.orc-flow-card .flow-icons img {
  display: block;
  width: 100%;
  height: auto;
}

.template-card-grid img,
.template-product-grid img {
  object-position: center center;
}

.template-card-grid .problem-datre-image {
  object-fit: cover;
}

/* Site consistency pass: align inner pages with the homepage visual system. */
.site-header:not(.template-header) {
  left: 50%;
  right: auto;
  width: 100%;
  min-height: 78px;
  padding: 11px 24px;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: #00602f;
  box-shadow: 0 10px 28px rgba(8, 19, 14, 0.12);
  transform: translateX(-50%);
}

.site-header:not(.template-header) .brand img {
  width: 72px;
  height: 54px;
}

.site-header:not(.template-header) .brand strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.site-header:not(.template-header) .brand small,
.site-header:not(.template-header) .site-nav a,
.site-header:not(.template-header) .header-contact,
.site-header:not(.template-header) .header-contact a {
  color: #ffffff;
}

.site-header:not(.template-header) .brand small {
  font-size: 0.9rem;
}

.site-header:not(.template-header) .site-nav {
  margin-left: auto;
  gap: 20px;
  color: #ffffff;
  font-size: 0.78rem;
}

.site-header:not(.template-header) .site-nav a {
  font-weight: 800;
}

.site-header:not(.template-header) .site-nav a::after {
  bottom: -9px;
  background: rgba(255, 255, 255, 0.86);
}

.site-header:not(.template-header) .site-nav a.active::after {
  transform: scaleX(1);
}

.site-header:not(.template-header) .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-left: 12px;
  padding: 0 18px;
  color: #00602f;
  background: #ffffff;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: none;
}

.site-header:not(.template-header) .site-nav .nav-cta,
.site-header:not(.template-header) .site-nav .nav-cta.active {
  color: #00602f;
  font-weight: 900;
}

.site-header:not(.template-header) .nav-cta::after {
  display: none;
}

.site-header:not(.template-header) .header-contact {
  gap: 3px;
  margin-left: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
}

body > main:not(.template-main) {
  background: #ffffff;
}

.page-hero {
  min-height: 430px;
  padding: 146px max(24px, calc((100% - 1180px) / 2)) 56px;
  background: #07140f;
}

.page-hero::before {
  opacity: 0.62;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.02);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 16, 11, 0.64) 0%, rgba(3, 16, 11, 0.42) 46%, rgba(3, 16, 11, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 16, 11, 0.14) 0%, rgba(3, 16, 11, 0.02) 44%, rgba(3, 16, 11, 0.32) 100%);
}

.page-hero > div {
  width: min(760px, 100%);
}

.breadcrumb {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.page-hero .eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: #087034;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.35vw, 3.25rem);
  line-height: 1.08;
  font-weight: 860;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section h2,
.media-copy h2,
.map-card h2,
.orc-3d-copy h2 {
  color: #102018;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.14;
  font-weight: 840;
  letter-spacing: 0;
}

.section p,
.media-copy p,
.timeline span,
.cycle-steps span {
  color: #52625a;
  font-size: 1rem;
  line-height: 1.62;
}

.split {
  gap: clamp(26px, 5vw, 68px);
}

.section-heading-row {
  margin-bottom: 24px;
}

.section-heading-row h2 {
  max-width: 760px;
}

.feature-grid,
.mission-grid,
.product-detail-grid,
.service-grid,
.resource-hub,
.application-grid,
.research-source-grid,
.team-grid {
  gap: 16px;
}

.feature-grid article,
.mission-grid article,
.product-detail,
.service-grid article,
.resource-hub article,
.application-grid article,
.research-source-grid a,
.team-grid article,
.solution-detail-grid article,
.contact-card,
.lead-form.light-form,
.table-wrap {
  border: 1px solid #dfe7dd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(8, 19, 14, 0.055);
}

.feature-grid article,
.mission-grid article,
.product-detail,
.service-grid article,
.resource-hub article,
.application-grid article,
.research-source-grid a,
.team-grid article,
.solution-detail-grid article,
.contact-card {
  padding: 22px;
}

.feature-grid h3,
.mission-grid h3,
.team-grid h3,
.application-grid h3 {
  color: #102018;
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 850;
}

.product-detail h2,
.service-grid h2,
.resource-hub h2,
.solution-detail-grid h2,
.reference-grid h2 {
  margin: 0 0 10px;
  color: #102018;
  font-size: clamp(1.28rem, 1.9vw, 1.78rem);
  line-height: 1.16;
  font-weight: 850;
}

.product-detail p,
.service-grid p,
.resource-hub p,
.solution-detail-grid p,
.reference-grid p {
  margin-top: 0;
  color: #52625a;
  font-size: 0.98rem;
  line-height: 1.58;
}

.product-detail ul {
  margin-top: 16px;
  color: #52625a;
  font-size: 0.96rem;
  line-height: 1.62;
}

.product-detail.dark-card {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(4, 18, 12, 0.96), rgba(6, 38, 23, 0.94)),
    url("assets/images/generated-orc-custom-mwm.png") center right / cover;
  box-shadow: 0 24px 64px rgba(8, 19, 14, 0.22);
}

.product-detail.dark-card::before {
  background:
    linear-gradient(90deg, rgba(2, 9, 6, 0.82), rgba(3, 23, 14, 0.74)),
    radial-gradient(circle at 82% 14%, rgba(56, 195, 111, 0.16), transparent 30%);
}

.product-detail.dark-card::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
}

.product-detail.dark-card span {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.product-detail.dark-card h2 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.product-detail.dark-card p,
.product-detail.dark-card ul {
  color: rgba(255, 255, 255, 0.84);
}

.product-detail.dark-card li::marker {
  color: #38c36f;
}

.highlight-grid span,
.resource-card span,
.reference-grid span,
.product-detail span,
.mission-grid span,
.service-grid span,
.resource-hub span,
.application-grid span {
  color: #087034;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.company-shader-section {
  width: 100%;
  margin-top: 6px;
  padding: 76px max(24px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(8, 112, 52, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 52%, #ffffff 100%);
}

.story-shader-section {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 82px max(24px, calc((100% - 1180px) / 2)) 64px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(8, 112, 52, 0.32), transparent 32%),
    radial-gradient(circle at 88% 30%, rgba(56, 195, 111, 0.14), transparent 28%),
    linear-gradient(145deg, #094805 0%, #006f38 58%, #043b05 100%);
}

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

.story-shader-section::after {
  position: absolute;
  inset: -40% auto auto 55%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 91, 34, 0.16), transparent 62%);
  animation: companyShaderDrift 9s ease-in-out infinite alternate;
  content: "";
  pointer-events: none;
}

.story-shader-section .split {
  position: relative;
  z-index: 1;
  align-items: start;
  gap: clamp(36px, 6vw, 92px);
}

.story-shader-section .section-kicker {
  color: #38c36f;
}

.story-shader-section h2 {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.story-shader-section .split > div:last-child {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 49, 2, 0.26);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.story-shader-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.story-shader-section p + p {
  margin-top: 18px;
}

.mission-shader-grid {
  width: 100%;
  padding: 42px max(24px, calc((100% - 1180px) / 2)) 76px;
  margin-top: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.mission-grid.mission-shader-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 76px;
}

.mission-shader-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: #0c3102;
  box-shadow: 0 26px 68px rgba(8, 19, 14, 0.18);
  isolation: isolate;
}

.mission-shader-card::before,
.mission-shader-card::after {
  position: absolute;
  content: "";
}

.mission-shader-card::before {
  inset: -42%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 24%, var(--mission-a), transparent 32%),
    radial-gradient(circle at 82% 18%, var(--mission-b), transparent 30%),
    radial-gradient(circle at 62% 86%, var(--mission-c), transparent 38%),
    linear-gradient(145deg, #0c3102 0%, #006f38 58%, #053904 100%);
  animation: companyShaderDrift 8s ease-in-out infinite alternate;
}

.mission-shader-card::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.mission-shader-green {
  --mission-a: rgba(8, 112, 52, 0.62);
  --mission-b: rgba(12, 49, 2, 0.62);
  --mission-c: rgba(56, 195, 111, 0.22);
}

.mission-shader-teal {
  --mission-a: rgba(8, 112, 52, 0.52);
  --mission-b: rgba(9, 72, 5, 0.58);
  --mission-c: rgba(56, 195, 111, 0.2);
}

.mission-shader-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 42px;
  margin-bottom: 50px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.mission-shader-card h3 {
  max-width: 560px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.mission-shader-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.58;
}

.company-shader-section .section-heading-row {
  justify-content: center;
  text-align: center;
}

.company-shader-section .section-heading-row h2 {
  width: min(780px, 100%);
  margin-inline: auto;
}

.shader-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.shader-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: #053904;
  box-shadow: 0 22px 58px rgba(8, 19, 14, 0.18);
  isolation: isolate;
}

.shader-card::before,
.shader-card::after {
  position: absolute;
  inset: -38%;
  z-index: -2;
  content: "";
}

.shader-card::before {
  background:
    radial-gradient(circle at 18% 24%, var(--shader-a), transparent 31%),
    radial-gradient(circle at 84% 18%, var(--shader-b), transparent 30%),
    radial-gradient(circle at 58% 88%, var(--shader-c), transparent 38%),
    radial-gradient(circle at 28% 78%, var(--shader-d, rgba(255, 255, 255, 0.08)), transparent 30%),
    linear-gradient(145deg, #053904 0%, #006f38 58%, #043b05 100%);
  animation: companyShaderDrift 8s ease-in-out infinite alternate;
}

.shader-card::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.shader-card-green {
  --shader-a: rgba(8, 112, 52, 0.58);
  --shader-b: rgba(5, 57, 4, 0.58);
  --shader-c: rgba(56, 195, 111, 0.22);
  --shader-d: rgba(66, 220, 130, 0.24);
}

.shader-card-teal {
  --shader-a: rgba(8, 112, 52, 0.5);
  --shader-b: rgba(9, 72, 5, 0.5);
  --shader-c: rgba(171, 225, 184, 0.2);
  --shader-d: rgba(56, 195, 111, 0.2);
}

.shader-card-heat {
  --shader-a: rgba(8, 112, 52, 0.48);
  --shader-b: rgba(12, 49, 2, 0.55);
  --shader-c: rgba(56, 195, 111, 0.18);
  --shader-d: rgba(240, 91, 34, 0.12);
}

.shader-card-steel {
  --shader-a: rgba(5, 57, 4, 0.62);
  --shader-b: rgba(8, 112, 52, 0.46);
  --shader-c: rgba(56, 195, 111, 0.16);
  --shader-d: rgba(98, 144, 123, 0.22);
}

.shader-card-blue {
  --shader-a: rgba(8, 112, 52, 0.48);
  --shader-b: rgba(5, 57, 4, 0.5);
  --shader-c: rgba(56, 195, 111, 0.18);
  --shader-d: rgba(34, 166, 116, 0.24);
}

.shader-card-carbon {
  --shader-a: rgba(8, 112, 52, 0.54);
  --shader-b: rgba(12, 49, 2, 0.62);
  --shader-c: rgba(172, 226, 184, 0.2);
  --shader-d: rgba(240, 91, 34, 0.16);
}

.shader-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 46px;
  margin-bottom: 54px;
  padding-inline: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.shader-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.38rem, 1.8vw, 1.72rem);
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.shader-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.shader-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.shader-card a::after {
  margin-left: 7px;
  content: "->";
}

@keyframes companyShaderDrift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }
  to {
    transform: translate3d(4%, 3%, 0) rotate(7deg) scale(1.08);
  }
}

.dark-card {
  background:
    linear-gradient(135deg, rgba(0, 96, 47, 0.96), rgba(8, 25, 17, 0.94)),
    #102018;
}

.dark-card h2,
.dark-card p,
.dark-card li,
.dark-card span {
  color: #ffffff;
}

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

.solution-detail-grid article {
  min-height: 220px;
}

.reference-grid {
  gap: 18px;
}

.reference-grid article {
  border: 1px solid #dfe7dd;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 19, 14, 0.055);
}

.reference-grid img {
  min-height: 270px;
}

.reference-grid div {
  padding: clamp(22px, 4vw, 34px);
}

.media-band.compact {
  margin-top: 18px;
  padding-block: 58px;
}

.media-grid img,
.media-grid video {
  border-radius: 8px;
}

.orc-3d-section {
  min-height: 560px;
}

.orc-3d-copy {
  padding-top: 92px;
}

.orc-3d-copy h2,
.orc-3d-copy p {
  color: #ffffff;
}

th,
td {
  padding: 14px 16px;
  font-size: 0.94rem;
}

th {
  background: #00602f;
}

.site-footer:not(.template-footer) {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 30px max(24px, calc((100% - 1180px) / 2)) 20px;
  background: #00602f;
}

.site-footer:not(.template-footer) img {
  width: 72px;
}

.site-footer:not(.template-footer) p,
.site-footer:not(.template-footer) a,
.site-footer:not(.template-footer) small {
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .site-header:not(.template-header) .site-nav {
    color: #102018;
  }

  .site-header:not(.template-header) .site-nav a {
    color: #102018;
  }

  .site-header:not(.template-header) .site-nav a.active {
    color: #00602f;
  }

  .site-header:not(.template-header) .nav-cta {
    color: #ffffff;
    background: #00602f;
    margin-left: 0;
  }

  .solution-detail-grid,
  .site-footer:not(.template-footer) {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header:not(.template-header) {
    min-height: 72px;
    padding: 9px 14px;
  }

  .site-header:not(.template-header) .brand img {
    width: 60px;
    height: 46px;
  }

  .site-header:not(.template-header) .brand strong {
    font-size: 1.06rem;
  }

  .site-header:not(.template-header) .brand small {
    font-size: 0.78rem;
  }

  .page-hero {
    min-height: 390px;
    padding: 124px 16px 46px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
    line-height: 1.12;
  }

  .page-hero p:not(.eyebrow):not(.breadcrumb) {
    font-size: 0.98rem;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section h2,
  .media-copy h2,
  .map-card h2,
  .orc-3d-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2.08rem);
  }

  .solution-detail-grid,
  .site-footer:not(.template-footer) {
    grid-template-columns: 1fr;
  }

  .reference-grid img {
    min-height: 210px;
  }
}

/* Non-home media and motion pass. */
.media-hero {
  isolation: isolate;
  background-color: #06140d;
  background-image: url("assets/images/poster-product-orc.png");
  background-position: center;
  background-size: cover;
}

.company-hero.media-hero,
.services-hero.media-hero {
  background-image: url("assets/images/poster-process-energy.png");
}

.technology-hero.media-hero,
.solutions-hero.media-hero,
.resources-hero.media-hero {
  background-image: url("assets/images/poster-technology-flow.png");
}

.references-hero.media-hero {
  background-image: url("assets/images/poster-case-study.png");
}

.contact-hero.media-hero {
  background-image: url("assets/images/poster-datre-logo.png");
}

.media-hero::before {
  display: none;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.76;
  filter: saturate(0.98) contrast(1.04);
  animation: innerPageVideoDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-hero-video[poster],
.media-grid video[poster],
.reference-grid video[poster],
.section-bg-video[poster] {
  background-position: center;
  background-size: cover;
}

.media-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 16, 11, 0.72) 0%, rgba(3, 16, 11, 0.5) 44%, rgba(3, 16, 11, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 16, 11, 0.22) 0%, rgba(3, 16, 11, 0.03) 42%, rgba(3, 16, 11, 0.42) 100%);
}

.media-hero > div {
  animation: innerPageCopyRise 700ms ease-out both;
}

body > main:not(.template-main) .section {
  animation: innerSectionFade 780ms ease-out both;
}

.product-detail,
.service-grid article,
.resource-hub article,
.application-grid article,
.research-source-grid a,
.team-grid article,
.solution-detail-grid article,
.reference-grid article,
.contact-card,
.light-form {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-detail:hover,
.service-grid article:hover,
.resource-hub article:hover,
.application-grid article:hover,
.research-source-grid a:hover,
.team-grid article:hover,
.solution-detail-grid article:hover,
.reference-grid article:hover,
.contact-card:hover,
.light-form:hover {
  border-color: rgba(0, 96, 47, 0.22);
  box-shadow: 0 18px 48px rgba(8, 19, 14, 0.09);
  transform: translateY(-3px);
}

.media-grid video,
.reference-grid video {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  background: #07140f;
}

.media-grid video {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 19, 14, 0.08);
}

.reference-grid video {
  min-height: 270px;
}

.orc-3d-section {
  isolation: isolate;
}

.section-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: saturate(0.9) contrast(1.05);
  pointer-events: none;
}

.orc-3d-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 12, 0.86), rgba(7, 16, 12, 0.5)),
    linear-gradient(0deg, rgba(7, 16, 12, 0.82), rgba(7, 16, 12, 0.08));
  content: "";
  pointer-events: none;
}

.orc-3d-section canvas,
.orc-3d-copy,
.flow-legend {
  z-index: 2;
}

@keyframes innerPageVideoDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes innerPageCopyRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes innerSectionFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-video,
  .media-hero > div,
  body > main:not(.template-main) .section {
    animation: none;
  }

  .product-detail:hover,
  .service-grid article:hover,
  .resource-hub article:hover,
  .application-grid article:hover,
  .research-source-grid a:hover,
  .team-grid article:hover,
  .solution-detail-grid article:hover,
  .reference-grid article:hover,
  .contact-card:hover,
  .light-form:hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  .page-hero-video {
    opacity: 0.58;
  }

  .media-grid video,
  .reference-grid video {
    min-height: 210px;
  }
}

/* Inner page visual polish: reduce plain white expanses with subtle industrial motion. */
body > main:not(.template-main) {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(8, 112, 52, 0.07), transparent 24%),
    radial-gradient(circle at 92% 44%, rgba(240, 91, 34, 0.055), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 36%, #ffffff 72%, #f4faf6 100%);
}

body > main:not(.template-main) > .section:not(.story-shader-section):not(.mission-shader-grid):not(.company-shader-section) {
  position: relative;
  z-index: 1;
}

body > main:not(.template-main) > .section:not(.story-shader-section):not(.mission-shader-grid):not(.company-shader-section)::before {
  position: absolute;
  inset: 18px -26px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 112, 52, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 112, 52, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(8, 112, 52, 0.07), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 250, 246, 0.72));
  background-size: 46px 46px, 46px 46px, auto, auto;
  box-shadow: 0 22px 70px rgba(8, 19, 14, 0.045);
  content: "";
  pointer-events: none;
}

body > main:not(.template-main) > .section:nth-of-type(odd):not(.story-shader-section):not(.mission-shader-grid):not(.company-shader-section)::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(28, 174, 157, 0.075), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(240, 91, 34, 0.06), transparent 28%),
    linear-gradient(90deg, rgba(8, 112, 52, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 112, 52, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 242, 0.74));
  background-size: auto, auto, 50px 50px, 50px 50px, auto;
}

.resource-hub article,
.service-grid article,
.solution-detail-grid article,
.product-detail,
.feature-grid article,
.application-grid article,
.research-source-grid a,
.contact-card,
.calculator,
.map-card,
.reference-grid article {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.resource-hub article::before,
.service-grid article::before,
.solution-detail-grid article::before,
.product-detail::before,
.feature-grid article::before,
.application-grid article::before,
.research-source-grid a::before,
.contact-card::before,
.calculator::before,
.map-card::before,
.reference-grid article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(8, 112, 52, 0.12), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(240, 91, 34, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 248, 0.86));
  content: "";
  pointer-events: none;
}

.resource-hub article::after,
.service-grid article::after,
.solution-detail-grid article::after,
.product-detail::after,
.feature-grid article::after,
.application-grid article::after,
.research-source-grid a::after,
.contact-card::after,
.calculator::after,
.map-card::after,
.reference-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 112, 52, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 112, 52, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.58;
  content: "";
  pointer-events: none;
}

.resource-hub article > *,
.service-grid article > *,
.solution-detail-grid article > *,
.product-detail > *,
.feature-grid article > *,
.application-grid article > *,
.research-source-grid a > *,
.contact-card > *,
.calculator > *,
.map-card > *,
.reference-grid article > * {
  position: relative;
  z-index: 1;
}

.resource-hub article:hover,
.service-grid article:hover,
.solution-detail-grid article:hover,
.product-detail:hover,
.feature-grid article:hover,
.application-grid article:hover,
.research-source-grid a:hover,
.contact-card:hover,
.map-card:hover,
.reference-grid article:hover {
  border-color: rgba(8, 112, 52, 0.22);
  box-shadow: 0 26px 70px rgba(8, 19, 14, 0.11);
  transform: translateY(-4px);
}

.feature-grid article:hover,
.application-grid article:hover,
.resource-hub article:hover,
.service-grid article:hover,
.solution-detail-grid article:hover,
.product-detail:hover,
.research-source-grid a:hover {
  color: #ffffff;
  background: #052015;
}

.feature-grid article:hover::before,
.application-grid article:hover::before,
.resource-hub article:hover::before,
.service-grid article:hover::before,
.solution-detail-grid article:hover::before,
.product-detail:hover::before,
.research-source-grid a:hover::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(56, 195, 111, 0.22), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(240, 91, 34, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(5, 32, 21, 0.98), rgba(2, 16, 11, 0.96));
}

.feature-grid article:hover::after,
.application-grid article:hover::after,
.resource-hub article:hover::after,
.service-grid article:hover::after,
.solution-detail-grid article:hover::after,
.product-detail:hover::after,
.research-source-grid a:hover::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.feature-grid article:hover h3,
.feature-grid article:hover h2,
.application-grid article:hover h3,
.application-grid article:hover h2,
.resource-hub article:hover h2,
.service-grid article:hover h2,
.solution-detail-grid article:hover h2,
.product-detail:hover h2,
.research-source-grid a:hover strong {
  color: #ffffff;
}

.feature-grid article:hover p,
.application-grid article:hover p,
.resource-hub article:hover p,
.service-grid article:hover p,
.solution-detail-grid article:hover p,
.product-detail:hover p,
.product-detail:hover ul,
.research-source-grid a:hover span {
  color: rgba(255, 255, 255, 0.82);
}

.feature-grid article:hover span,
.application-grid article:hover span,
.resource-hub article:hover span,
.service-grid article:hover span,
.solution-detail-grid article:hover span,
.product-detail:hover span {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.resource-hub article span,
.service-grid article span,
.product-detail span,
.application-grid article span,
.reference-grid article span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(8, 112, 52, 0.14);
  border-radius: 5px;
  background: rgba(8, 112, 52, 0.06);
}

.calculator-section.standalone,
.process-band,
.service-cta,
.table-section,
.map-section {
  width: 100%;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
}

.calculator-section.standalone .calculator-layout,
.process-band,
.service-cta,
.table-wrap,
.map-card {
  border-radius: 8px;
}

.calculator-section.standalone .calculator-layout,
.service-cta,
.process-band {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 176, 82, 0.34), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(28, 174, 157, 0.2), transparent 28%),
    linear-gradient(145deg, #06110d 0%, #0b2417 58%, #04100b 100%);
  box-shadow: 0 26px 70px rgba(8, 19, 14, 0.18);
}

.calculator-section.standalone .calculator-layout::before,
.service-cta::before,
.process-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.48;
  content: "";
  pointer-events: none;
}

.calculator-section.standalone .calculator-layout > *,
.service-cta > *,
.process-band > * {
  position: relative;
  z-index: 1;
}

.calculator-section.standalone h2,
.calculator-section.standalone p,
.service-cta h2,
.service-cta p,
.process-band h2,
.process-band p {
  color: #ffffff;
}

.calculator-section.standalone .section-kicker,
.service-cta .section-kicker,
.process-band .section-kicker {
  color: #38c36f;
}

.process-band {
  grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(4, 18, 12, 0.96) 0%, rgba(4, 38, 22, 0.9) 48%, rgba(5, 18, 14, 0.94) 100%),
    url("assets/images/orc-process-flow-clean.png") center right / cover;
}

.process-band h2 {
  max-width: 420px;
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.08;
}

.solution-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.solution-flow::before {
  position: absolute;
  top: 42px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 195, 111, 0.1), rgba(56, 195, 111, 0.8), rgba(56, 195, 111, 0.1));
  content: "";
}

.solution-flow article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.solution-flow article:nth-child(even) {
  margin-top: 44px;
}

.solution-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  border-radius: 50%;
  color: #ffffff;
  background: #087034;
  box-shadow: 0 0 22px rgba(56, 195, 111, 0.44);
  font-size: 0.8rem;
  font-weight: 950;
}

.solution-flow h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.16;
  font-weight: 900;
}

.solution-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.48;
}

.service-cta {
  grid-template-columns: minmax(260px, 0.62fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 390px;
  margin-top: 34px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(4, 18, 12, 0.96) 0%, rgba(4, 38, 22, 0.9) 48%, rgba(5, 18, 14, 0.94) 100%),
    url("assets/images/orc-machine-angle.jpeg") center right / cover;
}

.service-cta::after {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 195, 111, 0.2), transparent 64%);
  content: "";
  pointer-events: none;
}

.service-cta h2 {
  max-width: 440px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.service-cta .checklist {
  counter-reset: readiness;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-cta .checklist span {
  position: relative;
  min-height: 84px;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  font-size: 0.98rem;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.service-cta .checklist span::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  background: #087034;
  box-shadow: 0 0 18px rgba(56, 195, 111, 0.36);
  counter-increment: readiness;
  content: counter(readiness, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 950;
}

.service-cta .checklist span:hover {
  border-color: rgba(56, 195, 111, 0.34);
  background:
    linear-gradient(135deg, rgba(56, 195, 111, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.24);
}

.inner-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  transition:
    opacity 620ms ease var(--inner-delay, 0ms),
    filter 620ms ease var(--inner-delay, 0ms),
    transform 620ms ease var(--inner-delay, 0ms);
}

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

@keyframes innerSoftDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 24px 0, 0 24px, 0 0;
  }
}

@media (max-width: 1040px) {
  .company-shader-section {
    padding-inline: 24px;
  }

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

  .process-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .company-shader-section {
    padding: 58px 16px;
  }

  .story-shader-section {
    padding: 58px 16px 46px;
  }

  .story-shader-section .split > div:last-child {
    padding: 22px;
  }

  .mission-shader-grid {
    padding: 28px 16px 58px;
  }

  .mission-grid.mission-shader-grid {
    grid-template-columns: 1fr;
  }

  .mission-shader-card {
    min-height: 270px;
    padding: 24px;
  }

  .mission-shader-card span {
    margin-bottom: 38px;
  }

  .shader-feature-grid {
    grid-template-columns: 1fr;
  }

  .shader-card {
    min-height: 280px;
    padding: 22px;
  }

  .shader-icon {
    margin-bottom: 34px;
  }

  .service-cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-cta .checklist {
    grid-template-columns: 1fr;
  }

  .service-cta .checklist span {
    min-height: 72px;
  }

  .process-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-flow {
    grid-template-columns: 1fr;
  }

  .solution-flow::before {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(56, 195, 111, 0.1), rgba(56, 195, 111, 0.8), rgba(56, 195, 111, 0.1));
  }

  .solution-flow article,
  .solution-flow article:nth-child(even) {
    min-height: auto;
    margin-top: 0;
    padding-left: 68px;
  }

  .solution-flow span {
    position: absolute;
    top: 18px;
    left: 14px;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
  }
}

/* Dark green form/calculator surfaces to match the DATRE homepage theme. */
.home-roi-calculator,
.calculator,
.lead-form.light-form {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 66, 23, 0.92), rgba(2, 80, 25, 0.78)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.home-roi-calculator::before,
.calculator::before,
.lead-form.light-form::before {
  background:
    radial-gradient(circle at 16% 16%, rgba(56, 195, 111, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

.home-roi-calculator label,
.calculator label,
.lead-form.light-form label {
  color: rgba(255, 255, 255, 0.9);
}

.home-roi-calculator input,
.home-roi-calculator select,
.calculator input,
.calculator select,
.lead-form.light-form input,
.lead-form.light-form select,
.lead-form.light-form textarea {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(0, 36, 13, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-roi-calculator input:focus,
.home-roi-calculator select:focus,
.calculator input:focus,
.calculator select:focus,
.lead-form.light-form input:focus,
.lead-form.light-form select:focus,
.lead-form.light-form textarea:focus {
  border-color: rgba(56, 195, 111, 0.75);
  box-shadow: 0 0 0 3px rgba(56, 195, 111, 0.18);
  outline: none;
}

.home-roi-calculator option,
.calculator option {
  color: #102018;
  background: #ffffff;
}

.range-value,
.home-roi-calculator .range-value,
.calculator .range-value {
  color: rgba(255, 255, 255, 0.82);
}

.home-roi-calculator input[type="range"],
.calculator input[type="range"] {
  accent-color: #38c36f;
  background: transparent;
  box-shadow: none;
}

.home-roi-calculator .calculator-result div,
.calculator-result div {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(135deg, rgba(2, 80, 25, 0.82), rgba(0, 36, 13, 0.86));
}

.home-roi-calculator .calculator-result span,
.calculator-result span {
  color: rgba(255, 255, 255, 0.72);
}

.home-roi-calculator .calculator-result strong,
.calculator-result strong {
  color: #ffffff;
}
