@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dmsans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

:root {
  --hub-void: #0b0d0a;
  --hub-panel: #151714;
  --hub-paper: #f4f1ea;
  --hub-paper-soft: #eae6dc;
  --hub-ink: #181914;
  --hub-muted: #66685f;
  --hub-line: rgba(24, 25, 20, 0.16);
  --hub-line-dark: rgba(255, 255, 255, 0.13);
  --hub-accent: #b88959;
  --hub-accent-light: #e5c49e;
  --hub-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.operations-hub {
  margin: 0;
  overflow-x: hidden;
  color: var(--hub-ink);
  background: var(--hub-paper);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.operations-hub button,
body.operations-hub input {
  font: inherit;
}

body.operations-hub a,
body.operations-hub button {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hub-wrap {
  width: min(var(--hub-width), calc(100% - 56px));
  margin-inline: auto;
}

.hub-kicker {
  margin: 0 0 18px;
  color: var(--hub-accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  color: #f7f5ef;
  background:
    radial-gradient(circle at 80% 16%, rgba(184, 137, 89, 0.12), transparent 30%),
    linear-gradient(132deg, #0b0d0a 0%, #10120e 57%, #090a08 100%);
}

.hub-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.hub-hero-grid {
  min-height: 680px;
  padding-block: 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
}

.hub-hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 5vw, 5.35rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hub-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(247, 245, 239, 0.7);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.58;
}

.hub-button {
  min-height: 52px;
  width: fit-content;
  margin-top: 30px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.hub-button-primary {
  color: #12130f;
  background: var(--hub-accent-light);
}

.hub-button-secondary {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.product-shelf {
  position: relative;
  padding: 25px 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.product-shelf::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 72px;
  height: 3px;
  content: "";
  background: var(--hub-accent);
}

.shelf-brand {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.35rem;
}

.product-shelf ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.product-shelf li {
  min-width: 0;
  min-height: 278px;
  padding: 17px 10px 13px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.product-shelf li:last-child {
  border-right: 0;
}

.product-shelf li > span {
  color: var(--hub-accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-shelf strong {
  margin-top: auto;
  overflow-wrap: anywhere;
  color: #f6f3ec;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.83rem, 1.08vw, 1.02rem);
  font-weight: 590;
  hyphens: auto;
  letter-spacing: -0.015em;
  line-height: 1.14;
}

.product-shelf small {
  margin-top: 11px;
  color: rgba(247, 245, 239, 0.44);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-section {
  padding: clamp(84px, 10vw, 142px) 0;
  background: var(--hub-paper);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 50px;
}

.section-heading h2,
.interest-shell h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  font-weight: 630;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--hub-muted);
  font-size: 1.08rem;
}

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

.product-card {
  min-width: 0;
  min-height: 480px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hub-line);
  background: rgba(255, 255, 255, 0.32);
}

.product-card-featured {
  background: #e4dfd3;
}

.product-card-top {
  min-height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-number {
  margin: 0;
  color: var(--hub-accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.status-badge {
  max-width: 220px;
  padding: 7px 9px;
  border: 1px solid rgba(24, 25, 20, 0.14);
  border-radius: 999px;
  color: #4e5049;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

.status-live::before,
.status-pilot::before,
.status-prep::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  content: "";
  background: #50875e;
  vertical-align: 1px;
}

.status-pilot::before {
  background: var(--hub-accent);
}

.status-prep::before {
  background: #8c8e86;
}

.product-card h3 {
  margin: 14px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.product-card > p:not(.product-number) {
  margin: 18px 0 0;
  color: var(--hub-muted);
}

.product-card ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding: 7px 0 7px 18px;
  border-top: 1px solid rgba(24, 25, 20, 0.09);
  color: #45463f;
  font-size: 0.91rem;
}

.product-card li::before {
  position: absolute;
  top: 16px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--hub-accent);
}

.product-action {
  width: 100%;
  min-height: 49px;
  margin-top: auto;
  padding: 12px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-top: 1px solid var(--hub-ink);
  border-radius: 0;
  color: var(--hub-ink);
  background: transparent;
  font-weight: 780;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.product-action span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.product-action:hover span {
  transform: translateX(4px);
}

.workflow-section {
  padding: clamp(84px, 10vw, 142px) 0;
  color: #f6f4ee;
  background: var(--hub-void);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(56px, 9vw, 130px);
}

.section-heading-dark {
  position: sticky;
  top: 120px;
  align-self: start;
  margin: 0;
}

.section-heading-dark > p:last-child {
  color: rgba(246, 244, 238, 0.59);
}

.workflow-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hub-line-dark);
  list-style: none;
}

.workflow-steps li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--hub-line-dark);
}

.workflow-steps li > span {
  color: var(--hub-accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 730;
  letter-spacing: 0.1em;
}

.workflow-steps h3 {
  margin: -4px 0 7px;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 590;
  letter-spacing: -0.025em;
}

.workflow-steps p {
  margin: 0;
  color: rgba(246, 244, 238, 0.61);
}

.interest-section {
  padding: clamp(78px, 9vw, 120px) 0;
  background: var(--hub-paper-soft);
}

.interest-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
}

.interest-shell > div:last-child > p {
  margin: 0;
  color: var(--hub-muted);
  font-size: 1.08rem;
}

.interest-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: min(800px, calc(100vh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--hub-ink);
  background: var(--hub-paper);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.55);
}

.interest-dialog::backdrop {
  background: rgba(5, 6, 5, 0.76);
  backdrop-filter: blur(4px);
}

.operations-analytics-consent {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #e8e6e0;
  background: #151714;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
}

.operations-analytics-consent p {
  margin: 0;
  color: #aeb4ae;
  font-size: 0.83rem;
  line-height: 1.5;
}

.operations-analytics-consent strong,
.operations-analytics-consent a {
  color: #f4f2ec;
}

.operations-analytics-consent > div {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.operations-analytics-consent button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #4b4f49;
  border-radius: 3px;
  color: #e8e6e0;
  background: transparent;
  cursor: pointer;
}

.operations-analytics-consent button:last-child {
  border-color: var(--hub-accent-light);
  color: #11130f;
  background: var(--hub-accent-light);
  font-weight: 700;
}

.dialog-shell {
  position: relative;
  padding: clamp(30px, 6vw, 54px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #4b4c46;
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-shell h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 630;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.dialog-intro {
  margin: 18px 0 25px;
  color: var(--hub-muted);
}

.interest-fields {
  display: grid;
  gap: 15px;
}

.interest-fields label {
  display: grid;
  gap: 7px;
}

.interest-fields label > span {
  font-size: 0.78rem;
  font-weight: 730;
  letter-spacing: 0.04em;
}

.interest-fields input {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid #b7b4ab;
  border-radius: 3px;
  color: var(--hub-ink);
  background: rgba(255, 255, 255, 0.52);
}

.interest-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.dialog-privacy {
  margin: 18px 0 0;
  color: var(--hub-muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

.dialog-privacy a {
  color: inherit;
}

.dialog-submit {
  width: 100%;
  margin-top: 20px;
}

.dialog-submit[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.dialog-error {
  margin: 16px 0 0;
  padding: 10px 12px;
  color: #7a2323;
  background: #f2dede;
  border: 1px solid #d8b0b0;
}

.dialog-success {
  padding-block: 16px;
}

.dialog-success-mark {
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hub-accent);
  border-radius: 50%;
  color: var(--hub-accent);
  font-size: 1.35rem;
}

.dialog-success > p:last-of-type {
  color: var(--hub-muted);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #e7b66f;
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .hub-hero {
    min-height: auto;
  }

  .hub-hero-grid {
    min-height: auto;
    padding-block: 74px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hub-hero-copy {
    max-width: 790px;
  }

  .product-shelf {
    width: 100%;
  }

  .product-shelf li {
    min-height: 190px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .hub-wrap {
    width: min(var(--hub-width), calc(100% - 40px));
  }

  .hub-hero-grid {
    padding-block: 52px 48px;
    gap: 38px;
  }

  .hub-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.25rem);
  }

  .hub-lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hub-button {
    min-height: 48px;
    margin-top: 24px;
  }

  .product-shelf {
    padding: 17px 17px 12px;
  }

  .shelf-brand {
    margin-bottom: 14px;
    font-size: 1.05rem;
  }

  .product-shelf ol {
    grid-template-columns: 1fr;
  }

  .product-shelf li {
    min-height: 0;
    padding: 9px 2px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .product-shelf li:last-child {
    border-bottom: 0;
  }

  .product-shelf strong {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.2;
  }

  .product-shelf strong br {
    display: none;
  }

  .product-shelf small {
    margin: 0;
    font-size: 0.58rem;
    text-align: right;
  }

  .products-section,
  .workflow-section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

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

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

  .workflow-grid,
  .interest-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-heading-dark {
    position: static;
  }

  .operations-analytics-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .operations-analytics-consent > div {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hub-hero-grid {
    padding: 31px 0 28px;
    gap: 24px;
  }

  .hub-kicker {
    margin-bottom: 13px;
    font-size: 0.67rem;
  }

  .hub-hero-copy h1 {
    font-size: clamp(2.38rem, 10.5vw, 2.85rem);
  }

  .hub-lead {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.48;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hub-hero-copy .hub-button {
    min-height: 46px;
    margin-top: 17px;
  }

  .product-shelf {
    padding: 13px 14px 9px;
  }

  .product-shelf li {
    padding-block: 6px;
  }

  .product-card {
    padding: 22px 20px;
  }

  .product-card-top {
    min-height: 58px;
  }

  .status-badge {
    max-width: 205px;
    font-size: 0.65rem;
  }

  .dialog-shell {
    padding: 35px 23px 27px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
