/* Self-hosted fonts. Previously loaded from Google Fonts, which cost a DNS
   lookup, TLS handshake, and stylesheet fetch on fonts.googleapis.com before a
   single font file could even be discovered on fonts.gstatic.com. Phase 0
   measurement showed the homepage LCP element is the H1 text, so that chain
   gated the largest paint.

   Both families are variable fonts: Google serves one file per family covering
   the whole weight range, so the four DM Sans weights and three Orbitron
   weights the site uses are two files, not seven. Latin subset only. */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/orbitron-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  color-scheme: dark;

  --ink-950: #03040a;
  --ink-900: #060810;
  --ink-850: #090b13;
  --ink-800: #0d111c;
  --ink-750: #121827;
  --paper-50: #f3f6ff;
  --paper-100: #e5eaf7;
  --paper-300: #a7b0c4;
  --paper-400: #8f99af;
  --paper-500: #7d879d;
  --cyan-300: #8ae6ff;
  --cyan-400: #55d9ff;
  --cyan-500: #1bc8f4;
  --atlasio: #2f5de0;
  --mewgo: #f3bc63;
  --rizz: #38a8ff;
  --rizz-violet: #7c6dff;
  --success: #4fd19a;
  --warning: #f0bd67;
  --error: #ff7d8e;

  --surface-canvas: var(--ink-950);
  --surface-raised: var(--ink-850);
  --surface-elevated: var(--ink-800);
  --surface-sunken: #020309;
  --text-primary: var(--paper-50);
  --text-secondary: var(--paper-300);
  --text-tertiary: var(--paper-500);
  --border-subtle: rgba(179, 203, 255, 0.1);
  --border-default: rgba(179, 203, 255, 0.18);
  --border-strong: rgba(179, 203, 255, 0.3);
  --accent: var(--cyan-400);
  --accent-hover: var(--cyan-300);
  --focus: var(--cyan-300);

  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Orbitron", "DM Sans", sans-serif;
  --type-display-h1: clamp(3.1rem, 5.6vw, 5.1rem);
  --type-section-title: clamp(2.25rem, 4.8vw, 4.75rem);
  --type-eyebrow-size: 0.7rem;
  --type-eyebrow-weight: 600;
  --type-eyebrow-tracking: 0.18em;
  --type-eyebrow-leading: 1.3;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 999px;

  --shadow-raised: 0 22px 60px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.18);
  --shadow-float: 0 32px 90px rgba(0, 0, 0, 0.42), 0 8px 24px rgba(0, 0, 0, 0.24);

  --motion-fast: 120ms;
  --motion-base: 200ms;
  --motion-medium: 280ms;
  --motion-story: 500ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --z-base: 0;
  --z-raised: 1;
  --z-sticky: 20;
  --z-menu: 30;
  --z-skip: 60;

  --content: 73.75rem;
  --reading: 40rem;
  --site-header-height: calc(4.75rem + 1px);
  --anchor-gap: var(--space-8);
  --form-field-gap: var(--space-4);
  --cta-helper-gap: var(--space-1);

  --component-recommendation-grid-gap: var(--space-4);
  --component-recommendation-media-height: clamp(12.5rem, 18vw, 15rem);
  --component-recommendation-padding: var(--space-4) var(--space-4) var(--space-6);
  --component-recommendation-radius: var(--radius-lg);
  --component-recommendation-disclosure-gap: var(--space-4);
  --component-recommendation-disclosure-action-gap: var(--space-2);
  --component-recommendation-action-gap: var(--space-3);
  --component-recommendation-surface: var(--surface-elevated);
  --component-recommendation-media-surface: var(--surface-sunken);
  --component-recommendation-border: var(--border-default);
  --component-recommendation-divider: var(--border-default);
  --component-recommendation-title: var(--text-primary);
  --component-recommendation-copy: var(--text-secondary);
  --component-recommendation-accent: var(--accent);
  --component-recommendation-shadow: var(--shadow-raised);
}

html {
  background: var(--surface-canvas);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) + var(--anchor-gap));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.012)),
    var(--surface-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: var(--z-raised);
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: rgba(85, 217, 255, 0.22);
  color: var(--paper-50);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: var(--z-skip);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--paper-50);
  color: var(--ink-950);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--motion-base) var(--ease-out);
}

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

.shell {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--tight {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-6);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-tracking);
  line-height: var(--type-eyebrow-leading);
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 52rem;
  margin-bottom: var(--space-6);
  font-size: var(--type-section-title);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-intro {
  max-width: var(--reading);
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-sticky);
  border-bottom: 1px solid transparent;
  background: rgba(3, 4, 10, 0.68);
  transition: background-color var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out);
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--border-subtle);
  background: rgba(3, 4, 10, 0.94);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  width: min(calc(100% - 3rem), var(--content));
  min-height: 4.75rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.brand {
  display: inline-flex;
  /* 44px tap target. The mark and wordmark are 34px tall on their own, which
     is under the minimum for the most-tapped link on the site. */
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
}

.brand-name {
  font-family: var(--font-brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--accent);
  font-weight: inherit;
}

.brand-descriptor {
  margin-left: 0.15rem;
  padding-left: 0.95rem;
  border-left: 1px solid var(--border-default);
  color: var(--text-tertiary);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
}

.nav-link {
  position: relative;
  padding-block: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--motion-fast) var(--ease-out);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion-base) var(--ease-out);
}

.nav-link[aria-current="page"] {
  color: var(--text-primary);
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 2.75rem;
  padding-inline: 1.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--paper-50);
  font-family: var(--font-brand);
  font-size: var(--type-eyebrow-size);
  font-weight: var(--type-eyebrow-weight);
  letter-spacing: var(--type-eyebrow-tracking);
  line-height: var(--type-eyebrow-leading);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform var(--motion-base) var(--ease-out), opacity var(--motion-fast) linear;
}

