/**
 * Joni Digital Systems interface.
 * Developed by AngelB - https://angelb.org/
 *
 * Motion uses transforms and opacity only, with reduced-motion fallbacks.
 */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --surface-2: #e8eef1;
  --surface-3: #dce6ea;
  --ink: #111820;
  --muted: #53636d;
  --line: #cbd7dc;
  --brand: #006f99;
  --brand-strong: #005571;
  --signal: #15b8d1;
  --deep: #071923;
  --on-brand: #ffffff;
  --header: rgba(255, 255, 255, 0.94);
  --shadow: 0 24px 64px rgba(17, 24, 32, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --wrap: min(1280px, calc(100vw - 64px));
  --content: min(760px, calc(100vw - 40px));
  --header-height: 84px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #071017;
  --surface: #0e1a22;
  --surface-2: #14232d;
  --surface-3: #1b2e39;
  --ink: #edf7f9;
  --muted: #9cb0bb;
  --line: #29404c;
  --brand: #20b9d2;
  --brand-strong: #8fe7f2;
  --signal: #20b9d2;
  --deep: #03090d;
  --on-brand: #061117;
  --header: rgba(7, 16, 23, 0.94);
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 220ms ease, color 220ms ease;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.25rem, 6.8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.25rem, 4.4vw, 5rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

::selection {
  background: var(--signal);
  color: #051117;
}

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

[hidden] {
  display: none !important;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.content-wrap {
  width: var(--content);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--deep);
  color: #fff;
  transform: translateY(-160%);
}

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

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

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.eyebrow,
.page-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--muted);
}

