:root {
  --obsidian: #0a0b0d;
  --graphite: #15171b;
  --carbon: #1e2126;
  --steel: #3a3e45;
  --silver: #9ba0a8;
  --offwhite: #f2efe7;
  --white: #ffffff;
  --gold: #d09c62;
  --gold-light: #e9c892;
  --gold-deep: #8f6832;
  --gold-ink: #141008;
  --ok: #5e8c74;
  --warn: #b0763f;
  --error: #a65046;
  --info: #6e87a3;

  --gradient-gold: linear-gradient(135deg, #e9c892 0%, #d09c62 45%, #8f6832 100%);
  --gradient-surface: linear-gradient(180deg, #1e2126 0%, #0a0b0d 100%);
  --gradient-metal: linear-gradient(115deg, #23262c 0%, #3e434b 30%, #191b1f 55%, #31353c 80%, #1c1e23 100%);

  --line-gold: rgba(208, 156, 98, 0.22);
  --line-dark: rgba(242, 239, 231, 0.08);
  --line-light: rgba(21, 23, 27, 0.13);
  --text-dark-muted: #555b63;
  --text-light-muted: #b4b6ba;

  --font-display: "Marcellus", Georgia, serif;
  --font-sans: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --container: 1312px;
  --page-gutter: clamp(20px, 5vw, 64px);
  --section-space: clamp(88px, 10vw, 152px);
  --header-height: 88px;

  --radius-control: 4px;
  --radius-card: 8px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.4), 0 10px 26px rgba(0, 0, 0, 0.55);
  --shadow-hover: 0 14px 34px rgba(0, 0, 0, 0.45);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--obsidian);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--obsidian);
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

body.lead-modal-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--gold-ink);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  overflow: visible;
}

a {
  color: inherit;
}

main:focus {
  outline: none;
}

button,
input,
select {
  font: inherit;
}

button,
a,
summary,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 em,
h2 em,
h3 em {
  color: var(--gold);
  font-style: normal;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: var(--radius-control);
  background: var(--gradient-gold);
  color: var(--gold-ink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--dark {
  background: var(--obsidian);
  color: var(--offwhite);
}

.section--light {
  background: var(--offwhite);
  color: var(--graphite);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.button > span[aria-hidden="true"] {
  font-size: 1rem;
  line-height: 0;
  transition: transform 200ms ease;
}

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

.button:hover > span[aria-hidden="true"] {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--gradient-gold);
  color: var(--gold-ink);
  box-shadow: 0 6px 22px rgba(208, 156, 98, 0.14);
}

.button--primary:hover {
  box-shadow: 0 6px 22px rgba(208, 156, 98, 0.35);
}

.button--secondary {
  border-color: var(--line-gold);
  background: transparent;
  color: var(--gold-light);
}

.button--secondary:hover {
  border-color: rgba(208, 156, 98, 0.48);
  background: rgba(208, 156, 98, 0.08);
}

.button:focus-visible,
.primary-nav a:focus-visible,
.brand-logo:focus-visible,
.menu-toggle:focus-visible,
.technical-link:focus-visible,
.direct-contact:focus-visible,
.footer-contact a:focus-visible,
.site-footer__bottom a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

input:focus-visible,
select:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(208, 156, 98, 0.65);
  outline: none;
}

.section-label,
.console-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--graphite);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label span {
  display: inline-flex;
  min-width: 35px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid rgba(143, 104, 50, 0.35);
  border-radius: var(--radius-control);
}

.section-label--dark,
.section-label--dark span,
.console-label {
  color: var(--gold);
}

.section-label--dark span {
  border-color: var(--line-gold);
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.2525rem, 4.4625vw, 4.505rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.section-heading > p,
.section-heading > div + p {
  max-width: 46ch;
  margin-bottom: 4px;
  color: var(--text-dark-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.section--light .section-heading h2 em {
  color: var(--gold-deep);
}

/* Header */
.header-scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(10, 11, 13, 0.72);
  transition:
    height 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: var(--line-dark);
  background: rgba(10, 11, 13, 0.92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(210px, 22vw, 292px);
  min-width: 140px;
  overflow: hidden;
  padding: 7px 10px;
  background: transparent;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.brand-logo__scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(233, 200, 146, 0.18), transparent);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-14deg);
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
}

.primary-nav a {
  position: relative;
  padding-block: 9px;
  color: var(--text-light-muted);
  font-family: var(--font-mono);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--offwhite);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button--header {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.69rem;
}

.menu-toggle,
.menu-scrim {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(64px, 8vh, 108px));
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(1100px 720px at 80% 18%, rgba(208, 156, 98, 0.07), transparent 62%),
    radial-gradient(700px 520px at 5% 92%, rgba(208, 156, 98, 0.04), transparent 62%),
    var(--obsidian);
}

.hero__mesh {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 239, 231, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, 0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -14%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: rgba(208, 156, 98, 0.045);
  filter: blur(88px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero__copy {
  padding-bottom: clamp(48px, 7vw, 96px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 8px 13px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 200ms ease, background-color 200ms ease;
}

a.status-pill:hover {
  border-color: rgba(208, 156, 98, 0.48);
  background: rgba(208, 156, 98, 0.08);
}

a.status-pill > span[aria-hidden="true"]:last-child {
  font-size: 0.9rem;
  line-height: 0;
}

.status-pill__dot,
.form-status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.23rem, 5.695vw, 6.46rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--text-light-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 300;
  line-height: 1.7;
}

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

.hero__subhead {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 32px 0 0;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__subhead span {
  color: var(--gold-deep);
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding-bottom: clamp(48px, 7vw, 96px);
}

.corner {
  position: absolute;
  z-index: 4;
  width: 32px;
  height: 32px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.8;
  pointer-events: none;
}

.corner--top-left {
  top: 16px;
  left: 16px;
  border-width: 1px 0 0 1px;
}

.corner--top-right {
  top: 16px;
  right: 16px;
  border-width: 1px 1px 0 0;
}

.corner--bottom-left {
  bottom: 16px;
  left: 16px;
  border-width: 0 0 1px 1px;
}

.corner--bottom-right {
  right: 16px;
  bottom: 16px;
  border-width: 0 1px 1px 0;
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Technologies */
.technologies {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

.light-facets {
  position: absolute;
  top: 0;
  right: 0;
  width: 42vw;
  height: 480px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='60'%3E%3Cpath d='M36 0 72 30 36 60 0 30Z' fill='none' stroke='%238F6832' stroke-opacity='.18'/%3E%3Cpath d='M0 30h72M36 0v60' fill='none' stroke='%238F6832' stroke-opacity='.10'/%3E%3C/svg%3E");
  mask-image: linear-gradient(135deg, transparent, black 35%, transparent 92%);
  opacity: 0.65;
  pointer-events: none;
}

.technologies .section-heading > p,
.technologies .section-heading > div + p {
  color: var(--text-light-muted);
}

.technology-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.technology-card {
  grid-column: span 5;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  background: var(--gradient-surface);
  box-shadow: var(--shadow-card);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.technology-card--wide {
  grid-column: span 7;
}

.technology-card:hover {
  border-color: rgba(208, 156, 98, 0.42);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.technology-card__media {
  position: relative;
  height: clamp(350px, 39vw, 520px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(21, 23, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 27, 0.025) 1px, transparent 1px),
    var(--white);
  background-size: 24px 24px;
}

.technology-card__media::after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 28px;
  height: 28px;
  border-right: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  content: "";
  opacity: 0.45;
}

.technology-card__media img {
  width: 100%;
  height: 100%;
  padding: clamp(24px, 3.5vw, 48px);
  object-fit: contain;
  filter: saturate(0.82) contrast(1.06) brightness(0.97);
  transition: transform 350ms var(--ease-out);
}

.technology-card:hover .technology-card__media img {
  transform: scale(1.018);
}

.technology-card__number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 5px 9px;
  border: 1px solid rgba(143, 104, 50, 0.26);
  border-radius: var(--radius-control);
  background: rgba(242, 239, 231, 0.76);
  color: var(--graphite);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(6px);
}

.technology-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 42px);
}

.technology-card .tag {
  display: inline-flex;
  padding: 6px 11px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.technology-card h3 {
  margin: 20px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.55vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
  color: var(--offwhite);
}

.technology-card p {
  max-width: 52ch;
  margin-bottom: 30px;
  color: var(--text-light-muted);
  line-height: 1.65;
}

.technical-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.technical-link span {
  transition: transform 200ms ease;
}

.technical-link:hover span {
  transform: translateX(4px);
}

.technical-note {
  display: flex;
  max-width: 830px;
  align-items: flex-start;
  gap: 14px;
  margin: 32px 0 0;
  color: var(--silver);
  font-size: 0.8rem;
  line-height: 1.6;
}

.technical-note span {
  color: var(--gold);
  font-family: var(--font-mono);
}

/* Operation */
.operation {
  overflow: clip;
  background:
    radial-gradient(900px 600px at 100% 50%, rgba(208, 156, 98, 0.055), transparent 68%),
    var(--obsidian);
}

.section-grid-pattern {
  position: absolute;
  inset: 0 0 auto;
  height: 54%;
  background-image:
    linear-gradient(rgba(242, 239, 231, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.operation__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
}

.operation__heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin: 0;
}

.operation__heading h2 {
  font-size: clamp(2.465rem, 4.42vw, 4.675rem);
}

.operation__heading > p:not(.section-label) {
  max-width: 47ch;
  margin: 26px 0 32px;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.process-item {
  display: grid;
  grid-template-columns: 54px 38px 1fr;
  gap: 18px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-item__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background: rgba(208, 156, 98, 0.04);
}

.process-item__icon svg,
.console-item svg,
.access-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.process-item__icon circle {
  fill: var(--gold);
  stroke: none;
}

.process-item__number {
  padding-top: 15px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.process-item h3 {
  margin: 3px 0 8px;
  font-family: var(--font-sans);
  font-size: 1.4025rem;
  font-weight: 500;
}

.process-item p {
  max-width: 52ch;
  margin: 0;
  color: var(--text-light-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.support-console {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  margin-top: clamp(72px, 9vw, 120px);
  padding: clamp(34px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background: var(--gradient-surface);
  box-shadow: var(--shadow-card);
}

.support-console::before,
.support-console::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.support-console::before {
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 200, 146, 0.65), transparent);
}

.support-console::after {
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(208, 156, 98, 0.14);
  transform: rotate(45deg);
}

.support-console__intro {
  position: relative;
  z-index: 1;
}

.console-label {
  margin-bottom: 22px;
}

.support-statement {
  max-width: 670px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.7vw, 2.8rem);
  line-height: 1.32;
}

.support-console__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.console-item {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  background: rgba(242, 239, 231, 0.035);
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.console-item:hover {
  border-color: var(--line-gold);
  transform: translateY(-2px);
}

.console-item svg {
  margin-bottom: 22px;
}

.console-item span {
  display: block;
  color: var(--text-light-muted);
  font-size: 0.86rem;
}

/* Access */
.access-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.access-card {
  position: relative;
  grid-column: span 3;
  min-height: 285px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  background: #faf9f5;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.access-card:not(.access-card--lead):hover {
  border-color: rgba(143, 104, 50, 0.38);
  box-shadow: 0 14px 30px rgba(21, 23, 27, 0.1);
  transform: translateY(-2px);
}

.access-card--lead {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 594px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 64px);
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 83% 14%, rgba(208, 156, 98, 0.11), transparent 31%),
    var(--gradient-surface);
  color: var(--offwhite);
  box-shadow: var(--shadow-card);
}

.access-card__facet {
  position: absolute;
  top: clamp(32px, 5vw, 64px);
  right: clamp(30px, 4vw, 56px);
  width: clamp(130px, 17vw, 220px);
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D09C62' stroke-opacity='.34'%3E%3Cpath d='M40 65 100 18l60 47-60 117Z'/%3E%3Cpath d='M40 65h120M100 18 74 65l26 117 27-117-27-47Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.access-card--lead .console-label {
  position: absolute;
  top: clamp(34px, 5vw, 64px);
  left: clamp(34px, 5vw, 64px);
}

.access-card--lead h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.59vw, 4.93rem);
  font-weight: 400;
  line-height: 0.95;
}

.access-card--lead p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin: 0;
  color: var(--text-light-muted);
  line-height: 1.65;
}

.access-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid rgba(143, 104, 50, 0.25);
  border-radius: var(--radius-card);
}

.access-card__icon svg {
  stroke: var(--gold-deep);
}

.access-card__index {
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--graphite);
  font-family: var(--font-mono);
  font-size: 0.63rem;
}

.access-card:not(.access-card--lead) h3 {
  margin: 0 0 11px;
  font-family: var(--font-sans);
  font-size: 1.3175rem;
  font-weight: 500;
  line-height: 1.15;
}

.access-card:not(.access-card--lead) > p {
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Availability */
.availability {
  overflow: hidden;
  background:
    radial-gradient(800px 600px at 12% 70%, rgba(208, 156, 98, 0.05), transparent 64%),
    var(--obsidian);
}

.availability__glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(208, 156, 98, 0.05);
  filter: blur(90px);
  pointer-events: none;
}

.availability__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: center;
}

.availability__copy h2 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 4.845vw, 5.1rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.availability__copy > p:not(.section-label) {
  max-width: 52ch;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.availability__checks {
  display: grid;
  gap: 15px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.availability__checks li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--offwhite);
  font-size: 0.92rem;
}

.availability__checks span {
  color: var(--gold);
  font-family: var(--font-mono);
}

.direct-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  align-items: center;
  color: var(--silver);
  font-size: 0.86rem;
  text-underline-offset: 4px;
}