.nav-toggle-lines {
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle-lines::before {
  transform: translateY(-0.35rem);
}

.nav-toggle-lines::after {
  transform: translateY(0.35rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(7rem, 10vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  background-image:
    linear-gradient(rgba(85, 217, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 217, 255, 0.045) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 86%);
  content: "";
}

.hero::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 75%;
  background: linear-gradient(to bottom, transparent, rgba(85, 217, 255, 0.28), transparent);
  content: "";
  transform: rotate(23deg);
  transform-origin: top;
}

.hero-grid {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  min-height: calc(100svh - 15rem);
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.availability {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  margin-bottom: var(--space-8);
  padding: 0.4rem 0.8rem;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  background: rgba(85, 217, 255, 0.035);
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
}

.availability-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0.2rem rgba(79, 209, 154, 0.1);
}

.hero h1 {
  max-width: 48rem;
  margin-bottom: var(--space-8);
  font-size: var(--type-display-h1);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  color: var(--text-secondary);
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-summary {
  max-width: 38rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

/* An action group following body copy had no separation at all, so the button
   sat flush against the last line while every other element in the same block
   was 24px apart. Matches that rhythm. */
.section-intro + .service-actions,
p + .service-actions,
.detail-hero-summary + .service-actions {
  margin-top: var(--space-8);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

.button svg {
  width: 1rem;
  height: 1rem;
}

.button--primary {
  background: var(--accent);
  color: var(--ink-950);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 12px 32px rgba(27, 200, 244, 0.14);
}

.button--secondary {
  border-color: var(--border-default);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-primary);
}

.button--text {
  min-height: 2.75rem;
  padding-inline: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(85, 217, 255, 0.42);
  text-underline-offset: 0.35rem;
}

.hero-proof {
  display: flex;
  margin: var(--space-8) 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: var(--text-tertiary);
  font-size: 0.78rem;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-proof li::before {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-service-finder {
  position: relative;
  display: block;
  min-width: 0;
  padding: var(--space-6) var(--space-4) var(--space-4) var(--space-6);
  color: var(--text-primary);
  text-decoration: none;
}

.hero-service-finder::before {
  position: absolute;
  inset: 6% 0 0 8%;
  z-index: -1;
  border: 1px solid rgba(85, 217, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(85, 217, 255, 0.045), transparent 56%),
    rgba(255, 255, 255, 0.015);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%);
  content: "";
}

.hero-service-finder-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: rotate(-0.7deg);
  transition: border-color var(--motion-base) var(--ease-out), transform var(--motion-medium) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
}

.hero-service-finder-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-service-finder-label {
  display: flex;
  padding: 0.7rem 0.9rem;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-service-finder-label i {
  width: 0.3rem;
  height: 0.3rem;
  flex: none;
  border-radius: 50%;
  background: currentColor;
}

.hero-service-finder-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 620;
  object-fit: contain;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.hero-service-finder-caption {
  display: flex;
  min-height: 4rem;
  padding: var(--space-3) var(--space-4);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-elevated);
}

.hero-service-finder-caption strong {
  font-size: 0.9rem;
}

.hero-service-finder-caption > span {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: right;
}

.product-constellation {
  position: relative;
  min-height: 34rem;
  isolation: isolate;
}

.product-constellation::before {
  position: absolute;
  inset: 8% 2% 2% 10%;
  z-index: -1;
  border: 1px solid rgba(85, 217, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(85, 217, 255, 0.04), transparent 52%),
    rgba(255, 255, 255, 0.015);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
  content: "";
}

.preview-window,
.preview-phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-window {
  top: 10%;
  left: 2%;
  width: 82%;
  min-height: 25rem;
  border-radius: var(--radius-lg);
  transform: rotate(-1.5deg);
}

.preview-phone {
  right: 0;
  bottom: 0;
  width: 31%;
  min-width: 11.5rem;
  aspect-ratio: 900 / 1532;
  border: 0;
  border-radius: 2.35rem;
  background: #080d1c;
  box-shadow:
    0 0 0 0.35rem #171c2a,
    var(--shadow-float),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(2.5deg);
}

.mewgo-workspace-picture {
  display: block;
  width: 100%;
}

.preview-phone .mewgo-workspace-picture {
  height: 100%;
}

.preview-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  -webkit-user-drag: none;
}

.preview-phone .preview-product-image {
  object-position: top center;
}

.preview-phone--mewgo .preview-product-image {
  object-fit: contain;
  background: #030912;
}

.window-bar,
.site-bar {
  display: flex;
  min-height: 2.6rem;
  padding-inline: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.window-brand,
.site-brand,
.phone-brand {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.window-brand {
  color: #a7bbff;
}

.site-brand {
  color: #b8d0ff;
}

.window-status {
  color: var(--text-tertiary);
  font-size: 0.62rem;
}

.window-content {
  display: grid;
  padding: 1.25rem;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.ui-kicker {
  margin-bottom: 0.7rem;
  color: #91a7ff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bid-panel,
.deal-panel {
  padding: 0.9rem;
  border: 1px solid rgba(92, 125, 226, 0.2);
  border-radius: 0.75rem;
  background: #f8faff;
  color: #111828;
}

.bid-title,
.deal-title {
  display: flex;
  margin-bottom: 0.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.bid-title span,
.deal-title span {
  color: #6a7282;
  font-size: 0.58rem;
  font-weight: 500;
}

.bid-row {
  display: grid;
  padding: 0.6rem 0.65rem;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  border-bottom: 1px solid #e4e9f2;
  font-size: 0.62rem;
}

.bid-row:last-child {
  border-bottom: 0;
}

.bid-row.is-selected {
  margin-bottom: 0.25rem;
  border: 1px solid #b8c9ff;
  border-radius: 0.5rem;
  background: #eef3ff;
}

.bid-meta {
  display: block;
  margin-top: 0.1rem;
  color: #70798b;
  font-size: 0.53rem;
}

.bid-price {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.deal-list {
  display: grid;
  gap: 0.65rem;
}

.deal-step {
  position: relative;
  padding-left: 1.15rem;
  color: #596273;
  font-size: 0.58rem;
}

.deal-step::before {
  position: absolute;
  top: 0.22rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid #b9c1cf;
  border-radius: 50%;
  content: "";
}

.deal-step.is-done::before {
  border-color: var(--atlasio);
  background: var(--atlasio);
  box-shadow: 0 0 0 0.18rem rgba(47, 93, 224, 0.1);
}

.phone-island {
  width: 42%;
  height: 1rem;
  margin: 0.55rem auto 0;
  border-radius: 99px;
  background: #03040a;
}

.phone-content {
  padding: 1rem 0.8rem 0.8rem;
  color: #f7f9ff;
}

.phone-top {
  display: flex;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.phone-fire {
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(255, 151, 87, 0.25);
  border-radius: var(--radius-full);
  color: #ffad73;
  font-size: 0.52rem;
}

.score-card {
  padding: 0.8rem;
  border: 1px solid rgba(56, 168, 255, 0.2);
  border-radius: 0.8rem;
  background: rgba(56, 168, 255, 0.055);
}

.score-label {
  color: #7f8aa2;
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-line {
  display: flex;
  margin-top: 0.3rem;
  align-items: baseline;
  gap: 0.45rem;
}

.score-value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.score-rank {
  color: #74c4ff;
  font-size: 0.52rem;
  font-weight: 600;
}

.score-track {
  display: grid;
  margin-top: 0.6rem;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.18rem;
}

.score-track span {
  height: 0.2rem;
  border-radius: 1rem;
  background: #273043;
}

.score-track span:nth-child(-n+5) {
  background: var(--rizz);
}

.match-label {
  margin: 0.85rem 0 0.45rem;
  color: #7f8aa2;
  font-size: 0.48rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.match-row {
  display: flex;
  margin-bottom: 0.4rem;
  padding: 0.55rem;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.52rem;
}

.match-avatar {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #34405b, #1b2232);
  color: #a9b4ca;
  font-weight: 700;
}

.match-meta {
  margin-left: auto;
  color: #7b879e;
}

.site-dots {
  display: flex;
  gap: 0.25rem;
}

.site-dots span {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #394155;
}

.site-body {
  padding: 1rem;
  background: #0c111a;
}

.site-label {
  margin-bottom: 0.4rem;
  color: #8db7ff;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-title {
  max-width: 14rem;
  margin-bottom: 0.65rem;
  color: #f6f8ff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.site-copy {
  max-width: 13rem;
  margin-bottom: 0.8rem;
  color: #9aa6ba;
  font-size: 0.56rem;
  line-height: 1.6;
}

.site-actions {
  display: flex;
  gap: 0.45rem;
}

.site-action {
  display: inline-flex;
  min-height: 1.65rem;
  padding-inline: 0.65rem;
  align-items: center;
  border: 1px solid #4c78d8;
  border-radius: 0.35rem;
  color: #f5f8ff;
  font-size: 0.5rem;
  font-weight: 700;
}

.site-action:first-child {
  background: #4a80eb;
}

.product-index {
  position: relative;
  z-index: var(--z-raised);
  border-block: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.012);
}

.product-index-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.product-index a {
  display: grid;
  min-height: 7.5rem;
  padding: 1.6rem 1.8rem;
  align-content: center;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  border-right: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: background-color var(--motion-fast) var(--ease-out);
}

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

.index-number {
  color: var(--text-tertiary);
  font-family: var(--font-brand);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.index-name {
  color: var(--text-primary);
  font-size: 0.96rem;
  font-weight: 700;
}

.index-status {
  color: var(--text-tertiary);
  font-size: 0.72rem;
}

.index-arrow {
  color: var(--accent);
}

.products-head,
.services-head,
.process-head {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
}

.products-head .section-title,
.services-head .section-title,
.process-head .section-title {
  margin-bottom: 0;
}

.product-story {
  display: grid;
  min-height: 34rem;
  margin-bottom: clamp(5rem, 10vw, 9rem);
  align-items: center;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.product-story:last-child {
  margin-bottom: 0;
}

.product-story--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.92fr);
}

.product-story--reverse .product-copy {
  order: 2;
}

.product-story--reverse .product-visual {
  order: 1;
}

.product-status {
  display: inline-flex;
  margin-bottom: var(--space-6);
  align-items: center;
  gap: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
}

.product-status::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--product-color, var(--accent));
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--product-color, var(--accent)) 12%, transparent);
  content: "";
}

.product-copy h3 {
  margin-bottom: var(--space-6);
  font-size: clamp(2.25rem, 4.3vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.product-copy > p {
  max-width: 34rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.product-meta {
  display: flex;
  margin: 0 0 var(--space-8);
  padding: var(--space-6) 0 0;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.75rem;
  list-style: none;
}

.product-meta strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.visual-frame--atlasio {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background:
    linear-gradient(145deg, rgba(47, 93, 224, 0.08), transparent 55%),
    #eef3ff;
}

.atlasio-app {
  overflow: hidden;
  border: 1px solid rgba(22, 45, 100, 0.16);
  border-radius: 1rem;
  background: #fff;
  color: #121725;
  box-shadow: 0 24px 60px rgba(37, 63, 130, 0.18), 0 4px 14px rgba(37, 63, 130, 0.08);
}

.atlasio-topbar {
  display: flex;
  min-height: 3.25rem;
  padding-inline: 1.2rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6eaf2;
}

.atlasio-wordmark {
  color: #16244a;
  /* Was Radio Canada Big. A third webfont family for one 0.78rem
     wordmark did not justify its own download. */
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
}

.atlasio-tabs {
  display: flex;
  gap: 1rem;
  color: #707888;
  font-size: 0.65rem;
}

.atlasio-workspace {
  display: grid;
  padding: clamp(1rem, 3vw, 1.6rem);
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.atlasio-workspace .bid-panel,
.atlasio-workspace .deal-panel {
  border-color: #e3e9f4;
  box-shadow: 0 8px 22px rgba(32, 56, 115, 0.06);
}

.atlasio-workspace .bid-row,
.atlasio-workspace .deal-step {
  font-size: 0.68rem;
}

.visual-frame--rizz {
  display: grid;
  min-height: 36rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  place-items: center;
  background:
    linear-gradient(rgba(56, 168, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 168, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(56, 168, 255, 0.12), transparent 45%),
    #070b17;
  background-size: 3.5rem 3.5rem, 3.5rem 3.5rem, auto, auto;
}

.rizz-device {
  position: relative;
  width: min(19rem, 74%);
  aspect-ratio: 1206 / 2622;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3rem;
  background: #151b29;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45), 0 0 50px rgba(56, 168, 255, 0.1);
  transform: rotate(2deg);
}

.rizz-product-shot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2.55rem;
  object-fit: cover;
  object-position: top center;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  -webkit-user-drag: none;
}

.rizz-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 2.45rem;
  background: #090e1b;
}

.rizz-screen .phone-content {
  padding: 1rem;
}

.rizz-screen .score-value {
  font-size: 3.1rem;
}

.rizz-screen .match-row {
  min-height: 3rem;
  font-size: 0.68rem;
}

.rizz-orbit {
  position: absolute;
  top: 12%;
  left: 8%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(124, 109, 255, 0.25);
  border-radius: var(--radius-md);
  background: rgba(10, 14, 27, 0.94);
  color: #c4bfff;
  font-size: 0.68rem;
  box-shadow: var(--shadow-raised);
}

.visual-frame--mewgo {
  display: grid;
  min-height: 32rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  place-items: center;
  background:
    linear-gradient(145deg, rgba(243, 188, 99, 0.09), transparent 50%),
    #080b12;
}

.mewgo-product-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-float);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  -webkit-user-drag: none;
}

.mewgo-product-picture {
  max-width: 100%;
}

.mewgo-browser {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: #f4f6f9;
  color: #101622;
  box-shadow: var(--shadow-float);
}

.mewgo-browser-bar {
  display: flex;
  min-height: 2.8rem;
  padding-inline: 1rem;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #dfe4eb;
  background: #fff;
}

.mewgo-url {
  flex: 1;
  padding: 0.38rem 0.7rem;
  border-radius: var(--radius-full);
  background: #eff2f6;
  color: #818997;
  font-size: 0.58rem;
}

.mewgo-page {
  display: grid;
  min-height: 23rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.mewgo-page-copy {
  display: flex;
  padding: clamp(1.5rem, 4vw, 3rem);
  flex-direction: column;
  justify-content: center;
  background: #0d1827;
  color: #fff;
}

.mewgo-page-copy small {
  margin-bottom: 0.7rem;
  color: #a9caff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mewgo-page-copy strong {
  max-width: 22rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.mewgo-page-copy p {
  max-width: 24rem;
  margin-bottom: 1.2rem;
  color: #bdc8d9;
  font-size: 0.72rem;
  line-height: 1.65;
}

.mewgo-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mewgo-page-actions span {
  padding: 0.55rem 0.75rem;
  border: 1px solid #7098d8;
  border-radius: 0.4rem;
  font-size: 0.58rem;
  font-weight: 700;
}

.mewgo-page-actions span:first-child {
  background: #6fa3f7;
  color: #09111e;
}

.mewgo-page-proof {
  display: grid;
  padding: 1.25rem;
  align-content: center;
  gap: 0.75rem;
  background: #eef2f7;
}

.mewgo-proof-card {
  padding: 0.9rem;
  border: 1px solid #dbe2eb;
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 8px 18px rgba(25, 39, 61, 0.05);
}

.mewgo-proof-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: #7e8795;
  font-size: 0.52rem;
}

.mewgo-proof-card strong {
  font-size: 0.72rem;
}

.preview-note {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
}

.services {
  border-block: 1px solid var(--border-subtle);
  background: var(--surface-raised);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.service-primary,
.service-secondary {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--border-subtle);
  background: var(--surface-canvas);
}

.service-primary {
  display: flex;
  min-height: 37rem;
  flex-direction: column;
  border-radius: var(--radius-xl);
}

.service-secondary {
  min-height: 37rem;
  border-radius: var(--radius-lg);
}

.service-label {
  margin-bottom: var(--space-6);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: var(--space-6);
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.service-primary > p:not(.service-label),
.service-secondary > p {
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  line-height: 1.75;
}

.service-primary > .button {
  align-self: flex-start;
}

.workflow-map {
  position: relative;
  display: grid;
  margin: 0 0 var(--space-8);
  padding: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  list-style: none;
}

.workflow-node {
  position: relative;
  display: flex;
  min-height: 4.5rem;
  padding: var(--space-4);
  align-items: center;
  gap: var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.workflow-index {
  display: grid;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(85, 217, 255, 0.38);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
}

.workflow-node strong {
  font-size: 0.88rem;
  line-height: 1.4;
}

.workflow-node + .workflow-node::after {
  position: absolute;
  right: auto;
  bottom: 100%;
  left: 1.85rem;
  width: 1px;
  height: 0.8rem;
  background: rgba(85, 217, 255, 0.28);
  content: "";
}

.capability-list {
  margin: 0 0 var(--space-8);
  padding: 0;
  border-top: 1px solid var(--border-subtle);
  list-style: none;
}

.capability-list li {
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.implementation-previews {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(85, 217, 255, 0.055) 50%, transparent 50.05%),
    var(--surface-canvas);
}

.implementation-previews::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(179, 203, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 203, 255, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.implementation-previews-head {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  margin-bottom: var(--space-16);
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.implementation-previews-head .section-title {
  max-width: 46rem;
  margin-bottom: 0;
}

.implementation-preview-layout {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  gap: var(--space-8);
}

.implementation-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-default);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), var(--shadow-raised);
}

.implementation-preview--leasing {
  display: grid;
  min-height: 44rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  grid-template-rows: auto 1fr;
  gap: var(--space-12);
}

.implementation-preview--healthcare {
  display: grid;
  min-height: 44rem;
  padding: clamp(1.5rem, 3.4vw, 2.75rem);
  border-radius: var(--radius-lg);
  align-content: space-between;
  gap: var(--space-12);
}

.implementation-preview-copy {
  position: relative;
  z-index: 2;
}

.implementation-preview-copy h3 {
  max-width: 42rem;
  margin-bottom: var(--space-6);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.implementation-preview--healthcare .implementation-preview-copy h3 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.implementation-preview-copy > p:not(.service-label) {
  max-width: 39rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  line-height: 1.75;
}

.implementation-preview-points {
  display: flex;
  margin: 0 0 var(--space-8);
  padding: var(--space-4) 0 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.76rem;
  list-style: none;
}

.implementation-preview-points li::before {
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  vertical-align: 0.08rem;
}

.implementation-preview-visual,
.healthcare-preview-scene {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--surface-sunken);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.implementation-preview-visual {
  border-radius: var(--radius-lg);
}

.healthcare-preview-scene {
  min-height: 22rem;
  border-radius: var(--radius-md);
}

.preview-scene-topline {
  display: flex;
  min-height: 3.25rem;
  padding: 0.8rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.preview-scene-topline small {
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0;
}

.leasing-preview-question {
  padding: clamp(1rem, 3vw, 2rem);
}

.preview-scene-index {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.leasing-preview-question strong {
  display: block;
  max-width: 28rem;
  margin-bottom: var(--space-6);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.leasing-preview-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.leasing-preview-options span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-tertiary);
  font-size: 0.7rem;
}

.leasing-preview-options .is-active {
  border-color: rgba(85, 217, 255, 0.58);
  background: rgba(85, 217, 255, 0.07);
  color: var(--text-primary);
}

.leasing-preview-match {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 3.65rem;
  left: clamp(1rem, 3vw, 2rem);
  display: grid;
  min-height: 6.5rem;
  padding: 0.85rem 3.2rem 0.85rem 0.85rem;
  align-items: center;
  grid-template-columns: 5.25rem 1fr;
  gap: var(--space-4);
  border: 1px solid rgba(85, 217, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(13, 17, 28, 0.96);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mini-floorplan {
  display: grid;
  width: 5.25rem;
  height: 4.65rem;
  padding: 0.35rem;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 1fr 0.7fr;
  gap: 0.2rem;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.02);
}

.mini-floorplan span {
  border: 1px solid rgba(179, 203, 255, 0.16);
  background: rgba(85, 217, 255, 0.03);
}

.mini-floorplan span:first-child {
  grid-row: 1 / 3;
}

.mini-floorplan span:last-child {
  grid-column: 2;
}

.leasing-preview-match small {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leasing-preview-match strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.86rem;
}

.leasing-preview-match p {
  margin-bottom: 0;
  color: var(--text-tertiary);
  font-size: 0.64rem;
  line-height: 1.45;
}

.match-signal {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid rgba(85, 217, 255, 0.42);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.48rem;
}

.handoff-rail {
  position: absolute;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  display: grid;
  min-height: 2.75rem;
  align-items: center;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 0.65rem;
  color: var(--text-tertiary);
  font-family: var(--font-brand);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.handoff-rail i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--border-default);
}

.handoff-rail i::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 28%;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: translateX(-110%);
}

.implementation-preview.is-motion-active .handoff-rail i::after {
  animation: preview-signal 2.2s linear infinite;
}

.healthcare-preview-thread {
  display: grid;
  padding: var(--space-6);
  gap: 0.8rem;
}

.thread-line {
  max-width: 88%;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.76rem;
  line-height: 1.5;
}

.thread-line--visitor {
  margin-left: auto;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.035);
}

.thread-line--concierge {
  border: 1px solid rgba(85, 217, 255, 0.24);
  background: rgba(85, 217, 255, 0.055);
  color: var(--text-primary);
}

.thread-handoff {
  display: flex;
  min-height: 2.75rem;
  margin-top: var(--space-2);
  padding: 0.65rem 0.75rem;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.68rem;
}

.thread-handoff span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0.22rem rgba(79, 209, 154, 0.1);
}

.implementation-preview.is-visible .leasing-preview-match,
.implementation-preview.is-visible .thread-line,
.implementation-preview.is-visible .thread-handoff {
  animation: preview-arrive var(--motion-story) var(--ease-out) both;
}

.implementation-preview.is-visible .thread-line:nth-child(2) {
  animation-delay: 100ms;
}

.implementation-preview.is-visible .thread-line:nth-child(3) {
  animation-delay: 180ms;
}

.implementation-preview.is-visible .thread-handoff {
  animation-delay: 260ms;
}

@keyframes preview-arrive {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preview-signal {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  14%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(360%);
  }
}

.industry-gallery {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), var(--shadow-raised);
  grid-template-columns: minmax(15rem, 0.26fr) minmax(0, 1fr);
}

.industry-gallery-tabs {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--border-default);
  background: var(--surface-sunken);
}

.industry-tab {
  position: relative;
  display: grid;
  min-height: 9.5rem;
  padding: 1.6rem 1.35rem;
  align-items: start;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-tertiary);
  cursor: pointer;
  text-align: left;
  transition: background-color var(--motion-base) var(--ease-out), color var(--motion-base) var(--ease-out);
}

.industry-tab:last-child {
  border-bottom: 0;
}

.industry-tab.is-active,
.industry-tab[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(85, 217, 255, 0.08), rgba(85, 217, 255, 0.018));
  color: var(--text-primary);
}

.industry-tab.is-active::before,
.industry-tab[aria-selected="true"]::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 6.3rem;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.industry-tab strong,
.industry-tab small {
  display: block;
}

.industry-tab strong {
  margin-bottom: 0.45rem;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.25;
}

.industry-tab small {
  color: var(--text-tertiary);
  font-size: 0.67rem;
  line-height: 1.5;
}

.industry-tab-arrow {
  color: var(--text-tertiary);
  transform: translateX(-0.25rem);
  transition: color var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
}

.industry-tab.is-active .industry-tab-arrow,
.industry-tab[aria-selected="true"] .industry-tab-arrow {
  color: var(--accent);
  transform: translateX(0);
}

.industry-gallery-stage {
  min-width: 0;
}

.industry-application {
  min-width: 0;
  animation: industry-panel-arrive var(--motion-medium) var(--ease-out) both;
}

.industry-application-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--border-default);
  background: #060810;
  text-decoration: none;
}

.industry-application-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.industry-application-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  transition: transform var(--motion-medium) var(--ease-out), filter var(--motion-medium) var(--ease-out);
}

.industry-application-visual > span {
  position: absolute;
  right: 0.9rem;
  bottom: 0.8rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(3, 4, 10, 0.84);
  color: var(--paper-300);
  font-size: 0.62rem;
  backdrop-filter: blur(0.65rem);
}

.industry-application-body {
  display: grid;
  padding: clamp(1.5rem, 3.8vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
}

.industry-application-copy {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
}

.industry-application-copy .service-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.industry-application-copy h3 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1;
  text-wrap: pretty;
}

.industry-application-copy > p:not(.service-label) {
  max-width: 52rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.industry-application-details {
  display: grid;
  gap: var(--space-8);
}

.industry-help-points {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
  list-style: none;
}

.industry-help-points li {
  display: grid;
  padding: var(--space-6) clamp(1.5rem, 3vw, 2.5rem);
  align-content: start;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

.industry-help-points li:first-child {
  padding-left: 0;
  border-right: 1px solid var(--border-subtle);
}

.industry-help-points li:last-child {
  padding-right: 0;
}

.industry-help-points strong {
  color: var(--text-primary);
  font-size: 0.82rem;
}

.industry-help-points span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.55;
}

.industry-application-actions,
.industry-detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.industry-gallery-controls {
  display: none;
}

@keyframes industry-panel-arrive {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(85, 217, 255, 0.07) 50%, transparent 50.05%),
    var(--surface-canvas);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 18rem;
  padding: 2rem 2rem 2rem 0;
  border-top: 1px solid var(--border-default);
}

.process-step:not(:last-child) {
  margin-right: 2rem;
}

.process-step::before {
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--surface-canvas);
  content: "";
}

.process-number {
  display: block;
  margin-bottom: 3.8rem;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

.studio {
  border-block: 1px solid var(--border-subtle);
  background: var(--surface-raised);
}

.studio-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.studio-copy .section-title {
  max-width: 44rem;
}

.studio-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.studio-principles {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  list-style: none;
}

.studio-principles li {
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.studio-principles li::before {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  vertical-align: 0.1rem;
}

.founder-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: 0;
  align-self: stretch;
  grid-template-rows: minmax(12rem, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(85, 217, 255, 0.055), transparent 46%),
    var(--surface-canvas);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.founder-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--surface-sunken);
}

.founder-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  content: "";
}

