@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --limestone: #f4f1e8;
  --limestone-deep: #e9e4d8;
  --paper: #fffefa;
  --carbon: #0b1117;
  --carbon-soft: #131d25;
  --teal: #009999;
  --teal-dark: #007d7d;
  --mist: #b9e4de;
  --slate: #333f65;
  --steel: #6a7282;
  --amber: #e7a33e;
  --line: #c9c5ba;
  --font-display: "Outfit", sans-serif;
  --font-hero: "Space Grotesk", "Outfit", sans-serif;
  --font-section: "Figtree", sans-serif;
  --font-editorial: "Instrument Serif", Georgia, serif;
  --font-body: "Figtree", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--limestone);
  color: var(--carbon);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  font-kerning: normal;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--mist); color: var(--carbon); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  background: var(--carbon);
  color: var(--paper);
  transition: transform 180ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  --scroll-progress: 0;
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.25rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--limestone) 94%, transparent);
  backdrop-filter: blur(12px);
  isolation: isolate;
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: 0 .85rem 2.6rem rgba(11, 17, 23, .1);
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
  pointer-events: none;
}
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  pointer-events: none;
}
.site-header.is-stuck {
  border-bottom-color: transparent;
  animation: header-dock 420ms var(--ease-out) both;
}
.site-header.is-stuck::before { opacity: 1; }
.site-header.is-stuck .brand__logo { transform: scale(.92); }
.site-header.is-stuck .desktop-nav,
.site-header.is-stuck .header-actions { transform: translateY(-1px); }

@keyframes header-dock {
  from { transform: translateY(-.55rem); opacity: .9; }
  to { transform: translateY(0); opacity: 1; }
}

.brand { display: inline-flex; align-items: center; width: max-content; }
.brand__logo { width: 7.75rem; height: auto; transform-origin: left center; transition: transform 320ms var(--ease-out); }
.brand--footer .brand__logo { width: 9rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2vw, 2.5rem); font-size: .9rem; font-weight: 500; transition: transform 320ms var(--ease-out); }
.desktop-nav a { position: relative; padding: 1.85rem 0; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 1.35rem; left: 0; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: right; transition: transform 250ms var(--ease-out); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 1.25rem; transition: transform 320ms var(--ease-out); }
.location-tag { font: 500 .64rem/1 var(--font-mono); letter-spacing: .08em; }
.language-link { display: inline-flex; min-height: 2.5rem; align-items: center; border-bottom: 1px solid transparent; font-size: .78rem; font-weight: 600; }
.language-link:hover, .language-link:focus-visible { border-bottom-color: var(--teal); color: var(--teal-dark); }
.menu-toggle, .mobile-menu { display: none; }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.15rem;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--paper);
  font-size: .9rem;
  font-weight: 600;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.button:hover { transform: translateY(-2px); background: var(--teal-dark); border-color: var(--teal-dark); }