.direct-contact strong {
  color: var(--gold-light);
  font-weight: 500;
}

.availability-form {
  position: relative;
  color-scheme: dark;
  padding: clamp(28px, 4.3vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(30, 33, 38, 0.96), rgba(15, 16, 18, 0.98));
  box-shadow: var(--shadow-card);
}

.availability-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
  opacity: 0.65;
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.form-head .console-label {
  margin-bottom: 9px;
}

.form-head h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.615rem;
  font-weight: 500;
}

.form-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-top: 5px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-status i {
  width: 7px;
  height: 7px;
}

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

.field-group {
  min-width: 0;
}

.field-group--full {
  grid-column: 1 / -1;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-group label span {
  color: var(--silver);
  letter-spacing: 0.04em;
  text-transform: none;
}

.field-group input,
.field-group select {
  width: 100%;
  height: 50px;
  padding: 11px 13px;
  border: 1px solid #686d75;
  border-radius: var(--radius-control);
  background: var(--graphite);
  color: var(--offwhite);
  font-size: 0.92rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field-group input::placeholder {
  color: var(--silver);
  opacity: 1;
}

.field-group select {
  cursor: pointer;
}

.field-group input:hover,
.field-group select:hover {
  border-color: var(--silver);
}

.field-group input:user-invalid,
.field-group select:user-invalid {
  border-color: var(--error);
}

.field-group.has-error input,
.field-group.has-error select {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(166, 80, 70, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--silver);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-feedback {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

/* Lead capture modal */
.lead-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: start center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(5, 6, 8, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-standard);
  backdrop-filter: blur(12px);
}

.lead-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__box {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background: var(--gradient-surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 220ms var(--ease-standard),
    transform 280ms var(--ease-out);
  margin-block: auto;
}

.lead-modal.is-active .lead-modal__box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-modal__line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.lead-modal__close {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.72);
  color: var(--silver);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.lead-modal__close span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  font-size: 0;
  transform: rotate(0);
  transform-origin: 50% 50%;
  transition: transform 320ms var(--ease-out);
}

.lead-modal__close span::before,
.lead-modal__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.lead-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.lead-modal__close:hover span,
.lead-modal__close:focus-visible span {
  transform: rotate(180deg);
}

.lead-modal .console-label {
  margin: 0 52px 12px 0;
}

.lead-modal h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.1vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.lead-modal h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.lead-modal__subtitle {
  max-width: 48ch;
  margin: 18px 0 26px;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lead-modal__form {
  display: grid;
  gap: 16px;
}

.lead-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-field input,
.lead-field select {
  width: 100%;
  height: 50px;
  padding: 11px 13px;
  border: 1px solid #686d75;
  border-radius: var(--radius-control);
  outline: none;
  background: var(--graphite);
  color: var(--offwhite);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.lead-field select {
  color-scheme: dark;
}

.lead-field select:invalid {
  color: var(--silver);
}

.lead-field input::placeholder {
  color: var(--silver);
  opacity: 1;
}

.lead-field input:hover,
.lead-field input:focus,
.lead-field select:hover,
.lead-field select:focus {
  border-color: var(--gold-light);
}

.lead-field input:focus,
.lead-field select:focus {
  box-shadow: 0 0 0 3px rgba(208, 156, 98, 0.14);
}

.lead-field.has-error input,
.lead-field.has-error select {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(166, 80, 70, 0.14);
}

.lead-field__error {
  display: none;
  margin-top: 6px;
  color: #df9289;
  font-size: 0.72rem;
}

.lead-field.has-error .lead-field__error {
  display: block;
}

.lead-modal__submit {
  width: 100%;
  margin-top: 4px;
}

.lead-modal__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.lead-modal__privacy,
.lead-modal__feedback {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.5;
}

.lead-modal__privacy {
  color: var(--silver);
  text-align: center;
}

.lead-modal__feedback {
  min-height: 1.1em;
  color: var(--gold-light);
  font-family: var(--font-mono);
  text-align: center;
}

.lead-modal__close:focus-visible,
.lead-modal__submit:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin-bottom: 0;
}

.faq__heading h2 {
  font-size: clamp(2.38rem, 4.08vw, 4.25rem);
}

.faq__heading > p:not(.section-label) {
  margin-top: 24px;
  color: var(--text-light-muted);
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 2px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 200ms ease;
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 66ch;
  margin: 0;
  padding: 0 56px 30px 0;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* Final CTA and footer */
.final-cta {
  padding: 0 0 var(--section-space);
  background: var(--obsidian);
}

.final-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: clamp(42px, 6.5vw, 84px);
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 90% 15%, rgba(208, 156, 98, 0.13), transparent 30%),
    var(--gradient-surface);
  box-shadow: var(--shadow-card);
}

.final-cta__panel::before,
.final-cta__panel::after {
  position: absolute;
  z-index: 3;
  content: "";
  pointer-events: none;
}

.final-cta__panel::before {
  top: -1px;
  right: -1px;
  width: 34px;
  height: 34px;
  background: var(--obsidian);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.final-cta__panel::after {
  top: 15px;
  right: -7px;
  width: 46px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  transform: rotate(45deg);
}

.final-cta__pattern {
  position: absolute;
  top: -50%;
  right: -2%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(208, 156, 98, 0.15);
  transform: rotate(45deg);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin-bottom: 0;
  font-size: clamp(2.21rem, 4.08vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.final-cta .button {
  position: relative;
  z-index: 2;
}

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

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(280px, 0.95fr) minmax(250px, auto);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  padding-block: 64px;
}

.footer-logo {
  display: block;
  width: min(100%, 340px);
  min-width: 140px;
  padding: 9px 12px;
  background: transparent;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer__top > p {
  max-width: 45ch;
  margin: 0;
  color: var(--silver);
  font-size: 0.87rem;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 9px;
  justify-items: end;
}

.footer-contact a {
  color: var(--offwhite);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-decoration-color: rgba(208, 156, 98, 0.4);
  text-underline-offset: 5px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding-block: 22px;
  border-top: 1px solid var(--line-dark);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.site-footer__bottom a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__bottom a:hover {
  color: var(--gold-light);
}

.footer-signature {
  justify-self: end;
  color: var(--gold);
}

/* Progressive motion */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition:
      opacity 320ms ease-out,
      transform 320ms ease-out;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .brand-logo__scan {
    animation: logo-scan 700ms var(--ease-standard) 180ms 1 both;
  }

  .status-pill__dot,
  .form-status i {
    animation: status-pulse 2400ms ease-in-out infinite;
  }
}

@keyframes logo-scan {
  0% {
    left: -30%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(208, 156, 98, 0.42);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(208, 156, 98, 0);
  }
}

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

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

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .site-header__panel {
    gap: 24px;
  }

  .primary-nav {
    gap: 20px;
  }

  .button--header {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.975rem, 5.95vw, 5.27rem);
  }

  .technology-card,
  .technology-card--wide {
    grid-column: span 6;
  }

  .access-card {
    grid-column: span 6;
  }

  .access-card--lead {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 480px;
  }

  .support-console {
    grid-template-columns: 1fr;
  }

  .availability__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
    gap: 54px;
  }
}

@media (max-width: 1000px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 900px) {
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .js .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line-gold);
    border-radius: var(--radius-control);
    background: rgba(208, 156, 98, 0.04);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--gold-light);
    transition:
      transform 220ms ease,
      top 220ms ease;
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:last-child {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .js .site-header__panel {
    position: fixed;
    z-index: 2;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    padding: 22px var(--page-gutter) 30px;
    border-bottom: 1px solid var(--line-gold);
    background: rgba(10, 11, 13, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    max-height: calc(100dvh - var(--header-height));
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
    visibility: hidden;
  }

  .js .site-header.menu-active .site-header__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav {
    display: grid;
    gap: 0;
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.74rem;
  }

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

  .button--header {
    display: flex;
    width: 100%;
    margin-top: 22px;
  }

  .js .menu-scrim {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 0;
    display: block;
    width: 100%;
    border: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .js .site-header.menu-active .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  html:not(.js) .site-header,
  html:not(.js) .site-header.is-scrolled {
    position: relative;
    height: auto;
  }

  html:not(.js) .site-header__inner {
    flex-wrap: wrap;
    padding-block: 14px;
  }

  html:not(.js) .site-header__panel {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 10px;
  }

  html:not(.js) .hero {
    padding-top: 52px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero__copy {
    max-width: 740px;
    padding-bottom: 16px;
  }

  .hero-visual {
    padding-bottom: 54px;
  }

  .section-heading--split,
  .operation__grid,
  .availability__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 28px;
  }

  .section-heading > div + p {
    max-width: 60ch;
  }

  .operation__grid,
  .availability__grid,
  .faq__grid {
    gap: 56px;
  }

  .operation__heading,
  .faq__heading {
    position: static;
  }

  .operation__heading {
    max-width: 720px;
  }

  .availability__copy {
    max-width: 720px;
  }

  .final-cta__panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta .button {
    justify-self: start;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__bottom nav {
    justify-content: flex-start;
  }

  .footer-signature {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 20px;
    --section-space: 88px;
  }

  .brand-logo {
    width: 205px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .status-pill {
    max-width: 100%;
    font-size: 0.63rem;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(2.7625rem, 13.6vw, 4.42rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-visual figcaption {
    font-size: 0.54rem;
  }

  .section-heading h2,
  .operation__heading h2,
  .availability__copy h2,
  .faq__heading h2,
  .final-cta h2 {
    font-size: clamp(2.1675rem, 10.625vw, 3.485rem);
  }

  .technology-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .technology-card,
  .technology-card--wide,
  .access-card,
  .access-card--lead {
    grid-column: 1;
  }

  .technology-card__media {
    height: min(112vw, 510px);
  }

  .technology-card__content {
    padding: 26px 22px 30px;
  }

  .process-item {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }

  .process-item__icon {
    width: 46px;
    height: 46px;
  }

  .process-item__number {
    display: none;
  }

  .support-console {
    padding: 28px 22px;
  }

  .support-console__grid {
    grid-template-columns: 1fr;
  }

  .support-console blockquote {
    font-size: 1.6rem;
  }

  .access-card--lead {
    min-height: 440px;
    padding: 28px 24px;
  }

  .access-card--lead .console-label {
    top: 28px;
    left: 24px;
  }

  .access-card__facet {
    top: 70px;
    right: 18px;
    width: 150px;
  }

  .access-card--lead h3 {
    font-size: clamp(2.55rem, 12.75vw, 4.08rem);
  }

  .access-card {
    min-height: 250px;
    padding: 24px;
  }

  .access-card__icon {
    margin-bottom: 46px;
  }

  .availability-form {
    padding: 28px 20px;
  }

  .form-head {
    display: block;
  }

  .form-status {
    margin-top: 15px;
  }

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

  .field-group--full {
    grid-column: auto;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 1.18rem;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .final-cta__panel {
    gap: 34px;
    padding: 38px 24px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    padding-block: 50px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .site-footer__bottom nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 180px;
  }

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

  .button {
    padding-inline: 14px;
    font-size: 0.66rem;
  }

  .hero-visual figcaption {
    display: block;
  }

  .hero-visual figcaption span:last-child {
    display: none;
  }
}

/* Ignite RF product focus */
.hero--ignite .hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
}

.hero--ignite h1 span {
  display: block;
  color: var(--offwhite);
}

.hero--ignite h1 em {
  max-width: 13ch;
  margin-top: 0.2em;
  font-size: 0.54em;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.ignite-intro {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.ignite-intro__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 9vw, 136px);
  align-items: end;
}

.ignite-intro__heading {
  margin-bottom: 0;
}

.ignite-intro__copy {
  max-width: 52ch;
}

.ignite-intro__copy > p {
  margin-bottom: 30px;
  color: var(--text-light-muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
}

.ignite-spectrum {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr) 90px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: clamp(70px, 8vw, 116px);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background: rgba(208, 156, 98, 0.025);
}

.ignite-spectrum__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.ignite-spectrum__item > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.ignite-spectrum__item p {
  margin: 0;
  color: var(--silver);
  font-size: 0.82rem;
  line-height: 1.55;
  text-transform: uppercase;
}

.ignite-spectrum__item strong {
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.ignite-spectrum__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}

.modalities {
  overflow: hidden;
}

.applicator-carousel {
  --applicator-gap: clamp(12px, 1.5vw, 22px);
  --applicator-gap-half: clamp(6px, 0.75vw, 11px);
  --applicator-gap-three-quarters: clamp(9px, 1.125vw, 16.5px);
  --applicator-visible: 4;
  position: relative;
}

.applicator-carousel__viewport {
  overflow: hidden;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
}

.applicator-carousel__viewport:active {
  cursor: grabbing;
}

.applicator-carousel__viewport:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 6px;
}

.applicator-carousel__track {
  display: flex;
  gap: var(--applicator-gap);
  transform: translate3d(0, 0, 0);
  transition: transform 520ms var(--ease-out);
  will-change: transform;
}

.applicator-card {
  flex: 0 0 calc(25% - var(--applicator-gap-three-quarters));
  min-width: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 27, 0.11);
  border-radius: clamp(14px, 1.5vw, 22px);
  background: rgb(239, 239, 239);
  opacity: 0.84;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 280ms var(--ease-out);
}

.applicator-card[aria-hidden="false"],
.applicator-card:hover {
  opacity: 1;
}

.applicator-card:hover {
  border-color: rgba(143, 104, 50, 0.25);
  box-shadow: 0 12px 28px rgba(21, 23, 27, 0.08);
  transform: translateY(-5px);
}

.applicator-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.applicator-carousel__arrow {
  position: absolute;
  z-index: 3;
  top: 44%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(143, 104, 50, 0.28);
  border-radius: 50%;
  background: rgba(21, 23, 27, 0.9);
  box-shadow: 0 8px 24px rgba(21, 23, 27, 0.22);
  color: var(--offwhite);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  backdrop-filter: blur(8px);
}

.applicator-carousel__arrow:hover {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.applicator-carousel__arrow:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 4px;
}

.applicator-carousel__arrow--previous {
  left: -23px;
}

.applicator-carousel__arrow--next {
  right: -23px;
}

.applicator-carousel__footer {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.applicator-carousel__progress {
  height: 2px;
  overflow: hidden;
  background: rgba(21, 23, 27, 0.14);
}

.applicator-carousel__progress span {
  display: block;
  width: 44.444%;
  height: 100%;
  background: var(--gold-deep);
  transform-origin: left;
  transition: width 420ms var(--ease-out);
}

.applicator-carousel__status {
  margin: 0;
  color: var(--text-dark-muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  padding: 6px 11px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.technical-note--light {
  color: var(--text-dark-muted);
}

.ignite-film {
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.ignite-film__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
}

.ignite-film__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.38rem, 4.42vw, 4.42rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.ignite-film__copy > p:not(.section-label) {
  max-width: 44ch;
  margin-bottom: 26px;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.film-player {
  min-width: 0;
  margin: 0;
}

.film-player__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background: var(--graphite);
  box-shadow: var(--shadow-card);
}

.film-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--graphite);
  object-fit: cover;
}

.film-player__frame::after {
  position: absolute;
  z-index: 2;
  inset: 13px;
  border: 1px solid rgba(233, 200, 146, 0.18);
  border-radius: calc(var(--radius-card) - 3px);
  content: "";
  pointer-events: none;
}

.film-play {
  display: none;
}

.js .film-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.88);
  color: var(--offwhite);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
  backdrop-filter: blur(8px);
}

.js .film-play:hover {
  background: rgba(143, 104, 50, 0.94);
  transform: translate(-50%, -50%) scale(1.04);
}

.film-play span {
  margin: 6px 0 -6px 4px;
  color: var(--gold-light);
  font-size: 1.45rem;
}

.film-play small {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.film-player.is-playing .film-play {
  opacity: 0;
  pointer-events: none;
}

.film-player__code {
  position: absolute;
  z-index: 3;
  top: 29px;
  left: 29px;
  padding: 5px 8px;
  border: 1px solid rgba(233, 200, 146, 0.26);
  border-radius: var(--radius-control);
  background: rgba(10, 11, 13, 0.72);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.film-player figcaption {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.film-feedback {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 0.76rem;
}

.portfolio {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}

.portfolio .section-heading > p,
.portfolio .section-heading > div + p {
  color: var(--text-light-muted);
}

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

.portfolio-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.68fr) minmax(0, 1fr);
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  background: var(--gradient-surface);
  box-shadow: var(--shadow-card);
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.portfolio-card:hover {
  border-color: rgba(208, 156, 98, 0.42);
  transform: translateY(-3px);
}

.portfolio-card__media {
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(21, 23, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 27, 0.03) 1px, transparent 1px),
    var(--white);
  background-size: 22px 22px;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  padding: 24px 14px;
  object-fit: contain;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 320ms var(--ease-out);
}

.portfolio-card:hover .portfolio-card__media img {
  transform: scale(1.025);
}

.portfolio-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 24px;
}

.portfolio-card h3 {
  margin: 18px 0 26px;
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: clamp(1.4875rem, 2.295vw, 2.295rem);
  font-weight: 400;
  line-height: 1;
}

.portfolio-card__description {
  margin: -14px 0 22px;
  color: var(--text-light-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.medical-disclaimer {
  max-width: 1040px;
  margin: 0;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line-dark);
  color: var(--silver);
  font-size: 0.69rem;
  line-height: 1.6;
}

.field-group.is-disabled {
  opacity: 0.48;
}

.field-group.is-disabled select {
  cursor: not-allowed;
}

.film-play:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .hero--ignite .hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(410px, 1.04fr);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card__media {
    height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 900px) {
  .applicator-carousel {
    --applicator-visible: 2;
  }

  .applicator-card {
    flex-basis: calc(50% - var(--applicator-gap-half));
  }

  .hero--ignite .hero__grid,
  .ignite-intro__grid,
  .ignite-film__grid {
    grid-template-columns: 1fr;
  }

  .hero--ignite .hero__copy {
    max-width: 780px;
  }

  .hero--ignite h1 em {
    max-width: 16ch;
  }

  .ignite-intro__copy {
    max-width: 64ch;
  }

  .ignite-spectrum {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ignite-spectrum__line {
    width: 100%;
  }

  .ignite-film__copy {
    max-width: 680px;
  }

}

@media (max-width: 680px) {
  .lead-modal {
    place-items: end center;
    padding: 12px;
  }

  .lead-modal__box {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 30px 22px 24px;
    overflow-y: auto;
  }

  .lead-modal .console-label {
    margin-right: 46px;
  }

  .lead-modal__subtitle {
    margin-bottom: 20px;
  }

  .hero--ignite h1 {
    font-size: clamp(2.6775rem, 13.6vw, 4.25rem);
  }

  .hero--ignite h1 em {
    max-width: none;
    font-size: 0.5em;
    line-height: 1.12;
  }

  .hero--ignite .hero__subhead {
    line-height: 1.7;
  }

  .ignite-spectrum {
    padding: 24px 20px;
  }

  .applicator-carousel {
    --applicator-visible: 1;
    padding-inline: 22px;
  }

  .applicator-card {
    flex-basis: 100%;
  }

  .applicator-carousel__arrow {
    width: 42px;
    height: 42px;
  }

  .applicator-carousel__arrow--previous {
    left: 0;
  }

  .applicator-carousel__arrow--next {
    right: 0;
  }

  .ignite-film__grid {
    gap: 42px;
  }

  .js .film-play {
    width: 92px;
    height: 92px;
  }

  .film-player__code {
    top: 22px;
    left: 22px;
  }

  .portfolio-card__media {
    height: clamp(150px, 40vw, 200px);
  }

  .portfolio-card__content {
    padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 18px);
  }

  .portfolio-card h3 {
    font-size: clamp(1.1475rem, 5.1vw, 1.7rem);
    margin-block: 16px 22px;
  }

  .medical-disclaimer {
    padding-bottom: 24px;
  }
}

/* Centered Ignite showcase */
.hero--ignite,
.home-hero {
  isolation: isolate;
}

.hero--ignite::before,
.home-hero::before {
  position: absolute;
  z-index: 1;
  inset: -20% -26%;
  background: linear-gradient(
    108deg,
    transparent 42%,
    rgba(110, 135, 163, 0.08) 48%,
    rgba(208, 156, 98, 0.04) 50%,
    rgba(110, 135, 163, 0.08) 52%,
    transparent 58%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-24%, 0, 0);
}

.hero--ignite {
  min-height: auto;
  padding-top: calc(var(--header-height) + clamp(24px, 4vh, 44px));
  padding-bottom: clamp(58px, 7vw, 92px);
  background:
    radial-gradient(900px 540px at 50% 58%, rgba(95, 139, 158, 0.1), transparent 72%),
    radial-gradient(760px 420px at 50% 44%, rgba(208, 156, 98, 0.075), transparent 70%),
    #08090b;
}

.hero--ignite .hero__mesh {
  inset: -96px;
  background-image:
    linear-gradient(rgba(242, 239, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(208, 156, 98, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 156, 98, 0.055) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px, 72px 72px, 288px 288px, 288px 288px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 82%, transparent 100%);
  opacity: 0.72;
  transform: translate3d(-26px, -19px, 0);
  transform-origin: center;
}

.hero--ignite .hero__glow {
  top: 38%;
  right: auto;
  left: 50%;
  width: min(82vw, 1180px);
  height: min(56vw, 720px);
  background: rgba(81, 124, 143, 0.105);
  filter: blur(92px);
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 901px) {
  .hero--ignite .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }
}

.hero--ignite .hero__copy {
  max-width: 620px;
  padding-bottom: 0;
}

.hero--ignite .status-pill {
  border-color: rgba(242, 239, 231, 0.12);
  background: rgba(30, 33, 38, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero--ignite h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(2.805rem, 4.59vw, 4.845rem);
  letter-spacing: -0.052em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero--ignite h1 span,
.hero--ignite h1 em {
  display: block;
  max-width: none;
}

.hero--ignite h1 em {
  margin-top: 0.06em;
  font-size: 1em;
  letter-spacing: inherit;
  line-height: inherit;
}

.hero--ignite .hero__lead {
  max-width: 52ch;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.65;
  text-wrap: balance;
}

.hero--ignite .hero__actions .button--secondary {
  border-color: transparent;
  color: var(--offwhite);
}

.hero--ignite .hero__actions .button--secondary:hover {
  border-color: rgba(242, 239, 231, 0.09);
  background: rgba(242, 239, 231, 0.045);
}

.hero--ignite .hero__subhead {
  margin-top: 24px;
  color: rgba(180, 182, 186, 0.8);
}

.hero--ignite .hero-visual {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-bottom: 0;
}

.hero-visual__window-dots {
  display: flex;
  gap: 6px;
}

.hero-visual__window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a3e45;
}

.hero-visual__window-dots i:first-child {
  background: var(--gold);
}

@media (max-width: 900px) {
  .hero--ignite {
    padding-top: calc(var(--header-height) + 32px);
  }

  .hero--ignite .hero__copy {
    max-width: 820px;
  }

  .hero--ignite h1 {
    font-size: clamp(3.145rem, 8.5vw, 5.44rem);
  }
}

@media (max-width: 680px) {
  .hero--ignite {
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 64px;
  }

  .hero--ignite .hero__copy {
    padding-bottom: 38px;
  }

  .hero--ignite .hero__actions {
    display: grid;
  }

  .hero--ignite .hero__actions .button {
    width: 100%;
  }

  .hero--ignite h1 {
    font-size: clamp(2.635rem, 12.75vw, 4.25rem);
    line-height: 0.97;
  }

  .hero--ignite h1 em {
    font-size: 1em;
    line-height: inherit;
  }

  .hero--ignite .hero__lead {
    font-size: 1rem;
  }

  .hero--ignite .hero__subhead {
    justify-content: center;
    font-size: 0.58rem;
    line-height: 1.65;
  }

}

@media (max-width: 380px) {
  .hero--ignite .status-pill {
    padding-inline: 11px;
    letter-spacing: 0.08em;
  }

  .hero--ignite h1 {
    font-size: 2.4225rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero--ignite .hero__copy > [data-reveal]:not(h1) {
    transform: translate3d(0, 18px, 0);
    transition-duration: 700ms;
    transition-timing-function: var(--ease-out);
  }

  .motion-ready .hero--ignite .hero__copy > [data-reveal]:not(h1).is-visible {
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .hero--ignite .status-pill {
    --reveal-delay: 80ms;
  }

  .motion-ready .hero--ignite .hero__lead {
    --reveal-delay: 400ms;
  }

  .motion-ready .hero--ignite .hero__actions {
    --reveal-delay: 500ms;
  }

  .motion-ready .hero--ignite .hero__subhead {
    --reveal-delay: 580ms;
  }

  .motion-ready .hero--ignite h1[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .hero--ignite h1[data-reveal] > span,
  .motion-ready .hero--ignite h1[data-reveal] > em {
    opacity: 0;
    transform: translate3d(0, 0.38em, 0);
    transition:
      opacity 650ms ease-out,
      transform 780ms var(--ease-out);
  }

  .motion-ready .hero--ignite h1.is-visible > span,
  .motion-ready .hero--ignite h1.is-visible > em {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .hero--ignite h1.is-visible > span {
    transition-delay: 160ms;
  }

  .motion-ready .hero--ignite h1.is-visible > em {
    transition-delay: 260ms;
  }

  .motion-ready .hero--ignite .hero-visual[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready .hero--ignite .hero-visual figcaption {
    opacity: 0;
    translate: 0 8px;
    transition:
      opacity 500ms ease-out 1100ms,
      translate 600ms var(--ease-out) 1100ms;
  }

  .motion-ready .hero--ignite .hero-visual.is-visible figcaption {
    opacity: 1;
    translate: 0 0;
  }

  .motion-ready .hero--ignite::before,
  .motion-ready .home-hero::before {
    animation: hero-technical-scan 18s linear infinite;
    animation-play-state: paused;
  }

  .motion-ready .hero--ignite .hero__glow,
  .motion-ready .home-hero .home-hero__glow {
    animation: hero-glow-breathe 12s ease-in-out infinite;
    animation-play-state: paused;
  }

  .motion-ready .hero--ignite .hero__mesh,
  .motion-ready .home-hero .home-hero__mesh {
    animation: hero-grid-drift 30s var(--ease-standard) infinite alternate;
    animation-play-state: paused;
  }

  .motion-ready .hero--ignite .hero-visual__window-dots i:first-child {
    animation: hero-console-pulse 2600ms ease-in-out infinite;
    animation-play-state: paused;
  }

  .motion-ready .hero--ignite.is-in-view::before,
  .motion-ready .home-hero.is-in-view::before,
  .motion-ready .hero--ignite.is-in-view .hero__glow,
  .motion-ready .home-hero.is-in-view .home-hero__glow,
  .motion-ready .hero--ignite.is-in-view .hero__mesh,
  .motion-ready .home-hero.is-in-view .home-hero__mesh,
  .motion-ready .hero--ignite.is-in-view .hero-visual__window-dots i:first-child {
    animation-play-state: running;
  }

}

@keyframes hero-technical-scan {
  0% {
    opacity: 0.18;
    transform: translate3d(-24%, 0, 0);
  }

  12% {
    opacity: 0.95;
  }

  58% {
    opacity: 0.44;
    transform: translate3d(24%, 0, 0);
  }

  70%,
  100% {
    opacity: 0;
    transform: translate3d(24%, 0, 0);
  }
}

@keyframes hero-glow-breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(-50%, 0, 0) scale(0.955);
  }

  50% {
    opacity: 1;
    transform: translate3d(-50%, 2%, 0) scale(1.075);
  }
}

@keyframes hero-grid-drift {
  from {
    transform: translate3d(-26px, -19px, 0);
  }

  to {
    transform: translate3d(26px, 19px, 0);
  }
}

@keyframes hero-console-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(208, 156, 98, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(208, 156, 98, 0);
  }
}

@keyframes hero-glow-breathe-mobile {
  0%,
  100% {
    opacity: 0.64;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .hero--ignite::before,
  .motion-ready .home-hero::before,
  .motion-ready .hero--ignite .hero__mesh,
  .motion-ready .home-hero .home-hero__mesh,
  .motion-ready .hero--ignite .hero-visual__window-dots i:first-child {
    animation: none;
  }

  .motion-ready .hero--ignite::before,
  .motion-ready .home-hero::before {
    opacity: 0;
  }

  .motion-ready .hero--ignite .hero__mesh,
  .motion-ready .home-hero .home-hero__mesh {
    transform: translate3d(0, 0, 0);
  }

  .motion-ready .hero--ignite .hero__glow,
  .motion-ready .home-hero .home-hero__glow {
    animation-name: hero-glow-breathe-mobile;
    animation-duration: 14s;
    animation-play-state: paused;
  }

  .motion-ready .hero--ignite.is-in-view .hero__glow,
  .motion-ready .home-hero.is-in-view .home-hero__glow {
    animation-play-state: running;
  }
}

@media (prefers-reduced-motion: reduce) {
  .applicator-carousel__track,
  .applicator-card,
  .applicator-carousel__arrow,
  .applicator-carousel__progress span {
    transition: none !important;
  }

  .lead-modal__close span {
    transition: none !important;
    transform: none !important;
  }

  .hero--ignite::before,
  .home-hero::before,
  .hero--ignite .hero__mesh,
  .hero--ignite .hero__glow,
  .home-hero .home-hero__mesh,
  .home-hero .home-hero__glow,
  .hero-visual__window-dots i {
    animation: none !important;
  }

  .hero--ignite::before,
  .home-hero::before {
    opacity: 0;
  }

  .hero--ignite .hero__mesh,
  .home-hero .home-hero__mesh {
    transform: translate3d(0, 0, 0);
  }

  .hero--ignite .hero__glow,
  .home-hero .home-hero__glow {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Surgical Diamond - institutional home */

.home-page {
  background: var(--obsidian);
}

.home-page .site-header {
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.96), rgba(7, 8, 9, 0.72));
}

/* Hero */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(56px, 9vw, 116px)) 0 clamp(72px, 9vw, 128px);
  background:
    radial-gradient(circle at 76% 38%, rgba(208, 156, 98, 0.09), transparent 28%),
    radial-gradient(circle at 16% 76%, rgba(110, 135, 163, 0.08), transparent 25%),
    linear-gradient(140deg, #070809 0%, #0a0b0d 52%, #111318 100%);
}

.home-hero__mesh {
  position: absolute;
  z-index: 0;
  inset: -64px;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
  transform: translate3d(-26px, -19px, 0);
  transform-origin: center;
}

.home-hero__glow {
  position: absolute;
  z-index: 0;
  top: -6%;
  left: 50%;
  width: 68vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 156, 98, 0.14), transparent 64%);
  filter: blur(10px);
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
}

.home-hero__copy {
  max-width: 620px;
}

.home-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(2.805rem, 4.59vw, 4.845rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.home-hero h1 em {
  display: inline-block;
  margin-top: 0.14em;
  color: var(--gold);
}

.home-hero__lead {
  max-width: 52ch;
  margin: 0 0 36px;
  color: var(--text-light-muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__audience {
  margin: 22px 0 0;
  color: #777c84;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(44px, 6vw, 80px);
  border-top: 1px solid var(--line-dark);
}

.home-proof > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line-dark);
}

.home-proof > div:first-child {
  padding-left: 0;
}

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

.home-proof span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.home-proof p {
  margin: 0;
  color: #81858c;
  font-size: 0.76rem;
  line-height: 1.5;
}

.home-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--offwhite);
  font-size: 0.82rem;
  font-weight: 500;
}

/* Introduction */
.home-intro {
  overflow: hidden;
}

.home-intro::after {
  position: absolute;
  top: -150px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(143, 104, 50, 0.1);
  content: "";
  transform: rotate(45deg);
}

.home-intro__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.home-intro h2,
.home-benefits h2,
.home-process h2 {
  margin-bottom: 0;
  font-size: clamp(2.38rem, 4.4625vw, 4.675rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.home-intro h2 em,
.home-benefits h2 em {
  color: var(--gold-deep);
}

.home-intro__copy > p {
  margin-bottom: 34px;
  color: var(--text-dark-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.home-intro__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-intro__signature i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* Product catalog */
.home-technologies {
  background:
    radial-gradient(circle at 18% 16%, rgba(208, 156, 98, 0.08), transparent 23%),
    var(--obsidian);
}

.home-heading > p {
  color: var(--text-light-muted);
}

.home-heading > .home-heading__guidance {
  max-width: 42ch;
  font-size: 0.9rem;
  line-height: 1.7;
}

.technology-catalog {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid var(--line-gold);
  border-left: 1px solid var(--line-dark);
}

.technology-card {
  grid-column: span 2;
  min-width: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008));
  transition: background-color 280ms ease, transform 280ms var(--ease-out);
}

.technology-card:hover {
  z-index: 2;
  background: rgba(208, 156, 98, 0.045);
  transform: translateY(-5px);
}

.technology-card:nth-last-child(-n + 2) {
  grid-column: span 2;
}

.technology-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.technology-card__link:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -3px;
}

.technology-card__media {
  position: relative;
  height: clamp(280px, 28vw, 380px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(21, 23, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 27, 0.03) 1px, transparent 1px),
    var(--white);
  background-size: 36px 36px;
}

.technology-card__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(10, 11, 13, 0.08));
  content: "";
}

.technology-card__media img {
  position: absolute;
  right: 0;
  bottom: -4%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px 18px 0;
  object-position: center bottom;
  filter: saturate(0.75) contrast(1.07);
  transition: transform 500ms var(--ease-out), filter 300ms ease;
}

.technology-card:nth-child(2) .technology-card__media img {
  right: 0;
  width: 100%;
}

.technology-card--safer .technology-card__media img {
  padding: clamp(34px, 4vw, 58px) clamp(18px, 2.5vw, 36px);
  object-position: center;
}

.technology-card--argon .technology-card__media img {
  padding: clamp(28px, 3.5vw, 50px);
  object-position: center;
}

.technology-card--morpheus .technology-card__media img {
  padding: clamp(34px, 4vw, 58px);
  object-position: center;
}

.technology-card:hover .technology-card__media img {
  filter: saturate(0.95) contrast(1.03);
  transform: scale(1.035) translateY(-2%);
}

.technology-card__number {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: grid;
  min-width: 38px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.technology-card__body {
  padding: clamp(22px, 2.4vw, 32px);
}

.technology-card__eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-card h3 {
  margin-bottom: 13px;
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.635vw, 2.805rem);
  font-weight: 400;
  line-height: 1;
}

.technology-card__body > p:not(.technology-card__eyebrow) {
  min-height: 4.2em;
  margin-bottom: 24px;
  color: var(--text-light-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.technology-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-card__cta i {
  font-size: 1rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.technology-card:hover .technology-card__cta i {
  transform: translateX(5px);
}

#tecnologias .technology-catalog--equal .technology-card__link {
  display: flex;
  flex-direction: column;
}

#tecnologias .technology-catalog--equal .technology-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

#tecnologias .technology-catalog--equal .technology-card__cta {
  margin-top: auto;
}

.technology-catalog__source {
  margin: 24px 0 0;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

/* Additional product lines */
.home-additional-products {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 82% 20%, rgba(208, 156, 98, 0.08), transparent 26%),
    #0c0e11;
}

.home-additional-products .section-grid-pattern {
  height: 100%;
  opacity: 0.7;
}

.home-additional-products .container {
  position: relative;
  z-index: 2;
}

.home-additional-products__heading > p,
.home-additional-products__heading > div + p {
  color: var(--text-light-muted);
}

.additional-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
}

.additional-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  background: var(--gradient-surface);
  box-shadow: var(--shadow-card);
}

.additional-product-card__media {
  position: relative;
  display: grid;
  height: clamp(250px, 27vw, 360px);
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(21, 23, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 27, 0.035) 1px, transparent 1px),
    #f7f7f5;
  background-size: 34px 34px;
}

.additional-product-card__media::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(10, 11, 13, 0.08));
  content: "";
  pointer-events: none;
}

.additional-product-card__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(24px, 3vw, 44px);
  object-fit: contain;
  filter: saturate(0.8) contrast(1.04);
}