.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 32%;
}

.founder-identity {
  padding: var(--space-6);
}

.founder-card small {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-card h3 {
  margin-bottom: 0.45rem;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.founder-role {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.founder-location {
  display: flex;
  padding-top: var(--space-4);
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

.audit-offer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 15% 20%, rgba(85, 217, 255, 0.08), transparent 34rem),
    var(--surface-canvas);
}

.audit-offer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  content: "";
}

.audit-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(30rem, 1.12fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.audit-offer-copy {
  position: sticky;
  top: 7rem;
}

.audit-offer-copy .section-title {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
}

.audit-offer-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
}

.audit-offer-steps {
  display: grid;
  gap: 0;
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}

.audit-offer-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
}

.audit-offer-steps li > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.audit-offer-steps strong {
  color: var(--text-primary);
  font-size: 0.86rem;
}

.audit-offer-steps p {
  margin: 0.3rem 0 0;
  color: var(--text-tertiary);
  font-size: 0.78rem;
  line-height: 1.55;
}

.audit-request-form {
  border-top-color: rgba(85, 217, 255, 0.62);
}

.audit-form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--form-field-gap);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.audit-form-heading span {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
}

.audit-form-heading small {
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

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

.audit-request-form textarea.audit-textarea-short {
  /* Two lines at rest, growing to eight before it scrolls. 8 lines at the
     1.625rem line height plus 2rem of vertical padding is 15rem. The previous
     14rem capped at roughly seven and a half, which cut a line mid-thought. */
  min-height: 5.25rem;
  max-height: 15rem;
  resize: vertical;
}

.audit-request-form textarea.audit-textarea-short.is-auto-growing {
  overflow-y: hidden;
  resize: none;
}

.audit-consent {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 var(--form-field-gap);
  padding: var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-canvas);
}

