/* 01. Foundations */
:root {
  color-scheme: dark;
  --black: #050505;
  --surface: #100507;
  --wine: #1a0509;
  --wine-mid: #3a0811;
  --wine-strong: #620c1a;
  --red: #d51f3a;
  --red-light: #f13b54;
  --white: #f5f3f3;
  --muted: #aaa4a7;
  --border: rgba(245,243,243,.12);
  --container: 1320px;
  --radius: 12px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --transition: 240ms var(--ease);
  --font: Arial,Helvetica,sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font: 16px/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,input,textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

button {
  color: inherit;
}

button,input,textarea {
  border-radius: 0;
}

::selection {
  background: var(--wine-strong);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--red-light);
  outline-offset: 5px;
}

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

h1,h2,h3 {
  line-height: 1.1;
  letter-spacing: -.045em;
}

h2 {
  font-size: var(--heading);
  font-weight: 600;
}

h3 {
  letter-spacing: -.025em;
}

p {
  color: var(--muted);
}

em {
  font-style: normal;
}

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

.section {
  position: relative;
  padding-block: var(--space-section);
  scroll-margin-top: 0;
}

.eyebrow {
  font-weight: 600;
  color: var(--muted);
}

.red {
  color: var(--red-light);
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: var(--red);
  padding: 12px 20px;
}

.skip-link:focus {
  top: 12px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 50;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 23px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background var(--transition),box-shadow var(--transition),transform var(--transition);
}

.button-primary {
  color: var(--white);
}

.button span[aria-hidden] {
  font-size: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition),border-color var(--transition);
}

.text-link:hover {
  color: var(--red-light);
  border-color: var(--red-light);
}

.text-link span {
  font-size: 1.15rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.section-aside {
  font-size: .8rem;
  color: var(--muted);
}

/* 02. Header and navigation */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 800;
}

.brand-light {
  font-weight: 400;
}

.brand-mark {
  display: grid;
  place-content: center;
  position: relative;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
}

nav {
  display: flex;
  align-items: center;
}

nav>a {
  position: relative;
  color: #bdb7ba;
  transition: color var(--transition);
}

nav>a:hover,nav>a.active {
  color: var(--white);
}

nav>a.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--red);
}

nav .nav-cta {
  border: 1px solid #ffffff2b;
  color: var(--white);
  display: flex;
  gap: 25px;
}

.nav-cta:hover {
  border-color: var(--red);
}

.menu-toggle {
  display: none;
}

/* 03. Hero and live interface */
.hero {
  padding-bottom: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 90px 0 0 42%;
  background-image: linear-gradient(#ffffff03 1px,transparent 1px),linear-gradient(90deg,#ffffff03 1px,transparent 1px);
  mask-image: linear-gradient(90deg,transparent,black);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  gap: 42px;
}

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

.hero-copy>.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.signal {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: var(--red-light);
  box-shadow: 0 0 10px #f13b5455;
}

.hero h1 {
  margin-top: 30px;
}

.hero-premise {
  display: block;
  font-size: clamp(1.35rem,2vw,1.8rem);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 24px;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-note>span {
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1300px;
  padding: 28px 0 20px;
}

.visual-caption,.visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #948088;
  font-size: .55rem;
  letter-spacing: .12em;
}

.dashboard {
  background: #0d0c0f;
  border: 1px solid #544047;
  overflow: hidden;
  transition: transform 500ms var(--ease);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.mini-brand>span:first-child {
  color: var(--red-light);
  font-size: 19px;
  font-weight: 900;
  font-style: italic;
}

.mini-brand .muted {
  font-weight: 400;
}

.avatar {
  background: #34232a;
  border: 1px solid #60414c;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

.dashboard-body {
  display: flex;
}

.dashboard-sidebar {
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding-block: 20px;
  border-right: 1px solid var(--border);
  color: #776973;
  font-size: 19px;
}

.dashboard-sidebar .side-selected {
  color: var(--red-light);
  background: #3a081177;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  border-radius: 4px;
}

.sidebar-monogram {
  font-size: 12px;
  font-weight: 700;
  color: #c8bac0;
}

.side-bottom {
  margin-top: auto;
}

.dashboard-main {
  flex: 1;
  min-width: 0;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.micro {
  color: #9c8d96;
}

.dashboard-heading h2 {
  letter-spacing: -.025em;
  margin-top: 6px;
}

.live {
  color: #bfb1b9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live i {
  width: 4px;
  height: 4px;
  background: var(--red-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
}

.dashboard-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.dashboard-tabs button {
  border: 0;
  background: transparent;
  color: #aa9ea5;
}

.dashboard-tabs button[aria-selected=true] {
  background: #352028;
  color: #f2e9ed;
}

.dashboard-tabs>span {
  margin-left: auto;
  color: #a89aa2;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.metrics>div+div {
  border-left: 1px solid var(--border);
}

.metrics>div>span {
  color: #ada1a9;
  display: block;
}

.metrics strong {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  line-height: 1.5;
}

.metrics strong b {
  font-size: 1.1rem;
  font-weight: 400;
}

.metrics small {
  color: #b49aa5;
  display: block;
}

.metric-pulse {
  width: 5px;
  height: 5px;
  background: var(--red-light);
  border-radius: 50%;
  margin-left: 9px;
  animation: pulse 3s infinite;
}

.chart-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg,#171116,#0f0d10);
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.chart-key {
  color: #b5a6ae;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chart-key::before {
  content: '';
  height: 4px;
  width: 4px;
  background: var(--red);
  border-radius: 50%;
}

.chart {
  display: flex;
  gap: 11px;
  margin-top: 16px;
}

.chart-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 13px;
  color: #a4929c;
}

.chart svg {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.grid-line {
  stroke: #ffffff0c;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 3 4;
}

.chart-area {
  fill: url(#chart-fill);
}

.chart-stroke {
  fill: none;
  stroke: var(--red-light);
  stroke-width: 2;
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
  animation: draw 2.4s var(--ease) both;
}

.chart-days {
  margin: 9px 0 0 23px;
  display: flex;
  justify-content: space-between;
  color: #aa96a2;
}

.process-table>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 8px;
  border-bottom: 1px solid #ffffff08;
}

.process-table .table-heading {
  color: #a794a0;
  padding-top: 0;
}

.table-heading>span:last-child {
  letter-spacing: .09em;
}

.process-table>div>span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-icon {
  font-size: 12px;
  color: #a88c99;
  font-style: normal;
}

.status {
  background: #292027;
  padding: 2px 7px;
  color: #b8a5ae;
}

.status.completed {
  color: #e9a9b4;
  background: #3a081155;
}

.automation-toast {
  position: relative;
  margin: -2px -15px 0 auto;
  z-index: 2;
  background: #171016;
  border: 1px solid #683545;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  box-shadow: 0 15px 40px #0009;
}

.automation-icon {
  background: #3a0811;
  width: 32px;
  height: 32px;
  display: grid;
  place-content: center;
  color: var(--red-light);
  font-size: 24px;
  border: 1px solid #620c1a;
}

.automation-toast strong {
  display: block;
  font-weight: 500;
}

.automation-toast div>span {
  display: block;
  color: #b2a0aa;
  margin-top: 2px;
}

.toast-check {
  color: #d7aab8;
  font-size: 13px;
  margin-left: 10px;
}

.visual-footer {
  gap: 13px;
  justify-content: initial;
}

.crosshair {
  font-size: 18px;
  color: var(--red-light);
}

.line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg,#62303d,transparent);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: #9f9098;
}

.hero-bottom>a {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-bottom>a>span {
  font-size: 20px;
  color: #ddd0d6;
}

.expertise-strip {
  border-block: 1px solid var(--border);
}

.expertise-strip>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .64rem;
  font-weight: 600;
}

.expertise-strip i {
  font-style: normal;
  color: #9e3245;
}

/* 04. Brand philosophy */
.philosophy {
  overflow: hidden;
}

.philosophy-bottom {
  display: grid;
  gap: 50px;
}

.customization-stamp {
  display: flex;
  gap: 25px;
  font-size: .64rem;
  font-weight: 600;
  line-height: 1.7;
  color: #d0c1c8;
}

.customization-stamp>span {
  font-size: 40px;
  line-height: 1;
  color: var(--red-light);
}

.philosophy-bottom p+p {
  margin-top: 17px;
  color: #94868d;
}

/* 05. Problems */
.problems {
  border-top: 1px solid var(--border);
}

.problems-layout {
  display: grid;
}

.section-intro h2 {
  margin-top: 29px;
}

.section-intro>p:not(.eyebrow) {
  max-width: 355px;
  margin-top: 25px;
  font-size: .92rem;
}

.problem-row {
  display: flex;
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.row-number {
  padding-top: 3px;
}

.problem-row p {
  margin-top: 12px;
}

.problem-symbol {
  margin-left: auto;
  color: #a6586c;
}

.problem-row:last-child {
  border-bottom: 1px solid var(--border);
}

/* 06. Solutions workbench */
.solutions {
  border-block: 1px solid var(--border);
}

.solutions-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 32px;
}

.solution-workbench {
  display: grid;
  overflow: hidden;
}

.solution-options {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}

.solution-options button {
  border: 0;
  border-bottom: 1px solid #ffffff09;
  text-align: left;
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background var(--transition),color var(--transition);
}

.solution-options button>span {
  color: #956675;
}

.solution-options button>b {
  font-size: 19px;
  font-weight: 400;
  margin-left: auto;
  color: #73616b;
}

.solution-options button[aria-selected=true] {
  color: var(--white);
}

.solution-options button[aria-selected=true]>b {
  color: var(--red-light);
}

.solution-options button:hover {
  color: var(--white);
  background-color: #1c1016;
}

.solution-detail {
  min-width: 0;
}

.flow-diagram {
  display: grid;
  grid-template-columns: 1fr 20px 1.3fr 20px 1fr;
  align-items: center;
  text-align: center;
  padding: 12px 0 24px;
  font-size: .53rem;
  letter-spacing: .07em;
  color: #c3a4b1;
}

.flow-node {
  padding: 13px 8px;
  border: 1px solid #6a344647;
  background: #1a1017;
}

.flow-center {
  font-size: 35px;
  color: var(--red-light);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  padding-block: 20px;
}

.flow-center>span {
  display: block;
  font-size: .48rem;
  letter-spacing: .08em;
  font-style: normal;
  font-weight: 400;
  color: #ebc6d1;
}

.flow-base {
  grid-column: 1/-1;
  font-size: .45rem;
  color: #957583;
  margin-top: 9px;
}

.solution-copy .eyebrow {
  color: #c78194;
}

.solution-copy h3 {
  margin-top: 12px;
  font-weight: 500;
}

.solution-copy>p:not(.eyebrow) {
  margin-top: 17px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 23px;
}

.solution-tags>span {
  color: #b5a3ab;
  border: 1px solid var(--border);
}

/* 07. Process and conversion */
.process-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}

.process-steps {
  display: grid;
  list-style: none;
  margin: 65px 0 0;
  padding: 0;
}

.process-steps li {
  position: relative;
  padding-top: 23px;
}

.process-steps li::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
}

.process-steps h3 {
  letter-spacing: -.025em;
}

.process-steps p {
  margin-top: 13px;
}

.evolution-note {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
}

.evolution-note>span:first-child {
  font-size: 29px;
  color: var(--red-light);
}

.evolution-note p strong {
  color: #ddd0d6;
  font-weight: 400;
}

.evolution-note>span:last-child {
  font-size: .52rem;
  color: #957d87;
  margin-left: auto;
}

.provocation {
  overflow: hidden;
  border-block: 1px solid #56213066;
}

.provocation h2 {
  margin-top: 30px;
  line-height: 1.12;
}

.provocation h2>span {
  color: #f13b54;
  position: relative;
}

.provocation h2>span::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  top: 55%;
  transform: rotate(-7deg);
}

.contact-layout {
  display: grid;
}

.contact-intro h2 {
  margin-top: 28px;
}

.contact-intro>p:not(.eyebrow) {
  margin-top: 24px;
}

.contact-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.contact-note>span {
  color: var(--red-light);
  font-size: 30px;
}

.contact-note strong {
  font-weight: 400;
  color: #cec2c8;
}

.contact-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.contact-signature>span:last-child {
  font-size: .52rem;
  color: #9f8a93;
}

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

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1/-1;
}