.additional-product-card--faga .additional-product-card__media img {
  padding-inline: clamp(18px, 2.5vw, 36px);
}

.additional-product-card__number {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  display: grid;
  min-width: 40px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(143, 104, 50, 0.4);
  background: rgba(247, 247, 245, 0.82);
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.additional-product-card__content {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 46px);
}

.additional-product-card__eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.additional-product-card h3 {
  margin-bottom: 20px;
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: clamp(1.9975rem, 3.4vw, 3.6125rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.additional-product-card h3 span {
  color: var(--silver);
  font-family: var(--font-sans);
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.additional-product-card__description {
  max-width: 58ch;
  margin: 0 0 28px;
  color: var(--text-light-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.additional-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.additional-product-card__tags li {
  padding: 7px 10px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.additional-products__source {
  margin: 24px 0 0;
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .additional-products-grid {
    grid-template-columns: 1fr;
  }

  .additional-product-card__media {
    height: clamp(230px, 72vw, 340px);
  }

  .additional-product-card__content {
    min-height: 0;
  }

  .additional-products__source {
    text-align: left;
  }
}

/* Benefits */
.home-benefits__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 20px clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.home-benefits__heading .section-label {
  grid-column: 1 / -1;
}

.home-benefits__heading > p:last-child {
  max-width: 42ch;
  margin: 0 0 6px;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.benefit-card {
  position: relative;
  min-height: 320px;
  padding: clamp(28px, 3.5vw, 46px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.16);
}

.benefit-card--lead {
  grid-column: span 2;
  background:
    radial-gradient(circle at 85% 15%, rgba(208, 156, 98, 0.15), transparent 30%),
    var(--graphite);
  color: var(--offwhite);
}

.benefit-card--lead::after {
  position: absolute;
  right: 40px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(208, 156, 98, 0.14);
  content: "";
  transform: rotate(45deg);
}

.benefit-card__code,
.benefit-card__index {
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.benefit-card--lead .benefit-card__code {
  color: var(--gold);
}

.benefit-card svg {
  width: 34px;
  height: 34px;
  margin: 38px 0 28px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.home-page:not(.patients-page) .home-benefits .benefit-card svg {
  width: 44.2px;
  height: 44.2px;
}

.benefit-card h3 {
  margin-bottom: 13px;
  font-family: var(--font-display);
  font-size: 1.4025rem;
  font-weight: 400;
  line-height: 1.15;
}

.benefit-card--lead h3 {
  position: relative;
  z-index: 2;
  max-width: 630px;
  margin: 55px 0 18px;
  font-size: clamp(2.04rem, 3.4vw, 3.655rem);
  line-height: 1.02;
}

.benefit-card--lead h3 em {
  color: var(--gold);
}

.benefit-card p {
  position: relative;
  z-index: 2;
  max-width: 43ch;
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.benefit-card--lead p {
  color: var(--text-light-muted);
}

/* Process */
.home-process {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(143, 104, 50, 0.1) 50%, transparent 50.05%),
    var(--offwhite);
}

.home-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: clamp(70px, 10vw, 160px);
}

.home-process__heading {
  align-self: start;
}

.home-process__heading h2 {
  margin-bottom: 28px;
}

.home-process__heading > p:not(.section-label) {
  max-width: 55ch;
  margin-bottom: 34px;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

.home-process .process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.home-process .process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid var(--line-light);
}

.home-process .process-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.home-process .process-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.home-process .process-list h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.4025rem;
  font-weight: 400;
}

.home-process .process-list p {
  max-width: 52ch;
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Regional coverage */
.service-area {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 86% 18%, rgba(208, 156, 98, 0.1), transparent 28%),
    var(--obsidian);
}

.service-area__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.service-area__copy h2 {
  max-width: 900px;
  margin-bottom: 26px;
  color: var(--offwhite);
  font-size: clamp(2.38rem, 4.4625vw, 4.675rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.service-area__copy h2 em {
  color: var(--gold);
}

.service-area__copy > p:not(.section-label) {
  max-width: 66ch;
  margin: 0;
  color: var(--text-light-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.service-area__action {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-light);
  border-left: 2px solid var(--gold-deep);
  border-radius: var(--radius-card);
  background: #faf9f5;
}

.service-area__action p {
  margin: 0 0 30px;
  color: var(--text-dark-muted);
  line-height: 1.72;
}

.service-area__action strong {
  display: block;
  margin-bottom: 6px;
  color: var(--graphite);
  font-weight: 600;
}

.home-availability {
  border-top: 1px solid var(--line-dark);
  background: #0c0e11;
}

.home-faq {
  border-top: 1px solid var(--line-dark);
}

/* Contracting paths */
.contracting {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 84% 14%, rgba(208, 156, 98, 0.08), transparent 28%),
    var(--obsidian);
}

.contracting__intro {
  max-width: 1040px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.contracting__intro h2 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-size: clamp(2.38rem, 4.4625vw, 4.675rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.contracting__intro h2 em {
  color: var(--gold);
}

.contracting__title-line {
  display: block;
  white-space: nowrap;
}

.contracting__intro > p:not(.section-label) {
  max-width: 70ch;
  margin: 0;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contracting__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.contracting-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  background: rgba(242, 239, 231, 0.035);
}

.contracting-card--professional {
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at 86% 14%, rgba(208, 156, 98, 0.13), transparent 30%),
    var(--gradient-surface);
  box-shadow: var(--shadow-card);
}

.contracting-card--patient {
  background: rgba(242, 239, 231, 0.025);
}

.contracting-card h3 {
  max-width: 20ch;
  margin: 0 0 20px;
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  font-weight: 400;
  line-height: 1.08;
}

.contracting-card > p:not(.section-label) {
  max-width: 58ch;
  margin: 0 0 32px;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.contracting-card .button {
  margin-top: auto;
}

/* Training bridge */
.training {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
}

.training__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.training__copy h2 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(2.38rem, 4.4625vw, 4.675rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.training__copy h2 em {
  color: var(--gold-deep);
}

.training__copy > p:not(.section-label) {
  max-width: 64ch;
  margin: 0;
  color: var(--text-dark-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.training__note {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-light);
  border-left: 2px solid var(--gold-deep);
  border-radius: var(--radius-card);
  background: #faf9f5;
}

.training__note p {
  margin: 0 0 30px;
  color: var(--text-dark-muted);
  line-height: 1.72;
}

/* Direct patient payment on technology pages */
.direct-payment {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--obsidian);
}

.direct-payment__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 86% 14%, rgba(208, 156, 98, 0.12), transparent 28%),
    var(--gradient-surface);
  box-shadow: var(--shadow-card);
}

.direct-payment__copy h2 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--offwhite);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.direct-payment__copy h2 em {
  color: var(--gold);
}

.direct-payment__copy > p:not(.section-label) {
  max-width: 68ch;
  margin: 0;
  color: var(--text-light-muted);
  line-height: 1.72;
}

.direct-payment__panel .button {
  white-space: nowrap;
}

.support-console__grid--five .console-item:last-child {
  grid-column: 1 / -1;
  min-height: 104px;
}

.final-cta__copy {
  max-width: 920px;
}

.final-cta__copy p {
  max-width: 66ch;
  margin: 22px 0 0;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  html:not(.js) .home-hero {
    padding-top: 60px;
  }

  .home-intro__grid,
  .home-process__grid,
  .contracting__grid,
  .training__grid,
  .service-area__panel,
  .direct-payment__panel {
    grid-template-columns: 1fr;
  }

  .direct-payment__panel {
    align-items: start;
  }

  .home-proof {
    margin-top: 52px;
  }

  .home-intro__grid {
    gap: 48px;
  }

  .home-intro__copy {
    max-width: 700px;
  }

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

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

  .home-benefits__heading .section-label {
    grid-column: auto;
  }

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

  .benefit-card--lead {
    grid-column: span 2;
  }

  .home-process__grid {
    gap: 52px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    padding-top: calc(var(--header-height) + 48px);
  }

  .home-hero__actions {
    display: grid;
  }

  .home-hero__actions .button {
    width: 100%;
  }

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

  .home-proof > div,
  .home-proof > div:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .home-intro h2,
  .home-benefits h2,
  .home-process h2 {
    font-size: clamp(2.295rem, 11.05vw, 3.655rem);
  }

  .home-intro__signature {
    flex-wrap: wrap;
  }

  .technology-catalog {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .technology-card {
    grid-column: auto;
    min-width: 0;
  }

  .technology-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .technology-catalog__source {
    text-align: left;
  }

  .technology-card__media {
    height: clamp(280px, 82vw, 360px);
  }

  .technology-card__media img {
    padding: 24px 18px 0;
  }

  .technology-card__body {
    padding: clamp(22px, 6vw, 30px);
  }

  .technology-card__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .technology-card h3 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .technology-card__body > p:not(.technology-card__eyebrow) {
    min-height: 0;
    font-size: 0.86rem;
  }

  .technology-card__cta {
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

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

  .benefit-card--lead {
    grid-column: auto;
  }

  .benefit-card,
  .benefit-card--lead {
    min-height: 290px;
  }

  .contracting-card {
    min-height: 310px;
    padding: 28px 24px;
  }

  .contracting__intro h2 {
    font-size: clamp(1.18rem, 5.75vw, 2.4rem);
    line-height: 1.12;
  }

  .contracting-card .button,
  .training__note .button,
  .service-area__action .button,
  .direct-payment__panel .button {
    width: 100%;
  }

  .direct-payment__panel {
    padding: 30px 22px;
  }

  .service-area__copy h2 {
    font-size: clamp(2rem, 8.6vw, 2.3rem);
  }

  .direct-payment__panel .button {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .support-console__grid--five .console-item:last-child {
    grid-column: auto;
  }

  .benefit-card--lead h3 {
    margin-top: 48px;
  }

  .home-process .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .home-process .process-list > li > span {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-card,
  .technology-card__media img,
  .technology-card__cta i {
    transition: none;
  }
}

/* Portfolio grids: the home uses six equal cells; patient content may feature Ignite. */
#tecnologias .technology-catalog {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

#tecnologias .technology-catalog > .technology-card {
  grid-column: span 2;
  grid-row: auto;
}

#tecnologias .technology-catalog > .technology-card--feature {
  grid-column: span 4;
}

#tecnologias .technology-catalog--equal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#tecnologias .technology-catalog--equal > .technology-card {
  grid-column: auto;
}

@media (max-width: 900px) and (min-width: 681px) {
  #tecnologias .technology-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #tecnologias .technology-catalog > .technology-card {
    grid-column: auto;
  }

  #tecnologias .technology-catalog > .technology-card--feature {
    grid-column: 1 / -1;
  }

}

@media (max-width: 680px) {
  #tecnologias .technology-catalog {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #tecnologias .technology-catalog > .technology-card,
  #tecnologias .technology-catalog > .technology-card--feature {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

}

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

@media (max-width: 680px) {
  .portfolio .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Clean institutional hero - text and supplied equipment image only. */
.home-page .home-hero {
  padding: calc(var(--header-height) + clamp(48px, 7vw, 88px)) 0 clamp(64px, 8vw, 112px);
  background:
    radial-gradient(circle at 50% 8%, rgba(208, 156, 98, 0.1), transparent 32%),
    linear-gradient(135deg, #070809 0%, #0a0b0d 58%, #101216 100%);
}

.home-page .home-hero__grid {
  gap: clamp(36px, 6vw, 90px);
}

.home-page .home-hero__lead {
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.7;
}

.home-hero__visual {
  position: relative;
  min-width: 0;
}

.home-hero__visual::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -8%;
  left: 8%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(208, 156, 98, 0.14), transparent 70%);
  filter: blur(28px);
  content: "";
}

.equipment-frame {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  background: #0c0d0f;
  box-shadow: var(--shadow-card);
}

.equipment-frame__status {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 52px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.equipment-frame__status > span:nth-child(2) {
  color: var(--offwhite);
}

.equipment-frame__status > span:last-child {
  margin-left: auto;
  color: var(--gold-deep);
}

.equipment-frame__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(360px, 40vw, 560px);
  padding: clamp(20px, 3vw, 40px);
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.03), transparent 70%);
}

.equipment-frame__stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.35));
}

@media (max-width: 1120px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
  }

  .home-page .home-hero__grid {
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .home-page .home-hero {
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 72px;
  }

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

  .home-page .home-hero__grid {
    gap: 40px;
  }

  .home-hero__copy {
    max-width: 780px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.89rem, 7.65vw, 4.76rem);
  }
}

@media (max-width: 680px) {
  .home-page .home-hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 56px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.295rem, 10.2vw, 3.4rem);
    letter-spacing: -0.045em;
  }

  .equipment-frame__status {
    height: 44px;
    padding-inline: 14px;
    font-size: 0.62rem;
  }

  .equipment-frame__status > span:last-child {
    display: none;
  }
}