.audit-consent legend {
  padding: 0 0.4rem;
  color: var(--paper-100);
  font-size: 0.78rem;
  font-weight: 700;
}

.audit-consent label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.7rem;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.55;
}

.audit-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.audit-consent em {
  color: var(--text-tertiary);
  font-style: normal;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.contact {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.contact-copy {
  position: sticky;
  top: 7rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  margin: var(--space-8) 0 0;
  padding: var(--space-6) 0 0;
  gap: 0.7rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.contact-details a {
  width: fit-content;
  color: var(--text-primary);
  text-decoration-color: rgba(85, 217, 255, 0.55);
  text-underline-offset: 0.25rem;
}

.contact--direct {
  border-top: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 84% 45%, rgba(85, 217, 255, 0.075), transparent 28rem),
    var(--surface-canvas);
}

.contact-grid--direct {
  align-items: center;
}

.contact-grid--direct .contact-copy {
  position: static;
}

.contact-direct-card {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3rem);
  gap: var(--space-4);
  border: 1px solid var(--border-default);
  border-top-color: rgba(85, 217, 255, 0.62);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-direct-card .service-label,
.contact-direct-card h3,
.contact-direct-card p {
  margin: 0;
}

.contact-direct-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.contact-direct-card p {
  max-width: 34rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-direct-card .button {
  width: fit-content;
  margin-top: var(--space-2);
}

.contact-direct-card small {
  color: var(--text-tertiary);
  font-size: 0.72rem;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group,
.intent-fieldset {
  margin: 0 0 var(--form-field-gap);
  padding: 0;
  border: 0;
}

.field-label,
.intent-fieldset legend {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--paper-100);
  font-size: 0.78rem;
  font-weight: 700;
}

.field-label span,
.intent-fieldset legend span {
  color: var(--text-tertiary);
  font-weight: 400;
}

.field-help {
  display: block;
  margin: -0.2rem 0 0.75rem;
  color: var(--text-tertiary);
  font-size: 0.72rem;
}

.field-input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-canvas);
  color: var(--text-primary);
  transition: border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

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

.field-input::placeholder {
  color: #697389;
}

.field-input:focus-visible {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(138, 230, 255, 0.12);
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.field-input[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  color: var(--error);
  font-size: 0.72rem;
}

.field-error:empty {
  min-height: 0;
  margin-top: 0;
}

.intent-options {
  display: grid;
  gap: 0.55rem;
}

.intent-select-shell {
  position: relative;
  display: none;
}

.intent-select {
  min-height: 3.25rem;
  padding-right: 2.5rem;
  appearance: none;
  cursor: pointer;
}

.intent-select-shell svg {
  position: absolute;
  top: 50%;
  right: var(--space-2);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-secondary);
  pointer-events: none;
  transform: translateY(-50%);
}

.intent-option {
  position: relative;
  display: grid;
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem 0.75rem 2.9rem;
  align-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-out), color var(--motion-fast) var(--ease-out);
}

.intent-option input {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--accent);
  transform: translateY(-50%);
}

