:root {
  --ink: #17211f;
  --deep: #102c27;
  --deep-alt: #153a34;
  --green: #1f7a5c;
  --teal: #1f8f8a;
  --gold: #a98732;
  --rose: #bc4d57;
  --paper: #f4f5ef;
  --paper-strong: #ffffff;
  --mist: #e7ece5;
  --line: #d3dbd3;
  --muted: #5b6b67;
  --success-bg: #dff3ea;
  --success-text: #1f6b4f;
  --shadow: 0 20px 50px rgba(23, 33, 31, 0.08);
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

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

.site-body {
  min-height: 100vh;
}

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(244, 245, 239, 0.9);
  border-bottom: 1px solid rgba(23, 33, 31, 0.08);
}

.nav-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
}

.site-nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--deep);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mobile-nav-toggle:hover {
  transform: translateY(-1px);
}

.mobile-nav-toggle span {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .mobile-nav-toggle {
  background: rgba(16, 44, 39, 0.92);
  border-color: rgba(16, 44, 39, 0.92);
  color: var(--paper-strong);
}

.site-header.nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eef2ea;
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
}

.section {
  padding: 4.5rem 0;
}

.surface-light {
  background: var(--paper);
}

.surface-dark {
  background: var(--deep);
  color: var(--paper-strong);
}

.innovation-hero {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  padding: 5.8rem 0 2.1rem;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: var(--paper-strong);
}

.hero-grid-overlay,
.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 95%);
}

.hero-stage {
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  padding-bottom: 1.8rem;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.14);
}

.section-tag {
  color: var(--green);
  background: rgba(31, 122, 92, 0.12);
}

.inverse .section-tag {
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.12);
}

.innovation-hero h1,
.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  max-width: 13ch;
}

.hero-copy,
.section-head p,
.prose-block p,
.log-card p,
.summary-stack p,
.panel-strip p,
.request-actions p,
.form-intro p {
  margin: 0;
  line-height: 1.7;
}

.hero-copy {
  max-width: 47rem;
  font-size: 1.06rem;
}

.hero-actions,
.action-row,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-proof,
.signal-grid,
.metrics-grid,
.summary-grid,
.studio-grid,
.pattern-grid,
.log-grid,
.details-grid,
.configurator-layout,
.request-layout,
.pay-grid,
.field-grid,
.picker-grid,
.operating-rail {
  display: grid;
  gap: 1rem;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0.8rem;
}

.hero-proof div,
.signal-grid div {
  display: grid;
  gap: 0.35rem;
}