/* Patients page */
.patients-page .site-header {
  background: transparent;
}

.patients-page .site-header.is-scrolled {
  background-color: rgba(10, 11, 13, 0.92);
}

.patients-page .patients-hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: clamp(72px, 7vw, 96px);
}

.patients-hero .home-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 4vw, 64px);
}

.patients-hero .home-hero__copy {
  min-width: 0;
  max-width: 720px;
}

.patients-page .patients-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 3.7vw, 3.9rem);
}

.patients-hero__line {
  display: block;
  white-space: nowrap;
}

.patients-hero h1 .patients-hero__line em {
  display: inline;
  margin-top: 0;
}

.patients-hero__highlight {
  max-width: 58ch;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
}

.patients-hero .home-hero__lead {
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.patients-hero__complement {
  max-width: 60ch;
  margin: 0 0 28px;
  color: #8f949c;
  font-size: 0.86rem;
  line-height: 1.62;
}

.patients-hero__visual {
  display: grid;
  min-height: clamp(480px, 41vw, 600px);
  place-items: center;
  margin: 0 clamp(-96px, -6vw, -44px) 0 0;
  isolation: isolate;
}

.patients-hero__visual::after {
  display: none;
}

.patients-hero__scene {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: relative;
  display: grid;
  width: min(760px, 126%);
  aspect-ratio: 900 / 650;
  place-items: center;
  transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.patients-hero__halo {
  position: absolute;
  z-index: 0;
  inset: 10% 4% 9%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 48% 48%, rgba(208, 156, 98, 0.18), transparent 52%),
    radial-gradient(ellipse at 60% 52%, rgba(110, 135, 163, 0.16), transparent 70%);
  filter: blur(34px);
  opacity: 0.76;
  pointer-events: none;
  transform: translate3d(0, 0, -36px);
}

.patients-hero__product {
  --hero-product-x: 0px;
  --hero-product-y: 0px;
  position: relative;
  z-index: 2;
  width: 100%;
  transform: translate3d(var(--hero-product-x), var(--hero-product-y), 28px);
  transform-style: preserve-3d;
  will-change: transform;
}

.patients-hero__equipment {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.4));
  transform: translate3d(0, 2px, 0) rotate(-0.3deg);
  transform-origin: 50% 72%;
  will-change: transform;
}