.intent-option:has(input:checked) {
  border-color: rgba(85, 217, 255, 0.55);
  background: rgba(85, 217, 255, 0.055);
  color: var(--text-primary);
}

.intent-option:has(input:focus-visible) {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-shell {
  display: grid;
  margin: 0 0 var(--form-field-gap);
  padding: 0.9rem;
  gap: 0.8rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-canvas);
}

.turnstile-shell[hidden] {
  display: none;
}

.turnstile-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.turnstile-label {
  color: var(--text-primary);
  font-size: 0.74rem;
  font-weight: 700;
}

.turnstile-note {
  color: var(--text-tertiary);
  font-size: 0.68rem;
  text-align: right;
}

.turnstile-note.is-error {
  color: var(--error);
}

.turnstile-widget {
  min-height: 4.1rem;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  margin: 0 0 var(--form-field-gap);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.form-status:empty {
  min-height: 0;
  margin-bottom: 0;
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.form-disclosure {
  margin: var(--cta-helper-gap) 0 0;
  color: var(--text-tertiary);
  font-size: 0.72rem;
  line-height: 1.5;
}

.submit-button {
  display: flex;
  width: 100%;
  border: 0;
  cursor: pointer;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-sunken);
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
}

.footer-copy {
  margin: 0.55rem 0 0;
  color: var(--text-tertiary);
  font-size: 0.74rem;
}

.footer-links {
  display: flex;
  /* Negative block margin absorbs the tap-target padding added to the links so
     the footer keeps its original height. */
  margin: -0.35rem 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 1.4rem;
  list-style: none;
}

.footer-links a {
  /* Padding plus the negative row margin below keeps the visual rhythm while
     giving each link a 44px tap target. Footer links were 16px tall, which is
     comfortably missable on a phone. */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.76rem;
  text-decoration: none;
}

/* Reveal animations are progressive enhancement, not a precondition for reading
   the page. Content is visible by default. The inline head script adds
   .js-reveal-armed before first paint and site.js sets data-reveal-ready once
   the observer exists; if that never happens the script removes the class again.
   A JavaScript failure therefore costs the animation, never the content. */
.reveal {
  transition: opacity var(--motion-story) var(--ease-out), transform var(--motion-story) var(--ease-out);
}

.js-reveal-armed .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
}

.js-reveal-armed .reveal[id] {
  transform: none;
}

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

.js-reveal-armed .reveal:target,
.js-reveal-armed .reveal:has(:target) {
  opacity: 1;
  transform: none;
}

/* Pilot measures: what a concept would be judged on before anyone commits.
   Deliberately plain. These are evaluation criteria, not achievements, and
   styling them like results would be the exact claim the section disclaims. */
.pilot-measures-band {
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-sunken);
}

.pilot-measures-head {
  max-width: 54rem;
  margin-bottom: var(--space-12);
}

.pilot-measures-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.pilot-measures {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
}

.pilot-measures-outcome {
  margin: 0;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.pilot-measures-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-4);
}

.pilot-measures-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.pilot-measures-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.75rem;
  height: 1px;
  background: var(--accent);
  content: "";
}


.pilot-measures-rule {
  max-width: 54rem;
  margin: var(--space-12) 0 0;
  color: var(--text-tertiary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Industries index: a routing directory, not a landing page. Two paths, one
   next step each, and the client-system boundary stated on every card. */
.industry-index-head {
  max-width: 58rem;
  margin-bottom: var(--space-16);
}

.industry-index-head .section-title {
  margin-bottom: var(--space-6);
}

.industry-path-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.industry-path-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), var(--shadow-raised);
}

.industry-path-card h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.2;
}

.industry-path-card > p {
  margin: 0;
  color: var(--text-secondary);
}

.industry-path-outcomes {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-path-outcomes li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.industry-path-outcomes li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: var(--radius-full);
  background: var(--accent);
  content: "";
}

.industry-path-visual {
  display: block;
  margin-top: var(--space-2);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  text-decoration: none;
}

.industry-path-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
}

.industry-path-visual span {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.industry-path-visual:hover {
  border-color: var(--border-strong);
}

.industry-path-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-2);
}

.industry-index-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-16);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-elevated);
}