.eyebrow::before,
.page-kicker::before {
  width: 26px;
  height: 2px;
  background: var(--signal);
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

.btn--primary {
  background: var(--brand);
  color: var(--on-brand);
}

.btn--primary:hover {
  background: var(--brand-strong);
}

.btn--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.btn--dark {
  background: var(--deep);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: #071923;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.site-header__utility {
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
}

.utility-row {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.utility-row div {
  display: flex;
  gap: 24px;
}

.utility-row a {
  text-decoration: none;
}

.utility-row a:hover {
  color: var(--brand-strong);
}

.site-header__main {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo-link {
  display: block;
  line-height: 0;
}

:root[data-theme="dark"] .site-branding .custom-logo-link,
.site-footer .custom-logo-link {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 8px;
  background: #fff;
}

.custom-logo {
  width: auto;
  max-width: 235px;
  height: 62px;
  object-fit: contain;
}

.site-menu,
.mobile-menu-list,
.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.site-menu a {
  position: relative;
  display: block;
  padding-block: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-menu a:hover::after,
.site-menu .current-menu-item > a::after,
.site-menu .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.theme-toggle {
  font-size: 1.1rem;
}

.theme-toggle [data-theme-icon],
.theme-toggle [data-theme-icon] svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
}

.menu-toggle {
  display: none;
  padding: 12px;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.mobile-nav {
  position: absolute;
  z-index: 1100;
  inset: 100% 0 auto;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-nav .wrap {
  display: grid;
  gap: 24px;
  padding-block: 24px 40px;
}

.mobile-menu-list a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
  font-weight: 750;
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero::before {
  content: none;
}

.hero__track {
  position: relative;
  min-height: 660px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(36px);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide__grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding-block: 72px 102px;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.6vw, 6.6rem);
}

.hero-copy__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual__frame {
  position: absolute;
  inset: 24px 22px 24px 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual__frame::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 16px 0 0 #f4a21a, 32px 0 0 #d91f74;
  content: "";
}

.hero-visual__frame img {
  width: 100%;
  height: 100%;
  padding: 42px 28px 24px;
  object-fit: contain;
}

.signal {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--signal);
  pointer-events: none;
}

.signal--one {
  top: 0;
  right: 0;
  width: 36%;
  height: 28%;
  border-bottom: 0;
  border-left: 0;
  animation: signal-shift 4.8s ease-in-out infinite alternate;
}

.signal--two {
  bottom: 0;
  left: 0;
  width: 34%;
  height: 25%;
  border-top: 0;
  border-right: 0;
  animation: signal-shift 5.6s ease-in-out 800ms infinite alternate-reverse;
}

.hero-chip {
  position: absolute;
  z-index: 4;
  min-width: 112px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.12);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  animation: chip-float 4.2s ease-in-out infinite;
}

.hero-chip--top {
  top: 52px;
  left: 0;
}

.hero-chip--middle {
  right: 0;
  bottom: 154px;
  animation-delay: 650ms;
}

.hero-chip--bottom {
  bottom: 42px;
  left: 92px;
  animation-delay: 1.2s;
}

.hero-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto auto auto auto;
  align-items: center;
  gap: 12px;
}

.hero-controls p {
  margin: 0 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-controls button {
  min-width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.hero-controls button:last-of-type {
  min-width: 74px;
  padding-inline: 14px;
}

.hero-controls button:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.hero-progress {
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.capability-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  color: #eaf7fa;
}

.capability-strip__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  white-space: nowrap;
}

.capability-strip span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  animation: signal-pulse 1.8s ease-in-out infinite alternate;
}

/* Sections */
.section {
  padding-block: clamp(80px, 10vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.intro-grid,
.statement-grid,
.buying-note__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(52px, 9vw, 130px);
}

.intro-grid h2,
.statement-grid h2,
.buying-note__grid h2 {
  margin-bottom: 0;
}

.intro-copy,
.statement-grid > div,
.buying-note__grid > div {
  align-self: end;
}

.intro-copy p,
.statement-grid > div > p,
.buying-note__grid > div > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section--systems {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.system-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  background: var(--surface);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.system-card:hover {
  z-index: 2;
  transform: translateY(-6px);
}

.system-card--feature {
  background: var(--brand);
  color: var(--on-brand);
}

.system-card__index {
  display: block;
  margin-bottom: 86px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0.65;
}

.system-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
}

.system-card p {
  color: var(--muted);
}

.system-card--feature p {
  color: rgba(255, 255, 255, 0.78);
}

:root[data-theme="dark"] .system-card--feature p {
  color: rgba(0, 0, 0, 0.7);
}

.system-card a {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.section--products {
  background: var(--surface);
}

.section-heading--products {
  grid-template-columns: minmax(0, 1fr) auto;
}

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

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card__image {
  display: grid;
  height: 250px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body {
  min-height: 240px;
  padding: 24px;
}

.product-card__body > p {
  color: var(--brand-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
  margin-bottom: 28px;
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.product-card h2 a,
.product-card h3 a {
  text-decoration: none;
}

.section--process {
  background: var(--deep);
  color: #eaf7fa;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
}

.process-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.process-intro .eyebrow {
  color: var(--signal);
}

.process-intro p:last-child {
  color: #99adb7;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid #29404c;
}

.process-list li:last-child {
  border-bottom: 1px solid #29404c;
}

.process-list > li > span {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.process-list p {
  margin: 0;
  color: #99adb7;
}

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

.insight-card {
  overflow: hidden;
  border-top: 3px solid var(--ink);
}

.insight-card__image {
  display: block;
  height: 230px;
  margin-top: 16px;
  overflow: hidden;
  background: var(--surface-2);
}

.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.insight-card:hover .insight-card__image img {
  transform: scale(1.05);
}

.insight-card > div {
  padding-top: 22px;
}

.insight-card > div > p:first-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card h3 {
  min-height: 2.7em;
  margin-bottom: 24px;
}

.insight-card h3 a {
  text-decoration: none;
}

.section--cta {
  padding-block: 0;
  background: var(--bg);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 100px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--brand);
  color: var(--on-brand);
}

.cta-panel::after {
  position: absolute;
  right: 8%;
  bottom: -34px;
  width: 220px;
  height: 140px;
  border: 2px solid currentColor;
  border-bottom: 0;
  content: "";
  opacity: 0.24;
  transform: rotate(-7deg);
}

.cta-panel .eyebrow {
  color: currentColor;
}

.cta-panel h2 {
  max-width: 980px;
  margin-bottom: 24px;
}

.cta-panel > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 32px;
  opacity: 0.78;
}

.cta-panel > div {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Inner pages */
.page-hero,
.catalogue-hero,
.services-hero,
.contact-hero {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero--compact {
  padding-block: clamp(80px, 10vw, 140px);
}

.page-hero__content h1 {
  max-width: 980px;
  margin-bottom: 0;
}

.subpage-hero {
  padding-block: clamp(70px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.subpage-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.subpage-hero__copy h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.5vw, 6.6rem);
}

.subpage-hero__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.subpage-hero__media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--deep);
}

.subpage-hero__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.subpage-hero__media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--statement {
  background: var(--deep);
  color: #eaf7fa;
}

.statement-grid .eyebrow {
  color: var(--signal);
}

.statement-grid > div > p {
  color: #9eb1bb;
}

.section--values {
  background: var(--surface-2);
}

.value-ledger {
  border-top: 1px solid var(--line);
}

.value-ledger article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.7fr) minmax(300px, 1fr);
  gap: 30px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.value-ledger span {
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

.value-ledger h3,
.value-ledger p {
  margin: 0;
}

.value-ledger p {
  color: var(--muted);
}

.image-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.image-story__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}

.image-story__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-story__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.catalogue-hero__grid,
.services-hero__grid,
.contact-hero__grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: end;
}

.catalogue-hero h1,
.services-hero h1,
.contact-hero h1 {
  max-width: 930px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.7vw, 6.8rem);
}

.catalogue-hero__grid > div:last-child p,
.services-hero__grid > p,
.contact-hero__grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.catalogue-section {
  background: var(--surface-2);
}

.buying-note {
  border-top: 1px solid var(--line);
}

.service-ledger {
  background: var(--surface-2);
}

.service-ledger article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.service-ledger article:last-child {
  border-bottom: 1px solid var(--line);
}

.service-ledger article > span {
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-ledger h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.service-ledger p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.service-ledger article > a {
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.section--service-insights {
  background: var(--surface);
}

.contact-directory {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-directory a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-directory span {
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-section {
  background: var(--surface-2);
}

.contact-form-grid {
  align-items: start;
}

.form-shell {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.form-shell label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input[type="submit"],
.wpcf7-submit {
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  color: #c93d45;
  font-size: 0.8rem;
}

.wpcf7-response-output {
  padding: 12px 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.product-detail__media {
  position: sticky;
  top: 150px;
  display: grid;
  min-height: 560px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.product-detail__media img {
  max-height: 560px;
  padding: 34px;
  object-fit: contain;
}

.product-detail__copy h1 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 4.6vw, 5.3rem);
}

.availability-note {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.88rem;
}

.single-entry__header {
  padding-block: clamp(80px, 10vw, 150px) 60px;
  text-align: center;
}

.single-entry__header .eyebrow {
  justify-content: center;
}

.single-entry__header h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.8vw, 6.5rem);
}

.single-entry__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.single-entry__media img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.entry-content {
  font-size: 1.02rem;
}

.single-entry > .entry-content,
.page-content .entry-content {
  padding-block: 64px 120px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2em;
}

.entry-content a {
  color: var(--brand-strong);
}

.entry-content img {
  border-radius: var(--radius);
}

.inline-cta {
  margin-top: 54px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.inline-cta h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.post-list {
  display: grid;
  gap: 32px;
}

.post-list__item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.post-list__item > a {
  overflow: hidden;
  border-radius: var(--radius);
}

.post-list__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-list__item time {
  color: var(--muted);
  font-size: 0.76rem;
}

.post-list__item h2 {
  margin-block: 10px 14px;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
}

.post-list__item h2 a {
  text-decoration: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.not-found {
  min-height: 65vh;
  display: grid;
  align-items: center;
}

/* Footer */
.site-footer {
  padding-top: 80px;
  background: var(--deep);
  color: #eaf7fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.5fr) minmax(320px, 0.8fr);
  gap: 70px;
  padding-bottom: 64px;
}

.footer-brand .custom-logo {
  max-width: 250px;
  height: 70px;
  margin-bottom: 32px;
}

.footer-brand h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.footer-brand p,
.footer-contact address {
  color: #96aab4;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 24px;
  color: var(--signal);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-menu a,
.footer-contact > a:not(.btn) {
  display: block;
  padding-block: 7px;
  color: #eaf7fa;
  text-decoration: none;
}

.footer-contact address {
  margin-bottom: 16px;
  font-style: normal;
}

.footer-contact .btn {
  margin-top: 22px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid #29404c;
  color: #96aab4;
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
}

@keyframes signal-shift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-18px, 14px, 0); }
}

@keyframes chip-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}

@keyframes signal-pulse {
  from { opacity: 0.42; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 1180px) {
  :root {
    --wrap: min(100% - 40px, 1120px);
  }

  .primary-nav,
  .header-quote,
  .site-header__utility {
    display: none;
  }

  .site-header__main {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .custom-logo {
    max-width: 210px;
    height: 54px;
  }

  .hero-slide__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 42px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .hero-slide__grid,
  .subpage-hero__grid,
  .catalogue-hero__grid,
  .services-hero__grid,
  .contact-hero__grid,
  .contact-form-grid,
  .intro-grid,
  .statement-grid,
  .buying-note__grid,
  .image-story__grid,
  .process-grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .hero__track,
  .hero-slide__grid {
    min-height: auto;
  }

  .hero-slide__grid {
    padding-block: 72px 116px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-controls {
    bottom: 20px;
  }

  .capability-strip__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .system-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: 330px;
  }

  .process-intro,
  .product-detail__media {
    position: static;
  }

  .product-detail__media {
    min-height: 420px;
  }

  .value-ledger article {
    grid-template-columns: 50px 1fr;
  }

  .value-ledger article p {
    grid-column: 2;
  }

  .service-ledger article {
    grid-template-columns: 50px 1fr;
  }

  .service-ledger article > a {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: min(100% - 28px, 580px);
    --header-height: 72px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .site-header__main {
    gap: 12px;
  }

  .custom-logo {
    max-width: 174px;
    height: 46px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero-slide__grid {
    padding-block: 54px 112px;
  }

  .hero-copy h1,
  .subpage-hero__copy h1,
  .catalogue-hero h1,
  .services-hero h1,
  .contact-hero h1,
  .single-entry__header h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

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

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual__frame {
    inset: 18px 4px 18px 18px;
  }

  .hero-visual__frame img {
    padding: 38px 18px 18px;
  }

  .hero-chip {
    min-width: 88px;
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .hero-chip--top {
    top: 36px;
  }

  .hero-chip--middle {
    right: 0;
    bottom: 110px;
  }

  .hero-chip--bottom {
    bottom: 22px;
    left: 50px;
  }

  .hero-controls {
    grid-template-columns: minmax(50px, 1fr) auto auto auto;
    gap: 6px;
  }

  .hero-controls p {
    display: none;
  }

  .hero-controls button:last-of-type {
    min-width: 62px;
  }

  .section {
    padding-block: 74px;
  }

  .system-card {
    padding: 26px;
  }

  .system-card a {
    right: 26px;
    left: 26px;
  }

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

  .product-card__image {
    height: 280px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
  }

  .cta-panel {
    width: 100%;
    border-radius: 0;
  }

  .subpage-hero {
    padding-block: 54px;
  }

  .subpage-hero__media,
  .subpage-hero__media img,
  .image-story__media img {
    min-height: 340px;
    height: 340px;
  }

  .value-ledger article,
  .service-ledger article {
    gap: 16px;
  }

  .service-ledger article > span,
  .value-ledger article > span {
    font-size: 0.68rem;
  }

  .contact-directory a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .post-list__item {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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

/* Expanded interior-page system. Developed by AngelB - https://angelb.org/ */
.statement-label {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-expectations,
.purchase-path,
.response-section {
  background: var(--surface-2);
}

.client-expectations__layout,
.office-section__layout,
.purchase-path__layout,
.engagement-section__layout,
.response-section__layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.client-expectations__layout > div:first-child h2,
.office-section__layout > div:first-child h2,
.purchase-path__layout > div:first-child h2,
.engagement-section__layout > div:first-child h2,
.response-section__layout > div:first-child h2 {
  max-width: 10ch;
}

.client-expectations__layout > div:first-child p,
.office-section__layout > div:first-child p,
.purchase-path__layout > div:first-child p,
.engagement-section__layout > div:first-child p,
.response-section__layout p {
  max-width: 48ch;
  color: var(--muted);
}

.client-expectations__grid,
.engagement-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.client-expectations__grid article,
.engagement-options article {
  min-height: 245px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
}

.client-expectations__grid article:nth-child(2),
.client-expectations__grid article:nth-child(3),
.engagement-options article:nth-child(2),
.engagement-options article:nth-child(3) {
  background: var(--surface-2);
}

.client-expectations__grid p,
.engagement-options p {
  color: var(--muted);
}

.office-section {
  border-block: 1px solid var(--line);
  background: var(--bg);
}

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

.office-list a {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.office-list a:hover,
.office-list a:focus-visible {
  color: var(--brand-strong);
  transform: translateX(8px);
}

.office-list span {
  color: var(--muted);
}

.buyer-needs,
.contact-brief {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.buyer-needs__grid,
.contact-brief__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.buyer-needs article,
.contact-brief article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 44px);
  border-left: 1px solid var(--line);
}

.buyer-needs article:last-child,
.contact-brief article:last-child {
  border-right: 1px solid var(--line);
}

.buyer-needs h2,
.contact-brief h2 {
  max-width: 12ch;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.buyer-needs p,
.contact-brief p {
  color: var(--muted);
}

.purchase-path__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  counter-reset: purchase-step;
  list-style: none;
}

.purchase-path__steps li {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0 28px 62px;
  border-bottom: 1px solid var(--line);
  counter-increment: purchase-step;
  position: relative;
}

.purchase-path__steps li::before {
  position: absolute;
  top: 29px;
  left: 0;
  color: var(--brand-strong);
  content: counter(purchase-step, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.purchase-path__steps span {
  color: var(--muted);
}

.engagement-section {
  background: var(--bg);
}

.contact-brief__grid article:nth-child(2),
.contact-brief__grid article:nth-child(4),
.buyer-needs__grid article:nth-child(2),
.buyer-needs__grid article:nth-child(4) {
  background: var(--surface);
}

.response-section__layout > div:last-child {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

@media (max-width: 980px) {
  .client-expectations__layout,
  .office-section__layout,
  .purchase-path__layout,
  .engagement-section__layout,
  .response-section__layout {
    grid-template-columns: 1fr;
  }

  .buyer-needs__grid,
  .contact-brief__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buyer-needs article:nth-child(3),
  .contact-brief article:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .client-expectations__grid,
  .engagement-options,
  .buyer-needs__grid,
  .contact-brief__grid {
    grid-template-columns: 1fr;
  }

  .client-expectations__grid article,
  .engagement-options article,
  .buyer-needs article,
  .contact-brief article {
    min-height: auto;
  }

  .buyer-needs article,
  .contact-brief article,
  .buyer-needs article:last-child,
  .contact-brief article:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .office-list a,
  .purchase-path__steps li {
    grid-template-columns: 1fr;
  }

  .purchase-path__steps li {
    gap: 10px;
    padding-left: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .office-list a {
    transition: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-controls,
  .theme-toggle,
  .menu-toggle,
  .capability-strip {
    display: none !important;
  }

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

  .section {
    padding-block: 32px;
  }
}

/*
 * Content-rich experience layer.
 * Developed by AngelB - https://angelb.org/
 */

.hero {
  background:
    radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--signal) 12%, transparent), transparent 30%),
    var(--surface);
}

.hero-visual {
  min-height: 530px;
  border-radius: var(--radius-lg);
  background: var(--brand);
  box-shadow: var(--shadow);
}

.hero-visual__frame {
  inset: 26px 26px 86px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: none;
}

.hero-visual__frame::before {
  display: none;
}

.hero-visual__frame img {
  padding: 28px;
  transition: transform 7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .hero-visual__frame img {
  transform: scale(1.035);
}

.hero-visual__caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  margin: 0;
  color: var(--on-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.section-heading--stacked {
  display: block;
  max-width: 820px;
}

.section-heading--stacked h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.section-heading--stacked > p {
  max-width: 54ch;
}

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

.system-card {
  grid-column: span 5;
  min-height: 390px;
}

.system-card--feature,
.system-card--support {
  grid-column: span 7;
}

.system-card--support {
  background: var(--deep);
  color: #eaf7fa;
}

.system-card--support h3 {
  color: #eaf7fa;
}

.system-card--support p {
  color: #a8c2cc;
}

.solution-contexts {
  background: var(--bg);
}

.solution-contexts__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.solution-contexts__layout > div:first-child {
  position: sticky;
  top: 124px;
}

.solution-contexts__layout > div:first-child h2 {
  max-width: 9ch;
}

.solution-contexts__layout > div:first-child p {
  max-width: 46ch;
  color: var(--muted);
}

.context-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  gap: 1px;
  overflow: hidden;
}

.context-rail article {
  min-height: 310px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--surface);
}

.context-rail article:nth-child(2),
.context-rail article:nth-child(3) {
  background: var(--surface-2);
}

.context-rail h3 {
  max-width: 12ch;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
}

.context-rail p {
  max-width: 40ch;
  color: var(--muted);
}

.service-matrix-section {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.service-matrix-section__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.service-matrix-section__layout > div:first-child h2 {
  max-width: 9ch;
}

.service-matrix-section__layout > div:first-child p {
  max-width: 46ch;
  color: var(--muted);
}

.service-matrix {
  border-top: 1px solid var(--line);
}

.service-matrix article {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1.25fr) auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-matrix h3,
.service-matrix p {
  margin: 0;
}

.service-matrix p {
  color: var(--muted);
}

.service-matrix a {
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.joni-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.joni-faq__layout > div:first-child h2 {
  max-width: 9ch;
}

.joni-faq__layout > div:first-child p {
  max-width: 46ch;
  color: var(--muted);
}

.joni-disclosures {
  border-top: 1px solid var(--line);
}

.joni-disclosures details {
  border-bottom: 1px solid var(--line);
}

.joni-disclosures summary {
  position: relative;
  padding: 24px 50px 24px 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.joni-disclosures summary::-webkit-details-marker {
  display: none;
}

.joni-disclosures summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-strong);
  content: "+";
  line-height: 28px;
  text-align: center;
  transform: translateY(-50%);
}

.joni-disclosures details[open] summary::after {
  content: "-";
}

.joni-disclosures details p {
  max-width: 62ch;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

[data-reveal-group] [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

[data-reveal-group] [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

[data-reveal-group] [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

@media (max-width: 980px) {
  .system-card,
  .system-card--feature,
  .system-card--support {
    grid-column: span 6;
  }

  .solution-contexts__layout,
  .service-matrix-section__layout,
  .joni-faq__layout {
    grid-template-columns: 1fr;
  }

  .solution-contexts__layout > div:first-child {
    position: static;
  }

  .service-matrix article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-visual {
    min-height: 360px;
  }

  .hero-visual__frame {
    inset: 18px 18px 72px;
  }

  .hero-visual__frame img {
    padding: 18px;
  }

  .hero-visual__caption {
    right: 20px;
    bottom: 22px;
    left: 20px;
    font-size: 0.68rem;
  }

  .system-card,
  .system-card--feature,
  .system-card--support {
    grid-column: 1 / -1;
  }

  .context-rail {
    grid-template-columns: 1fr;
  }

  .context-rail article {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-visual__frame img {
    transform: none;
  }

  [data-reveal-group] [data-reveal] {
    transition-delay: 0ms !important;
  }
}

/* Approved work-order board direction, 2026-08-12.
 * Developed by AngelB - https://angelb.org/
 */
.workboard-panel__head small,
.workboard-contact small {
  margin: 0 0 0.65rem;
  color: var(--brand-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.workboard-hero {
  display: grid;
  min-height: 560px;
  padding: 2.5rem max(32px, calc((100vw - 1280px) / 2));
  grid-template-columns: minmax(380px, 0.9fr) minmax(340px, 0.7fr) minmax(300px, 0.52fr);
  gap: 1.2rem;
  align-items: stretch;
  background: radial-gradient(circle at 58% 42%, rgba(21, 184, 209, 0.14), transparent 24%), var(--bg);
}

.workboard-hero__copy {
  display: flex;
  padding: 2rem 0;
  flex-direction: column;
  justify-content: center;
}

.workboard-hero__copy h1 {
  max-width: 12ch;
  margin-bottom: 0.38em;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
}

.workboard-hero__copy > p:not(.workboard-kicker) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.workboard-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.workboard-hero__visual {
  position: relative;
  display: flex;
  min-height: 460px;
  padding: 1.2rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.workboard-hero__visual::before {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(21, 184, 209, 0.09);
  content: "";
  filter: blur(4px);
}

.workboard-hero__visual img {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: none;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 30px 24px rgba(7, 25, 35, 0.22));
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.workboard-hero__visual:hover img {
  transform: translateY(-8px) rotate(-1deg);
}

.workboard-hero__visual > span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.8rem;
  left: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.workboard-brief {
  display: flex;
  padding: 1.6rem;
  border: 1px solid #173d51;
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #09283a, #071c29);
  color: #eaf7fa;
}

.workboard-brief__head {
  display: flex;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  gap: 0.8rem;
  align-items: center;
}

.workboard-brief__head > span {
  color: var(--signal);
  font-size: 1.5rem;
}

.line-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.workboard-brief__head > .line-icon {
  color: var(--signal);
}

.workboard-brief__head div,
.workboard-brief li div {
  display: flex;
  flex-direction: column;
}

.workboard-brief small {
  color: #9db9c5;
}

.workboard-brief ol {
  margin: 0.5rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.workboard-quote-form {
  margin-top: 1.1rem;
}

.workboard-quote-form .wpcf7-form,
.workboard-quote-form .row {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.workboard-quote-form p,
.workboard-quote-form .item-contact {
  margin: 0;
  padding: 0;
}

.workboard-quote-form select,
.workboard-quote-form input:not([type="submit"]) {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: #fff;
  color: #0b1e29;
  font-size: 0.74rem;
}

.workboard-quote-form input[type="submit"] {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 5px;
  background: var(--signal);
  color: #071923;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.workboard-quote-form .wpcf7-spinner {
  display: none;
}

.workboard-quote-form .wpcf7-response-output {
  margin: 0.7rem 0 0 !important;
  padding: 0.6rem !important;
  border-color: var(--signal) !important;
  font-size: 0.7rem;
}

.workboard-brief li {
  display: grid;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 32px 1fr;
  gap: 0.6rem;
}

.workboard-brief li > span {
  color: var(--signal);
  font-size: 0.65rem;
  font-weight: 800;
}

.workboard-brief li b {
  font-size: 0.84rem;
}

.workboard-brief li small {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  line-height: 1.4;
}

.workboard-brief > p {
  margin: 0.8rem 0 0;
  color: #86a5b3;
  font-size: 0.65rem;
  line-height: 1.45;
}

.btn--signal {
  background: var(--signal);
  color: #071923;
}

.workboard-services {
  display: grid;
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--bg);
}

.workboard-services article {
  display: grid;
  min-height: 170px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-right: 0;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  background: var(--surface);
  transition: background-color 180ms ease, transform 180ms ease;
}

.workboard-services article:last-child {
  border-right: 1px solid var(--line);
}

.workboard-services article:hover {
  z-index: 1;
  background: var(--surface-2);
  transform: translateY(-3px);
}

.workboard-services article > span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: var(--brand);
  place-items: center;
}

.workboard-services article > .line-icon {
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  color: var(--brand);
}

.workboard-services h2 {
  margin-bottom: 0.45rem;
  font-size: 1.16rem;
  letter-spacing: -0.025em;
}

.workboard-services p {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.workboard-services a,
.workboard-panel a,
.workboard-contact a {
  color: var(--brand-strong);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.workboard-dashboard {
  display: grid;
  padding: 1.1rem max(20px, calc((100vw - 1320px) / 2)) 4rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.8rem;
  background: var(--bg);
}

.workboard-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}

.workboard-panel__head {
  display: flex;
  min-height: 72px;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.workboard-panel__head small {
  display: block;
  margin-bottom: 0.2rem;
}

.workboard-panel__head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.workboard-products {
  grid-column: span 5;
}

.workboard-information {
  grid-column: span 3;
}

.workboard-scope {
  grid-column: span 4;
}

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

.workboard-product-grid article {
  display: flex;
  min-width: 0;
  min-height: 335px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

.workboard-product-grid article:nth-child(even) {
  border-right: 0;
}

.workboard-product__media {
  display: grid;
  min-height: 160px;
  margin-bottom: 0.8rem;
  place-items: center;
}

.workboard-product__media img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.workboard-product-grid article:hover img {
  transform: scale(1.04) translateY(-3px);
}

.workboard-product-grid small,
.workboard-insights__grid small {
  color: var(--brand-strong);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workboard-product-grid h3 {
  margin: 0.55rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.workboard-product-grid h3 a,
.workboard-insights__grid h3 a {
  color: var(--ink);
  font-size: inherit;
}

.workboard-link {
  margin-top: auto;
}

.workboard-note {
  margin: 0;
  padding: 0.8rem 1rem;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.workboard-information__list article {
  display: grid;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 0.75rem;
}

.workboard-information__list article:last-child {
  border-bottom: 0;
}

.workboard-information__list article > span {
  color: var(--brand-strong);
  font-size: 0.68rem;
  font-weight: 800;
}

.workboard-information h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.workboard-information p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.48;
}

.workboard-scope__item {
  display: grid;
  min-height: 285px;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 0.75fr;
  gap: 1rem;
}

.workboard-scope__item:last-child {
  border-bottom: 0;
}

.workboard-scope__item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.workboard-scope__item p,
.workboard-scope__item ul {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.workboard-scope__item ul {
  margin: 0;
  padding-left: 1rem;
}

.workboard-scope__item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
}

.workboard-buyers {
  grid-column: span 5;
}

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

.workboard-buyers__grid article {
  min-height: 150px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workboard-buyers__grid article:nth-child(even) {
  border-right: 0;
}

.workboard-buyers__grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.workboard-handover {
  grid-column: span 7;
}

.workboard-handover ol {
  display: grid;
  margin: 0;
  padding: 1.5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.workboard-handover li {
  position: relative;
  display: flex;
  padding: 0.25rem 1rem;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.workboard-handover li:last-child {
  border-right: 0;
}

.workboard-handover li > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border: 1px solid var(--brand);
  border-radius: 50%;
  color: var(--brand-strong);
  font-size: 0.65rem;
  font-weight: 800;
  place-items: center;
}

.workboard-handover small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.workboard-insights {
  grid-column: 1 / -1;
}

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

.workboard-insights__grid article {
  display: flex;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.workboard-insights__grid article:last-child {
  border-right: 0;
}

.workboard-insights__grid img {
  width: 100%;
  height: 170px;
  margin-bottom: 0.9rem;
  object-fit: cover;
}

.workboard-insights__grid h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.05rem;
  line-height: 1.32;
}

.workboard-faq {
  display: grid;
  padding: clamp(3rem, 6vw, 6rem) max(32px, calc((100vw - 1280px) / 2));
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  background: var(--surface-2);
}

.workboard-faq h2 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.workboard-faq > div:first-child > p:not(.workboard-kicker) {
  max-width: 54ch;
  color: var(--muted);
}

.workboard-contact {
  display: flex;
  padding: clamp(2.5rem, 5vw, 5rem) max(32px, calc((100vw - 1280px) / 2));
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #062233, #004f70);
  color: #fff;
}

.workboard-contact small,
.workboard-contact h2,
.workboard-contact a {
  color: #fff;
}

.workboard-contact h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.workboard-contact > div:last-child {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .workboard-hero {
    grid-template-columns: minmax(360px, 1fr) minmax(330px, 0.8fr);
  }

  .workboard-brief {
    grid-column: 1 / -1;
  }

  .workboard-brief ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .workboard-brief li {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 0;
  }

  .workboard-products,
  .workboard-scope,
  .workboard-buyers {
    grid-column: span 7;
  }

  .workboard-information,
  .workboard-handover {
    grid-column: span 5;
  }

  .workboard-handover ol {
    grid-template-columns: 1fr;
  }

  .workboard-handover li {
    display: grid;
    padding: 0.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 46px 90px 1fr;
    align-items: center;
  }

  .workboard-handover li > span {
    margin: 0;
  }

  .workboard-handover small {
    margin: 0;
  }
}

@media (max-width: 900px) {
  .workboard-hero {
    grid-template-columns: 1fr;
  }

  .workboard-hero__visual {
    min-height: 420px;
  }

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

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

  .workboard-services article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .workboard-products,
  .workboard-information,
  .workboard-scope,
  .workboard-buyers,
  .workboard-handover {
    grid-column: 1 / -1;
  }

  .workboard-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .workboard-hero {
    padding: 2.5rem 20px 1.2rem;
  }

  .workboard-hero__copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .workboard-hero__visual {
    min-height: 330px;
  }

  .workboard-brief ol,
  .workboard-services,
  .workboard-product-grid,
  .workboard-buyers__grid,
  .workboard-insights__grid {
    grid-template-columns: 1fr;
  }

  .workboard-brief li,
  .workboard-services article,
  .workboard-services article:nth-child(2) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .workboard-product-grid article,
  .workboard-buyers__grid article,
  .workboard-insights__grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workboard-scope__item {
    grid-template-columns: 1fr;
  }

  .workboard-scope__item img {
    max-height: 260px;
  }

  .workboard-handover li {
    grid-template-columns: 46px 1fr;
  }

  .workboard-handover small {
    grid-column: 2;
  }

  .workboard-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workboard-hero__visual img,
  .workboard-services article,
  .workboard-product__media img {
    transition: none;
  }

  .workboard-hero__visual:hover img,
  .workboard-services article:hover,
  .workboard-product-grid article:hover img {
    transform: none;
  }
}

/* Compact all inherited interior sections in the approved dense system. */
.section {
  padding-block: clamp(3.25rem, 5.5vw, 5.75rem);
}