.patients-hero__ground {
  position: absolute;
  z-index: 1;
  bottom: 3.5%;
  left: 12%;
  width: 76%;
  height: 9%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), transparent 68%);
  filter: blur(17px);
  opacity: 0.48;
  pointer-events: none;
  transform: translate3d(0, 0, -12px) scaleX(0.94);
  will-change: transform, opacity;
}

.patients-hero__promise {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 0;
  max-width: 28ch;
  padding: 14px 18px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-control);
  background: rgba(10, 11, 13, 0.88);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .patients-hero__equipment {
    animation: patients-equipment-float 7.2s ease-in-out infinite;
  }

  .motion-ready .patients-hero__ground {
    animation: patients-ground-breathe 7.2s ease-in-out infinite;
  }

  .motion-ready .patients-hero__halo {
    animation: patients-halo-breathe 8.6s ease-in-out infinite;
  }

  .motion-ready .patients-hero__equipment,
  .motion-ready .patients-hero__ground,
  .motion-ready .patients-hero__halo {
    animation-play-state: paused;
  }

  .motion-ready .patients-hero.is-in-view .patients-hero__equipment,
  .motion-ready .patients-hero.is-in-view .patients-hero__ground,
  .motion-ready .patients-hero.is-in-view .patients-hero__halo {
    animation-play-state: running;
  }
}