.button:active { transform: translateY(0); }
.button--small { min-height: 2.6rem; padding: .65rem .95rem; font-size: .8rem; }
.button--light { background: var(--limestone); border-color: var(--limestone); color: var(--carbon); }
.button--light:hover { background: var(--paper); border-color: var(--paper); }
.text-link { display: inline-flex; min-height: 2.75rem; align-items: center; gap: .5rem; border-bottom: 1px solid currentColor; font-weight: 600; transition: color 180ms var(--ease-out), gap 180ms var(--ease-out); }
.text-link:hover { color: var(--teal-dark); gap: .8rem; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(33rem, 1.1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  min-height: calc(100svh - 5.25rem);
  padding: clamp(5rem, 8vw, 8.5rem) var(--page-pad) clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(116deg, rgba(185, 228, 222, .42), transparent 38%),
    linear-gradient(180deg, #fbfaf5 0%, var(--limestone) 100%);
  color: var(--carbon);
}
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 49.94%, rgba(0, 125, 125, .12) 50%, transparent 50.06%); }
.blueprint { pointer-events: none; position: absolute; opacity: .34; }
.blueprint::before, .blueprint::after { content: ""; position: absolute; inset: 0; }
.blueprint::before { background-image: linear-gradient(var(--teal) 1px, transparent 1px), linear-gradient(90deg, var(--teal) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(90deg, transparent, #000 30%, #000); }
.blueprint::after { border: 1px solid var(--teal); transform: rotate(-12deg) scale(.58); }
.blueprint--hero { top: 0; right: -8rem; width: min(54vw, 52rem); height: min(54vw, 52rem); opacity: .25; }
.hero__glow { position: absolute; z-index: -1; top: 50%; right: clamp(-16rem, -9vw, -7rem); width: min(62vw, 62rem); aspect-ratio: 1; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(185, 228, 222, .88) 0, rgba(185, 228, 222, .38) 31%, transparent 68%); filter: blur(8px); pointer-events: none; }
.hero__contours { position: absolute; z-index: 0; inset: 0 0 0 auto; width: min(69vw, 70rem); height: 100%; overflow: visible; color: var(--teal-dark); opacity: .24; pointer-events: none; }
.hero__contours path, .hero__contours circle { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.hero__contours > path:not(.hero__contour--fine) { stroke-dasharray: 4 7; }
.hero__contours .hero__contour--fine { color: var(--slate); opacity: .52; }
.hero__contours circle { fill: var(--limestone); stroke-width: 1.5; }
.hero__copy { position: relative; z-index: 3; align-self: center; }
.eyebrow, .section-index { margin: 0 0 2rem; color: var(--teal-dark); font: 500 .7rem/1.3 var(--font-mono); letter-spacing: .08em; }
.hero .eyebrow { color: var(--teal-dark); }
.hero h1 { max-width: 11ch; margin: 0 0 2.15rem -.055em; font-family: var(--font-hero); font-size: clamp(4.35rem, 7vw, 8.6rem); font-weight: 700; line-height: .82; letter-spacing: -.072em; }
.hero__line { display: block; white-space: nowrap; }
.hero__line--accent { color: var(--slate); }
.hero h1 em { color: var(--teal); font-family: var(--font-editorial); font-size: 1.12em; font-weight: 400; letter-spacing: -.045em; }
.hero__lede { max-width: 36rem; margin: 0; color: #46515a; font-size: clamp(1.05rem, 1.35vw, 1.35rem); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.hero .text-link:hover { color: var(--teal-dark); }
.hero__signals { display: flex; flex-wrap: wrap; gap: .9rem 1.5rem; margin-top: clamp(3rem, 7vh, 6rem); color: #64717a; font: 500 .6rem/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.hero__signals span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__signals i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 .3rem rgba(0, 153, 153, .12); }
.hero__visual { position: relative; z-index: 2; align-self: center; width: 100%; padding: 1.1rem; border: 1px solid rgba(51, 63, 101, .16); background: rgba(255, 254, 250, .64); box-shadow: 0 3rem 7rem rgba(51, 63, 101, .16), 0 0 0 1px rgba(255, 254, 250, .72); backdrop-filter: blur(10px); transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); transform-origin: center left; }
.hero__visual::before { content: ""; position: absolute; inset: -.7rem; z-index: -1; border: 1px solid rgba(0, 153, 153, .25); pointer-events: none; }
.hero__visual::after { content: ""; position: absolute; z-index: 4; top: 1.1rem; right: 1.1rem; left: 1.1rem; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; pointer-events: none; animation: scan-system 5.5s ease-in-out 1.2s infinite; }
.drawing-label { position: absolute; color: var(--steel); font: 500 .62rem/1 var(--font-mono); letter-spacing: .08em; }
.hero .drawing-label { color: #64717a; }
.drawing-label--top { top: -1.7rem; left: 0; }
.drawing-label--bottom { right: 0; bottom: -1.7rem; }
.drawing-crosshair { position: absolute; top: -8px; right: -8px; width: 16px; height: 16px; }
.drawing-crosshair::before, .drawing-crosshair::after { content: ""; position: absolute; background: var(--teal); }
.drawing-crosshair::before { top: 7px; left: 0; width: 16px; height: 1px; }
.drawing-crosshair::after { top: 0; left: 7px; width: 1px; height: 16px; }
.system-window { overflow: hidden; border: 1px solid rgba(51, 63, 101, .18); background: var(--paper); box-shadow: 0 24px 70px rgba(51, 63, 101, .16); animation: dashboard-float 7s var(--ease-out) infinite alternate; }
.hero-chip { position: absolute; z-index: 5; border: 1px solid rgba(51, 63, 101, .16); background: rgba(255, 254, 250, .94); color: var(--carbon); box-shadow: 0 1.4rem 3rem rgba(51, 63, 101, .14); backdrop-filter: blur(10px); font-family: var(--font-mono); }
.hero-chip--insight { top: 18%; right: -2rem; display: grid; min-width: 10rem; padding: .9rem 1rem; }
.hero-chip--insight span { color: var(--teal-dark); font-size: .54rem; letter-spacing: .08em; }
.hero-chip--insight strong { margin: .35rem 0 .15rem; color: var(--slate); font: 700 1.35rem/1 var(--font-hero); }
.hero-chip--insight small { color: var(--steel); font-size: .52rem; }
.hero-chip--sync { bottom: 12%; left: -2rem; display: flex; align-items: center; gap: .55rem; padding: .7rem .85rem; color: var(--slate); font-size: .56rem; text-transform: uppercase; }
.hero-chip--sync i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 .25rem rgba(0, 153, 153, .12); }
.system-window__bar { display: flex; justify-content: space-between; align-items: center; min-height: 3.3rem; padding: 0 1.2rem; border-bottom: 1px solid #d7d9d3; font-size: .78rem; }
.mini-brand { display: flex; align-items: center; gap: .55rem; font-weight: 600; }
.mini-brand span { display: grid; width: 1.75rem; aspect-ratio: 1; place-items: center; overflow: hidden; border: 1px solid #d7d9d3; background: white; }
.mini-brand img { width: 100%; height: 100%; object-fit: cover; }
.system-status { display: flex; align-items: center; gap: .45rem; color: var(--steel); font: .62rem var(--font-mono); text-transform: uppercase; }
.system-status i { width: .5rem; height: .5rem; border-radius: 50%; background: var(--teal); }
.system-window__body { display: grid; grid-template-columns: 3.6rem 1fr; min-height: 31rem; }
.system-sidebar { display: flex; flex-direction: column; align-items: center; gap: 1.45rem; padding-top: 1.7rem; border-right: 1px solid #dedfd9; background: #f6f7f2; }
.system-sidebar span { width: 1rem; height: 1rem; border: 1px solid #a5aaa7; }
.system-sidebar .is-active { background: var(--teal); border-color: var(--teal); }
.system-content { min-width: 0; padding: 1.6rem; }
.system-heading { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 1.2rem; border-bottom: 1px solid #dedfd9; }
.system-heading div { display: grid; gap: .25rem; }
.system-heading small, .system-heading > span, .system-grid small { color: var(--steel); font: .58rem var(--font-mono); letter-spacing: .06em; }
.system-heading strong { font: 700 1.05rem var(--font-display); }
.system-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: .8rem; padding-top: .9rem; }
.system-grid article { min-width: 0; min-height: 11rem; padding: 1rem; border: 1px solid #d5d7d2; background: var(--paper); }
.progress-module { display: grid; justify-items: center; align-content: start; }
.progress-module small { justify-self: start; }
.progress-ring { display: grid; width: 7rem; aspect-ratio: 1; place-items: center; margin: .7rem 0 .45rem; border-radius: 50%; background: conic-gradient(var(--teal) 72%, #e3e3dc 0); }
.progress-ring::before { content: ""; grid-area: 1/1; width: 5.3rem; aspect-ratio: 1; border-radius: 50%; background: var(--paper); }
.progress-ring span { z-index: 1; grid-area: 1/1; font: 700 1.45rem var(--font-display); }
.progress-ring sup { font-size: .7rem; }
.progress-module p { margin: 0; color: var(--teal-dark); font-size: .68rem; }
.chart-module svg { margin-top: .75rem; overflow: visible; }
.chart-grid { fill: none; stroke: #e0e1dc; stroke-width: 1; }
.chart-plan { fill: none; stroke: var(--slate); stroke-width: 2; }
.chart-actual { fill: none; stroke: var(--teal); stroke-width: 3; }
.chart-module circle { fill: var(--teal); }
.chart-legend { display: flex; gap: 1.5rem; color: var(--steel); font-size: .6rem; }
.chart-legend span::before { content: ""; display: inline-block; width: .6rem; height: 2px; margin-right: .35rem; vertical-align: middle; background: var(--slate); }
.chart-legend span:last-child::before { background: var(--teal); }
.module-title { display: flex; justify-content: space-between; align-items: center; }
.module-title b { font: 700 1.25rem var(--font-display); }
.issue-module ul, .milestone-module ul { margin: .75rem 0 0; padding: 0; list-style: none; }
.issue-module li, .milestone-module li { display: flex; align-items: center; gap: .55rem; min-height: 2.45rem; border-top: 1px solid #e2e2dc; font-size: .67rem; }
.issue-module li em { margin-left: auto; color: var(--steel); font: normal .62rem var(--font-mono); }
.issue-module .status--amber { color: var(--amber); }
.milestone-module li i { width: .55rem; height: .55rem; border-radius: 50%; border: 1px solid var(--steel); }
.milestone-module li i.is-done { background: var(--teal); border-color: var(--teal); }
.milestone-module li i.is-live { background: var(--amber); border-color: var(--amber); }
.milestone-module li b { margin-left: auto; color: var(--steel); font: 500 .58rem var(--font-mono); }
.hero__index { position: absolute; right: 1.1rem; bottom: 1.4rem; display: grid; gap: .2rem; color: #64717a; font: .56rem var(--font-mono); writing-mode: vertical-rl; }

@keyframes dashboard-float {
  from { transform: translateY(.2rem); }
  to { transform: translateY(-.45rem); }
}

@keyframes scan-system {
  0%, 10% { top: 1.1rem; opacity: 0; }
  18% { opacity: .72; }
  72% { opacity: .25; }
  82%, 100% { top: calc(100% - 1.1rem); opacity: 0; }
}

.sector-strip { display: flex; min-height: 4.3rem; align-items: center; justify-content: center; gap: clamp(.8rem, 2.3vw, 2.5rem); padding: 1rem var(--page-pad); overflow: hidden; background: var(--carbon); color: var(--paper); font: 500 .67rem var(--font-mono); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.sector-strip span { color: var(--mist); }
.sector-strip i { width: .35rem; height: .35rem; transform: rotate(45deg); background: var(--teal); }

.section { padding: var(--section-space) var(--page-pad); }
.capabilities,
.work,
.approach {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.capabilities > *,
.work > *,
.approach > * {
  position: relative;
  z-index: 2;
}
.capabilities {
  background:
    radial-gradient(circle at 82% 19%, rgba(185, 228, 222, .32), transparent 24rem),
    linear-gradient(180deg, var(--limestone) 0%, #f7f4ec 100%);
}
.capabilities::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(-9rem, -8vw, -4rem);
  right: clamp(-13rem, -9vw, -5rem);
  width: min(52vw, 51rem);
  aspect-ratio: 796.632 / 829.513;
  background: url("assets/wadai-architectural-background.svg") center / contain no-repeat;
  opacity: .92;
  pointer-events: none;
}
.capabilities::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 153, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 153, .13) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent 42%, rgba(0, 0, 0, .7) 76%, transparent 100%);
  opacity: .45;
  pointer-events: none;
}
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; column-gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.section-heading .section-index { grid-column: 1/-1; }
.section-heading h2, .work__intro h2, .products__intro h2, .systems h2, .approach h2, .contact h2 { margin: 0; font: 600 clamp(2.8rem, 5.5vw, 6.5rem)/.98 var(--font-section); letter-spacing: -.032em; text-wrap: balance; }
.section-heading p:last-child, .work__intro > p:last-child, .products__intro > p:last-child, .approach__heading > p:last-child { max-width: 36rem; margin: 0; color: #4c5660; font-size: clamp(1rem, 1.25vw, 1.25rem); }
.capability-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 254, 250, .72); box-shadow: 0 2.5rem 6rem rgba(51, 63, 101, .08); backdrop-filter: blur(9px); }
.capability { --cap-pad: clamp(1.25rem, 2.5vw, 2.5rem); --progress: .25; position: relative; display: flex; min-width: 0; min-height: 25rem; flex-direction: column; padding: 2rem var(--cap-pad); }
.capability:nth-child(2) { --progress: .5; }
.capability:nth-child(3) { --progress: .75; }
.capability:nth-child(4) { --progress: 1; }
.capability::before,
.capability::after { content: ""; position: absolute; top: -2px; right: 0; left: 0; height: 3px; pointer-events: none; }
.capability::before { background: rgba(51, 63, 101, .13); }
.capability::after { background: var(--teal); transform: scaleX(0); transform-origin: left center; transition: transform 900ms var(--ease-out) calc(var(--delay, 0ms) + 180ms); }
.capability.is-visible::after { transform: scaleX(var(--progress)); }
.capability + .capability { padding-left: clamp(1.25rem, 3vw, 3rem); border-left: 1px solid var(--line); }
.capability > span { color: var(--teal-dark); font: .7rem var(--font-mono); }
.capability h3 { margin: 2.15rem 0 1rem; font: 600 clamp(1.75rem, 2.4vw, 2.6rem)/1.05 var(--font-section); letter-spacing: -.02em; text-wrap: balance; }
.capability p { max-width: 29rem; margin: 0; color: #4c5660; }
.capability ul { display: grid; margin: auto 0 0; padding: 2rem 0 0; list-style: none; }
.capability li { display: flex; min-height: 2.55rem; align-items: center; gap: .7rem; border-top: 1px solid rgba(51, 63, 101, .16); color: #3e4750; font: .62rem var(--font-mono); letter-spacing: .015em; text-transform: uppercase; }
.capability li:last-child { border-bottom: 1px solid rgba(51, 63, 101, .16); }
.capability li::before { content: ""; width: .42rem; height: .42rem; flex: 0 0 auto; border: 1px solid var(--teal); background: rgba(0, 153, 153, .08); }
.capability__link { display: inline-flex; width: max-content; align-items: center; gap: .45rem; margin-top: 1.4rem; border-bottom: 1px solid currentColor; color: var(--teal-dark); font-size: .78rem; font-weight: 600; }
[dir="rtl"] .capability__link [aria-hidden="true"] { transform: scaleX(-1); }
.project__tags span { padding: .38rem .6rem; border: 1px solid var(--line); color: #3e4750; font: .62rem var(--font-mono); text-transform: uppercase; }

.work {
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(51, 63, 101, .055) 50%, transparent 50.05%) top / 100% 38rem no-repeat,
    var(--paper);
}
.work::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(46vw, 44rem);
  height: 38rem;
  background-image:
    linear-gradient(rgba(0, 153, 153, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 153, .12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, transparent 4%, #000 56%, transparent 100%);
  opacity: .46;
  pointer-events: none;
}
.work::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(var(--section-space) + 1rem);
  right: calc(var(--page-pad) + 1rem);
  width: 7.5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 153, 153, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5rem rgba(0, 153, 153, .035), 0 0 0 3rem rgba(0, 153, 153, .025);
  pointer-events: none;
}
.work__intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.work__intro .section-index { grid-column: 1/-1; }
.partner-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: clamp(5rem, 10vw, 10rem); border: 1px solid var(--line); background: var(--line); }
.partner { min-width: 0; overflow: hidden; background: var(--paper); }
.partner__brand { position: relative; isolation: isolate; display: grid; min-height: clamp(25rem, 37vw, 40rem); place-items: center; overflow: hidden; }
.partner__brand::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(currentColor 1px, transparent 1px), linear-gradient(90deg, currentColor 1px, transparent 1px); background-size: 32px 32px; opacity: .09; mask-image: linear-gradient(145deg, transparent 2%, #000 52%, transparent 100%); }
.partner__brand::after { content: ""; position: absolute; z-index: -1; width: 56%; aspect-ratio: 1; border: 1px solid currentColor; transform: rotate(45deg); opacity: .16; }
.partner--asas .partner__brand { color: #a9772f; background: radial-gradient(circle at 50% 45%, #fffdf8 0, #f5ecdc 52%, #e9dcc4 100%); }
.partner--edge .partner__brand { color: #248fb0; background: radial-gradient(circle at 50% 45%, #fbfeff 0, #e8f1f3 52%, #d9e8eb 100%); }
.partner__brand img { position: relative; z-index: 1; display: block; width: min(54%, 22rem); max-height: 18rem; object-fit: contain; }
.partner--edge .partner__brand img { width: min(58%, 23rem); }
.partner__index, .partner__location { position: absolute; z-index: 2; color: currentColor; font: 600 .58rem/1 var(--font-mono); letter-spacing: .08em; }
.partner__index { top: clamp(1.5rem, 3vw, 2.5rem); left: clamp(1.5rem, 3vw, 2.5rem); }
.partner__location { right: clamp(1.5rem, 3vw, 2.5rem); bottom: clamp(1.5rem, 3vw, 2.5rem); }
.partner__body { display: flex; min-height: 25rem; flex-direction: column; align-items: flex-start; padding: clamp(2rem, 4vw, 4rem); }
.partner__type { color: var(--steel); font: 500 .61rem/1.4 var(--font-mono); letter-spacing: .06em; }
.partner h3 { margin: clamp(3rem, 6vw, 5.5rem) 0 1.25rem; font: 600 clamp(2.4rem, 4vw, 4.8rem)/.98 var(--font-section); letter-spacing: -.032em; text-wrap: balance; }
.partner__body > p { max-width: 34rem; margin: 0; color: #4c5660; font-size: 1.05rem; }
.project__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.75rem 0 2.2rem; }
.partner__body .text-link { margin-top: auto; }
.project-archive__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .7fr); column-gap: clamp(3rem, 8vw, 9rem); align-items: end; margin-top: clamp(6rem, 12vw, 12rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.project-archive__intro .section-index { grid-column: 1 / -1; }
.project-archive__intro h3 { margin: 0; font: 600 clamp(2.6rem, 5vw, 5.8rem)/.98 var(--font-section); letter-spacing: -.032em; text-wrap: balance; }
.project-archive__intro > p:last-child { max-width: 32rem; margin: 0; color: #4c5660; font-size: clamp(1rem, 1.2vw, 1.2rem); }
.project-archive { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1px; margin-top: clamp(3.5rem, 7vw, 6rem); border: 1px solid var(--line); background: var(--line); }
.client-card { position: relative; display: flex; min-width: 0; grid-column: span 4; flex-direction: column; overflow: hidden; background: var(--paper); }
.client-card:nth-child(1) { grid-column: span 7; }
.client-card:nth-child(2) { grid-column: span 5; }
.client-card::before { content: attr(data-index); position: absolute; z-index: 3; top: 1rem; left: 1rem; display: grid; width: 3.25rem; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255, 255, 255, .65); background: rgba(10, 17, 24, .72); color: var(--paper); font: 600 .68rem/1 var(--font-mono); letter-spacing: .08em; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.client-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 11; background: var(--carbon); }
.client-card:nth-child(-n+2) .client-card__media { aspect-ratio: 16 / 9; }
.client-card__media::after { content: ""; position: absolute; inset: 0; border: 0 solid var(--teal); background: linear-gradient(180deg, transparent 55%, rgba(10, 17, 24, .18)); transition: border-width 300ms var(--ease-out); pointer-events: none; }
.client-card__media:hover::after, .client-card__media:focus-visible::after { border-width: 6px; }
.client-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 650ms var(--ease-out); }
.client-card__media:hover img, .client-card__media:focus-visible img { transform: scale(1.025); }
.client-card__media > span { position: absolute; z-index: 2; right: 0; bottom: 0; max-width: 100%; overflow: hidden; padding: .7rem .85rem; background: var(--carbon); color: var(--paper); font: 500 .54rem/1 var(--font-mono); letter-spacing: .045em; text-overflow: ellipsis; white-space: nowrap; }
.client-card__body { display: flex; min-height: 20rem; flex: 1; flex-direction: column; align-items: flex-start; padding: clamp(1.5rem, 2.5vw, 2.5rem); }
.client-card__eyebrow { display: flex; width: 100%; min-width: 0; align-items: center; gap: 1rem; color: var(--steel); font: 500 .58rem/1.4 var(--font-mono); letter-spacing: .055em; }
.client-card__eyebrow span:first-child { display: none; }
.client-card h3 { max-width: 16ch; margin: clamp(2.5rem, 4vw, 4rem) 0 1rem; font: 600 clamp(1.8rem, 2.4vw, 2.8rem)/1.05 var(--font-section); letter-spacing: -.025em; text-wrap: balance; }
.client-card__body > p { max-width: 38rem; margin: 0; color: #4c5660; }
.client-card .project__tags { margin: 1.5rem 0 2rem; }
.client-card .text-link { margin-top: auto; }

.products { position: relative; overflow: hidden; isolation: isolate; background: var(--carbon); color: var(--paper); }
.products::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(rgba(80, 110, 124, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(80, 110, 124, .14) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(145deg, transparent 0 18%, #000 50%, transparent 92%); }
.products::after { content: attr(data-watermark); position: absolute; z-index: -1; right: -.035em; bottom: -.18em; color: rgba(255, 255, 255, .025); font: 600 clamp(8rem, 17vw, 20rem)/1 var(--font-section); letter-spacing: -.06em; white-space: nowrap; pointer-events: none; }
.products__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, .8fr); column-gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.products__intro .section-index { grid-column: 1 / -1; color: var(--mist); }
.products__intro h2 { color: var(--paper); }
.products__intro > p:last-of-type { color: #b9c5c9; }
.products__signals { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; margin-top: clamp(2rem, 4vw, 3.5rem); color: #8fa4ab; font: 500 .58rem/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; }
.products__signals i { width: .28rem; height: .28rem; border-radius: 50%; background: var(--teal); }
.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1px; margin-top: clamp(3.5rem, 7vw, 6rem); border: 1px solid #33424b; background: #33424b; }
.product-card { position: relative; display: flex; min-width: 0; grid-column: span 4; flex-direction: column; overflow: hidden; background: var(--carbon-soft); }
.product-card:first-child { grid-column: span 8; }
.product-card::before { content: attr(data-index); position: absolute; z-index: 4; top: 1rem; left: 1rem; display: grid; width: 3.25rem; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255, 255, 255, .3); background: rgba(10, 17, 24, .76); color: var(--paper); font: 600 .68rem/1 var(--font-mono); letter-spacing: .08em; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.product-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; border-bottom: 1px solid #33424b; background: var(--carbon); }
.product-card:first-child .product-card__media { aspect-ratio: 16 / 8; }
.product-card__media::after { content: ""; position: absolute; inset: 0; border: 0 solid var(--teal); transition: border-width 300ms var(--ease-out); pointer-events: none; }
.product-card__media:hover::after, .product-card__media:focus-visible::after { border-width: 6px; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 600ms var(--ease-out); }
.product-card__media:hover img, .product-card__media:focus-visible img { transform: scale(1.025); }
.product-card__body { display: flex; min-height: 23rem; flex: 1; flex-direction: column; align-items: flex-start; gap: 1.1rem; padding: clamp(1.5rem, 2.5vw, 2.5rem); }
.product-card:first-child .product-card__body { min-height: 20rem; }
.product-card__top { display: flex; width: 100%; min-width: 0; align-items: center; justify-content: space-between; gap: 1rem; }
.product-status { display: inline-flex; align-items: center; gap: .45rem; padding: .42rem .65rem; border: 1px solid rgba(80, 212, 202, .4); color: #aee8df; font: 500 .6rem/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.product-status i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--teal); }
.product-status--soon { border-color: rgba(231, 163, 62, .5); color: #9c6d20; }
.product-status--soon i { background: var(--amber); }
.product-card__domain { min-width: 0; overflow: hidden; color: #81939a; font: 500 .58rem/1 var(--font-mono); letter-spacing: .06em; direction: ltr; text-overflow: ellipsis; white-space: nowrap; }
.product-card h3 { margin: 0; color: var(--paper); font: 600 clamp(1.7rem, 2.2vw, 2.5rem)/1.1 var(--font-section); letter-spacing: -.02em; }
.product-card:first-child h3 { font-size: clamp(2.3rem, 3.5vw, 4.2rem); }
.product-card__body > p { max-width: 38rem; margin: 0; color: #b9c5c9; }
.product-card__body .text-link { margin-top: auto; }
.product-card__body .project__tags { margin: 0 0 .5rem; }
.product-card .project__tags span { border-color: #3f5059; color: #aebcc1; }
.product-card .text-link { color: var(--paper); }
.product-card__visual { isolation: isolate; color: var(--carbon); direction: ltr; }
.product-card__visual::before { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.product-card__visual > * { position: relative; z-index: 1; }
.product-card__visual--kalam { display: grid; place-items: center; align-content: center; gap: 1rem; background: #f2f7fb url('/assets/projects/kalam.webp') center / cover no-repeat; }
.product-card__media .product-card__visual-logo { width: min(52%, 15rem); height: auto; object-fit: contain; }
.product-card__media:hover .product-card__visual-logo, .product-card__media:focus-visible .product-card__visual-logo { transform: none; }
.product-card__visual--kalam strong { z-index: 1; margin-top: 1.75rem; font: 600 clamp(1rem, 1.35vw, 1.3rem)/1.15 var(--font-section); letter-spacing: -.015em; }
.product-card__visual--kalam small { z-index: 1; color: #3f607e; font: 500 .56rem/1 var(--font-mono); letter-spacing: .12em; }
.voice-wave { position: absolute; top: 54%; left: 50%; display: flex; height: 2.6rem; align-items: center; gap: .34rem; transform: translate(-50%, -50%); }
.voice-wave i { display: block; width: 3px; height: 25%; background: #65aeba; }
.voice-wave i:nth-child(2), .voice-wave i:nth-child(8) { height: 45%; }
.voice-wave i:nth-child(3), .voice-wave i:nth-child(7) { height: 70%; }
.voice-wave i:nth-child(4), .voice-wave i:nth-child(6) { height: 95%; }
.voice-wave i:nth-child(5) { height: 60%; background: #0d4a91; }
.product-card__visual--feestream { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto; gap: 1rem; padding: clamp(1.5rem, 3vw, 2.75rem); background: #10262d; color: #f4faf8; }
.product-card__visual--feestream::before { background-image: linear-gradient(rgba(92, 181, 171, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 181, 171, .11) 1px, transparent 1px); background-size: 28px 28px; }
.feestream-brand { align-self: start; font: 600 clamp(1.6rem, 2.3vw, 2.5rem)/1 var(--font-section); letter-spacing: -.03em; }
.feestream-flow { display: flex; align-items: center; gap: .6rem; }
.feestream-flow b { display: grid; min-width: 3rem; min-height: 2rem; place-items: center; border: 1px solid rgba(121, 212, 200, .5); background: #183943; color: #aee8df; font: 500 .55rem/1 var(--font-mono); letter-spacing: .08em; }
.feestream-flow i { color: #6fd0c2; font-style: normal; }
.feestream-table { grid-column: 1 / -1; align-self: end; display: grid; gap: .55rem; padding: 1rem; border: 1px solid rgba(121, 212, 200, .35); background: rgba(7, 20, 25, .68); }
.feestream-table i { display: block; height: 1px; background: linear-gradient(90deg, #6fd0c2 0 28%, rgba(174, 232, 223, .22) 28% 100%); }
.product-card__visual--feestream small { grid-column: 1 / -1; color: #aee8df; font: 500 .54rem/1 var(--font-mono); letter-spacing: .1em; }
.product-card--teaser { justify-content: center; border-style: dashed; background: rgba(255, 254, 250, .55); box-shadow: none; min-height: 16rem; }
.product-card__teaser-inner { display: grid; justify-items: start; gap: 1rem; padding: clamp(1.5rem, 2.5vw, 2.25rem); }
.product-card--teaser h3 { color: #4c5660; font-size: clamp(1.35rem, 1.7vw, 1.7rem); }
.product-card--teaser p { margin: 0; color: var(--steel); font-size: .95rem; }

.systems { padding-bottom: 0; overflow: hidden; background: var(--carbon); color: var(--paper); }
.systems__top { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(4rem, 8vw, 10rem); min-height: 44rem; padding-bottom: clamp(5rem, 8vw, 8rem); }
.systems__top > * { min-width: 0; }
.section-index--light { color: var(--mist); }
.systems__copy > p:not(.section-index) { max-width: 39rem; margin: 2rem 0 2.4rem; color: #b9c5c9; font-size: clamp(1rem, 1.35vw, 1.25rem); }
.systems__diagram { position: relative; aspect-ratio: 1.25; min-height: 32rem; }
.systems__diagram::before { content: ""; position: absolute; inset: 8%; border: 1px solid #32434e; background-image: linear-gradient(#253641 1px, transparent 1px), linear-gradient(90deg, #253641 1px, transparent 1px); background-size: 32px 32px; }
.systems__diagram > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.systems__diagram > svg path { fill: none; stroke: var(--teal); stroke-width: 1.25; stroke-dasharray: 6 8; vector-effect: non-scaling-stroke; }
.system-core, .system-node { position: absolute; z-index: 2; display: grid; }
.system-core { top: 50%; left: 50%; width: 13rem; aspect-ratio: 1; place-items: center; transform: translate(-50%, -50%); border: 1px solid var(--teal); background: var(--carbon-soft); }
.system-core span { display: grid; width: 9.5rem; place-items: center; }
.system-core img { display: block; width: 100%; height: auto; }
.system-core small { font: .64rem var(--font-mono); letter-spacing: .06em; }
.system-node { width: 13rem; min-height: 7.5rem; padding: 1rem; border: 1px solid #40505b; background: var(--carbon-soft); }
.system-node small { color: var(--teal); font: .55rem var(--font-mono); }
.system-node strong { margin: .5rem 0 .2rem; font: 600 1.15rem var(--font-section); letter-spacing: -.015em; }
.system-node span { color: #9aabb2; font-size: .75rem; }
.system-node--lead { top: 1rem; left: 0; }
.system-node--ops { top: 1rem; right: 0; }
.system-node--finance { bottom: 1rem; left: 0; }
.system-node--intel { right: 0; bottom: 1rem; }
.systems__features { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 calc(var(--page-pad) * -1); border-top: 1px solid #33424b; }
.systems__features div { min-height: 15rem; padding: 2rem var(--page-pad) 2.5rem 2rem; }
.systems__features div + div { border-left: 1px solid #33424b; }
.systems__features span { color: var(--mist); font: .65rem var(--font-mono); text-transform: uppercase; }
.systems__features p { margin: 2.8rem 0 0; color: #bdc7ca; }

.approach {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(4rem, 9vw, 10rem);
  background:
    radial-gradient(circle at 8% 76%, rgba(185, 228, 222, .34), transparent 25rem),
    linear-gradient(180deg, #f7f4ec 0%, var(--limestone) 100%);
}
.approach::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: clamp(-18rem, -14vw, -10rem);
  left: clamp(-18rem, -11vw, -9rem);
  width: min(48vw, 46rem);
  aspect-ratio: 796.632 / 829.513;
  background: url("assets/wadai-architectural-background.svg") center / contain no-repeat;
  opacity: .88;
  pointer-events: none;
}
.approach::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 44%;
  background-image:
    linear-gradient(rgba(51, 63, 101, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 63, 101, .09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 90%);
  opacity: .4;
  pointer-events: none;
}
.approach__heading { position: sticky; top: 4rem; align-self: start; }
.approach__heading > p:last-child { margin-top: 2rem; }
.approach__steps { margin: 0; padding: 0 clamp(1.5rem, 3vw, 3rem); list-style: none; border: 1px solid rgba(51, 63, 101, .13); background: rgba(255, 254, 250, .7); box-shadow: 0 2.5rem 6rem rgba(51, 63, 101, .07); backdrop-filter: blur(10px); }
.approach__steps li { position: relative; display: grid; grid-template-columns: 4rem .65fr 1fr; gap: 1.5rem; align-items: baseline; padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.approach__steps li::before { content: ""; position: absolute; top: 0; bottom: 0; left: -1px; width: 1px; background: linear-gradient(var(--teal), transparent); opacity: .36; }
.approach__steps li:last-child { border-bottom: 0; }
.approach__steps span { color: var(--teal-dark); font: .7rem var(--font-mono); }
.approach__steps strong { font: 600 clamp(1.7rem, 2.6vw, 2.7rem)/1.05 var(--font-section); letter-spacing: -.02em; }
.approach__steps p { margin: 0; color: #4c5660; }

.contact { position: relative; overflow: hidden; isolation: isolate; background: var(--teal); color: var(--paper); }
.contact::after { content: ""; position: absolute; z-index: 1; right: -7vw; bottom: -18vw; width: 42vw; aspect-ratio: 1; border: 1px solid #68bdbc; transform: rotate(45deg); }
.blueprint--contact { top: 0; right: 0; width: 42rem; height: 100%; opacity: .22; }
.blueprint--contact::before { background-image: linear-gradient(var(--paper) 1px, transparent 1px), linear-gradient(90deg, var(--paper) 1px, transparent 1px); mask-image: linear-gradient(90deg, transparent, #000); }
.blueprint--contact::after { display: none; }
.contact__watermark { position: absolute; z-index: 0; right: 0; bottom: 0; width: 100vw; max-width: none; height: auto; opacity: .035; pointer-events: none; user-select: none; }
.contact > .section-index { position: relative; z-index: 2; }
.contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .85fr) minmax(32rem, 1.15fr); gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.contact h2 { max-width: 9ch; font-size: clamp(3.5rem, 6vw, 7rem); }
.contact__intro { display: grid; justify-items: start; gap: 2rem; }
.contact__intro > p { max-width: 32rem; margin: 0; color: #d9f0eb; font-size: 1.15rem; }
.contact__details { display: grid; gap: .65rem; width: min(100%, 32rem); margin: 1rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 254, 250, .28); color: #e8f7f3; font: normal .72rem/1.4 var(--font-mono); letter-spacing: .04em; }
.contact__details a { color: inherit; text-decoration: none; text-underline-offset: .3em; transition: color 180ms ease; }
.contact__details a:hover { color: #fff; text-decoration: underline; }
.contact__whatsapp { display: inline-flex; min-height: 3.25rem; align-items: center; gap: .7rem; padding: .75rem 1rem; border: 1px solid #25d366; background: #25d366; box-shadow: 0 .8rem 2rem rgba(4, 76, 45, .18); color: #fff; font-size: .9rem; font-weight: 600; text-decoration: none; transition: transform 200ms var(--ease-out); }
.contact__whatsapp svg { width: 1.5rem; height: 1.5rem; flex: 0 0 auto; }
.contact__whatsapp:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.contact-form { position: relative; container-type: inline-size; display: grid; gap: 2rem; overflow: hidden; padding: clamp(1.5rem, 3.5vw, 3rem); border: 1px solid rgba(255, 255, 255, .62); border-radius: 0; background: linear-gradient(145deg, rgba(235, 255, 251, .38), rgba(209, 242, 238, .22) 48%, rgba(232, 255, 251, .31)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), inset 1px 0 0 rgba(255, 255, 255, .46), inset 0 -1px 0 rgba(2, 74, 77, .22), inset -1px 0 0 rgba(2, 74, 77, .09), 0 .9rem 1.6rem rgba(5, 47, 52, .13), 0 3.25rem 7rem rgba(5, 30, 35, .22); color: var(--carbon); -webkit-backdrop-filter: blur(26px) saturate(175%) brightness(1.08); backdrop-filter: blur(26px) saturate(175%) brightness(1.08); }
.contact-form::before { content: ""; position: absolute; z-index: 0; inset: 0; border-radius: inherit; background: radial-gradient(ellipse 72% 42% at 14% -4%, rgba(255, 255, 255, .92), transparent 58%), radial-gradient(ellipse 55% 72% at 108% 72%, rgba(168, 225, 220, .34), transparent 62%), linear-gradient(116deg, transparent 18%, rgba(255, 255, 255, .17) 39%, rgba(255, 255, 255, .04) 54%, transparent 70%); box-shadow: inset 0 0 3rem rgba(255, 255, 255, .12); pointer-events: none; }
.contact-form::after { content: ""; position: absolute; z-index: 0; inset: 1px; border-radius: 0; background: linear-gradient(105deg, rgba(255, 255, 255, .24), transparent 14% 72%, rgba(91, 178, 174, .12)), radial-gradient(circle at 78% 9%, rgba(255, 255, 255, .38), transparent 18%); mask-image: linear-gradient(#000, transparent 18%, transparent 78%, #000); pointer-events: none; }
.contact-form > * { position: relative; z-index: 1; }
.contact-form__heading { display: grid; gap: .5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(20, 79, 81, .18); }
.contact-form__eyebrow { margin: 0; color: var(--teal-dark); font: .65rem var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.contact-form h3 { max-width: 18ch; margin: 0; font: 600 clamp(1.8rem, 3vw, 2.7rem)/1.08 var(--font-section); letter-spacing: -.025em; }
.contact-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 1.5rem; }
.form-field { display: grid; grid-template-columns: minmax(0, 1fr); min-width: 0; gap: .5rem; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { color: #42505a; font: .64rem var(--font-mono); letter-spacing: .065em; text-transform: uppercase; }
.form-field label span { color: var(--steel); }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid rgba(33, 88, 91, .2); border-radius: 0; background: rgba(250, 255, 252, .5); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74), 0 1px 0 rgba(255, 255, 255, .18); color: var(--carbon); font: 400 1rem/1.4 var(--font-body); -webkit-backdrop-filter: blur(12px) saturate(130%); backdrop-filter: blur(12px) saturate(130%); transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.form-field input, .form-field select { min-height: 3.5rem; padding: .8rem 1rem; }
.form-field textarea { min-height: 8.5rem; padding: 1rem; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #7d8490; opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(2, 95, 99, .72); outline: 0; background: rgba(255, 255, 252, .78); box-shadow: inset 0 1px 0 #fff, 0 0 0 3px rgba(255, 255, 255, .3), 0 0 0 5px rgba(2, 95, 99, .14); }
.turnstile-field { align-items: start; padding-top: .25rem; }
.turnstile-field .cf-turnstile { min-height: 4.1rem; }
.select-wrap { position: relative; display: grid; }
.select-wrap select { grid-column: 1; grid-row: 1; appearance: none; padding-right: 3rem; }
.select-wrap svg { z-index: 1; grid-column: 1; grid-row: 1; place-self: center end; margin-right: 1rem; color: var(--slate); pointer-events: none; }
.contact-form__footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.contact-form__submit { gap: .65rem; border-color: var(--carbon); background: var(--carbon); white-space: nowrap; }
.contact-form__submit:hover { border-color: var(--teal-dark); }
.contact-form__submit:disabled { transform: none; opacity: .55; cursor: wait; }
.contact-form__status { max-width: 24rem; margin: 0; color: var(--teal-dark); font-size: .78rem; font-weight: 600; }
.contact-form__status[data-state="error"] { color: #9c3b32; }

/* Voice agents service page */
.service-page .header-actions .button { border-color: rgba(11, 17, 23, .22); background: transparent; color: var(--carbon); }
.service-page .header-actions .button:hover { border-color: var(--teal); background: rgba(185, 228, 222, .24); color: var(--teal-dark); }

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(34rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  min-height: calc(100svh - 5.25rem);
  padding: clamp(5rem, 8vw, 8rem) var(--page-pad);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 77% 39%, rgba(185, 228, 222, .3), transparent 28rem),
    linear-gradient(180deg, #fbfaf5 0%, var(--limestone) 100%);
}
.service-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -14rem;
  right: -13rem;
  width: min(47vw, 44rem);
  aspect-ratio: 796.632 / 829.513;
  background: url("assets/wadai-architectural-background.svg") center / contain no-repeat;
  opacity: .72;
  pointer-events: none;
}
.service-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 153, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 153, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 18%, rgba(0, 0, 0, .72) 70%, transparent 100%);
  opacity: .42;
  pointer-events: none;
}
.service-hero__copy { position: relative; z-index: 2; min-width: 0; }
.service-hero h1 {
  max-width: 9ch;
  margin: 1.5rem 0 0;
  font: 700 clamp(4rem, 6.8vw, 7.3rem)/.88 var(--font-hero);
  letter-spacing: -.07em;
}
.service-hero__lede { max-width: 36rem; margin: 2rem 0 0; color: #414b58; font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.7; }
.service-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2.5rem; }
.service-hero__signals { display: flex; flex-wrap: wrap; gap: .75rem 1.4rem; margin-top: 3rem; color: var(--steel); font: 500 .62rem/1.4 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.service-hero__signals span { display: inline-flex; align-items: center; gap: .55rem; }
.service-hero__signals i { width: .42rem; height: .42rem; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 .3rem rgba(0, 153, 153, .12); }

.voice-console {
  --pointer-x: 72%;
  --pointer-y: 28%;
  position: relative;
  z-index: 2;
  min-width: 0;
  border: 1px solid rgba(185, 228, 222, .42);
  background:
    linear-gradient(rgba(185, 228, 222, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 228, 222, .07) 1px, transparent 1px),
    var(--carbon);
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--paper);
  box-shadow: 0 2rem 5rem rgba(11, 17, 23, .2);
}
.voice-console__glow {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(circle 18rem at var(--pointer-x) var(--pointer-y), rgba(112, 200, 195, .11), transparent 70%);
  opacity: .75;
  pointer-events: none;
  transition: opacity 250ms var(--ease-out);
}
.voice-console::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 7rem;
  background: linear-gradient(180deg, transparent, rgba(112, 200, 195, .12), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
.voice-console.is-visible::after { animation: console-scan 3.8s 900ms var(--ease-out) both; }
.voice-console::before { content: "FIG. 02 / CALL AUTOMATION"; position: absolute; top: -1.8rem; right: 0; color: var(--teal-dark); font: 500 .55rem var(--font-mono); letter-spacing: .1em; }
.voice-console__topbar, .voice-console__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.6rem; padding: .8rem 1rem; border-bottom: 1px solid #31404a; background: rgba(19, 29, 37, .92); }
.voice-console__brand { display: flex; min-width: 0; align-items: center; gap: .7rem; color: var(--mist); font: 500 .58rem var(--font-mono); letter-spacing: .08em; }
.voice-console__brand img { width: 1.6rem; height: 1.6rem; flex: 0 0 auto; filter: brightness(0) invert(1); }
.voice-live { display: inline-flex; align-items: center; gap: .55rem; color: #cbd4d6; font: 500 .56rem var(--font-mono); white-space: nowrap; }
.voice-live i { width: .45rem; height: .45rem; border-radius: 50%; background: #54d6a0; box-shadow: 0 0 0 .3rem rgba(84, 214, 160, .1); animation: call-pulse 1.8s ease-in-out infinite; }
.voice-console__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(13.5rem, .42fr); min-height: 31rem; }
.voice-call { min-width: 0; padding: clamp(1rem, 2vw, 1.75rem); border-right: 1px solid #31404a; }
.voice-caller { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.voice-caller div { display: grid; gap: .35rem; }
.voice-caller span, .voice-actions > p, .voice-intent span { color: #70c8c5; font: 500 .54rem var(--font-mono); letter-spacing: .08em; }
.voice-caller strong { font-size: 1rem; font-weight: 600; }
.voice-caller b { color: #aeb9bd; font: 500 .58rem var(--font-mono); }
.voice-waveform { display: flex; height: 5rem; align-items: center; justify-content: space-between; gap: .3rem; margin: 1.5rem 0; overflow: hidden; }
.voice-waveform i { width: 3px; height: 18%; flex: 1 1 auto; max-width: 5px; background: var(--teal); opacity: .9; animation: voice-waveform 1.4s ease-in-out infinite alternate; }
.voice-waveform i:nth-child(2n) { height: 52%; animation-delay: -.8s; }
.voice-waveform i:nth-child(3n) { height: 84%; animation-delay: -.35s; }
.voice-waveform i:nth-child(4n) { height: 36%; animation-delay: -1.1s; }
.voice-waveform i:nth-child(5n) { height: 68%; animation-delay: -.55s; }
.voice-transcript { display: grid; gap: .8rem; }
.voice-transcript > div { padding: .85rem 1rem; border-left: 2px solid #52606a; background: rgba(255, 255, 255, .035); }
.voice-transcript .is-agent { border-left-color: var(--teal); background: rgba(0, 153, 153, .1); }
.voice-transcript span { color: #8c9aa0; font: 500 .5rem var(--font-mono); letter-spacing: .08em; }
.voice-transcript .is-agent span { color: #78cfca; }
.voice-transcript p { margin: .35rem 0 0; color: #edf1ef; font-size: .85rem; line-height: 1.45; }
.voice-intent { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; margin-top: 1rem; padding: .8rem 1rem; border-top: 1px solid #31404a; border-bottom: 1px solid #31404a; }
.voice-intent strong { font-size: .78rem; font-weight: 600; }
.voice-intent em { color: #7fcf9e; font: normal 500 .52rem var(--font-mono); white-space: nowrap; }
.voice-actions { min-width: 0; padding: 1.5rem 1rem; background: rgba(19, 29, 37, .74); }
.voice-actions > p { margin: 0 0 1.25rem; }
.voice-actions ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.voice-actions li { position: relative; display: grid; grid-template-columns: 1.6rem minmax(0, 1fr); gap: .6rem; min-height: 6.1rem; padding: .15rem 0 1.25rem; }
.voice-actions li::before { content: ""; position: absolute; top: 1.55rem; bottom: 0; left: .72rem; width: 1px; background: #43515a; }
.voice-actions li:last-child::before { display: none; }
.voice-actions li > span { display: grid; width: 1.5rem; height: 1.5rem; place-items: center; border: 1px solid #53636c; color: #86949a; font: 500 .48rem var(--font-mono); }
.voice-actions li.is-done > span { border-color: #3f9c75; color: #7fcf9e; }
.voice-actions li.is-active > span { border-color: var(--teal); background: var(--teal); color: var(--paper); }
.voice-actions li div { min-width: 0; }
.voice-actions strong, .voice-actions small { display: block; }
.voice-actions strong { font-size: .72rem; font-weight: 600; }
.voice-actions small { margin-top: .25rem; color: #8e9aa0; font-size: .6rem; }
.voice-actions li > i { grid-column: 2; margin-top: -.75rem; color: #64727a; font: normal 500 .45rem var(--font-mono); }
.voice-actions .is-done > i { color: #70bb91; }
.voice-actions .is-active > i { color: #69d4cf; }
.voice-console__footer { min-height: 3.35rem; justify-content: flex-start; border-top: 1px solid #31404a; border-bottom: 0; color: #9caaaf; font: 500 .5rem var(--font-mono); }
.voice-console__footer span { display: inline-flex; align-items: center; gap: .4rem; }
.voice-console__footer span i { width: .35rem; height: .35rem; border-radius: 50%; background: #54d6a0; }
.voice-console__footer b { margin-left: auto; color: var(--mist); font-weight: 500; }

.motion-ready .voice-console:not(.is-visible) .voice-console__topbar,
.motion-ready .voice-console:not(.is-visible) .voice-caller,
.motion-ready .voice-console:not(.is-visible) .voice-waveform,
.motion-ready .voice-console:not(.is-visible) .voice-transcript > div,
.motion-ready .voice-console:not(.is-visible) .voice-intent,
.motion-ready .voice-console:not(.is-visible) .voice-actions > p,
.motion-ready .voice-console:not(.is-visible) .voice-actions li,
.motion-ready .voice-console:not(.is-visible) .voice-console__footer { opacity: 0; transform: translateY(.75rem); }
.voice-console.is-visible .voice-console__topbar,
.voice-console.is-visible .voice-caller,
.voice-console.is-visible .voice-waveform,
.voice-console.is-visible .voice-transcript > div,
.voice-console.is-visible .voice-intent,
.voice-console.is-visible .voice-actions > p,
.voice-console.is-visible .voice-actions li,
.voice-console.is-visible .voice-console__footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
.voice-console.is-visible .voice-console__topbar { transition-delay: 100ms; }
.voice-console.is-visible .voice-caller { transition-delay: 190ms; }
.voice-console.is-visible .voice-waveform { transition-delay: 250ms; }
.voice-console.is-visible .voice-transcript > div:first-child { transition-delay: 340ms; }
.voice-console.is-visible .voice-transcript > div:nth-child(2) { transition-delay: 440ms; }
.voice-console.is-visible .voice-intent { transition-delay: 540ms; }
.voice-console.is-visible .voice-actions > p { transition-delay: 280ms; }
.voice-console.is-visible .voice-actions li:nth-child(1) { transition-delay: 360ms; }
.voice-console.is-visible .voice-actions li:nth-child(2) { transition-delay: 450ms; }
.voice-console.is-visible .voice-actions li:nth-child(3) { transition-delay: 540ms; }
.voice-console.is-visible .voice-actions li:nth-child(4) { transition-delay: 630ms; }
.voice-console.is-visible .voice-console__footer { transition-delay: 690ms; }

/* Applied AI hero console */
.ai-console, .erp-console {
  position: relative;
  z-index: 2;
  min-width: 0;
  border: 1px solid rgba(185, 228, 222, .42);
  background:
    linear-gradient(rgba(185, 228, 222, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 228, 222, .07) 1px, transparent 1px),
    var(--carbon);
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--paper);
  box-shadow: 0 2rem 5rem rgba(11, 17, 23, .2);
}
.ai-console::before { content: "FIG. 01 / DOCUMENT INTELLIGENCE"; }
.erp-console::before { content: "FIG. 04 / BUSINESS SYSTEMS"; }
.app-frame::before { content: "FIG. 03 / OPERATIONS TOOLING"; }
.ai-console::before, .erp-console::before, .app-frame::before { position: absolute; top: -1.8rem; right: 0; color: var(--teal-dark); font: 500 .55rem var(--font-mono); letter-spacing: .1em; }
.ai-console__topbar, .erp-console__topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.6rem; padding: .8rem 1rem; border-bottom: 1px solid #31404a; background: rgba(19, 29, 37, .92); }
.ai-console__brand, .erp-console__brand { display: flex; min-width: 0; align-items: center; gap: .7rem; color: var(--mist); font: 500 .58rem var(--font-mono); letter-spacing: .08em; }
.ai-console__brand img, .erp-console__brand img { width: 1.6rem; height: 1.6rem; flex: 0 0 auto; filter: brightness(0) invert(1); }
.ai-live, .erp-live { display: inline-flex; align-items: center; gap: .55rem; color: #cbd4d6; font: 500 .56rem var(--font-mono); white-space: nowrap; }
.ai-live i, .erp-live i { width: .45rem; height: .45rem; border-radius: 50%; background: #54d6a0; box-shadow: 0 0 0 .3rem rgba(84, 214, 160, .1); animation: call-pulse 1.8s ease-in-out infinite; }
.ai-console__footer, .erp-console__footer { display: flex; align-items: center; justify-content: flex-start; gap: 1rem; min-height: 3.35rem; padding: .8rem 1rem; border-top: 1px solid #31404a; background: rgba(19, 29, 37, .92); color: #9caaaf; font: 500 .5rem var(--font-mono); }
.ai-console__footer span, .erp-console__footer span { display: inline-flex; align-items: center; gap: .4rem; }
.ai-console__footer span i, .erp-console__footer span i { width: .35rem; height: .35rem; border-radius: 50%; background: #54d6a0; }
.ai-console__footer b, .erp-console__footer b { margin-left: auto; color: var(--mist); font-weight: 500; }

.ai-console__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(13.5rem, .46fr); min-height: 31rem; }
.ai-doc { min-width: 0; padding: clamp(1rem, 2vw, 1.75rem); border-right: 1px solid #31404a; }
.ai-doc__head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.ai-doc__head div { display: grid; gap: .35rem; }
.ai-doc__head span, .ai-assist > p, .ai-assist__msg span { color: #70c8c5; font: 500 .54rem var(--font-mono); letter-spacing: .08em; }
.ai-doc__head strong { font-size: 1rem; font-weight: 600; }
.ai-doc__head b { color: #aeb9bd; font: 500 .58rem var(--font-mono); white-space: nowrap; }
.ai-doc__page { position: relative; display: grid; gap: .55rem; margin: 1.4rem 0; padding: 1rem; overflow: hidden; border: 1px solid #31404a; background: rgba(255, 255, 255, .03); }
.ai-doc__page i { height: 4px; background: #3a4954; }
.ai-doc__page i:nth-child(3n) { width: 72%; }
.ai-doc__page i:nth-child(4n) { width: 58%; }
.ai-doc__page i.is-hit { background: rgba(0, 153, 153, .85); box-shadow: 0 0 0 3px rgba(0, 153, 153, .16); }
.ai-doc__page::after { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 2.4rem; background: linear-gradient(180deg, transparent, rgba(112, 200, 195, .16), transparent); animation: doc-scan 3.4s var(--ease-out) infinite; pointer-events: none; }
.ai-extract { display: grid; margin: 0; border-top: 1px solid #31404a; }
.ai-extract > div { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid #31404a; }
.ai-extract dt { color: #9caaaf; font-size: .78rem; }
.ai-extract dd { margin: 0; color: #edf1ef; font: 500 .7rem var(--font-mono); }
.ai-extract em { color: #64727a; font: normal 500 .48rem var(--font-mono); white-space: nowrap; }
.ai-extract .is-done em { color: #7fcf9e; }
.ai-extract .is-active em { color: #69d4cf; }
.ai-assist { min-width: 0; padding: 1.5rem 1rem; background: rgba(19, 29, 37, .74); }
.ai-assist > p { margin: 0 0 1.25rem; }
.ai-assist__msg { padding: .85rem 1rem; border-left: 2px solid #52606a; background: rgba(255, 255, 255, .035); }
.ai-assist__msg + .ai-assist__msg { margin-top: .8rem; }
.ai-assist__msg.is-agent { border-left-color: var(--teal); background: rgba(0, 153, 153, .1); }
.ai-assist__msg p { margin: .35rem 0 0; color: #edf1ef; font-size: .82rem; line-height: 1.5; }
.ai-assist__msg em { display: block; margin-top: .6rem; color: #78cfca; font: normal 500 .48rem var(--font-mono); }
.ai-assist__actions { display: grid; margin: 1.25rem 0 0; padding: 0; border-top: 1px solid #31404a; list-style: none; }
.ai-assist__actions li { display: flex; align-items: center; gap: .6rem; padding: .8rem 0; border-bottom: 1px solid #31404a; color: #cbd4d6; font-size: .76rem; }
.ai-assist__actions li span { display: grid; width: 1.4rem; height: 1.4rem; flex: 0 0 auto; place-items: center; border: 1px solid #53636c; color: #86949a; font: 500 .46rem var(--font-mono); }
.ai-assist__actions .is-done span { border-color: #3f9c75; color: #7fcf9e; }
.ai-assist__actions .is-active span { border-color: var(--teal); background: var(--teal); color: var(--paper); }

/* Custom software hero app frame */
.app-frame { position: relative; z-index: 2; min-width: 0; padding-bottom: 3.4rem; }
.app-window { border: 1px solid rgba(51, 63, 101, .18); background: rgba(255, 254, 250, .82); box-shadow: 0 2.5rem 6rem rgba(51, 63, 101, .18); backdrop-filter: blur(8px); }
.app-window__bar { display: flex; align-items: center; gap: .45rem; min-height: 2.6rem; padding: 0 1rem; border-bottom: 1px solid rgba(51, 63, 101, .14); background: rgba(244, 241, 232, .8); }
.app-window__bar i { width: .55rem; height: .55rem; border: 1px solid rgba(51, 63, 101, .3); border-radius: 50%; }
.app-window__bar span { margin-left: .6rem; color: var(--steel); font: 500 .55rem var(--font-mono); letter-spacing: .04em; }
.app-window__body { display: grid; grid-template-columns: minmax(9rem, .38fr) minmax(0, 1fr); min-height: 24rem; }
.app-window__nav { display: flex; flex-direction: column; gap: .2rem; padding: 1rem .8rem; border-right: 1px solid rgba(51, 63, 101, .12); background: rgba(244, 241, 232, .55); }
.app-window__nav b { padding: .55rem .7rem; color: #55606c; font-size: .72rem; font-weight: 500; }
.app-window__nav b.is-active { background: rgba(0, 153, 153, .1); box-shadow: inset 2px 0 0 var(--teal); color: var(--teal-dark); font-weight: 600; }
.app-window__main { min-width: 0; padding: 1.2rem; }
.app-window__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.app-window__head strong { font: 600 1rem var(--font-section); letter-spacing: -.015em; }
.app-window__head span { padding: .3rem .5rem; border: 1px solid rgba(0, 153, 153, .3); background: rgba(0, 153, 153, .08); color: var(--teal-dark); font: 500 .5rem var(--font-mono); white-space: nowrap; }
.app-rows { display: grid; margin: 1.1rem 0 0; padding: 0; border-top: 1px solid rgba(51, 63, 101, .14); list-style: none; }
.app-rows li { display: grid; grid-template-columns: minmax(5.5rem, .45fr) minmax(0, 1fr) auto; align-items: center; gap: .9rem; padding: .85rem 0; border-bottom: 1px solid rgba(51, 63, 101, .12); }
.app-rows span { font-size: .74rem; font-weight: 600; }
.app-rows em { overflow: hidden; color: #55606c; font-size: .74rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.app-rows b { color: var(--steel); font: 500 .5rem var(--font-mono); white-space: nowrap; }
.app-rows .is-new span { color: var(--teal-dark); }
.app-phone { position: absolute; right: -1rem; bottom: 0; width: 13.5rem; padding: 1rem; border: 1px solid rgba(51, 63, 101, .2); background: var(--carbon); color: var(--paper); box-shadow: 0 1.8rem 4rem rgba(11, 17, 23, .35); }
.app-phone::before { content: ""; display: block; width: 2.6rem; height: .3rem; margin: 0 auto .8rem; border-radius: 999px; background: #31404a; }
.app-phone__head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; margin-bottom: .8rem; }
.app-phone__head strong { font-size: .82rem; font-weight: 600; }
.app-phone__head span { color: #70c8c5; font: 500 .46rem var(--font-mono); white-space: nowrap; }
.app-phone__field { display: grid; gap: .25rem; padding: .55rem .6rem; border: 1px solid #31404a; background: rgba(255, 255, 255, .04); }
.app-phone__field + .app-phone__field { margin-top: .5rem; }
.app-phone__field span { color: #8c9aa0; font: 500 .46rem var(--font-mono); }
.app-phone__field b { font-size: .72rem; font-weight: 500; }
.app-phone__photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .5rem; }
.app-phone__photos i { aspect-ratio: 1; border: 1px solid #31404a; background: linear-gradient(135deg, rgba(112, 200, 195, .25), rgba(0, 153, 153, .08)); }
.app-phone__submit { margin-top: .8rem; padding: .65rem; background: var(--teal); color: var(--paper); font-size: .72rem; font-weight: 600; text-align: center; }

/* Business systems hero console */
.erp-console__body { display: grid; grid-template-columns: minmax(8.5rem, .32fr) minmax(0, 1fr); min-height: 30rem; }
.erp-nav { display: flex; flex-direction: column; gap: .2rem; padding: 1rem .8rem; border-right: 1px solid #31404a; background: rgba(19, 29, 37, .74); }
.erp-nav b { padding: .6rem .7rem; color: #8c9aa0; font-size: .74rem; font-weight: 500; }
.erp-nav b.is-active { background: rgba(0, 153, 153, .14); box-shadow: inset 2px 0 0 var(--teal); color: #9fe0dc; font-weight: 600; }
.erp-main { min-width: 0; padding: clamp(1rem, 2vw, 1.5rem); }
.erp-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #31404a; }
.erp-stats > div { display: grid; gap: .5rem; padding: 1rem; }
.erp-stats > div + div { border-left: 1px solid #31404a; }
.erp-stats span { color: #70c8c5; font: 500 .5rem var(--font-mono); letter-spacing: .06em; }
.erp-stats strong { font: 600 clamp(1.05rem, 1.4vw, 1.35rem) var(--font-section); letter-spacing: -.02em; }
.erp-stats em { color: #7fcf9e; font: normal 500 .52rem var(--font-mono); }
.erp-rows { display: grid; margin: 1.2rem 0 0; padding: 0; border-top: 1px solid #31404a; list-style: none; }
.erp-rows li { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid #31404a; }
.erp-rows span { color: #8c9aa0; font: 500 .56rem var(--font-mono); }
.erp-rows em { overflow: hidden; color: #cbd4d6; font-size: .78rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.erp-rows b { font: 500 .5rem var(--font-mono); white-space: nowrap; }
.erp-rows .is-paid { color: #7fcf9e; }
.erp-rows .is-open { color: #e7a33e; }
.erp-rows .is-track { color: #69d4cf; }

.service-section { position: relative; padding: var(--section-space) var(--page-pad); overflow: hidden; }
.service-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .52fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; }
.service-heading .section-index { grid-column: 1 / -1; margin-bottom: clamp(2rem, 5vw, 4rem); }
.service-heading h2 { max-width: 14ch; margin: 0; font: 600 clamp(3rem, 5.6vw, 6rem)/.96 var(--font-section); letter-spacing: -.055em; }
.service-heading > p:last-child { max-width: 36rem; margin: 0 0 .4rem; color: #4d5865; font-size: 1.05rem; line-height: 1.7; }
.service-heading::after {
  content: "";
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(90deg, var(--teal) 0 14%, rgba(11, 17, 23, .14) 14% 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms var(--ease-out) 180ms;
}
.service-heading.is-visible::after { transform: scaleX(1); }
.service-capabilities {
  background: radial-gradient(circle at 82% 18%, rgba(185, 228, 222, .38), transparent 25rem), linear-gradient(145deg, var(--paper) 0 62%, #f5f3ea 100%);
}
.service-capabilities::before { content: ""; position: absolute; right: -5rem; bottom: -12rem; width: 42rem; aspect-ratio: 796.632 / 829.513; background: url("assets/wadai-architectural-background.svg") center / contain no-repeat; opacity: .46; animation: background-drift 12s var(--ease-out) infinite alternate; pointer-events: none; }
.service-capabilities::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(rgba(0, 153, 153, .065) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 153, 153, .065) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(110deg, transparent 10%, rgba(0, 0, 0, .7) 68%, transparent 100%);
  pointer-events: none;
}
.service-capabilities .service-heading { position: relative; z-index: 1; }
.service-feature-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: clamp(4rem, 8vw, 7rem) 0 0; border-top: 1px solid rgba(11, 17, 23, .16); border-bottom: 1px solid rgba(11, 17, 23, .16); }
.service-feature-grid > div { position: relative; min-width: 0; padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.25rem, 2.5vw, 2.5rem) clamp(2.5rem, 5vw, 5rem); }
.service-feature-grid > div + div { border-left: 1px solid rgba(11, 17, 23, .12); }
.service-feature-grid dt { display: grid; gap: clamp(2rem, 4vw, 4rem); font: 600 clamp(1.3rem, 1.9vw, 1.75rem)/1.1 var(--font-section); letter-spacing: -.025em; }
.service-feature-grid dt span { color: var(--teal-dark); font: 500 .6rem var(--font-mono); letter-spacing: .08em; }
.service-feature-grid dd { margin: 1.25rem 0 0; color: #4c5662; line-height: 1.7; }

.service-workflow { position: relative; display: grid; grid-template-columns: minmax(18rem, .72fr) minmax(21rem, .82fr) minmax(21rem, 1fr); gap: clamp(2rem, 5vw, 6rem); padding: var(--section-space) var(--page-pad); overflow: hidden; isolation: isolate; background: var(--carbon); color: var(--paper); }
.service-workflow__copy { align-self: start; }
.service-workflow .section-index { color: var(--mist); }
.service-workflow h2 { max-width: 9ch; margin: clamp(3rem, 7vw, 6rem) 0 0; font: 600 clamp(3rem, 5.1vw, 5.5rem)/.96 var(--font-section); letter-spacing: -.05em; }
.service-workflow__copy > p:last-child { max-width: 29rem; margin: 2rem 0 0; color: #aeb9bd; line-height: 1.75; }
.service-steps { align-self: start; margin: 0; padding: 0; border-top: 1px solid #34424a; list-style: none; }
.service-steps li { display: grid; grid-template-columns: 2.2rem minmax(0, 1fr); gap: 1.1rem; padding: 1.6rem 0; border-bottom: 1px solid #34424a; }
.service-steps li > span { color: var(--teal); font: 500 .55rem var(--font-mono); }
.service-steps strong { font: 600 1.05rem var(--font-section); }
.service-steps p { margin: .55rem 0 0; color: #9eaaae; font-size: .9rem; line-height: 1.6; }
.workflow-result { align-self: center; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid #3c4c55; background: rgba(19, 29, 37, .88); box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .22); }
.workflow-result__header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #394851; color: #72c8c3; font: 500 .55rem var(--font-mono); letter-spacing: .07em; }
.workflow-result__header i { width: .5rem; height: .5rem; border-radius: 50%; background: #54d6a0; box-shadow: 0 0 0 .35rem rgba(84, 214, 160, .09); }
.workflow-result__summary { display: grid; gap: .7rem; padding: 2.2rem 0; }
.workflow-result__summary small { color: #8f9ba0; font: 500 .53rem var(--font-mono); }
.workflow-result__summary strong { max-width: 15ch; font: 600 clamp(1.6rem, 2.6vw, 2.4rem)/1.08 var(--font-section); letter-spacing: -.035em; }
.workflow-result dl { margin: 0; border-top: 1px solid #394851; }
.workflow-result dl div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid #394851; }
.workflow-result dt { color: #9ca8ac; font-size: .76rem; }
.workflow-result dd { margin: 0; color: #78cfa2; font: 500 .58rem var(--font-mono); text-transform: uppercase; }
.workflow-result > p { margin: 1.25rem 0 0; color: var(--mist); font-size: .78rem; }
.workflow-result.is-visible dl div { animation: result-row-in 480ms var(--ease-out) both; }
.workflow-result.is-visible dl div:nth-child(1) { animation-delay: 260ms; }
.workflow-result.is-visible dl div:nth-child(2) { animation-delay: 345ms; }
.workflow-result.is-visible dl div:nth-child(3) { animation-delay: 430ms; }
.workflow-result.is-visible dl div:nth-child(4) { animation-delay: 515ms; }

.service-use-case-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: clamp(4rem, 8vw, 7rem) 0 0; border-top: 1px solid rgba(11, 17, 23, .14); }
.service-use-case-list > div { position: relative; min-height: 18rem; padding: clamp(2rem, 4vw, 4rem); overflow: hidden; isolation: isolate; border-bottom: 1px solid rgba(11, 17, 23, .14); }
.service-use-case-list > div:nth-child(2n) { border-left: 1px solid rgba(11, 17, 23, .14); }
.service-use-case-list dt { max-width: 17ch; font: 600 clamp(1.75rem, 3vw, 2.8rem)/1.05 var(--font-section); letter-spacing: -.04em; }
.service-use-case-list dd { max-width: 35rem; margin: 1.3rem 0 0; color: #4e5965; line-height: 1.7; }
.service-use-case-list > div > span { position: absolute; right: clamp(2rem, 4vw, 4rem); bottom: 2rem; color: var(--teal-dark); font: 500 .54rem var(--font-mono); letter-spacing: .07em; }

.service-build { display: grid; grid-template-columns: minmax(18rem, .75fr) minmax(30rem, 1.25fr); gap: clamp(3rem, 9vw, 10rem); }
.service-build__intro { position: sticky; top: 8rem; align-self: start; }
.service-build h2 { max-width: 10ch; margin: clamp(3rem, 7vw, 6rem) 0 0; font: 600 clamp(3rem, 5.4vw, 5.8rem)/.96 var(--font-section); letter-spacing: -.055em; }
.service-build__intro > p:not(.section-index) { max-width: 31rem; margin: 2rem 0 0; color: #4d5865; line-height: 1.75; }
.service-build__details { margin: 0; border-top: 1px solid rgba(11, 17, 23, .15); }
.service-build__details > div { display: grid; grid-template-columns: minmax(8rem, .42fr) minmax(0, 1fr); gap: 2rem; padding: clamp(2rem, 4vw, 3.5rem) 0; border-bottom: 1px solid rgba(11, 17, 23, .15); }
.service-build__details dt { font: 600 clamp(1.35rem, 2vw, 1.8rem) var(--font-section); letter-spacing: -.025em; }
.service-build__details dd { margin: 0; color: #4e5965; line-height: 1.75; }

.service-cta { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4rem; min-height: 39rem; align-items: end; padding: var(--section-space) var(--page-pad); overflow: hidden; isolation: isolate; background: var(--teal); color: var(--paper); }
.service-cta::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px); background-size: 48px 48px; }
.service-cta__mark { position: absolute; z-index: -1; right: -1rem; bottom: -11rem; width: min(60vw, 64rem); aspect-ratio: 796.632 / 829.513; background: url("assets/wadai-architectural-background.svg") center / contain no-repeat; opacity: .12; animation: architectural-drift 10s var(--ease-out) infinite alternate; }
.service-cta__copy h2 { max-width: 14ch; margin: clamp(3rem, 7vw, 6rem) 0 0; font: 600 clamp(3rem, 5.8vw, 6.2rem)/.96 var(--font-section); letter-spacing: -.055em; }
.service-cta__copy > p:not(.section-index) { max-width: 41rem; margin: 2rem 0; font-size: 1.08rem; line-height: 1.7; }
.service-cta .section-index { color: rgba(255, 255, 255, .76); }
.service-cta .text-link { color: var(--paper); }
.service-cta__meta { display: grid; gap: .55rem; align-self: end; min-width: 14rem; font: 500 .64rem var(--font-mono); text-align: right; }

/* Service-page section backgrounds */
.service-workflow::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgba(0, 153, 153, .15), transparent 28rem), linear-gradient(rgba(112, 200, 195, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(112, 200, 195, .055) 1px, transparent 1px);
  background-size: auto, 3rem 3rem, 3rem 3rem;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .72) 42%, #000 100%);
}
.service-workflow::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -15rem;
  width: 44rem;
  aspect-ratio: 796.632 / 829.513;
  background: url("assets/wadai-architectural-background.svg") center / contain no-repeat;
  opacity: .075;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.service-use-cases {
  isolation: isolate;
  background: radial-gradient(circle at 10% 85%, rgba(185, 228, 222, .4), transparent 27rem), radial-gradient(circle at 88% 12%, rgba(255, 254, 250, .95), transparent 24rem), linear-gradient(180deg, #f4f1e7 0%, var(--limestone) 100%);
}
.service-use-cases::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -7rem;
  width: 34rem;
  aspect-ratio: 796.632 / 829.513;
  background: url("assets/wadai-architectural-background.svg") center / contain no-repeat;
  opacity: .24;
  pointer-events: none;
}
.service-use-cases::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -17rem;
  left: -13rem;
  width: 33rem;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 153, 153, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(0, 153, 153, .025), 0 0 0 8rem rgba(0, 153, 153, .018);
  pointer-events: none;
}

.service-build { isolation: isolate; background: linear-gradient(120deg, rgba(255, 254, 250, .98) 0 44%, rgba(239, 246, 241, .78) 100%), var(--paper); }
.service-build::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(0, 153, 153, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 153, 153, .055) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(90deg, transparent 24%, #000 76%, transparent 100%);
}
.service-build::after {
  content: attr(data-watermark);
  position: absolute;
  z-index: -1;
  right: -.04em;
  bottom: -.16em;
  color: rgba(0, 120, 128, .035);
  font: 600 clamp(8rem, 19vw, 22rem)/.72 var(--font-section);
  letter-spacing: -.08em;
  pointer-events: none;
}

@keyframes call-pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes doc-scan { 0% { opacity: 0; transform: translateY(-100%); } 12% { opacity: 1; } 80% { opacity: .6; } 100% { opacity: 0; transform: translateY(420%); } }
@keyframes voice-waveform { from { transform: scaleY(.55); } to { transform: scaleY(1); } }
@keyframes console-scan { 0% { opacity: 0; transform: translateY(-100%); } 12% { opacity: 1; } 78% { opacity: .65; } 100% { opacity: 0; transform: translateY(1000%); } }
@keyframes result-row-in { from { opacity: 0; transform: translateY(.65rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes architectural-drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-1.2rem, -1rem, 0) scale(1.025); } }
@keyframes background-drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-1rem, -1.2rem, 0) scale(1.018); } }

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .contact-form { background: rgba(245, 252, 249, .94); }
  .form-field input, .form-field select, .form-field textarea { background: rgba(255, 254, 250, .9); }
}

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; min-height: 12rem; padding: 3rem var(--page-pad); background: var(--limestone); }
.brand--footer { grid-column: 1; justify-self: start; }
.site-footer > p { grid-column: 2; justify-self: center; margin: 0; color: var(--steel); font-size: .85rem; text-align: center; }
.footer-meta { grid-column: 3; justify-self: end; display: grid; gap: .35rem; color: var(--steel); font: .58rem var(--font-mono); text-align: end; }

[dir="rtl"] {
  --font-display: "IBM Plex Sans Arabic", sans-serif;
  --font-hero: "IBM Plex Sans Arabic", sans-serif;
  --font-section: "IBM Plex Sans Arabic", sans-serif;
  --font-editorial: "IBM Plex Sans Arabic", sans-serif;
  --font-body: "IBM Plex Sans Arabic", sans-serif;
  --font-mono: "IBM Plex Sans Arabic", sans-serif;
}
[dir="rtl"] .site-header::after,
[dir="rtl"] .capability::after { transform-origin: right center; }
[dir="rtl"] .brand__logo { transform-origin: right center; }
[dir="rtl"] .eyebrow,
[dir="rtl"] .section-index,
[dir="rtl"] .location-tag,
[dir="rtl"] .hero__signals,
[dir="rtl"] .drawing-label,
[dir="rtl"] .partner__type,
[dir="rtl"] .contact-form__eyebrow,
[dir="rtl"] .form-field label,
[dir="rtl"] .contact__details { letter-spacing: 0; }
[dir="rtl"] .hero h1 { max-width: 12ch; margin-right: -.035em; margin-left: 0; font-weight: 600; line-height: 1.35; letter-spacing: 0; }
[dir="rtl"] .hero h1 em { font: inherit; color: var(--teal); letter-spacing: inherit; }
[dir="rtl"] .section-heading h2, [dir="rtl"] .work__intro h2, [dir="rtl"] .products__intro h2, [dir="rtl"] .systems h2, [dir="rtl"] .approach h2, [dir="rtl"] .contact h2 { line-height: 1.3; letter-spacing: 0; }
[dir="rtl"] .product-card h3, [dir="rtl"] .product-card--teaser h3 { letter-spacing: 0; }
[dir="rtl"] .client-card h3, [dir="rtl"] .client-card__eyebrow { letter-spacing: 0; }
[dir="rtl"] .product-status, [dir="rtl"] .product-card__domain { letter-spacing: 0; }
[dir="rtl"] .capability h3, [dir="rtl"] .contact-form h3, [dir="rtl"] .approach__steps strong, [dir="rtl"] .system-node strong { letter-spacing: 0; }
[dir="rtl"] .hero__visual { transform: perspective(1000px) rotateY(3deg) rotateX(1deg); transform-origin: center right; }
[dir="rtl"] .text-link [aria-hidden="true"],
[dir="rtl"] .contact-form__submit [aria-hidden="true"] { transform: scaleX(-1); }
[dir="rtl"] .capability + .capability { padding-right: clamp(1.25rem, 3vw, 3rem); padding-left: var(--cap-pad); border-right: 1px solid var(--line); border-left: 0; }
[dir="rtl"] .partner__index { right: clamp(1.5rem, 3vw, 2.5rem); left: auto; }
[dir="rtl"] .partner__location { right: auto; left: clamp(1.5rem, 3vw, 2.5rem); }
[dir="rtl"] .client-card__media > span { right: auto; left: 0; direction: ltr; }
[dir="rtl"] .client-card::before, [dir="rtl"] .product-card::before { right: 1rem; left: auto; }
[dir="rtl"] .products::after { right: auto; left: -.035em; letter-spacing: 0; }
[dir="rtl"] .systems__features div { padding-right: 2rem; padding-left: var(--page-pad); }
[dir="rtl"] .systems__features div + div { border-right: 1px solid #33424b; border-left: 0; }
[dir="rtl"] .approach__steps li::before { right: -1px; left: auto; }
[dir="rtl"] .select-wrap select { padding-right: 1rem; padding-left: 3rem; }
[dir="rtl"] .select-wrap svg { margin-right: 0; margin-left: 1rem; }
[dir="rtl"] input[dir="ltr"] { text-align: left; }
[dir="rtl"] .contact__details a[dir="ltr"] { text-align: right; }
[dir="rtl"] .service-hero { background: radial-gradient(circle at 23% 39%, rgba(185, 228, 222, .3), transparent 28rem), linear-gradient(180deg, #fbfaf5 0%, var(--limestone) 100%); }
[dir="rtl"] .service-hero::before { right: auto; left: -13rem; }
[dir="rtl"] .service-hero::after { transform: scaleX(-1); }
[dir="rtl"] .service-hero h1, [dir="rtl"] .service-heading h2, [dir="rtl"] .service-workflow h2, [dir="rtl"] .service-build h2, [dir="rtl"] .service-cta h2 { line-height: 1.3; letter-spacing: 0; }
[dir="rtl"] .service-hero__signals { letter-spacing: 0; }
[dir="rtl"] .voice-console::before { right: auto; left: 0; letter-spacing: 0; }
[dir="rtl"] .voice-call { border-right: 0; border-left: 1px solid #31404a; }
[dir="rtl"] .voice-caller span, [dir="rtl"] .voice-actions > p, [dir="rtl"] .voice-intent span, [dir="rtl"] .voice-transcript span, [dir="rtl"] .workflow-result__header { letter-spacing: 0; }
[dir="rtl"] .voice-transcript > div { border-right: 2px solid #52606a; border-left: 0; }
[dir="rtl"] .voice-transcript .is-agent { border-right-color: var(--teal); }
[dir="rtl"] .voice-actions li::before { right: .72rem; left: auto; }
[dir="rtl"] .voice-console__footer b { margin-right: auto; margin-left: 0; }
[dir="rtl"] .service-heading::after { background: linear-gradient(270deg, var(--teal) 0 14%, rgba(11, 17, 23, .14) 14% 100%); transform-origin: right; }
[dir="rtl"] .service-feature-grid > div + div { border-right: 1px solid rgba(11, 17, 23, .12); border-left: 0; }
[dir="rtl"] .service-use-case-list > div:nth-child(2n) { border-right: 1px solid rgba(11, 17, 23, .14); border-left: 0; }
[dir="rtl"] .service-use-case-list > div > span { right: auto; left: clamp(2rem, 4vw, 4rem); letter-spacing: 0; }
[dir="rtl"] .service-capabilities { background: radial-gradient(circle at 18% 18%, rgba(185, 228, 222, .38), transparent 25rem), linear-gradient(215deg, var(--paper) 0 62%, #f5f3ea 100%); }
[dir="rtl"] .service-capabilities::before { right: auto; left: -5rem; }
[dir="rtl"] .service-capabilities::after { mask-image: linear-gradient(250deg, transparent 10%, rgba(0, 0, 0, .7) 68%, transparent 100%); }
[dir="rtl"] .service-workflow::before { background: radial-gradient(circle at 22% 42%, rgba(0, 153, 153, .15), transparent 28rem), linear-gradient(rgba(112, 200, 195, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(112, 200, 195, .055) 1px, transparent 1px); background-size: auto, 3rem 3rem, 3rem 3rem; mask-image: linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, .72) 42%, #000 100%); }
[dir="rtl"] .service-workflow::after { right: auto; left: -8rem; }
[dir="rtl"] .service-use-cases { background: radial-gradient(circle at 90% 85%, rgba(185, 228, 222, .4), transparent 27rem), radial-gradient(circle at 12% 12%, rgba(255, 254, 250, .95), transparent 24rem), linear-gradient(180deg, #f4f1e7 0%, var(--limestone) 100%); }
[dir="rtl"] .service-use-cases::before { right: auto; left: -7rem; }
[dir="rtl"] .service-use-cases::after { left: auto; right: -13rem; }
[dir="rtl"] .service-build { background: linear-gradient(240deg, rgba(255, 254, 250, .98) 0 44%, rgba(239, 246, 241, .78) 100%), var(--paper); }
[dir="rtl"] .service-build::before { mask-image: linear-gradient(270deg, transparent 24%, #000 76%, transparent 100%); }
[dir="rtl"] .service-build::after { right: auto; left: -.04em; }
[dir="rtl"] .service-cta__mark { right: auto; left: -1rem; }
[dir="rtl"] .service-cta__meta { text-align: left; }
[dir="rtl"] .ai-console::before, [dir="rtl"] .erp-console::before, [dir="rtl"] .app-frame::before { right: auto; left: 0; letter-spacing: 0; }
[dir="rtl"] .ai-doc__head span, [dir="rtl"] .ai-assist > p, [dir="rtl"] .ai-assist__msg span, [dir="rtl"] .erp-stats span, [dir="rtl"] .ai-console__brand, [dir="rtl"] .erp-console__brand { letter-spacing: 0; }
[dir="rtl"] .ai-doc { border-right: 0; border-left: 1px solid #31404a; }
[dir="rtl"] .ai-assist__msg { border-right: 2px solid #52606a; border-left: 0; }
[dir="rtl"] .ai-assist__msg.is-agent { border-right-color: var(--teal); }
[dir="rtl"] .ai-console__footer b, [dir="rtl"] .erp-console__footer b { margin-right: auto; margin-left: 0; }
[dir="rtl"] .erp-nav { border-right: 0; border-left: 1px solid #31404a; }
[dir="rtl"] .erp-nav b.is-active, [dir="rtl"] .app-window__nav b.is-active { box-shadow: inset -2px 0 0 var(--teal); }
[dir="rtl"] .erp-stats > div + div { border-right: 1px solid #31404a; border-left: 0; }
[dir="rtl"] .app-window__nav { border-right: 0; border-left: 1px solid rgba(51, 63, 101, .12); }
[dir="rtl"] .app-window__bar span { margin-right: .6rem; margin-left: 0; }
[dir="rtl"] .app-phone { right: auto; left: -1rem; }

@media (min-width: 1121px) {
  [dir="rtl"] .hero-chip--insight { right: auto; left: -2rem; }
  [dir="rtl"] .hero-chip--sync { left: auto; right: -2rem; }
}

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 700ms var(--ease-out) var(--delay, 0ms), transform 700ms var(--ease-out) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .desktop-nav, .location-tag { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-grid; width: 2.75rem; height: 2.75rem; place-content: center; gap: .38rem; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span { width: 1.15rem; height: 1px; background: var(--carbon); transition: transform 240ms var(--ease-out); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.22rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.22rem) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 100%; right: 0; left: 0; grid-template-rows: 0fr; padding: 0 var(--page-pad); overflow: hidden; border-bottom: 1px solid transparent; background: var(--limestone); transition: grid-template-rows 300ms var(--ease-out), padding 300ms var(--ease-out), border-color 300ms var(--ease-out); }
  .mobile-menu::before { content: ""; min-height: 0; }
  .mobile-menu.is-open { display: grid; grid-template-rows: repeat(6, auto); padding-top: 1rem; padding-bottom: 1rem; border-color: var(--line); }
  .mobile-menu a { min-height: 3.25rem; display: flex; align-items: center; border-bottom: 1px solid var(--line); font: 600 1.3rem var(--font-display); }
  .hero { grid-template-columns: 1fr; gap: 6rem; padding-top: 6rem; }
  .hero__copy { padding-right: 0; }
  .hero h1 { max-width: 11ch; font-size: clamp(4rem, 11vw, 7rem); }
  .hero__visual { max-width: 56rem; }
  .hero__visual { transform: none; }
  .hero__glow { top: 68%; right: -20%; width: 90vw; }
  .hero__index { display: none; }
  .hero-chip--insight { top: -2.2rem; right: .5rem; }
  .hero-chip--sync { bottom: -1.6rem; left: .4rem; }
  .section-heading, .work__intro, .products__intro, .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__grid { gap: 4rem; }
  .contact__intro { max-width: 50rem; }
  .contact-form { width: 100%; }
  .capability-list { grid-template-columns: 1fr; }
  .capability, .capability + .capability { --cap-pad: 2.5rem; min-height: 0; padding: 2.5rem; border-left: 0; border-bottom: 1px solid var(--line); }
  [dir="rtl"] .capability + .capability { padding: 2.5rem; border-right: 0; }
  .capability p { min-height: 0; }
  .project-archive__intro { grid-template-columns: 1fr; gap: 2rem; }
  .project-archive { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-card, .client-card:nth-child(1), .client-card:nth-child(2) { grid-column: auto; }
  .client-card:last-child { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card, .product-card:first-child { grid-column: auto; }
  .product-card:first-child { grid-column: 1 / -1; }
  .systems__top { grid-template-columns: 1fr; }
  .systems__copy { max-width: 50rem; }
  .systems__diagram { max-width: 56rem; width: 100%; margin-inline: auto; }
  .systems__features { grid-template-columns: repeat(2, 1fr); }
  .systems__features div:nth-child(3) { border-left: 0; border-top: 1px solid #33424b; }
  .systems__features div:nth-child(4) { border-top: 1px solid #33424b; }
  .approach { grid-template-columns: 1fr; }
  .approach__heading { position: static; }
  .service-hero { grid-template-columns: minmax(0, 1fr); gap: 5rem; min-height: auto; }
  .service-hero__copy { max-width: 54rem; }
  .service-hero h1 { max-width: 9ch; font-size: clamp(4.5rem, 10vw, 7rem); }
  .voice-console, .ai-console, .erp-console, .app-frame { width: min(100%, 58rem); }
  [dir="rtl"] .voice-console, [dir="rtl"] .ai-console, [dir="rtl"] .erp-console, [dir="rtl"] .app-frame { margin-right: auto; }
  .service-heading { grid-template-columns: 1fr; gap: 2rem; }
  .service-heading .section-index { margin-bottom: 2rem; }
  .service-heading > p:last-child { max-width: 44rem; }
  .service-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-feature-grid > div + div { border-left: 0; }
  .service-feature-grid > div:nth-child(2n) { border-left: 1px solid rgba(11, 17, 23, .12); }
  .service-feature-grid > div:nth-child(n+3) { border-top: 1px solid rgba(11, 17, 23, .12); }
  [dir="rtl"] .service-feature-grid > div + div { border-right: 0; }
  [dir="rtl"] .service-feature-grid > div:nth-child(2n) { border-right: 1px solid rgba(11, 17, 23, .12); border-left: 0; }
  .service-workflow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-workflow__copy { grid-column: 1 / -1; max-width: 52rem; }
  .service-workflow h2 { max-width: 12ch; }
  .service-build { grid-template-columns: 1fr; }
  .service-build__intro { position: static; max-width: 52rem; }
  .service-cta { min-height: 34rem; }
}

@media (max-width: 700px) {
  .site-header { min-height: 4.5rem; }
  .header-actions .button { display: none; }
  .brand__logo { width: 6.8rem; }
  .hero { min-height: auto; padding-top: 5rem; gap: 5rem; }
  .hero::before { display: none; }
  .blueprint--hero, .hero__contours, .drawing-label, .drawing-crosshair, .hero-chip { display: none; }
  .hero h1 { max-width: 100%; margin-left: 0; font-size: clamp(2.4rem, 11vw, 2.9rem); line-height: .92; letter-spacing: -.05em; }
  [dir="rtl"] .hero h1 { margin-right: 0; font-size: clamp(2.3rem, 10.5vw, 2.8rem); line-height: 1.35; letter-spacing: 0; }
  .hero__lede { font-size: 1.05rem; }
  .hero__actions { gap: 1rem 1.25rem; }
  .hero__visual { padding: .55rem; }
  .hero__visual::before { display: none; }
  .hero__visual::after { right: .55rem; left: .55rem; }
  .hero__signals { justify-content: flex-start; gap: .75rem 1.25rem; margin-top: 2.5rem; font-size: .54rem; letter-spacing: .055em; }
  .system-window__body { grid-template-columns: 2.5rem 1fr; min-height: 0; }
  .system-content { padding: .75rem; }
  .system-grid { grid-template-columns: 1fr 1.25fr; gap: .4rem; }
  .system-grid article { min-height: 8rem; padding: .55rem; }
  .progress-ring { width: 4.6rem; }
  .progress-ring::before { width: 3.5rem; }
  .progress-ring span { font-size: 1rem; }
  .chart-module svg { margin-top: 1.1rem; }
  .issue-module, .milestone-module { display: none; }
  .sector-strip { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: center; column-gap: .85rem; overflow: hidden; }
  .sector-strip i { display: none; }
  .sector-strip span { grid-column: 1; grid-row: 1; }
  .sector-strip strong { grid-column: 2; grid-row: 1; opacity: 0; transform: translateY(.7em); animation: sector-word-cycle 8s infinite; }
  .sector-strip strong:nth-of-type(2) { animation-delay: 2s; }
  .sector-strip strong:nth-of-type(3) { animation-delay: 4s; }
  .sector-strip strong:nth-of-type(4) { animation-delay: 6s; }
  .section { padding-top: 6rem; padding-bottom: 6rem; }
  .capabilities::before, .capabilities::after { display: none; }
  .capability, .capability + .capability { --cap-pad: 1.5rem; padding: 2.25rem 1.5rem 2.5rem; }
  .work { background: var(--paper); }
  .work::before, .work::after { display: none; }
  .section-heading h2, .work__intro h2, .products__intro h2, .systems h2, .approach h2 { font-size: clamp(2rem, 9.5vw, 2.7rem); line-height: 1.05; }
  [dir="rtl"] .section-heading h2, [dir="rtl"] .work__intro h2, [dir="rtl"] .products__intro h2, [dir="rtl"] .systems h2, [dir="rtl"] .approach h2 { font-size: clamp(1.9rem, 9vw, 2.6rem); line-height: 1.3; }
  .partner-list { grid-template-columns: 1fr; margin-top: 3rem; }
  .partner__brand { min-height: 22rem; }
  .partner__brand img { width: min(64%, 16rem); max-height: 14rem; }
  .partner--edge .partner__brand img { width: min(68%, 17rem); }
  .partner__brand::after { width: 62%; }
  .partner__body { min-height: 0; padding: 2rem 1.5rem 2.5rem; }
  .partner h3 { margin-top: 2.5rem; font-size: clamp(2rem, 9vw, 2.7rem); line-height: 1.05; }
  [dir="rtl"] .partner h3 { line-height: 1.3; }
  .partner__body > p { font-size: 1rem; }
  .project-archive__intro { margin-top: 6rem; }
  .project-archive__intro h3 { font-size: clamp(2rem, 9vw, 2.7rem); line-height: 1.05; }
  [dir="rtl"] .project-archive__intro h3 { line-height: 1.3; }
  .project-archive { grid-template-columns: 1fr; gap: 1px; margin-top: 3rem; }
  .client-card, .client-card:nth-child(1), .client-card:nth-child(2), .client-card:last-child { grid-column: auto; }
  .client-card:nth-child(-n+2) .client-card__media, .client-card__media { aspect-ratio: 16 / 10; }
  .client-card__body { min-height: 0; padding: 1.5rem; }
  .client-card h3 { margin-top: 2.5rem; font-size: clamp(1.65rem, 7vw, 2rem); }
  .client-card__eyebrow { align-items: flex-start; font-size: .53rem; }
  .products::after { bottom: -.05em; font-size: 26vw; }
  .products__signals { display: grid; grid-template-columns: auto 1fr; align-items: center; font-size: .58rem; line-height: 1.4; }
  .products__signals i { display: none; }
  .products__signals span::before { content: ""; display: inline-block; width: .3rem; height: .3rem; margin-inline-end: .65rem; border-radius: 50%; background: var(--teal); vertical-align: middle; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card:first-child { grid-column: auto; }
  .product-card:first-child .product-card__media, .product-card__media { aspect-ratio: 16 / 10; }
  .product-card__body, .product-card:first-child .product-card__body { min-height: 0; padding: 1.5rem; }
  .product-card:first-child h3 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .systems__diagram { min-height: 27rem; }
  .system-core { width: 9.5rem; }
  .system-core span { width: 7.25rem; }
  .system-core small { font-size: .54rem; }
  .system-node { width: 9.5rem; min-height: 6.4rem; }
  .system-node strong { font-size: .9rem; }
  .system-node span { font-size: .58rem; }
  .systems__features { grid-template-columns: 1fr; }
  .systems__features div { min-height: 12rem; border-top: 1px solid #33424b; border-left: 0 !important; }
  .approach__steps li { grid-template-columns: 2.8rem 1fr; }
  .approach__steps p { grid-column: 2; }
  .approach::before, .approach::after { display: none; }
  .approach__steps { padding-inline: 1.25rem; }
  .contact h2 { max-width: 12ch; font-size: clamp(2.2rem, 10vw, 2.7rem); line-height: 1.05; }
  [dir="rtl"] .contact h2 { line-height: 1.3; }
  .contact__intro > p { font-size: 1rem; }
  .blueprint--contact, .contact::after, .contact__watermark { display: none; }
  .contact-form { gap: 1.5rem; padding: 1.25rem; }
  .contact-form h3 { font-size: clamp(1.55rem, 7vw, 1.8rem); }
  .contact-form__grid { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .form-field--wide { grid-column: auto; }
  .form-field input, .form-field select { min-height: 3.75rem; }
  .contact-form__footer { align-items: stretch; flex-direction: column; }
  .contact-form__submit { width: 100%; min-height: 3.5rem; }
  .contact__whatsapp { width: 100%; justify-content: center; font-size: 1rem; }
  .product-card--teaser { min-height: 12rem; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .brand--footer, .site-footer > p, .footer-meta { grid-column: 1; justify-self: start; }
  .site-footer > p, .footer-meta { text-align: left; }
  [dir="rtl"] .site-footer > p, [dir="rtl"] .footer-meta { text-align: right; }
  .service-hero { gap: 4rem; padding-top: 4.5rem; padding-bottom: 5rem; }
  .service-hero::before, .service-hero::after { display: none; }
  .service-hero h1 { max-width: 100%; font-size: clamp(2.65rem, 13vw, 3.8rem); line-height: .94; letter-spacing: -.055em; }
  [dir="rtl"] .service-hero h1 { max-width: 10ch; font-size: clamp(2.6rem, 12vw, 3.7rem); line-height: 1.3; letter-spacing: 0; }
  .service-hero__lede { margin-top: 1.5rem; font-size: 1rem; }
  .service-hero__actions { align-items: stretch; flex-direction: column; }
  .service-hero__actions .button { width: 100%; min-height: 3.5rem; }
  .service-hero__actions .text-link { width: max-content; }
  .service-hero__signals { display: grid; gap: .75rem; font-size: .56rem; }
  .voice-console::before, .ai-console::before, .erp-console::before, .app-frame::before { display: none; }
  .ai-console__body, .erp-console__body, .app-window__body { grid-template-columns: minmax(0, 1fr); }
  .ai-console__topbar, .erp-console__topbar { align-items: flex-start; flex-direction: column; }
  .ai-console__footer, .erp-console__footer { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
  .ai-console__footer b, .erp-console__footer b { margin-left: 0; }
  [dir="rtl"] .ai-console__footer b, [dir="rtl"] .erp-console__footer b { margin-right: 0; }
  .ai-doc { padding: 1rem; border-right: 0; border-bottom: 1px solid #31404a; }
  [dir="rtl"] .ai-doc { border-left: 0; }
  .erp-nav { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid #31404a; }
  [dir="rtl"] .erp-nav { border-left: 0; }
  .erp-nav b { white-space: nowrap; }
  .erp-nav b.is-active, [dir="rtl"] .erp-nav b.is-active { box-shadow: inset 0 -2px 0 var(--teal); }
  .erp-stats { grid-template-columns: 1fr; }
  .erp-stats > div + div, [dir="rtl"] .erp-stats > div + div { border-right: 0; border-left: 0; border-top: 1px solid #31404a; }
  .app-window__nav { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(51, 63, 101, .12); }
  [dir="rtl"] .app-window__nav { border-left: 0; }
  .app-window__nav b { white-space: nowrap; }
  .app-window__nav b.is-active, [dir="rtl"] .app-window__nav b.is-active { box-shadow: inset 0 -2px 0 var(--teal); }
  .app-frame { padding-bottom: 0; }
  .app-phone { position: static; width: 100%; margin-top: 1rem; }
  .voice-console__topbar { align-items: flex-start; flex-direction: column; }
  .voice-console__body { grid-template-columns: minmax(0, 1fr); }
  .voice-call { padding: 1rem; border-right: 0; border-bottom: 1px solid #31404a; }
  [dir="rtl"] .voice-call { border-left: 0; }
  .voice-caller { align-items: flex-start; flex-direction: column; }
  .voice-waveform { height: 4rem; margin: 1rem 0; }
  .voice-transcript p { font-size: .8rem; }
  .voice-intent { grid-template-columns: 1fr; }
  .voice-actions { padding: 1.25rem 1rem; }
  .voice-actions li { min-height: 5.6rem; }
  .voice-console__footer { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
  .voice-console__footer b { margin-left: 0; }
  [dir="rtl"] .voice-console__footer b { margin-right: 0; }
  .service-section { padding-top: 6rem; padding-bottom: 6rem; }
  .service-heading h2, .service-workflow h2, .service-build h2, .service-cta__copy h2 { max-width: 12ch; font-size: clamp(2.25rem, 10.5vw, 3.2rem); line-height: 1.05; letter-spacing: -.045em; }
  [dir="rtl"] .service-heading h2, [dir="rtl"] .service-workflow h2, [dir="rtl"] .service-build h2, [dir="rtl"] .service-cta__copy h2 { line-height: 1.3; letter-spacing: 0; }
  .service-heading > p:last-child { font-size: 1rem; }
  .service-capabilities::before { display: none; }
  .service-feature-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .service-feature-grid > div { padding: 2rem 0 2.5rem; }
  .service-feature-grid > div + div, .service-feature-grid > div:nth-child(2n), [dir="rtl"] .service-feature-grid > div + div, [dir="rtl"] .service-feature-grid > div:nth-child(2n) { border-right: 0; border-left: 0; border-top: 1px solid rgba(11, 17, 23, .12); }
  .service-feature-grid dt { gap: 1.5rem; font-size: 1.5rem; }
  .service-feature-grid dd { font-size: 1rem; }
  .service-workflow { grid-template-columns: 1fr; gap: 3rem; padding-top: 6rem; padding-bottom: 6rem; }
  .service-workflow__copy { grid-column: auto; }
  .service-workflow h2 { margin-top: 2.5rem; }
  .service-workflow__copy > p:last-child, .service-steps p { font-size: 1rem; }
  .workflow-result { padding: 1.25rem; }
  .workflow-result__summary strong { font-size: 1.65rem; }
  .service-use-case-list { grid-template-columns: 1fr; margin-top: 3rem; }
  .service-use-case-list > div { min-height: 16rem; padding: 2.25rem 0; }
  .service-use-case-list > div:nth-child(2n), [dir="rtl"] .service-use-case-list > div:nth-child(2n) { border-right: 0; border-left: 0; }
  .service-use-case-list > div > span, [dir="rtl"] .service-use-case-list > div > span { right: 0; left: auto; bottom: 2rem; }
  [dir="rtl"] .service-use-case-list > div > span { right: auto; left: 0; }
  .service-use-case-list dt { font-size: 2rem; }
  .service-use-case-list dd { font-size: 1rem; }
  .service-build { gap: 4rem; }
  .service-build h2 { margin-top: 2.5rem; }
  .service-build__intro > p:not(.section-index) { font-size: 1rem; }
  .service-build__details > div { grid-template-columns: 1fr; gap: 1rem; }
  .service-build__details dd { font-size: 1rem; }
  .service-cta { grid-template-columns: 1fr; gap: 3rem; min-height: 38rem; padding-top: 6rem; padding-bottom: 4rem; }
  .service-cta__mark { right: -10rem; width: 38rem; }
  [dir="rtl"] .service-cta__mark { right: auto; left: -10rem; }
  .service-cta__copy > p:not(.section-index) { font-size: 1rem; }
  .service-cta__meta, [dir="rtl"] .service-cta__meta { text-align: start; }
}

@keyframes sector-word-cycle {
  0% { opacity: 0; transform: translateY(.7em); }
  6%, 22% { opacity: 1; transform: translateY(0); }
  28%, 100% { opacity: 0; transform: translateY(-.7em); }
}

@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
  .sector-strip { display: flex; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .sector-strip i { display: block; }
  .sector-strip strong { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 360px) {
  .systems__diagram { min-height: 25rem; }
  .system-node { width: 7.75rem; min-height: 6.5rem; padding: .75rem; }
  .system-node strong { font-size: .82rem; }
  .system-node span { font-size: .52rem; line-height: 1.35; }
  .system-core { width: 8.5rem; }
  .system-core span { width: 6.35rem; }
  .system-core small { font-size: .48rem; }
}

@container (max-width: 22rem) {
  .turnstile-field .cf-turnstile { width: calc(100% / .96); margin-bottom: -.15rem; transform: scale(.96); transform-origin: top left; }
  [dir="rtl"] .turnstile-field .cf-turnstile { transform-origin: top right; }
}

@container (max-width: 20rem) {
  .turnstile-field .cf-turnstile { width: calc(100% / .86); margin-bottom: -.6rem; transform: scale(.86); transform-origin: top left; }
}

@container (max-width: 18rem) {
  .turnstile-field .cf-turnstile { width: calc(100% / .74); margin-bottom: -1.05rem; transform: scale(.74); }
}

@media (hover: hover) and (pointer: fine) {
  .button, .text-link, .desktop-nav a { cursor: pointer; }
  .contact__whatsapp:hover { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .system-window, .hero__visual::after { animation: none; }
}