.hero-proof div {
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  background: rgba(9, 24, 21, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof span,
.signal-grid span,
.label,
.studio-topline,
.pattern-topline,
.pattern-details span,
.studio-meta span,
.configurator-topline span,
.configurator-meta span,
.request-table th,
.request-table td span,
.offer-meta,
.catalog-topline {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-proof strong,
.signal-grid strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

.hero-node {
  position: absolute;
  width: 14rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 24, 21, 0.48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  animation: nodeFloat 6s ease-in-out infinite;
}

.hero-node span {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-node strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.45;
}

.node-request {
  top: 18%;
  left: 10%;
  animation-delay: 0.2s;
}

.node-erp {
  top: 18%;
  right: 11%;
  animation-delay: 0.8s;
}

.node-ops {
  top: 44%;
  left: 21%;
  animation-delay: 1.4s;
}

.node-customer {
  top: 39%;
  right: 22%;
  animation-delay: 2s;
}

.node-payment {
  bottom: 16%;
  right: 34%;
  animation-delay: 1.1s;
}

.node-delivery {
  bottom: 14%;
  left: 34%;
  animation-delay: 2.6s;
}

.hero-beam {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(124, 227, 210, 0.12), rgba(124, 227, 210, 0.7));
}

.hero-beam span {
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ce3d2;
  box-shadow: 0 0 14px rgba(124, 227, 210, 0.72);
  animation: beamPulse 3.4s linear infinite;
}

.beam-a {
  top: 26%;
  left: 22%;
  width: 54%;
  transform: rotate(-2deg);
}

.beam-b {
  top: 47%;
  left: 32%;
  width: 35%;
  transform: rotate(-24deg);
}

.beam-c {
  top: 54%;
  left: 31%;
  width: 34%;
  transform: rotate(18deg);
}

.beam-d {
  top: 35%;
  left: 26%;
  width: 46%;
  transform: rotate(15deg);
}

.signal-band {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(23, 33, 31, 0.08);
  border-bottom: 1px solid rgba(23, 33, 31, 0.08);
  background: #e8efe8;
}

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

.signal-grid div {
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 31, 0.08);
  background: rgba(255, 255, 255, 0.68);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.section-head.narrow,
.narrow-stack {
  max-width: 52rem;
}

.studio-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
}

.studio-panel,
.pattern-card,
.summary-panel,
.request-tool,
.configurator-preview,
.log-card,
.editor-card,
.table-shell,
.terms-card,
.prose-block {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.studio-panel,
.pattern-card {
  overflow: hidden;
}

.studio-panel img,
.pattern-card img,
.configurator-preview > img {
  width: 100%;
  object-fit: cover;
}

.studio-panel img {
  aspect-ratio: 16 / 11;
}

.studio-panel.primary {
  grid-row: span 2;
}

.studio-panel.primary img {
  aspect-ratio: 4 / 3;
}

.studio-copy,
.pattern-copy,
.summary-panel,
.request-tool,
.log-card,
.editor-card,
.terms-card,
.prose-block,
.configurator-content {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.studio-topline,
.pattern-topline,
.configurator-topline,
.studio-meta,
.pattern-details,
.configurator-meta,
.catalog-footer,
.offer-meta,
.panel-strip,
.signature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.studio-copy h3,
.pattern-copy h3,
.configurator-content h3,
.log-card h2,
.editor-card h2,
.terms-card h2,
.terms-card h3,
.prose-block h1 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.22;
}

.studio-meta,
.pattern-details,
.configurator-meta {
  padding-top: 0.2rem;
}

.studio-meta div,
.pattern-details div,
.configurator-meta div,
.summary-grid div {
  display: grid;
  gap: 0.35rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-row span {
  min-height: 2rem;
  padding: 0.32rem 0.62rem;
  border-radius: var(--radius);
  background: #eef5f2;
  color: var(--muted);
  font-size: 0.82rem;
}

.mini-list,
.journey-list {
  margin: 0;
  padding: 0;
}

.mini-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.mini-list li::before {
  content: "\2022 ";
  color: var(--teal);
}

.text-link {
  color: var(--green);
  font-weight: 700;
}

.surface-dark .text-link {
  color: #7ce3d2;
}

.operating-grid {
  display: grid;
  gap: 2rem;
}

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

.operating-block {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.operating-block span {
  color: #7ce3d2;
  font-size: 0.84rem;
  font-weight: 700;
}

.operating-block h3 {
  margin: 0;
  font-size: 1.25rem;
}

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

.pattern-card img {
  aspect-ratio: 16 / 10;
}

.request-section {
  background:
    linear-gradient(180deg, rgba(16, 44, 39, 0.04), transparent 28%),
    var(--paper);
}

.configurator-layout,
.request-layout,
.pay-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.configurator-preview {
  overflow: hidden;
}

.configurator-preview > img {
  aspect-ratio: 16 / 11;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.flow-strip div {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  background: #edf4f0;
}

.flow-strip span {
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
}

.flow-strip p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.request-form {
  display: grid;
  gap: 1.1rem;
}

.form-intro {
  display: grid;
  gap: 0.45rem;
}

.form-intro strong {
  font-size: 1.08rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label,
.signature-head label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
#signatureCanvas {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcf9;
}

.field input,
.field select,
.field textarea {
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field span,
.validation-summary {
  color: var(--rose);
  font-size: 0.85rem;
}

.validation-summary ul {
  margin: 0;
  padding-left: 1rem;
}

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

.picker-chip {
  display: grid;
  gap: 0.28rem;
  align-content: center;
  min-height: 4.5rem;
  padding: 0.88rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fbfcf9;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.picker-chip:hover {
  transform: translateY(-1px);
}

.picker-chip span {
  font-weight: 700;
  color: var(--ink);
}

.picker-chip small {
  color: var(--muted);
  font-size: 0.82rem;
}

.picker-chip.is-selected {
  border-color: var(--green);
  background: #e4f0ec;
  box-shadow: inset 0 0 0 1px rgba(31, 122, 92, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  color: var(--paper-strong);
}

.button-primary:hover {
  background: #1a694f;
}

.button-secondary {
  background: transparent;
  border-color: rgba(23, 33, 31, 0.22);
  color: var(--ink);
}

.innovation-hero .button-secondary,
.surface-dark .button-secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-small {
  min-height: 2.35rem;
  padding-inline: 0.9rem;
  font-size: 0.9rem;
}

.summary-panel,
.editor-card,
.log-card,
.terms-card,
.prose-block {
  background: var(--paper-strong);
}

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

.label {
  text-transform: uppercase;
}

.status-pill,
.static-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
  white-space: nowrap;
}

.status-pill.received,
.status-pill.issued {
  background: #fff5d9;
  color: #8d6b12;
}

.status-pill.commercialreview,
.status-pill.invoiceissued {
  background: #e6eef8;
  color: #2a5a8b;
}

.status-pill.paid {
  background: #dff3ea;
  color: #1f6b4f;
}

.status-pill.deliverypublished {
  background: #ecf1f1;
  color: #1f6f74;
}

.status-pill.completed,
.status-pill.closed {
  background: #e7f3ee;
  color: #1c6a50;
}

.static-pill {
  background: #edf4f0;
  color: var(--green);
}

.inline-message {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.inline-message.success {
  background: var(--success-bg);
  color: var(--success-text);
  border-color: #bfe1d1;
}

.panel-strip {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.delivery-strip {
  align-items: start;
}

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

.journey-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.journey-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.journey-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.journey-list li strong {
  display: block;
  margin-bottom: 0.3rem;
}

.journey-list li span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.85rem;
}

ol.journey-list.compact {
  padding-left: 1.2rem;
  list-style: decimal;
}

ol.journey-list.compact li {
  display: list-item;
  padding-bottom: 0.55rem;
  border-bottom: 0;
}

.admin-layout,
.portal-layout,
.pay-layout,
.details-layout,
.thanks-layout {
  display: grid;
  gap: 1.4rem;
}

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

.metrics-grid div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 33, 31, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.metrics-grid strong {
  font-size: 1.8rem;
}

.table-shell {
  overflow: hidden;
}

.request-table {
  width: 100%;
  border-collapse: collapse;
}

.request-table th,
.request-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.request-table td strong {
  display: block;
  margin-bottom: 0.35rem;
}

.empty-state {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.signature-block {
  display: grid;
  gap: 0.75rem;
}

#signatureCanvas {
  height: 15rem;
  touch-action: none;
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
}

.checkbox-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
}

.details-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.editor-stack {
  display: grid;
  gap: 1rem;
}

.summary-stack,
.narrow-stack,
.prose-block {
  display: grid;
  gap: 0.85rem;
}

.break-all {
  word-break: break-all;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.site-body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes beamPulse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  100% {
    transform: translateX(calc(100% - 10px));
    opacity: 0;
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .hero-proof,
  .signal-grid,
  .studio-grid,
  .pattern-grid,
  .metrics-grid,
  .summary-grid,
  .details-grid,
  .configurator-layout,
  .request-layout,
  .pay-grid,
  .log-grid,
  .operating-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-panel.primary {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .node-request,
  .node-erp {
    top: 14%;
  }

  .node-request {
    left: 6%;
  }

  .node-erp {
    right: 6%;
  }

  .node-ops {
    left: 10%;
    top: 49%;
  }

  .node-customer {
    right: 10%;
    top: 44%;
  }

  .node-payment {
    right: 21%;
  }

  .node-delivery {
    left: 21%;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 1.2rem, 100%);
  }

  .nav-shell,
  .footer-shell,
  .footer-links,
  .hero-actions,
  .action-row,
  .panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .innovation-hero {
    min-height: 30rem;
    padding-top: 5.3rem;
  }

  .innovation-hero h1,
  .section-head h1,
  .section-head h2 {
    font-size: 2.12rem;
    max-width: 100%;
  }

  .hero-stage {
    opacity: 0.72;
  }

  .hero-node {
    width: 11.8rem;
    padding: 0.78rem 0.85rem;
  }

  .node-request {
    top: 17%;
    left: 4%;
  }

  .node-erp {
    top: 16%;
    right: 4%;
  }

  .node-ops {
    top: 43%;
    left: 5%;
  }

  .node-customer {
    top: 39%;
    right: 5%;
  }

  .node-delivery {
    bottom: 17%;
    left: 6%;
  }

  .node-payment {
    bottom: 13%;
    right: 6%;
  }

  .beam-a,
  .beam-b,
  .beam-c,
  .beam-d {
    opacity: 0.6;
  }

  .hero-proof,
  .signal-grid,
  .studio-grid,
  .pattern-grid,
  .metrics-grid,
  .summary-grid,
  .details-grid,
  .configurator-layout,
  .request-layout,
  .pay-grid,
  .log-grid,
  .operating-rail,
  .field-grid,
  .picker-grid,
  .flow-strip {
    grid-template-columns: 1fr;
  }

  .request-table thead {
    display: none;
  }

  .request-table,
  .request-table tbody,
  .request-table tr,
  .request-table td {
    display: block;
    width: 100%;
  }

  .request-table tr {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .request-table td {
    padding: 0.35rem 0;
    border-bottom: 0;
  }

  .journey-list li {
    flex-direction: column;
  }
}

.innovation-hero {
  min-height: 30rem;
  padding: 5.4rem 0 1.35rem;
}

.hero-shell {
  gap: 1.15rem;
  padding-bottom: 0.85rem;
}

.innovation-hero h1 {
  font-size: 3.35rem;
  line-height: 1.04;
  max-width: 11ch;
}

.hero-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-focus span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.72rem;
  border-radius: var(--radius);
  background: rgba(9, 24, 21, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  padding-top: 0.35rem;
}

.hero-journey article {
  display: grid;
  gap: 0.45rem;
  min-height: 8.6rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(9, 24, 21, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-step-number {
  color: #7ce3d2;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-journey strong {
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-journey p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .hero-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .innovation-hero {
    min-height: 28rem;
    padding-top: 5.1rem;
  }

  .innovation-hero h1 {
    font-size: 2.34rem;
    max-width: 100%;
  }

  .hero-journey {
    grid-template-columns: 1fr;
  }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
  padding-bottom: 0.9rem;
}

.hero-copy-stack {
  display: grid;
  gap: 1.15rem;
  max-width: 44rem;
}

.innovation-hero {
  min-height: 32rem;
  padding: 5.3rem 0 1.35rem;
}

.innovation-hero h1 {
  font-size: 3.15rem;
  line-height: 1.02;
  max-width: 11ch;
}

.hero-copy {
  max-width: 40rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-preview {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 24, 21, 0.48);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-preview-head {
  display: grid;
  gap: 0.35rem;
}

.hero-preview-head span,
.hero-preview-foot span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-preview-head strong,
.hero-preview-foot strong {
  line-height: 1.5;
}

.hero-preview-board {
  display: grid;
  gap: 0.75rem;
}

.preview-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.preview-step.current {
  border-color: rgba(124, 227, 210, 0.42);
  background: rgba(20, 68, 60, 0.42);
}

.preview-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  min-height: 2.3rem;
  border-radius: var(--radius);
  background: rgba(124, 227, 210, 0.14);
  color: #7ce3d2;
  font-size: 0.86rem;
  font-weight: 700;
}

.preview-step strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 1rem;
  line-height: 1.35;
}

.preview-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.hero-preview-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding-top: 0.15rem;
}

.hero-preview-foot div {
  display: grid;
  gap: 0.28rem;
}

.path-section {
  padding-top: 3.7rem;
}

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

.path-panel {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding: 1.45rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.path-panel.emphasis {
  border-color: rgba(31, 122, 92, 0.24);
  background: #f1f6f2;
}

.path-kicker {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
}

.path-panel h3,
.process-card h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.2;
}

.path-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.path-panel .button {
  width: fit-content;
  margin-top: 0.15rem;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
    var(--deep);
}

.process-layout {
  display: grid;
  gap: 2rem;
}

.section-head.inverse p {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.82);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: 14rem;
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.process-card span {
  color: #7ce3d2;
  font-size: 0.84rem;
  font-weight: 700;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.mobile-request-cta {
  display: none;
}

@media (max-width: 1100px) {
  .process-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy-stack {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-body {
    padding-bottom: 5rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .nav-shell {
    position: relative;
    align-items: center;
    flex-direction: row;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .site-nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: 0;
    z-index: 35;
    display: grid;
    gap: 0.55rem;
    padding: 0.7rem;
    border: 1px solid rgba(23, 33, 31, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(23, 33, 31, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-header.nav-open .site-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-links a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius);
    background: #f7f8f3;
    color: var(--deep);
    font-weight: 600;
  }

  .innovation-hero {
    min-height: auto;
    padding: 5rem 0 1.2rem;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy-stack {
    gap: 1rem;
  }

  .innovation-hero h1 {
    font-size: 2.25rem;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .process-card {
    padding: 1.05rem;
  }

  .process-card {
    min-height: 0;
  }

  .mobile-request-cta {
    position: fixed;
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--paper-strong);
    box-shadow: 0 16px 30px rgba(16, 44, 39, 0.24);
  }
}