@keyframes patients-equipment-float {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(-0.3deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(0.35deg);
  }
}

@keyframes patients-ground-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform: translate3d(0, 0, -12px) scaleX(0.94);
  }

  50% {
    opacity: 0.31;
    transform: translate3d(0, 5px, -12px) scaleX(0.82);
  }
}

@keyframes patients-halo-breathe {
  0%,
  100% {
    opacity: 0.66;
    transform: translate3d(0, 0, -36px) scale(0.94);
  }

  50% {
    opacity: 0.9;
    transform: translate3d(0, -1.5%, -36px) scale(1.04);
  }
}

.patients-process {
  overflow: visible;
  border-top: 1px solid var(--line-light);
}

.patients-process .home-process__heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.patients-payment .direct-payment__panel {
  grid-template-columns: minmax(0, 1fr);
}

.patients-payment__highlight {
  max-width: 68ch;
  margin-top: 24px !important;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(208, 156, 98, 0.06);
  color: var(--gold-light) !important;
  font-weight: 500;
}

.patients-surgeon {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 86% 18%, rgba(208, 156, 98, 0.1), transparent 30%),
    var(--obsidian);
}

.patients-surgeon__panel {
  max-width: 1040px;
}

.patients-surgeon h2 {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 4.2vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.patients-surgeon h2 em {
  color: var(--gold);
}

.patients-surgeon__panel > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400;
}