.field label {
  display: block;
  color: #d4c9cf;
}

.field label>span {
  color: #f13b54;
}

.field input,.field textarea {
  display: block;
  width: 100%;
  border: 1px solid #ffffff20;
  color: var(--white);
  transition: border-color var(--transition),background var(--transition);
  outline-offset: 3px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,.field textarea:focus {
  border-color: #a41429;
  background: #170e12;
}

.field [aria-invalid=true] {
  border-color: var(--red-light);
}

.field-error {
  display: block;
  line-height: 1.4;
  color: #ff8d9d;
  margin-top: 5px;
}

.form-disclosure {
  font-size: .68rem;
  color: #baa5af;
  margin: 8px 0 17px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
  text-align: left;
  gap: 10px;
}

.form-submit:disabled {
  opacity: .7;
}

.form-submit.loading .submit-icon {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff55;
  border-top-color: #fff;
  border-radius: 50%;
  font-size: 0;
  animation: spin .7s linear infinite;
}

.form-footnote {
  font-size: .62rem;
  margin-top: 13px;
  color: #998a92;
}

.form-status:not(:empty) {
  padding: 15px;
  border: 1px solid #6d3649;
  margin-top: 16px;
  background: #1b0d13;
}

.form-status[data-state=error] {
  border-color: var(--red-light);
  color: #ffadba;
}

.form-status[data-state=success] {
  color: #eed5df;
}

/* 08. Footer and motion */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 43px;
  background: #090708;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--border);
  color: #9f8d96;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease),transform 800ms var(--ease);
}

.motion-ready .reveal.in-view {
  opacity: 1;
  transform: none;
}

.problem-row:nth-child(2),.process-steps li:nth-child(2) {
  transition-delay: 70ms;
}

.problem-row:nth-child(3),.process-steps li:nth-child(3) {
  transition-delay: 140ms;
}

.problem-row:nth-child(4),.process-steps li:nth-child(4) {
  transition-delay: 210ms;
}

.process-steps li:nth-child(5) {
  transition-delay: 280ms;
}

.process-steps li:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes draw {
  from {
  stroke-dashoffset:600;
  }
  to {
  stroke-dashoffset:0;
  }
}

@keyframes pulse {
  50% {
  box-shadow:0 0 0 4px #f13b5415;
  }
}

@keyframes spin {
  to {
  transform:rotate(360deg);
  }
}

/* 09. Responsive compositions */
@media(min-width:1600px) {
  .hero {
    min-height: 940px;
    padding-top: 205px;
  }

  .hero-layout {
    gap: 65px;
  }

  .hero-bottom {
    margin-top: 80px;
  }

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

  .dashboard-main {
    padding: 27px;
  }

  .chart {
    height: 145px;
  }

}