.industry-index-cta h2 {
  margin: 0 0 var(--space-2);
  color: var(--text-primary);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.industry-index-cta p {
  max-width: 42rem;
  margin: 0;
  color: var(--text-secondary);
}

/* Service detail pages */
.service-page-main {
  min-height: 100vh;
}

.detail-hero {
  position: relative;
  padding: calc(var(--site-header-height) + var(--anchor-gap)) 0 clamp(6rem, 10vw, 9rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85, 217, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 217, 255, 0.04) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(110deg, #000 0%, transparent 72%);
  content: "";
}

.detail-hero-grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.65fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.detail-hero h1 {
  max-width: 52rem;
  margin-bottom: var(--space-8);
  font-size: var(--type-display-h1);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.detail-hero-summary {
  max-width: 40rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.detail-map {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  gap: 0.75rem;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-raised), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.detail-map-row {
  display: grid;
  min-height: 4.4rem;
  padding: 1rem;
  align-items: center;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.018);
}

.detail-map-row span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(85, 217, 255, 0.3);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
}

.detail-map-row strong {
  font-size: 0.84rem;
}

.detail-section-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.detail-section-grid .section-title {
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
}

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

.deliverable-list li {
  display: grid;
  min-height: 8rem;
  padding: 1.6rem 0;
  align-items: start;
  grid-template-columns: 3rem 0.8fr 1.2fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.deliverable-number {
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.65rem;
}

.deliverable-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.deliverable-list p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.engagement-band {
  border-block: 1px solid var(--border-subtle);
  background: var(--surface-raised);
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
}

.engagement-main,
.engagement-aside {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--surface-canvas);
}

.engagement-main h2,
.engagement-aside h2 {
  margin-bottom: var(--space-6);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.engagement-main p,
.engagement-aside p {
  color: var(--text-secondary);
}

.engagement-points {
  margin: var(--space-8) 0;
  padding: 0;
  list-style: none;
}

.engagement-points li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.engagement-points li:first-child {
  border-top: 1px solid var(--border-subtle);
}

.service-experience-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 78% 18%, rgba(85, 217, 255, 0.07), transparent 28rem),
    var(--surface-canvas);
}

.service-experience-head {
  display: grid;
  margin-bottom: var(--space-12);
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.service-experience-head .section-title {
  margin-bottom: 0;
}

.service-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: var(--space-6);
}

.service-experience-card {
  position: relative;
  min-height: 24rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), var(--shadow-raised);
}

.service-experience-card:nth-child(2) {
  border-radius: var(--radius-lg);
}

.service-experience-card::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(85, 217, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(85, 217, 255, 0.025), 0 0 0 5rem rgba(85, 217, 255, 0.018);
  content: "";
  transition: transform var(--motion-story) var(--ease-out);
}

.service-experience-card.is-motion-active::after {
  transform: translate(-1rem, -1rem) scale(1.04);
}

.service-experience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 35rem;
  margin-bottom: var(--space-6);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.052em;
  line-height: 1;
}

.service-experience-card p {
  position: relative;
  z-index: 1;
  max-width: 35rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-experience-card .button {
  position: relative;
  z-index: 1;
}

.industry-detail-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 84% 10%, rgba(85, 217, 255, 0.075), transparent 30rem),
    var(--surface-canvas);
}

.industry-detail-head {
  display: grid;
  margin-bottom: var(--space-16);
  align-items: end;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.industry-detail-head .section-title {
  margin-bottom: 0;
}

.industry-detail-stack {
  border-top: 1px solid var(--border-default);
}

.industry-detail {
  display: grid;
  padding: clamp(3rem, 7vw, 6rem) 0;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border-default);
}

.industry-detail--leasing {
  grid-template-columns: minmax(31rem, 0.92fr) minmax(0, 1.08fr);
}

.industry-detail--reverse .industry-detail-intro {
  order: 2;
}

.industry-detail--reverse .industry-detail-proof {
  order: 1;
}

.industry-detail-intro h3 {
  margin-bottom: var(--space-6);
  font-size: clamp(2.2rem, 4.3vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

.industry-detail-intro > p:not(.service-label) {
  max-width: 40rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* The note sits inside a column whose width tracks its parent grid, not the
   viewport, so a media query cannot get this right. At 1280 the two-column
   parent left the body 179px, about 29 characters a line; in the single-column
   tablet layout the same note stretched past 110. It now stacks by default and
   only goes side by side when its container can afford the 8.5rem label. */
.industry-detail-intro,
.healthcare-reception-copy {
  container-type: inline-size;
}

.industry-integration-note {
  display: grid;
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  gap: var(--space-2);
  border-block: 1px solid var(--border-subtle);
}

.industry-integration-note span {
  /* Keeps the measure readable when the container is wide. */
  max-width: 48ch;
}

@container (min-width: 32rem) {
  .industry-integration-note {
    grid-template-columns: 8.5rem 1fr;
    gap: var(--space-4);
  }
}

.industry-integration-note strong {
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-integration-note span {
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.6;
}

.industry-detail-proof {
  min-width: 0;
}

.industry-detail-proof > img {
  width: 100%;
  height: auto;
  margin-bottom: var(--space-8);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: #060810;
  box-shadow: var(--shadow-raised);
}

.industry-benefit-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
  list-style: none;
}

.industry-benefit-list li {
  min-height: 11rem;
  padding: 1.35rem 1.35rem 1.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.industry-benefit-list li:nth-child(odd) {
  padding-right: 1.5rem;
  border-right: 1px solid var(--border-subtle);
}

.industry-benefit-list li:nth-child(even) {
  padding-left: 1.5rem;
}

.industry-benefit-list span {
  display: block;
  margin-bottom: var(--space-4);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
}

.industry-benefit-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.industry-benefit-list p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.76rem;
  line-height: 1.6;
}

.app-proof-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(85, 217, 255, 0.055) 50%, transparent 50.05%),
    var(--surface-canvas);
}

.app-proof-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.app-proof-copy .section-title {
  margin-bottom: var(--space-6);
  font-size: clamp(2.3rem, 4.6vw, 4.8rem);
}

.app-proof-copy .section-intro {
  margin-bottom: var(--space-8);
}

.app-proof-points {
  display: grid;
  margin: 0 0 var(--space-8);
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-default);
  list-style: none;
}

.app-proof-points li {
  padding: 1.1rem 1.1rem 1.1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.app-proof-points li:nth-child(odd) {
  border-right: 1px solid var(--border-subtle);
}

.app-proof-points li:nth-child(even) {
  padding-left: 1.1rem;
}

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

.app-proof-points strong {
  margin-bottom: 0.35rem;
  color: var(--text-primary);
  font-size: 0.78rem;
}

.app-proof-points span {
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.55;
}

.app-proof-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-float);
  transform: rotate(0.7deg);
}

.app-proof-visual img {
  width: 100%;
  height: auto;
}

.app-proof-visual figcaption {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.65rem;
}

.final-cta {
  text-align: center;
}

.final-cta .section-title,
.final-cta .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.final-cta .section-intro {
  margin-bottom: var(--space-8);
}

.final-cta .service-actions {
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover,
  .footer-links a:hover {
    color: var(--text-primary);
  }

  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta:hover {
    border-color: var(--accent);
    background: rgba(85, 217, 255, 0.06);
    transform: translateY(-1px);
  }

  .button--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 15px 38px rgba(27, 200, 244, 0.2);
    transform: translateY(-1px);
  }

  .button--secondary:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-1px);
  }

  .button--text:hover {
    color: var(--accent-hover);
  }

  .hero-service-finder:hover .hero-service-finder-frame {
    border-color: rgba(85, 217, 255, 0.34);
    box-shadow: 0 36px 96px rgba(0, 0, 0, 0.48), 0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotate(0deg) translateY(-2px);
  }

  .product-index a:hover {
    background: rgba(85, 217, 255, 0.035);
  }

  .intent-option:hover {
    border-color: var(--border-default);
    color: var(--text-primary);
  }
}

@media (max-width: 68rem) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 54rem;
  }

  .product-constellation {
    width: min(100%, 40rem);
    min-height: 36rem;
    margin-inline: auto;
  }

  .hero-service-finder {
    width: min(100%, 50rem);
    margin-inline: auto;
  }

  .service-grid,
  .engagement-grid,
  .implementation-preview-layout {
    grid-template-columns: 1fr;
  }

  .implementation-preview--healthcare {
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }

  .service-secondary {
    min-height: auto;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-step:not(:last-child) {
    margin-right: 0;
  }
}