.patients-surgeon__panel > p:not(.section-label) {
  max-width: 74ch;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.patients-surgeon__closing {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-gold);
  color: var(--gold-light) !important;
  font-family: var(--font-mono);
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.patients-region {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 88% 18%, rgba(208, 156, 98, 0.12), transparent 28%),
    var(--offwhite);
}

.patients-region__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.patients-region h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(2.5rem, 4.6vw, 4.75rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.patients-region h2 em {
  color: var(--gold-deep);
}

.patients-region__copy h3 {
  max-width: 34ch;
  margin: 0 0 22px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
}

.patients-region__copy > p:not(.section-label) {
  max-width: 66ch;
  margin: 0;
  color: var(--text-dark-muted);
  line-height: 1.72;
}

.patients-region__action {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-light);
  border-left: 2px solid var(--gold-deep);
  border-radius: var(--radius-card);
  background: #faf9f5;
}

.patients-region__action p {
  margin: 0 0 30px;
  color: var(--text-dark-muted);
  line-height: 1.72;
}

.patients-region__action strong {
  display: block;
  margin-bottom: 6px;
  color: var(--graphite);
}

.patients-page .lead-field label span {
  color: var(--silver);
  font-size: 0.75em;
  font-weight: 400;
}

.patients-responsibilities .section-heading {
  max-width: 940px;
}

.patients-responsibilities .benefit-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.patients-responsibilities .responsibility-card--patient {
  grid-column: span 3;
}

.patients-responsibilities .responsibility-card--doctor {
  grid-column: span 5;
}

.patients-responsibilities .responsibility-card--surgical {
  grid-column: span 4;
}

.patients-responsibilities .responsibility-card:not(.benefit-card--lead) h3 {
  margin-top: clamp(54px, 6vw, 82px);
}

.patients-responsibilities .benefit-card--lead h3 {
  margin-top: clamp(46px, 5vw, 68px);
}

.patients-support .support-console {
  margin-top: 0;
  color: var(--offwhite);
}

.patients-support .support-statement {
  margin-bottom: 24px;
}

.patients-support__body {
  max-width: 60ch;
  margin-bottom: 24px;
  color: var(--text-light-muted);
  line-height: 1.72;
}

.patients-support__note {
  max-width: 60ch;
  margin: 0;
  padding: 18px 0 0 18px;
  border-top: 1px solid var(--line-dark);
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.patients-support .console-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.patients-support .console-item__index {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.patients-support .console-item strong {
  max-width: 18ch;
  color: var(--offwhite);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.patients-final-cta__copy {
  max-width: 920px;
}

.patients-final-cta__copy p {
  max-width: 66ch;
  margin: 22px 0 0;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .patients-hero .home-hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(400px, 1.02fr);
  }

  .patients-hero__visual {
    margin-right: -44px;
  }
}

@media (max-width: 900px) {
  .patients-process .home-process__heading {
    position: static;
  }

  .patients-hero .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .patients-page .patients-hero h1 {
    font-size: clamp(2.72rem, 7.2vw, 4.4rem);
  }

  .patients-hero__visual {
    min-height: clamp(450px, 69vw, 570px);
    margin: -10px 0 -20px;
  }

  .patients-hero__scene {
    width: min(760px, 112%);
  }

  .patients-region__grid {
    grid-template-columns: 1fr;
  }

  .patients-region__copy {
    max-width: 760px;
  }

  .patients-responsibilities .responsibility-card--patient {
    grid-column: span 5;
  }

  .patients-responsibilities .responsibility-card--doctor {
    grid-column: span 7;
  }

  .patients-responsibilities .responsibility-card--surgical {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .patients-page .patients-hero h1 {
    font-size: clamp(2.1rem, 9.2vw, 3.25rem);
    line-height: 1.02;
  }

  .patients-hero__visual {
    min-height: clamp(330px, 94vw, 410px);
    margin: 4px 0 -16px;
  }

  .patients-hero__scene {
    width: 120%;
  }

  .patients-hero__line {
    white-space: normal;
  }

  .patients-hero__promise {
    right: 6%;
    bottom: -6px;
    max-width: 25ch;
    padding: 12px 14px;
    font-size: 0.6rem;
  }

  .patients-surgeon h2,
  .patients-region h2 {
    font-size: clamp(2rem, 8.6vw, 2.45rem);
  }

  .patients-region__action {
    padding: 26px 22px;
  }

  .patients-responsibilities .benefit-grid {
    grid-template-columns: 1fr;
  }

  .patients-responsibilities .responsibility-card--patient,
  .patients-responsibilities .responsibility-card--doctor,
  .patients-responsibilities .responsibility-card--surgical {
    grid-column: auto;
  }

  .patients-support__note {
    padding-left: 14px;
  }
}

/* Technical product heroes */
.technical-page .site-header {
  background: transparent;
}

.technical-page .site-header.is-scrolled {
  background-color: rgba(10, 11, 13, 0.92);
}

.technical-page--ignite {
  --technical-crop-width: clamp(230px, 22vw, 285px);
  --technical-equipment-scale: 1.08;
  --technical-sheet-height: 144%;
  --technical-sheet-top: 46.5%;
  --technical-sheet-x: -84.9%;
}

.technical-page--vaser {
  --technical-crop-width: clamp(215px, 20vw, 265px);
  --technical-equipment-scale: 1.1;
  --technical-sheet-height: 141%;
  --technical-sheet-top: 51%;
  --technical-sheet-x: -61.4%;
}

.technical-page--renuvion {
  --technical-crop-width: clamp(225px, 21vw, 280px);
  --technical-equipment-scale: 1.08;
  --technical-sheet-height: 142%;
  --technical-sheet-top: 48%;
  --technical-sheet-x: -15.6%;
}

@media (min-width: 901px) {
  .technical-page .hero--ignite .hero__grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: clamp(24px, 3vw, 48px);
  }
}

.technical-page .hero--ignite .technical-hero__visual {
  display: grid;
  width: 100%;
  min-height: clamp(500px, 43vw, 640px);
  margin: 0 clamp(-76px, -4.5vw, -28px) 0 0;
  padding-bottom: 0;
  place-items: center;
  isolation: isolate;
}

.technical-hero__scene {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: relative;
  display: grid;
  width: min(620px, 112%);
  height: clamp(500px, 43vw, 640px);
  place-items: center;
  transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.technical-hero__halo {
  position: absolute;
  z-index: 0;
  inset: 8% 10% 7%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 48% 46%, rgba(208, 156, 98, 0.19), transparent 50%),
    radial-gradient(ellipse at 56% 54%, rgba(94, 142, 164, 0.2), transparent 69%);
  filter: blur(38px);
  opacity: 0.74;
  pointer-events: none;
  transform: translate3d(0, 0, -36px);
  will-change: opacity, transform;
}

.technical-hero__ground {
  position: absolute;
  z-index: 1;
  bottom: 3.5%;
  left: 25%;
  width: 50%;
  height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.8), transparent 70%);
  filter: blur(16px);
  opacity: 0.58;
  pointer-events: none;
  transform: translate3d(0, 0, -12px) scaleX(0.92);
  will-change: opacity, transform;
}