@media(max-width:1150px) {
  :root {
    --gutter: 36px;
  }

  .hero {
    min-height: 800px;
    padding-top: 150px;
  }

  .hero-copy>.eyebrow {
    font-size: .57rem;
    letter-spacing: .12em;
  }

  .hero-actions .button {
    padding-inline: 17px;
  }

  .dashboard-sidebar {
    flex-basis: 34px;
  }

  .metrics {
    gap: 7px;
  }

  .metrics>div+div {
    padding-left: 8px;
  }

  .metrics small {
    font-size: .4rem;
  }

  .problems-layout {
    gap: 45px;
  }

  .solution-options button {
    padding: 27px 18px;
  }

  .solution-detail {
    padding: 25px;
  }

  .process-steps {
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
  }

  .process-steps h3 {
    margin-top: 15px;
  }

  .process-steps p {
    max-width: 250px;
  }

  .expertise-strip>.container {
    gap: 12px;
  }

}

@media(max-width:900px) {
  .header-inner {
    height: 78px;
  }

  nav .nav-cta {
    padding: 9px 12px;
    gap: 10px;
  }

  .hero-copy {
    max-width: 670px;
  }

  .hero-description {
    max-width: 430px;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .dashboard-sidebar {
    flex-basis: 46px;
  }

  .metrics>div>span {
    font-size: .65rem;
  }

  .metrics small {
    font-size: .52rem;
  }

  .metrics strong {
    font-size: 2rem;
  }

  .chart {
    height: 145px;
  }

  .dashboard-heading h2 {
    font-size: 1.5rem;
  }

  .micro {
    font-size: .58rem;
  }

  .dashboard-tabs button {
    font-size: .65rem;
    padding: 8px 10px;
  }

  .dashboard-tabs>span {
    font-size: .55rem;
  }

  .process-table {
    font-size: .67rem;
  }

  .status {
    font-size: .57rem;
  }

  .chart-heading {
    font-size: .67rem;
  }

  .chart-days {
    font-size: .5rem;
  }

  .visual-caption,.visual-footer {
    font-size: .56rem;
  }

  .automation-toast strong {
    font-size: .76rem;
  }

  .automation-toast div>span {
    font-size: .62rem;
  }

  .hero-bottom {
    margin-top: 20px;
  }

  .expertise-strip>.container {
    justify-content: center;
    flex-wrap: wrap;
    font-size: .6rem;
    gap: 16px;
  }

  .expertise-strip i:last-of-type,.expertise-strip span:last-child {
    display: none;
  }

  .section-aside {
    font-size: .68rem;
  }

  .problem-row p {
    max-width: 540px;
  }

  .solutions-heading {
    display: block;
  }

  .solutions-heading>p {
    margin-top: 22px;
  }

  .solution-options {
    padding: 0;
    border-right: 0;
  }

  .solution-options button {
    padding: 20px 25px;
  }

  .flow-diagram {
    margin: auto;
  }

  .process-intro {
    align-items: start;
  }

  .contact-signature {
    display: none;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-top p {
    font-size: .7rem;
  }

  .evolution-note>span:last-child {
    display: none;
  }

}

@media(max-width:600px) {
  :root {
    --heading: 2.35rem;
  }

  html {
    scroll-padding-top: 80px;
  }

  .header-inner {
    height: 72px;
  }

  .brand-mark {
    font-size: 31px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff20;
    background: #100a0d;
    z-index: 42;
  }

  .menu-toggle>span {
    height: 1px;
    width: 18px;
    background: var(--white);
    transition: transform var(--transition);
  }

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

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

  nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #0d080beF;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #6b2036;
    padding: 28px var(--gutter) 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  nav.open {
    display: flex;
    animation: menu-in 220ms var(--ease);
  }

  nav>a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  nav>a.active::after {
    display: none;
  }

  nav .nav-cta {
    margin-top: 25px;
    padding: 15px;
    justify-content: space-between;
    border-color: #753243;
  }

  .hero h1 {
    margin-top: 25px;
    letter-spacing: -.058em;
  }

  .hero h1>br:nth-of-type(2) {
    display: initial;
  }

  .hero-premise {
    line-height: 1.4;
  }

  .hero-description {
    max-width: 330px;
  }

  .hero-actions .button {
    padding: 14px 22px;
  }

  .hero-layout {
    gap: 22px;
  }

  .visual-caption>span:last-child {
    display: none;
  }

  .dashboard {
    transform: none!important;
    border-color: #58313f;
    border-radius: 7px;
  }

  .mini-brand {
    gap: 7px;
  }

  .dashboard-tabs {
    gap: 2px;
  }

  .dashboard-tabs button {
    padding: 7px;
  }

  .dashboard-tabs>span {
    font-size: .42rem;
  }

  .metrics {
    padding-block: 15px;
  }

  .chart {
    margin-top: 13px;
  }

  .status {
    font-size: .43rem;
  }

  .automation-toast {
    margin: 10px 0 0 auto;
    border-radius: 5px;
    animation: none;
    transform: none;
  }

  .automation-icon {
    width: 27px;
    height: 29px;
  }

  .visual-footer {
    letter-spacing: .08em;
  }

  .hero-bottom {
    padding-block: 17px;
  }

  .hero-bottom>a {
    gap: 8px;
  }

  .expertise-strip {
    padding-block: 20px;
  }

  .expertise-strip>.container {
    letter-spacing: .04em;
  }

  .expertise-strip i {
    font-size: 13px;
  }

  .expertise-strip span:nth-last-of-type(2),.expertise-strip i:nth-last-of-type(2) {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-aside {
    display: block;
    margin-top: 12px;
    font-size: .72rem;
  }

  .philosophy-bottom {
    padding-top: 23px;
  }

  .customization-stamp {
    gap: 17px;
  }

  .customization-stamp>span {
    font-size: 32px;
  }

  .section-intro h2 {
    margin-top: 23px;
  }

  .problem-row p {
    line-height: 1.7;
  }

  .solutions-heading {
    margin-top: 26px;
  }

  .solution-options button {
    padding: 20px 15px;
  }

  .flow-diagram {
    grid-template-columns: 1fr 12px 1fr 12px 1fr;
  }

  .process-intro {
    display: block;
    margin-top: 23px;
  }

  .process-intro p {
    margin-top: 23px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }

  .process-steps li {
    padding-top: 16px;
  }

  .evolution-note {
    align-items: start;
    gap: 12px;
  }

  .provocation h2 {
    letter-spacing: -.05em;
  }

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

  .field input,.field textarea {
    font-size: 16px;
  }

  .field-error {
    font-size: .73rem;
  }

  .form-disclosure {
    font-size: .72rem;
  }

  .footer-top {
    align-items: start;
    gap: 23px;
    padding-bottom: 30px;
  }

  .footer-top>.brand {
    width: 100%;
  }

  .footer-top .text-link {
    margin-left: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .motion-ready .reveal {
    transform: translateY(15px);
  }

}

@keyframes menu-in {
  from {
  opacity:0;
  transform:translateY(-8px);
  }
  to {
  opacity:1;
  transform:none;
  }
}

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

  *,*::before,*::after {
    animation: none!important;
    transition: none!important;
  }

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

  .dashboard {
    transform: none;
    will-change: auto;
  }

  }

/* 10. Final readability refinements */
.section-intro>p:not(.eyebrow),.problem-row p,.solution-copy>p:not(.eyebrow),.process-steps p,.contact-intro>p:not(.eyebrow),.philosophy-bottom p {
  font-size: 1rem;
}

.field label,.form-submit,.button,.text-link {
  font-size: .875rem;
}

@media(max-width:600px) {
  .hero-actions .button,.hero-actions .text-link,.provocation .button,.form-submit {
    font-size: .8rem;
  }

  .problem-row p,.solution-copy>p:not(.eyebrow),.process-steps p {
    font-size: .9rem;
  }

  .field label {
    font-size: .875rem;
  }

}

/* 11. Creative direction — a system shaped around its content */
:root {
  --display: 'Arial', 'Helvetica Neue', sans-serif;
  --mono: 'Cascadia Code', 'SFMono-Regular', Consolas, monospace;
  --gutter: clamp(24px, 5vw, 88px);
  --space-section: clamp(88px, 10vw, 160px);
  --heading: clamp(2.5rem, 4.4vw, 4.5rem);
}

body {
  line-height: 1.7;
}

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

.eyebrow, .section-aside, .visual-caption, .visual-footer, .hero-edition, .frame-label, .frame-bottom, .row-number, .process-steps li>span, .footer-bottom, .form-heading>span {
  font-family: var(--mono);
}

.eyebrow {
  font-size: .75rem;
  letter-spacing: .11em;
}

.brand {
  letter-spacing: -.025em;
  font-size: 1.08rem;
  gap: 12px;
}

.brand-light {
  margin-left: 5px;
  letter-spacing: -.035em;
}

.brand-mark {
  transform: none;
  width: 37px;
  height: 37px;
  letter-spacing: normal;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-inner {
  height: 88px;
}

nav {
  font-size: .875rem;
  gap: 32px;
}

nav .nav-cta {
  border-radius: 0;
  padding: 12px 18px;
}

.site-header.scrolled .header-inner {
  height: 72px;
}

.header-inner {
  transition: height var(--transition);
}

.button {
  border-radius: 0;
  font-size: .875rem;
  min-height: 58px;
  gap: 32px;
}

.button-primary {
  background: #c71b35;
}

.button-primary:hover {
  background: #e12a44;
  box-shadow: 0 8px 28px #620c1a45;
}

.button-primary>span[aria-hidden] {
  transition: transform var(--transition);
}

.button-primary:hover>span[aria-hidden] {
  transform: translate(2px, -2px);
}

.text-link {
  font-size: .875rem;
  padding-block: 13px;
}

/* The first screen has an editorial baseline, rather than a centered card pair. */
.hero {
  min-height: 0;
  padding-top: 125px;
  background: radial-gradient(ellipse at 85% 70%, #3a081150, transparent 47%);
}

.hero-grid {
  opacity: .4;
  background-size: 108px 108px;
}

.hero-layout {
  grid-template-columns: 1.12fr 1fr;
  column-gap: 36px;
  align-items: start;
}

.hero-edition {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .625rem;
  letter-spacing: .07em;
  color: #a78c97;
  border-bottom: 1px solid #ffffff0d;
  padding-bottom: 17px;
  margin-bottom: 45px;
}

.hero-copy>.eyebrow {
  font-size: .7rem;
  letter-spacing: .1em;
  color: #cdb9c3;
  margin-bottom: 27px;
}

.hero-premise {
  font: 400 1.05rem/1.5 var(--font);
  letter-spacing: -.025em;
  max-width: 390px;
  margin: 0 0 18px;
  color: #a99ba2;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.75rem, 5.75vw, 5.9rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.065em;
  margin: 0;
  text-wrap: initial;
}

.hero h1 em {
  color: #f5f3f3;
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  inset: auto -.035em .015em;
  height: .13em;
  background: var(--red);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-period {
  color: var(--red-light);
}

.hero-description {
  max-width: 410px;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 30px;
}

.hero-actions {
  margin-top: 28px;
  gap: 22px;
}

.hero-actions .text-link {
  font-size: .8rem;
}

.hero-note {
  font-size: .75rem;
  margin-top: 25px;
  color: #a69ba1;
}

.hero-note>span {
  color: #c0899b;
}

.hero-visual {
  padding-top: 90px;
  padding-bottom: 0;
}

.visual-caption {
  font-size: .59rem;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.visual-caption b {
  font-size: 22px;
  padding-right: 7px;
  font-weight: 400;
}

.visual-caption>span:first-child {
  display: flex;
  align-items: center;
}

.dashboard {
  border-radius: 3px;
  border-color: #70515e;
  transform: rotateY(-3deg) rotateX(1deg);
  box-shadow: 0 35px 70px #0007;
  will-change: auto;
}

.dashboard-top {
  height: 50px;
  background: #171116;
}

.mini-brand {
  font-size: .75rem;
}

.avatar {
  font-size: .625rem;
  width: 29px;
  height: 29px;
}

.dashboard-main {
  padding: 25px 19px 15px;
}

.dashboard-sidebar {
  flex-basis: 40px;
}

.micro {
  font-size: .625rem;
  letter-spacing: .05em;
}

.dashboard-heading h2 {
  font-size: 1.4rem;
  font-weight: 500;
}

.live {
  font-size: .625rem;
}

.dashboard-tabs {
  gap: 4px;
  margin-top: 22px;
  padding-bottom: 13px;
}

.dashboard-tabs button {
  min-height: 34px;
  font-size: .7rem;
  padding: 7px 10px;
  border-radius: 2px;
}

.dashboard-tabs>span {
  font-size: .6rem;
}

.metrics {
  gap: 10px;
  padding-block: 20px;
}

.metrics>div+div {
  padding-left: 10px;
}

.metrics>div>span {
  font-size: .675rem;
  white-space: normal;
  line-height: 1.45;
  min-height: 31px;
}

.metrics strong {
  font-size: 2rem;
  letter-spacing: -.065em;
}

.metrics small {
  font-size: .6rem;
  white-space: normal;
  line-height: 1.5;
}

.chart-panel {
  border-radius: 2px;
  padding: 15px 12px 12px;
}

.chart-heading {
  font-size: .7rem;
}

.chart-key {
  font-size: .625rem;
}

.chart {
  height: 125px;
}

.chart-labels {
  font-size: .6rem;
}

.chart-days {
  font-size: .575rem;
}

.process-table {
  font-size: .675rem;
  margin-top: 16px;
}

.process-table .table-heading {
  font-size: .625rem;
}

.table-heading>span:last-child {
  font-size: .575rem;
}

.status {
  font-size: .575rem;
  border-radius: 2px;
}

.automation-toast {
  border-radius: 2px;
  margin-top: -1px;
  margin-right: -10px;
  padding: 13px 15px;
  animation: none;
  transform: none;
}

.automation-toast strong {
  font-size: .75rem;
}

.automation-toast div>span {
  font-size: .625rem;
}

.automation-icon {
  border-radius: 2px;
}

.visual-footer {
  font-size: .575rem;
  letter-spacing: .03em;
  margin-top: 20px;
}

.hero-bottom {
  margin-top: 55px;
  font-size: .625rem;
  letter-spacing: .07em;
  padding-block: 25px;
}

.expertise-strip {
  background: transparent;
  padding-block: 22px;
}

.expertise-strip>.container {
  font: .7rem/1.5 var(--mono);
  letter-spacing: .035em;
  color: #b0a4ab;
}

.expertise-strip i {
  font-size: 14px;
}

/* The manifesto literally gains room as it enters the viewport. */
.philosophy {
  background: radial-gradient(ellipse at 45% 60%, #3a08113d, transparent 65%);
  --mold-progress: 1;
}

.philosophy .section-aside {
  font-size: .75rem;
}

.philosophy-frame {
  margin-top: 62px;
  padding: 35px clamp(25px,4vw,65px) 28px;
  position: relative;
  border: 1px solid #72415066;
}

.philosophy-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,#620c1a14,transparent 45%);
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: solid var(--red-light);
}

.frame-corner-tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.frame-corner-tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.frame-corner-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.frame-corner-br {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.frame-label {
  font-size: .625rem;
  letter-spacing: .08em;
  color: #ad8493;
}

.philosophy-title {
  margin-top: 40px;
  font-size: clamp(3.5rem, 7.15vw, 7.1rem);
  font-weight: 400;
  line-height: 1.09;
  letter-spacing: -.065em;
}

.philosophy-line {
  display: block;
  color: #f5f3f3;
  transition: color 600ms var(--ease);
}

.mold-word {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.075em;
  color: #f13b54;
}

.frame-bottom {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .6rem;
  letter-spacing: .05em;
  color: #b68c9b;
  margin-top: 42px;
}

.frame-meter {
  height: 2px;
  background: #ffffff14;
  flex: 1;
}

.frame-meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(var(--mold-progress));
  transform-origin: left;
}

.philosophy-bottom {
  grid-template-columns: .75fr 1fr;
  margin-top: 35px;
  border-top: 0;
  padding-top: 0;
}

.customization-stamp {
  font: .75rem/1.5 var(--mono);
  letter-spacing: .07em;
}

.philosophy-bottom p {
  font-size: 1rem;
  max-width: 550px;
}

.motion-ready .philosophy-line {
  color: #8c7780;
}

.motion-ready .philosophy-line.is-lit {
  color: #f5f3f3;
}

@media(min-width:901px) and (prefers-reduced-motion:no-preference) {
  .motion-ready .philosophy-frame {
    clip-path: inset(0 calc((1 - var(--mold-progress)) * 4%) 0 calc((1 - var(--mold-progress)) * 4%));
  }

  .motion-ready .mold-word {
    display: inline-block;
    transform: scaleX(calc(.88 + var(--mold-progress) * .12));
    transform-origin: left;
  }

}

/* Editorial rows carry the friction; the solution has a more open composition. */
.problems-layout {
  grid-template-columns: 1fr 1.1fr;
  gap: 85px;
}

.problem-row {
  position: relative;
  padding-block: 32px;
  gap: 24px;
  transition: border-color var(--transition), background var(--transition);
}

.problem-row:hover {
  border-color: #a3546b;
  background: linear-gradient(90deg,#3a08111a,transparent);
}

.row-number {
  font-size: .7rem;
  color: #bc768c;
}

.problem-row h3 {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 350px;
  line-height: 1.25;
  text-wrap: initial;
}

.problem-row p {
  font-size: .95rem;
  max-width: 370px;
}

.problem-symbol {
  font-size: 24px;
  opacity: .65;
}

.section-intro>.text-link {
  margin-top: 24px;
}

.solutions {
  background: #0c090b;
}

.solutions-heading {
  align-items: end;
}

.solutions-heading>p {
  font-size: 1rem;
  max-width: 330px;
}

.solution-workbench {
  border: 0;
  border-radius: 0;
  border-top: 1px solid #754052;
  border-bottom: 1px solid var(--border);
  background: transparent;
  grid-template-columns: .92fr 1.2fr;
  margin-top: 50px;
}

.solution-options {
  padding: 18px 0;
}

.solution-options button {
  font-size: .95rem;
  padding: 29px 24px 29px 12px;
  min-height: 86px;
  border-bottom-color: #ffffff14;
}

.solution-options button>span {
  font-family: var(--mono);
  font-size: .65rem;
}

.solution-options button:last-child {
  border-bottom: 0;
}

.solution-options button[aria-selected=true] {
  background: linear-gradient(90deg,#3a081177,transparent);
  box-shadow: inset 3px 0 var(--red);
}

.solution-detail {
  padding: 28px 36px 36px;
}

.solution-copy h3 {
  font-size: 1.7rem;
  text-wrap: initial;
}

.solution-copy .eyebrow {
  font-size: .7rem;
}

.solution-copy>p:not(.eyebrow) {
  font-size: .95rem;
}

.solution-tags>span {
  font-size: .7rem;
  padding: 6px 10px;
  border-radius: 0;
}

.flow-diagram {
  padding-block: 9px 32px;
  font: .65rem/1.5 var(--mono);
  gap: 13px;
}

.flow-node {
  border-radius: 0;
  padding-block: 16px;
}

.flow-center {
  font: italic 600 42px/1 var(--display);
  background: radial-gradient(ellipse,#620c1a99,transparent 70%);
}

.flow-center>span {
  font: .625rem/1.5 var(--mono);
  margin-top: 14px;
}

.flow-base {
  font: .575rem/1.5 var(--mono);
  letter-spacing: .06em;
}

/* Six small identical columns become a readable sequence with a distinct final step. */
.process-intro {
  align-items: end;
}

.process-intro p {
  font-size: 1rem;
}

.process-steps {
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 60px;
}

.process-steps li {
  padding: 27px 34px 34px 0;
  border-top: 1px solid #69414f;
}

.process-steps li:not(:nth-child(3n + 1)) {
  padding-left: 34px;
  border-left: 1px solid var(--border);
}

.process-steps li::before {
  display: none;
}

.process-steps li>span {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: #87606f;
  letter-spacing: -.08em;
}

.process-steps h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 28px;
}

.process-steps p {
  font-size: .95rem;
  max-width: 280px;
}

.process-steps li:last-child {
  background: linear-gradient(145deg,#3a08116b,transparent);
}

.process-steps li:last-child>span {
  color: var(--red-light);
}

.evolution-note {
  border-top: 0;
  margin-top: 14px;
}

.evolution-note p {
  font-size: .95rem;
}

.evolution-note>span:last-child {
  font: .625rem/1.5 var(--mono);
  letter-spacing: .04em;
}

.provocation {
  text-align: left;
  background: #17070d;
  border-color: #7b2c4250;
}

.provocation>.container {
  position: relative;
  padding-left: 17%;
}

.provocation-index {
  position: absolute;
  left: 0;
  top: -20px;
  color: #d51f3a;
  font-size: clamp(7rem,15vw,14rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.1em;
}

.provocation h2 {
  font-size: clamp(2.7rem,5.1vw,5.1rem);
  font-weight: 400;
  text-wrap: initial;
}

.provocation h2>span::after {
  height: 1px;
  background: #f13b54;
}

.provocation .button {
  margin-top: 35px;
}

.contact-layout {
  gap: 8%;
  grid-template-columns: .95fr 1fr;
}

.contact-intro h2 {
  font-size: clamp(2.5rem,4.15vw,4.25rem);
  line-height: 1.06;
}

.contact-intro>p:not(.eyebrow) {
  max-width: 385px;
  font-size: 1rem;
}

.contact-note p {
  font-size: .875rem;
}

.contact-signature>span:last-child {
  font: .625rem/1.7 var(--mono);
  letter-spacing: .06em;
}

.form-heading {
  border-top: 1px solid var(--red);
  padding-block: 22px 30px;
  margin-bottom: 10px;
}

.form-heading h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.form-heading>span {
  display: block;
  color: #ab7c8e;
  font-size: .625rem;
  margin-top: 10px;
}

.field input,.field textarea {
  background: #0d090b;
  border-radius: 0;
  border-color: #ffffff28;
  padding: 15px;
  font-size: 1rem;
}

.field input {
  height: 56px;
}

.field textarea {
  min-height: 145px;
}

.field input::placeholder,.field textarea::placeholder {
  font-size: .875rem;
  color: #a6979f;
}

.field label {
  font-size: .875rem;
  margin-bottom: 10px;
}

.field-error {
  font-size: .75rem;
  min-height: 22px;
}

.form-grid {
  gap: 14px 20px;
}

.form-submit {
  font-size: .875rem;
  min-height: 64px;
  padding-inline: 20px;
}

.form-disclosure,.form-footnote {
  font-size: .75rem;
}

.form-status:not(:empty) {
  border-radius: 0;
  font-size: .9rem;
}

.footer-top {
  padding-bottom: 45px;
}

.footer-top p {
  font-size: .875rem;
}

.footer-top .text-link {
  font-size: .8rem;
}

.footer-wordmark {
  display: flex;
  align-items: baseline;
  gap: .025em;
  font-size: clamp(3rem,10.65vw,10rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.07em;
  border-top: 1px solid var(--border);
  padding-block: 35px 45px;
  color: #eee5e9;
}

.footer-wordmark>span {
  font-weight: 400;
  color: #8d7780;
}

.footer-wordmark>i {
  margin-left: auto;
  color: #d51f3a;
  font-style: normal;
  font-weight: 400;
  font-size: .8em;
}

.footer-bottom {
  font-size: .65rem;
}

.footer-bottom>span:last-child {
  font-size: .575rem;
  letter-spacing: .045em;
}

.metric-pulse {
  animation-play-state: paused;
}

.animation-visible .metric-pulse {
  animation-play-state: running;
}

/* Tablet is a composition, not a scaled desktop. */
@media(max-width:1150px) {
  .hero-layout {
    grid-template-columns: 1.06fr 1fr;
    gap: 25px;
  }

  .hero-edition {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(3.5rem,5.7vw,4.8rem);
  }

  .hero-visual {
    padding-top: 80px;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 20px 15px 15px;
  }

  .dashboard-tabs>span {
    display: none;
  }

  .dashboard-heading h2 {
    font-size: 1.25rem;
  }

  .metrics strong {
    font-size: 1.8rem;
  }

  .metrics>div>span {
    font-size: .65rem;
  }

  .chart-heading {
    font-size: .65rem;
  }

  .automation-toast {
    margin-right: 0;
  }

  .visual-caption {
    font-size: .5rem;
  }

  .visual-caption>span:last-child {
    display: none;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .text-link {
    font-size: .75rem;
  }

  .hero-bottom {
    margin-top: 45px;
  }

  .expertise-strip>.container {
    font-size: .6rem;
  }

  .solution-options button {
    font-size: .85rem;
    gap: 15px;
    padding-right: 18px;
  }

  .solution-detail {
    padding-inline: 25px;
  }

  .contact-layout {
    gap: 6%;
  }

  .process-steps li {
    padding-right: 23px;
  }

  .process-steps li:not(:nth-child(3n + 1)) {
    padding-left: 23px;
  }

}

@media(max-width:900px) {
  nav {
    gap: 17px;
    font-size: .775rem;
  }

  .brand {
    font-size: .95rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-edition {
    font-size: .6rem;
    margin-bottom: 35px;
  }

  .hero-edition>span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4rem,9.2vw,6rem);
  }

  .hero h1>br:nth-of-type(2) {
    display: initial;
  }

  .hero-copy>.eyebrow {
    font-size: .75rem;
  }

  .hero-premise {
    font-size: 1.1rem;
    max-width: 440px;
  }

  .hero-visual {
    max-width: 640px;
    width: 90%;
    margin-left: auto;
    margin-right: 0;
    padding-top: 45px;
  }

  .dashboard-main {
    padding: 25px;
  }

  .dashboard-sidebar {
    display: flex;
  }

  .dashboard-tabs>span {
    display: inline;
  }

  .visual-caption {
    font-size: .6rem;
  }

  .hero-actions {
    gap: 24px;
  }

  .hero-actions .text-link {
    font-size: .875rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .philosophy-title {
    font-size: clamp(3rem,7.2vw,4.8rem);
  }

  .philosophy-frame {
    padding-inline: 30px;
    margin-top: 38px;
  }

  .frame-bottom {
    font-size: .5rem;
    gap: 15px;
  }

  .philosophy-bottom {
    grid-template-columns: .7fr 1fr;
    gap: 30px;
  }

  .problems-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-intro>p:not(.eyebrow) {
    max-width: 520px;
  }

  .problem-row h3,.problem-row p {
    max-width: 550px;
  }

  .solutions-heading>p {
    max-width: 500px;
  }

  .solution-workbench {
    grid-template-columns: 1fr;
  }

  .solution-options {
    padding-block: 0;
  }

  .solution-options button {
    min-height: 70px;
    padding-block: 22px;
    font-size: 1rem;
  }

  .solution-detail {
    padding: 30px;
  }

  .flow-diagram {
    max-width: 450px;
  }

  .process-steps {
    grid-template-columns: repeat(2,1fr);
  }

  .process-steps li:not(:nth-child(3n + 1)) {
    padding-left: 0;
    border-left: 0;
  }

  .process-steps li:nth-child(even) {
    border-left: 1px solid var(--border);
    padding-left: 25px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-intro h2 {
    font-size: 3.5rem;
  }

  .contact-intro>p:not(.eyebrow) {
    max-width: 500px;
  }

  .contact form {
    max-width: none;
  }

  .provocation>.container {
    padding-left: 14%;
  }

  .provocation-index {
    font-size: 7rem;
    top: 10px;
  }

  .provocation h2 {
    font-size: 3.1rem;
  }

}

@media(max-width:600px) {
  :root {
    --gutter: 24px;
    --space-section: 82px;
  }

  .header-inner,.site-header.scrolled .header-inner {
    height: 72px;
  }

  .brand {
    font-size: .96rem;
    gap: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    border-radius: 0;
    width: 44px;
    height: 44px;
  }

  nav {
    padding-top: 20px;
  }

  nav>a {
    font-size: 1.15rem;
  }

  nav .nav-cta {
    font-size: 1rem;
  }

  .hero {
    padding-top: 97px;
  }

  .hero-edition {
    font-size: .52rem;
    margin-bottom: 29px;
    letter-spacing: .03em;
    padding-bottom: 14px;
  }

  .hero-copy>.eyebrow {
    font-size: .625rem;
    letter-spacing: .04em;
    margin-bottom: 22px;
  }

  .hero-premise {
    font-size: .95rem;
    max-width: 280px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.95rem,11.3vw,4.3rem);
    line-height: 1.02;
  }

  .hero-description {
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 25px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .button {
    font-size: .875rem;
    justify-content: space-between;
    min-height: 58px;
    padding-inline: 20px;
  }

  .hero-actions .text-link {
    font-size: .8rem;
    align-self: flex-start;
  }

  .hero-note {
    font-size: .675rem;
    margin-top: 16px;
  }

  .hero-visual {
    width: 100%;
    padding-top: 38px;
  }

  .visual-caption {
    font-size: .48rem;
    letter-spacing: 0;
    margin-bottom: 13px;
  }

  .visual-caption b {
    font-size: 19px;
  }

  .dashboard-top {
    padding-inline: 12px;
    height: 45px;
  }

  .mini-brand {
    font-size: .625rem;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 20px 12px 13px;
  }

  .dashboard-heading h2 {
    font-size: 1.18rem;
  }

  .micro {
    font-size: .5rem;
  }

  .live {
    font-size: .53rem;
  }

  .dashboard-tabs {
    margin-top: 16px;
  }

  .dashboard-tabs button {
    font-size: .75rem;
    min-height: 44px;
    padding-inline: 11px;
  }

  .dashboard-tabs>span {
    display: none;
  }

  .metrics {
    gap: 6px;
  }

  .metrics>div+div {
    padding-left: 7px;
  }

  .metrics>div>span {
    font-size: .65rem;
    min-height: 34px;
  }

  .metrics strong {
    font-size: 1.75rem;
  }

  .metrics small {
    font-size: .55rem;
  }

  .metric-pulse {
    margin-left: 4px;
  }

  .chart-panel {
    padding: 13px 9px 11px;
  }

  .chart-heading {
    font-size: .6rem;
  }

  .chart-key {
    font-size: .55rem;
  }

  .chart {
    height: 108px;
    gap: 7px;
  }

  .chart-labels {
    font-size: .55rem;
  }

  .chart-days {
    font-size: .52rem;
  }

  .process-table {
    font-size: .6rem;
  }

  .process-table .table-heading {
    font-size: .6rem;
  }

  .table-heading>span:last-child,.status {
    font-size: .5rem;
  }

  .automation-toast {
    max-width: 100%;
    width: 100%;
    gap: 9px;
    padding: 12px 10px;
    margin-top: 9px;
  }

  .automation-toast strong {
    font-size: .7rem;
  }

  .automation-toast div>span {
    font-size: .56rem;
  }

  .automation-icon {
    flex-shrink: 0;
  }

  .toast-check {
    margin-left: auto;
  }

  .visual-footer {
    font-size: .475rem;
    gap: 9px;
    margin-top: 12px;
  }

  .hero-bottom {
    margin-top: 27px;
    font-size: .5rem;
    letter-spacing: .02em;
  }

  .hero-bottom>span {
    max-width: 215px;
  }

  .expertise-strip>.container {
    font-size: .625rem;
    gap: 14px;
  }

  .eyebrow {
    font-size: .675rem;
    letter-spacing: .05em;
  }

  .section-aside,.philosophy .section-aside {
    font-size: .7rem;
  }

  .philosophy-frame {
    margin-top: 30px;
    padding: 23px 15px 20px;
    margin-inline: -7px;
  }

  .frame-label {
    font-size: .475rem;
    letter-spacing: .015em;
  }

  .philosophy-title {
    font-size: clamp(1.85rem,7.8vw,2.8rem);
    margin-top: 29px;
    line-height: 1.18;
    letter-spacing: -.06em;
    text-wrap: initial;
  }

  .frame-bottom {
    margin-top: 28px;
    font-size: .475rem;
    gap: 10px;
  }

  .frame-bottom>span:first-child {
    display: none;
  }

  .frame-corner {
    width: 18px;
    height: 18px;
  }

  .philosophy-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }

  .customization-stamp {
    font-size: .625rem;
  }

  .philosophy-bottom p {
    font-size: .95rem;
  }

  .problem-row {
    padding-block: 26px;
    gap: 14px;
  }

  .problem-row h3 {
    font-size: 1.2rem;
  }

  .problem-row p {
    font-size: .95rem;
  }

  .row-number {
    font-size: .6rem;
  }

  .problem-symbol {
    font-size: 19px;
  }

  .solutions-heading h2 {
    font-size: 2.35rem;
    text-wrap: initial;
  }

  .solutions-heading>p {
    font-size: .95rem;
  }

  .solution-workbench {
    margin-top: 34px;
  }

  .solution-options button {
    min-height: 75px;
    font-size: .875rem;
    padding-inline: 10px;
    gap: 10px;
  }

  .solution-options button>span {
    font-size: .6rem;
  }

  .solution-detail {
    padding: 27px 0;
  }

  .solution-copy h3 {
    font-size: 1.5rem;
  }

  .solution-copy .eyebrow {
    font-size: .625rem;
  }

  .solution-copy>p:not(.eyebrow) {
    font-size: .95rem;
  }

  .solution-tags>span {
    font-size: .625rem;
  }

  .flow-diagram {
    gap: 7px;
    font-size: .55rem;
  }

  .flow-node {
    padding-inline: 7px;
  }

  .flow-center>span {
    font-size: .5rem;
  }

  .flow-base {
    font-size: .5rem;
  }

  .process-intro p {
    font-size: .95rem;
  }

  .process-steps {
    margin-top: 36px;
  }

  .process-steps li {
    padding: 24px 15px 28px 0;
  }

  .process-steps li:nth-child(even) {
    padding-left: 15px;
  }

  .process-steps li>span {
    font-size: 2rem;
  }

  .process-steps h3 {
    font-size: .95rem;
    margin-top: 22px;
    text-wrap: initial;
    overflow-wrap: anywhere;
  }

  .process-steps p {
    font-size: .85rem;
  }

  .evolution-note {
    padding-top: 15px;
  }

  .evolution-note p {
    font-size: .875rem;
  }

  .provocation>.container {
    padding-left: 0;
  }

  .provocation-index {
    position: static;
    font-size: 5rem;
    line-height: .85;
    margin-bottom: 33px;
  }

  .provocation .eyebrow {
    font-size: .625rem;
  }

  .provocation h2 {
    font-size: clamp(2rem,8.4vw,2.65rem);
    line-height: 1.12;
  }

  .provocation .button {
    font-size: .8rem;
    padding-inline: 18px;
    gap: 18px;
  }

  .contact-intro h2 {
    font-size: clamp(2.3rem,9.4vw,3rem);
  }

  .contact-intro>p:not(.eyebrow) {
    font-size: .95rem;
  }

  .contact-note p {
    font-size: .8rem;
  }

  .form-heading {
    margin-bottom: 3px;
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .form-heading h3 {
    font-size: 1.35rem;
  }

  .form-grid {
    gap: 10px;
  }

  .field input::placeholder,.field textarea::placeholder {
    font-size: .875rem;
  }

  .form-submit {
    font-size: .8rem;
    padding-inline: 16px;
    min-height: 68px;
  }

  .footer-top p {
    font-size: .8rem;
  }

  .footer-top .text-link {
    font-size: .75rem;
  }

  .footer-wordmark {
    font-size: 9.4vw;
    padding-block: 27px;
  }

  .footer-wordmark>i {
    font-size: .8em;
  }

  .footer-bottom {
    font-size: .575rem;
  }

  .footer-bottom>span:last-child {
    font-size: .5rem;
  }

}

@media(prefers-reduced-motion:reduce) {
  .motion-ready .philosophy-line {
    color: #f5f3f3;
  }

  .philosophy-frame {
    clip-path: none;
  }

  .frame-meter i {
    transform: none;
  }

  .mold-word {
    transform: none;
  }

  .metric-pulse {
    animation: none;
  }

}


/* In-person discovery callout */
.visit-link {
  width: fit-content;
  color: #c9b5bf;
  transition: color var(--transition);
}
.visit-link:hover { color: var(--white); }
.visit-callout {
  margin-top: 34px;
  border-left: 2px solid var(--red);
  padding: 5px 0 5px 22px;
  scroll-margin-top: 105px;
}
.visit-callout .eyebrow { font-size: .625rem; color: #ce94a7; }
.visit-callout h3 {
  margin-top: 15px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
  text-wrap: initial;
}
.visit-callout>p:not(.eyebrow) { font-size: .925rem; margin-top: 15px; }
.visit-callout>p.visit-instruction { font-size: .8rem; color: #ad99a3; }
.visit-callout .text-link { margin-top: 10px; font-size: .875rem; }
#lead-form { scroll-margin-top: 105px; }
@media(max-width:600px) {
  .visit-callout { padding-left: 17px; margin-top: 28px; }
  .visit-callout>p:not(.eyebrow) { font-size: .9rem; }
  .visit-callout>p.visit-instruction { font-size: .8rem; }
  .hero-note.visit-link { font-size: .75rem; }
}

/* 12. Premium refinement — subtle depth, flexibility and responsive polish */
:root {
  --pointer-x: 50vw;
  --pointer-y: 30vh;
  --hairline: rgba(245,243,243,.085);
  --wine-glow: rgba(164,20,41,.20);
}

body {
  overflow-x: clip;
}

.pointer-light {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(var(--pointer-x) - 50%), calc(var(--pointer-y) - 50%), 0);
  background: radial-gradient(circle, rgba(164,20,41,.12) 0, rgba(98,12,26,.07) 28%, rgba(5,5,5,0) 68%);
  filter: blur(18px);
  transition: opacity 420ms var(--ease);
  will-change: transform;
}

.pointer-light.is-visible {
  opacity: 1;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section,
.architecture-band {
  --section-depth: 0;
  isolation: isolate;
}

.hero::after,
.philosophy::after,
.solutions::after,
.process::after,
.contact::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: clamp(280px, 36vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .34;
  filter: blur(85px);
  background: radial-gradient(circle, rgba(164,20,41,.25), rgba(58,8,17,.06) 45%, transparent 72%);
  transform: translate3d(0, calc(var(--section-depth) * -18px), 0);
}

.hero::after { right: -18%; top: 15%; }
.philosophy::after { left: -17%; top: 34%; }
.solutions::after { right: -18%; top: 24%; }
.process::after { left: -20%; top: 42%; }
.contact::after { right: -22%; top: 18%; }

.hero-grid {
  animation: grid-breathe 9s ease-in-out infinite alternate;
}

.dashboard {
  position: relative;
  isolation: isolate;
  transition: transform 500ms var(--ease), border-color 350ms var(--ease), box-shadow 350ms var(--ease);
}

.dashboard::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 22%, rgba(241,59,84,.055) 48%, transparent 68%);
  transform: translateX(-120%);
}

.animation-visible .dashboard::after {
  animation: dashboard-scan 8s var(--ease) 1.2s infinite;
}

.hero-visual:hover .dashboard {
  border-color: #8e5366;
  box-shadow: 0 42px 95px #0009, 0 0 0 1px rgba(213,31,58,.08), 0 0 60px rgba(98,12,26,.16);
}

.process-table > div:not(.table-heading) {
  transition: background 300ms var(--ease), transform 300ms var(--ease), border-color 300ms var(--ease);
}

.process-table > div.is-live-row {
  background: linear-gradient(90deg, rgba(98,12,26,.28), transparent 82%);
  border-bottom-color: rgba(241,59,84,.16);
  transform: translateX(2px);
}

.mold-word {
  position: relative;
  z-index: 0;
  text-shadow: 0 0 28px rgba(213,31,58,.12);
}

.mold-word::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -.04em;
  right: -.04em;
  bottom: .05em;
  height: .11em;
  background: linear-gradient(90deg, rgba(213,31,58,.2), var(--red), rgba(241,59,84,.3));
  transform: skewX(-12deg) translateX(calc(var(--mold-shift, 0) * 4px));
  transform-origin: left;
  box-shadow: 0 0 28px rgba(213,31,58,.18);
}

.philosophy-frame {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015), 0 28px 90px rgba(0,0,0,.18);
}

.philosophy-frame:hover .frame-corner {
  filter: drop-shadow(0 0 8px rgba(241,59,84,.32));
}

.architecture-band {
  position: relative;
  padding-block: clamp(72px, 8vw, 118px);
  border-block: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(16,5,7,.72), rgba(5,5,5,.96)),
    radial-gradient(circle at 80% 50%, rgba(98,12,26,.22), transparent 36%);
  overflow: hidden;
}

.architecture-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0, black 28%, black 100%);
  transform: translateY(calc(var(--section-depth) * -8px));
}

.architecture-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
}

.architecture-copy h2 {
  max-width: 660px;
  margin-top: 24px;
  font-size: clamp(2.3rem, 4.6vw, 4.65rem);
  font-weight: 450;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.architecture-copy > p:last-child {
  max-width: 610px;
  margin-top: 28px;
  font-size: 1rem;
}

.architecture-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #76394c;
  border-left: 1px solid var(--hairline);
  background: rgba(5,5,5,.34);
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
}

.architecture-map span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: #c8b9c0;
  font: .69rem/1.4 var(--mono);
  letter-spacing: .06em;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.architecture-map span:hover {
  color: var(--white);
  background: linear-gradient(90deg, rgba(98,12,26,.34), rgba(98,12,26,.06));
  transform: translateY(-1px);
}

.architecture-map small {
  grid-column: 1/-1;
  padding: 16px 22px;
  color: #9f8791;
  font: .62rem/1.5 var(--mono);
  letter-spacing: .055em;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.solution-options button,
.problem-row,
.process-steps li,
.visit-callout,
#lead-form {
  position: relative;
}

.solution-options button::after,
.problem-row::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  transition: width 420ms var(--ease);
}

.solution-options button:hover::after,
.solution-options button[aria-selected=true]::after,
.problem-row:hover::after {
  width: 100%;
}

#lead-form {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(245,243,243,.1);
  background: linear-gradient(155deg, rgba(26,5,9,.62), rgba(8,6,7,.82) 58%, rgba(5,5,5,.9));
  box-shadow: 0 38px 90px rgba(0,0,0,.24);
}

.field input,
.field textarea {
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(164,20,41,.1), inset 0 0 20px rgba(98,12,26,.08);
  transform: translateY(-1px);
}

.form-submit {
  overflow: hidden;
  isolation: isolate;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255,255,255,.16) 48%, transparent 62%);
  transform: translateX(-140%);
  transition: transform 650ms var(--ease);
}

.form-submit:hover::before {
  transform: translateX(140%);
}

@keyframes dashboard-scan {
  0%, 64% { transform: translateX(-120%); opacity: 0; }
  72% { opacity: 1; }
  88%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes grid-breathe {
  from { opacity: .28; transform: translateY(0); }
  to { opacity: .48; transform: translateY(-6px); }
}

@media (max-width: 1024px) {
  .architecture-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .architecture-copy h2,
  .architecture-copy > p:last-child {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .pointer-light { display: none; }

  .architecture-band {
    padding-block: 78px;
  }

  .architecture-map span {
    min-height: 70px;
    padding: 16px;
    font-size: .64rem;
  }

  #lead-form {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .architecture-copy h2 {
    font-size: clamp(2.2rem, 10.8vw, 3.05rem);
  }

  .architecture-map {
    grid-template-columns: 1fr;
  }

  .architecture-map small {
    grid-column: 1;
  }

  #lead-form {
    padding: 20px 16px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(3rem, 15.2vw, 3.6rem);
  }

  .philosophy-title {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
  }
}

@media (max-width: 360px) {
  :root { --gutter: 18px; }

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

  .button,
  .form-submit {
    min-height: 60px;
  }
}

@media (min-width: 1440px) {
  .hero-layout {
    column-gap: clamp(44px, 4vw, 76px);
  }

  .dashboard {
    box-shadow: 0 42px 100px #0008;
  }
}

@media (min-width: 1920px) {
  :root { --container: 1420px; }

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

  .architecture-layout {
    gap: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pointer-light { display: none; }
  .hero-grid,
  .animation-visible .dashboard::after { animation: none; }
  .hero::after,
  .philosophy::after,
  .solutions::after,
  .process::after,
  .contact::after,
  .architecture-band::before { transform: none; }
  .form-submit::before { display: none; }
}


/* Horizontal containment for decorative effects */
html,
body {
  overflow-x: clip;
}

.hero,
.philosophy,
.solutions,
.process,
.contact,
.architecture-band {
  overflow-x: clip;
}


/* Security / anti-spam helper: invisible honeypot field for automated bots. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