@media (max-width: 75rem) and (min-width: 62.001rem) {
  .brand-descriptor {
    display: none;
  }

  .site-nav {
    gap: var(--space-4);
  }

  .nav-panel {
    gap: clamp(0.75rem, 1.5vw, 1.15rem);
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .nav-cta {
    padding-inline: 0.9rem;
  }
}

@media (max-width: 62rem) {
  :root {
    --type-display-h1: clamp(3rem, 13.8vw, 5.2rem);
  }

  .shell,
  .site-nav {
    width: min(calc(100% - 2rem), var(--content));
  }

  .brand-descriptor {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
  }

  .site-header.menu-open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-panel {
    position: fixed;
    top: 4.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-menu);
    display: flex;
    padding: 2rem 1rem calc(2rem + env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(3, 4, 10, 0.98);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-0.75rem);
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    transition: opacity var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link,
  .nav-cta {
    display: flex;
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1rem;
    border: 1px solid var(--accent);
  }

  .hero {
    min-height: auto;
  }

  .products-head,
  .services-head,
  .process-head,
  .implementation-previews-head,
  .product-story,
  .product-story--reverse,
  .studio-grid,
  .audit-offer-grid,
  .contact-grid,
  .detail-hero-grid,
  .detail-section-grid,
  .service-experience-head,
  .service-experience-grid,
  .industry-detail-head,
  .industry-detail,
  .app-proof-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    min-height: 28rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    grid-template-rows: 1fr;
  }

  .founder-identity {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .industry-gallery {
    grid-template-columns: 1fr;
  }

  .industry-gallery-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--border-default);
  }

  .industry-tab {
    min-height: 7.5rem;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 0;
  }

  .industry-tab:last-child {
    border-right: 0;
  }

  .industry-tab.is-active::before,
  .industry-tab[aria-selected="true"]::before {
    top: auto;
    right: 1.35rem;
    bottom: 0;
    left: 1.35rem;
    width: auto;
    height: 2px;
    transform: none;
  }

  .industry-detail--reverse .industry-detail-intro,
  .industry-detail--reverse .industry-detail-proof {
    order: initial;
  }

  .app-proof-copy {
    max-width: 48rem;
  }

  .products-head,
  .services-head,
  .process-head,
  .implementation-previews-head {
    gap: var(--space-6);
  }

  .product-story--reverse .product-copy,
  .product-story--reverse .product-visual {
    order: initial;
  }

  .product-story .product-copy {
    max-width: 40rem;
  }

  .product-story .product-visual {
    order: 2;
  }

  .contact-copy {
    position: static;
  }

  .audit-offer-copy {
    position: static;
  }

  .deliverable-list li {
    grid-template-columns: 2.5rem 1fr;
  }

  .deliverable-list p {
    grid-column: 2;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 48rem) {
  .product-index-list {
    grid-template-columns: 1fr;
  }

  .product-index a {
    min-height: 5.2rem;
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .industry-application-copy,
  .industry-help-points {
    grid-template-columns: 1fr;
  }

  .industry-help-points li,
  .industry-help-points li:first-child,
  .industry-help-points li:last-child {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .industry-gallery.is-enhanced .industry-gallery-controls {
    display: grid;
    min-height: 3.5rem;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    border-top: 1px solid var(--border-default);
    background: var(--surface-sunken);
  }

  .industry-gallery-controls button {
    min-height: 3.5rem;
    padding: 0.75rem 1rem;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
  }

  .industry-gallery-controls button:last-child {
    text-align: right;
  }

  .industry-gallery-controls p {
    margin: 0;
    color: var(--text-tertiary);
    font-family: var(--font-brand);
    font-size: 0.55rem;
  }
}

@media (max-width: 40rem) {
  :root {
    --site-header-height: calc(4.25rem + 1px);
  }

  .section {
    padding-block: 5.25rem;
  }

  .section--tight {
    padding-block: 4.5rem;
  }

  .site-nav {
    min-height: 4.25rem;
  }

  .nav-panel {
    top: 4.25rem;
  }

  .brand-name {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero-actions,
  .service-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button--text {
    width: fit-content;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-constellation {
    min-height: 29rem;
  }

  .hero-service-finder {
    padding: var(--space-4) 0 0;
  }

  .hero-service-finder::before {
    inset: 8% -0.5rem -0.75rem 0.75rem;
  }

  .hero-service-finder-frame {
    border-radius: var(--radius-lg);
    transform: none;
  }

  .hero-service-finder-image {
    aspect-ratio: 1280 / 620;
  }

  .hero-service-finder-caption {
    min-height: 4.5rem;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-1);
  }

  .hero-service-finder-caption > span {
    text-align: left;
  }

  .preview-window {
    top: 4%;
    left: 0;
    width: 96%;
    min-height: 18rem;
  }

  .window-content {
    grid-template-columns: 1fr;
  }

  .window-content .deal-panel {
    display: none;
  }

  .preview-phone {
    right: -1%;
    width: 39%;
    min-width: 9.5rem;
  }

  .site-title {
    font-size: 0.9rem;
  }

  .site-copy {
    display: none;
  }

  .product-index a {
    padding-inline: 1rem;
  }

  .index-status {
    display: none;
  }

  .visual-frame,
  .visual-frame--atlasio,
  .visual-frame--mewgo {
    min-height: 25rem;
  }

  .mewgo-product-picture {
    width: min(100%, 22rem);
  }

  .atlasio-workspace,
  .mewgo-page {
    grid-template-columns: 1fr;
  }

  .atlasio-workspace .deal-panel,
  .mewgo-page-proof {
    display: none;
  }

  .mewgo-page {
    min-height: 20rem;
  }

  .visual-frame--rizz {
    min-height: 32rem;
  }

  .rizz-device {
    width: min(16rem, 82%);
  }

  .rizz-orbit {
    top: 4%;
    left: 2%;
  }

  .service-primary,
  .service-secondary,
  .implementation-preview--leasing,
  .implementation-preview--healthcare,
  .service-experience-card,
  .audit-request-form,
  .contact-form,
  .engagement-main,
  .engagement-aside {
    padding: 1.5rem;
  }

  .implementation-preview--healthcare {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .implementation-preview--leasing {
    min-height: 42rem;
  }

  .industry-gallery-tabs {
    grid-template-columns: 1fr;
  }

  .industry-tab {
    min-height: 5.75rem;
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .industry-tab:last-child {
    border-bottom: 0;
  }

  .industry-application-visual > span {
    position: static;
    display: block;
    border: 0;
    border-top: 1px solid var(--border-subtle);
    border-radius: 0;
    background: var(--surface-sunken);
    backdrop-filter: none;
  }

  .industry-application-body {
    padding: 1.5rem;
    gap: var(--space-8);
  }

  .industry-help-points li,
  .industry-integration-note {
    grid-template-columns: 1fr;
  }

  .industry-application-actions,
  .industry-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .industry-application-actions .button--text,
  .industry-detail-actions .button--text {
    width: fit-content;
  }

  .industry-benefit-list,
  .app-proof-points {
    grid-template-columns: 1fr;
  }

  .industry-benefit-list li,
  .industry-benefit-list li:nth-child(odd),
  .industry-benefit-list li:nth-child(even),
  .app-proof-points li,
  .app-proof-points li:nth-child(even) {
    min-height: auto;
    padding: 1.25rem 0;
    border-right: 0;
  }

  .app-proof-visual {
    border-radius: var(--radius-lg);
    transform: none;
  }

  .leasing-preview-match {
    grid-template-columns: 4.5rem 1fr;
  }

  .mini-floorplan {
    width: 4.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    min-height: auto;
    padding-block: 2rem 3rem;
  }

  .process-number {
    margin-bottom: 2rem;
  }

  .studio-principles {
    grid-template-columns: 1fr;
  }

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

  .intent-options {
    display: none;
  }

  .intent-select-shell {
    display: block;
  }

  .intent-select {
    font-size: 1rem;
  }

  .founder-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .founder-photo {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .founder-photo img {
    object-position: 54% 52%;
  }

  .founder-location {
    flex-direction: column;
  }

  .detail-map {
    padding: 1rem;
  }

  .deliverable-list li {
    min-height: auto;
    padding-block: 1.5rem;
  }
}

.healthcare-hub-main {
  position: relative;
  overflow: hidden;
}

.healthcare-hub-hero {
  position: relative;
  padding: clamp(6.5rem, 11vw, 9rem) 0 clamp(5rem, 9vw, 7rem);
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(85, 217, 255, 0.055) 50%, transparent 50.05%),
    radial-gradient(circle at 82% 20%, rgba(85, 217, 255, 0.09), transparent 32rem),
    var(--surface-canvas);
}

.healthcare-hub-hero-grid {
  display: grid;
  min-height: 42rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(31rem, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.healthcare-hub-hero-copy {
  position: relative;
  z-index: 2;
}

.healthcare-hub-hero-copy h1 {
  max-width: 47rem;
  margin-bottom: var(--space-8);
  font-size: var(--type-display-h1);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.healthcare-hub-hero-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

.healthcare-hub-visual {
  position: relative;
  min-width: 0;
  min-height: 48rem;
}

.healthcare-preview-frame {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-float);
  text-decoration: none;
  transition: border-color var(--motion-base) var(--ease-out), transform var(--motion-medium) var(--ease-out);
}

.healthcare-preview-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.healthcare-preview-frame > span {
  display: block;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.healthcare-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.healthcare-preview-frame--finder {
  top: 0;
  left: 0;
  width: 84%;
  transform: rotate(-1.1deg);
}

.healthcare-preview-frame--concierge {
  right: 0;
  top: 13rem;
  width: 76%;
  transform: rotate(1.2deg);
}

.healthcare-preview-frame--readiness {
  bottom: 1.75rem;
  left: 1.5rem;
  width: 72%;
  transform: rotate(-0.7deg);
}

.healthcare-outcome-strip {
  display: grid;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  border-left: 1px solid var(--border-default);
  background: var(--surface-raised);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.healthcare-outcome-strip div {
  min-height: 8rem;
  padding: 1.5rem;
}

.healthcare-outcome-strip div:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
}

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

.healthcare-outcome-strip span {
  margin-bottom: var(--space-4);
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.healthcare-outcome-strip strong {
  max-width: 18rem;
  font-size: 1.1rem;
}

.healthcare-section-head {
  display: grid;
  margin-bottom: var(--space-16);
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.healthcare-section-head .section-title,
.healthcare-section-head .section-intro {
  margin-bottom: 0;
}

.healthcare-journey {
  padding-block: clamp(var(--space-12), 6vw, 5rem);
  background: var(--surface-canvas);
}

.healthcare-journey-head {
  max-width: 57rem;
}

.healthcare-journey-head .eyebrow {
  margin-bottom: var(--space-4);
}

.healthcare-journey-head .section-title {
  max-width: none;
  margin-bottom: var(--space-4);
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.healthcare-journey-head .section-intro {
  max-width: 52rem;
}

.healthcare-journey-flow {
  display: grid;
  max-width: 52rem;
  margin: var(--space-8) 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.healthcare-journey-flow li {
  position: relative;
  min-width: 0;
  padding: var(--space-3) var(--space-6) var(--space-3) 0;
  border-top: 1px solid var(--border-default);
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.healthcare-journey-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: var(--space-3);
  color: var(--accent);
  content: "\2192";
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.healthcare-solutions {
  border-block: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 12% 32%, rgba(85, 217, 255, 0.055), transparent 28rem),
    var(--surface-raised);
}

.healthcare-solution-stack {
  border-top: 1px solid var(--border-default);
}

.healthcare-solution {
  display: grid;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: clamp(3rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border-default);
}

.healthcare-solution--reverse {
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
}

.healthcare-solution--reverse .healthcare-solution-media {
  order: 2;
}

.healthcare-solution--reverse .healthcare-solution-copy {
  order: 1;
}

.healthcare-solution-media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: #060810;
  box-shadow: var(--shadow-raised);
  text-decoration: none;
}

.healthcare-solution-media img {
  width: 100%;
  height: auto;
  transition: transform var(--motion-medium) var(--ease-out);
}

.healthcare-solution-copy h3,
.healthcare-reception-copy h3 {
  margin-bottom: var(--space-6);
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.healthcare-solution-copy > p:not(.service-label),
.healthcare-reception-copy > p:not(.service-label) {
  margin-bottom: var(--space-6);
  color: var(--text-secondary);
  line-height: 1.75;
}

.healthcare-solution-copy > ul {
  margin: 0 0 var(--space-8);
  padding: 0;
  border-top: 1px solid var(--border-default);
  list-style: none;
}

.healthcare-solution-copy > ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.healthcare-solution-copy > ul li::before {
  margin-right: 0.7rem;
  color: var(--accent);
  content: "↳";
}

.healthcare-reception-solution {
  --component-reception-transcript-top: clamp(24.5rem, 25vw, 28.5rem);

  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-raised);
  grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.22fr);
}

.healthcare-reception-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.healthcare-reception-preview {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
}

.healthcare-reception-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 4, 10, 0.92), rgba(3, 4, 10, 0.08) 70%);
  content: "";
}

.healthcare-reception-preview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.healthcare-call-transcript {
  position: absolute;
  top: var(--component-reception-transcript-top);
  right: clamp(1rem, 4vw, 3rem);
  bottom: auto;
  left: clamp(1rem, 4vw, 3rem);
  z-index: 1;
  display: grid;
  gap: var(--space-3);
}

.healthcare-call-transcript > span {
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.healthcare-call-transcript p {
  max-width: 34rem;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(3, 4, 10, 0.78);
  color: var(--paper-100);
  font-size: 0.75rem;
  line-height: 1.55;
  backdrop-filter: blur(0.75rem);
}

.healthcare-call-transcript strong {
  margin-right: 0.4rem;
  color: var(--accent);
}

.healthcare-integration {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(85, 217, 255, 0.05) 50%, transparent 50.05%),
    var(--surface-canvas);
}

.healthcare-integration-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.healthcare-integration .section-title {
  margin-bottom: var(--space-6);
}

.healthcare-integration .section-intro {
  margin-bottom: var(--space-8);
}

.healthcare-system-flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-default);
  list-style: none;
}

.healthcare-system-flow li {
  display: grid;
  min-height: 8.75rem;
  padding: 1.5rem 0;
  align-items: start;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
}

.healthcare-system-flow li > span {
  color: var(--accent);
  font-family: var(--font-brand);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.healthcare-system-flow strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 0.95rem;
}

.healthcare-system-flow p {
  max-width: 31rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.6;
}

.healthcare-final-cta {
  border-top: 1px solid var(--border-subtle);
  background:
    radial-gradient(circle at 82% 28%, rgba(85, 217, 255, 0.09), transparent 27rem),
    var(--surface-raised);
}

.healthcare-final-cta .section-title {
  max-width: 59rem;
  margin-bottom: var(--space-6);
}

.healthcare-final-cta .section-intro {
  max-width: 48rem;
  margin-bottom: var(--space-8);
}

@media (hover: hover) and (pointer: fine) {
  .healthcare-preview-frame:hover {
    border-color: var(--border-strong);
  }

  .healthcare-preview-frame--finder:hover {
    transform: rotate(-0.35deg) translateY(-0.25rem);
  }

  .healthcare-preview-frame--concierge:hover {
    transform: rotate(0.35deg) translateY(-0.25rem);
  }

  .healthcare-preview-frame--readiness:hover {
    transform: rotate(-0.2deg) translateY(-0.25rem);
  }

  .healthcare-solution-media:hover img {
    transform: scale(1.012);
  }
}

@media (max-width: 68rem) {
  .healthcare-hub-hero-grid,
  .healthcare-section-head,
  .healthcare-solution,
  .healthcare-reception-solution,
  .healthcare-integration-grid {
    grid-template-columns: 1fr;
  }

  .healthcare-hub-hero-grid {
    min-height: 0;
  }

  .healthcare-hub-visual {
    min-height: 45rem;
  }

  .healthcare-section-head {
    align-items: start;
    gap: var(--space-6);
  }

  .healthcare-solution--reverse .healthcare-solution-media,
  .healthcare-solution--reverse .healthcare-solution-copy {
    order: initial;
  }

  .healthcare-reception-preview {
    min-height: 34rem;
  }

  .healthcare-call-transcript {
    top: auto;
    bottom: clamp(1rem, 4vw, 3rem);
  }

}

@media (max-width: 40rem) {
  .healthcare-hub-hero {
    padding-top: 5.5rem;
  }

  .healthcare-hub-hero-copy h1 {
    font-size: clamp(3rem, 13.8vw, 5.2rem);
  }

  .healthcare-hub-visual {
    display: grid;
    min-height: 0;
    gap: var(--space-4);
  }

  .healthcare-preview-frame,
  .healthcare-preview-frame--finder,
  .healthcare-preview-frame--concierge,
  .healthcare-preview-frame--readiness {
    position: static;
    width: 100%;
    transform: none;
  }

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

  .healthcare-outcome-strip div {
    min-height: 0;
  }

  .healthcare-outcome-strip div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .healthcare-journey {
    padding-block: var(--space-12);
  }

  .healthcare-journey-head .section-title {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
  }

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

  .healthcare-journey-flow li {
    padding-right: 1rem;
    font-size: clamp(0.75rem, 3vw, 0.82rem);
  }

  .healthcare-journey-flow li:not(:last-child)::after {
    right: 0.25rem;
    font-size: 0.62rem;
  }

  .healthcare-solution {
    gap: var(--space-8);
  }

  .healthcare-reception-solution {
    border-radius: var(--radius-lg);
  }

  .healthcare-reception-preview {
    min-height: 30rem;
  }

  .healthcare-system-flow li {
    min-height: 0;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: var(--space-4);
  }
}

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

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

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

@media print {
  .site-header,
  .hero-actions,
  .service-actions,
  .contact,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section,
  .hero,
  .detail-hero {
    padding-block: 2rem;
  }
}