.technical-hero__product {
  --hero-product-x: 0px;
  --hero-product-y: 0px;
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform: translate3d(var(--hero-product-x), var(--hero-product-y), 28px);
  transform-style: preserve-3d;
  will-change: transform;
}

.technical-hero__float {
  position: relative;
  width: min(var(--technical-crop-width), 70vw);
  height: 100%;
  transform: translate3d(0, 2px, 0) rotate(-0.25deg) scale(var(--technical-equipment-scale));
  transform-origin: 50% 72%;
  will-change: transform;
}

.technical-hero__crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.technical-hero__equipment {
  position: absolute;
  top: var(--technical-sheet-top);
  left: 50%;
  display: block;
  width: auto;
  max-width: none;
  height: var(--technical-sheet-height);
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.46));
  transform: translate3d(var(--technical-sheet-x), -50%, 0);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .technical-page .technical-hero__float {
    animation: technical-equipment-float 7.4s ease-in-out infinite;
  }

  .motion-ready .technical-page .technical-hero__ground {
    animation: technical-ground-breathe 7.4s ease-in-out infinite;
  }

  .motion-ready .technical-page .technical-hero__halo {
    animation: technical-halo-breathe 8.8s ease-in-out infinite;
  }

  .motion-ready .technical-page .technical-hero__float,
  .motion-ready .technical-page .technical-hero__ground,
  .motion-ready .technical-page .technical-hero__halo {
    animation-play-state: paused;
  }

  .motion-ready .technical-page .hero--ignite.is-in-view .technical-hero__float,
  .motion-ready .technical-page .hero--ignite.is-in-view .technical-hero__ground,
  .motion-ready .technical-page .hero--ignite.is-in-view .technical-hero__halo {
    animation-play-state: running;
  }
}

@keyframes technical-equipment-float {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(-0.25deg) scale(var(--technical-equipment-scale));
  }

  50% {
    transform: translate3d(0, -13px, 0) rotate(0.3deg) scale(var(--technical-equipment-scale));
  }
}

@keyframes technical-ground-breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, -12px) scaleX(0.92);
  }

  50% {
    opacity: 0.34;
    transform: translate3d(0, 5px, -12px) scaleX(0.8);
  }
}

@keyframes technical-halo-breathe {
  0%,
  100% {
    opacity: 0.66;
    transform: translate3d(0, 0, -36px) scale(0.95);
  }

  50% {
    opacity: 0.9;
    transform: translate3d(0, -1.5%, -36px) scale(1.04);
  }
}

@media (max-width: 1120px) {
  .technical-page .hero--ignite .technical-hero__visual {
    margin-right: -28px;
  }
}

@media (max-width: 900px) {
  .technical-page .hero--ignite .technical-hero__visual {
    min-height: clamp(470px, 70vw, 570px);
    margin: -10px 0 -22px;
  }

  .technical-hero__scene {
    width: min(680px, 100%);
    height: clamp(470px, 70vw, 570px);
  }
}

@media (max-width: 680px) {
  .technical-page .hero--ignite .technical-hero__visual {
    min-height: clamp(400px, 118vw, 480px);
    margin: -4px 0 -16px;
  }

  .technical-hero__scene {
    width: 112%;
    height: clamp(400px, 118vw, 480px);
  }

  .technical-hero__halo {
    inset: 10% 4% 8%;
    filter: blur(28px);
  }

  .technical-hero__ground {
    bottom: 3%;
    left: 20%;
    width: 60%;
  }
}

/* Floating equipment collection on the institutional home */
.home-page:not(.patients-page) .site-header {
  background: transparent;
}

.home-page:not(.patients-page) .site-header.is-scrolled {
  background: rgba(10, 11, 13, 0.92);
}

.home-page .home-hero--floating .home-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 4vw, 64px);
}

.home-page .home-hero--floating .home-hero__copy {
  min-width: 0;
  max-width: 680px;
}

.home-page .home-hero--floating .home-floating-hero__visual {
  display: grid;
  min-height: clamp(480px, 41vw, 600px);
  margin: 0 clamp(-96px, -6vw, -44px) 0 0;
  padding-bottom: 0;
  place-items: center;
  isolation: isolate;
}

.home-page .home-hero--floating .home-floating-hero__visual::after {
  display: none;
}

.home-floating-hero__scene {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: relative;
  display: grid;
  width: min(780px, 126%);
  aspect-ratio: 900 / 650;
  place-items: center;
  transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.home-floating-hero__halo {
  position: absolute;
  z-index: 0;
  inset: 10% 4% 9%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 48% 48%, rgba(208, 156, 98, 0.18), transparent 52%),
    radial-gradient(ellipse at 60% 52%, rgba(110, 135, 163, 0.16), transparent 70%);
  filter: blur(34px);
  opacity: 0.76;
  pointer-events: none;
  transform: translate3d(0, 0, -36px);
  will-change: opacity, transform;
}

.home-floating-hero__product {
  --hero-product-x: 0px;
  --hero-product-y: 0px;
  position: relative;
  z-index: 2;
  width: 100%;
  transform: translate3d(var(--hero-product-x), var(--hero-product-y), 28px);
  transform-style: preserve-3d;
  will-change: transform;
}

.home-floating-hero__equipment {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.4));
  transform: translate3d(0, 2px, 0) rotate(-0.3deg);
  transform-origin: 50% 72%;
  will-change: transform;
}

.home-floating-hero__ground {
  position: absolute;
  z-index: 1;
  bottom: 3.5%;
  left: 12%;
  width: 76%;
  height: 9%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), transparent 68%);
  filter: blur(17px);
  opacity: 0.48;
  pointer-events: none;
  transform: translate3d(0, 0, -12px) scaleX(0.94);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .home-floating-hero__equipment {
    animation: patients-equipment-float 7.2s ease-in-out infinite;
  }

  .motion-ready .home-floating-hero__ground {
    animation: patients-ground-breathe 7.2s ease-in-out infinite;
  }

  .motion-ready .home-floating-hero__halo {
    animation: patients-halo-breathe 8.6s ease-in-out infinite;
  }

  .motion-ready .home-floating-hero__equipment,
  .motion-ready .home-floating-hero__ground,
  .motion-ready .home-floating-hero__halo {
    animation-play-state: paused;
  }

  .motion-ready .home-hero--floating.is-in-view .home-floating-hero__equipment,
  .motion-ready .home-hero--floating.is-in-view .home-floating-hero__ground,
  .motion-ready .home-hero--floating.is-in-view .home-floating-hero__halo {
    animation-play-state: running;
  }
}

@media (max-width: 1120px) {
  .home-page .home-hero--floating .home-hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(400px, 1.02fr);
  }

  .home-page .home-hero--floating .home-floating-hero__visual {
    margin-right: -44px;
  }
}

@media (max-width: 900px) {
  .home-page .home-hero--floating .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero--floating .home-floating-hero__visual {
    min-height: clamp(450px, 69vw, 570px);
    margin: -10px 0 -20px;
  }

  .home-floating-hero__scene {
    width: min(780px, 112%);
  }
}

@media (max-width: 680px) {
  .home-page .home-hero--floating .home-floating-hero__visual {
    min-height: clamp(330px, 94vw, 410px);
    margin: 4px 0 -16px;
  }

  .home-floating-hero__scene {
    width: 112%;
  }

  .home-floating-hero__halo {
    filter: blur(26px);
  }
}

/* Number-free presentation on patient and technical pages */
.technical-page--ignite .ignite-spectrum__item,
.technical-page--renuvion .ignite-spectrum__item {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.patients-responsibilities .responsibility-card:not(.benefit-card--lead) h3,
.patients-responsibilities .responsibility-card.benefit-card--lead h3 {
  margin-top: 0;
}

.patients-support .console-item {
  justify-content: flex-end;
}

/* Coherent heading rhythm */
.home-process__heading h2,
.operation__heading h2 {
  font-size: clamp(2.1rem, 3.25vw, 3.05rem);
}

.faq__heading h2 {
  font-size: clamp(2rem, 3.1vw, 2.8rem);
}

.ignite-film__copy h2 {
  font-size: clamp(2.1rem, 3vw, 2.65rem);
}

.hero--ignite h1 em,
.final-cta h2 em {
  white-space: nowrap;
}

.hero--ignite h1 em {
  font-size: 0.83em;
  line-height: 1.08;
}

.final-cta h2 em {
  display: block;
  margin-top: 0.08em;
}

.final-cta__title-product,
.final-cta__title-line {
  display: block;
}

.final-cta__title-line {
  white-space: nowrap;
}

.lead-modal h2 {
  max-width: none;
}

@media (max-width: 1120px) {
  .ignite-film__grid,
  .direct-payment__panel {
    grid-template-columns: 1fr;
  }

  .ignite-film__copy {
    max-width: 760px;
  }

  .direct-payment__panel {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .hero--ignite h1 {
    font-size: clamp(2.8rem, 5.2vw, 3rem);
  }
}

@media (max-width: 680px) {
  .hero--ignite h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero--ignite h1 em {
    font-size: 0.83em;
    line-height: 1.08;
  }

  .section-heading h2,
  .home-intro h2,
  .home-benefits h2,
  .training__copy h2,
  .ignite-film__copy h2 {
    font-size: clamp(2rem, 8.6vw, 2.3rem);
  }

  .home-process__heading h2,
  .operation__heading h2 {
    font-size: clamp(1.95rem, 8.2vw, 2.1rem);
  }

  .faq__heading h2 {
    font-size: clamp(1.9rem, 8.3vw, 2rem);
  }

  .direct-payment__copy h2 {
    font-size: clamp(1.5rem, 6.6vw, 2.35rem);
  }

  .final-cta h2 {
    font-size: clamp(1.625rem, 7.4vw, 2.3rem);
  }

  .final-cta h2 em,
  .final-cta__title-line {
    font-size: 0.86em;
  }

  .final-cta__panel {
    padding-inline: 22px;
  }

  .lead-modal h2 {
    font-size: clamp(1.6rem, 6.4vw, 2.3rem);
  }

  .modalities .section-heading h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
}

@media (max-width: 380px) {
  .hero--ignite h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }
}

@media (max-width: 360px) {
  .patients-page .patients-hero h1 {
    font-size: 2.05rem;
  }

  .home-intro h2,
  .home-benefits__heading h2,
  .training__copy h2,
  .patients-responsibilities h2 {
    font-size: 2rem;
  }

  .ignite-intro__heading h2 {
    font-size: 1.65rem;
  }

  .modalities .section-heading h2 {
    font-size: 1.55rem;
  }

  .access .section-heading h2,
  .portfolio .section-heading h2,
  .patients-page .home-technologies .section-heading h2 {
    font-size: 1.7rem;
  }
}
