/* Slimverder — a little less hype, a lot more intention. */
:root {
  --paper: #f7f6f2;
  --white: #fff;
  --ink: #232521;
  --muted: #666960;
  --orange: #f65b35;
  --orange-dark: #c43c1a;
  --line: #dddfd5;
  --font: 'Manrope', sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 14px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

button, input, textarea, select, a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
}

input, textarea, select {
  min-width: 0;
}

input:focus-visible, textarea:focus-visible, select:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 5px;
}

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

[hidden] {
  display: none !important;
}

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

h1, h2, h3, h4 {
  font-weight: 750;
  line-height: 1.2;
}

svg {
  display: block;
}

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}

.section {
  padding-block: 104px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.25px;
  line-height: 1.6;
}

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

.orange-text {
  color: var(--orange);
}

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

.status-dot, .dark-dot, .live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-height: 55px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
  transition: background .2s, transform .2s, box-shadow .2s;
}

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

.button .icon {
  width: 20px;
  height: 20px;
  transition: transform .2s;
}

.button:hover .icon {
  transform: translate(2px, -2px);
}

.button-orange {
  color: var(--ink);
  background: var(--orange);
}

.button-orange:hover {
  background: #ff714d;
  box-shadow: 0 6px 18px #f65b3526;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  background: #3c4037;
  box-shadow: 0 6px 18px #23252118;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  gap: 25px;
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 650;
}

.text-link:hover {
  color: var(--orange-dark);
}

.text-link > span {
  font-size: 20px;
  font-weight: 400;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-200%);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1;
}

.brand-mark {
  display: inline-block;
  margin-right: 8px;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 43px;
  font-weight: 400;
  line-height: 1;
}

.brand-dot {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  gap: 29px;
  padding-left: 35px;
}

.desktop-nav a {
  position: relative;
  padding-block: 15px;
  font-size: 11px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s;
}

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

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

.mobile-nav {
  padding: 12px 28px 24px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
}

/* Hero */
.hero {
  padding-top: 77px;
  padding-bottom: 0;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-copy > .eyebrow {
  margin-bottom: 26px;
}

.hero-copy .status-dot {
  box-shadow: 0 0 0 4px #f65b3510;
}

h1 {
  position: relative;
  width: fit-content;
  font-size: clamp(65px, 6.45vw, 90px);
  line-height: 1.06;
  letter-spacing: -5px;
  font-weight: 750;
}

.title-spark {
  display: inline-block;
  margin-left: 26px;
  vertical-align: 3px;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: .8em;
  font-weight: 400;
  transform: rotate(-8deg);
}

.hero-description {
  max-width: 470px;
  margin-top: 26px;
  color: #666960;
  font-size: 15px;
  line-height: 1.9;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 10px;
}

.hero-note .icon {
  width: 14px;
  height: 14px;
  color: #626c54;
  stroke-width: 2;
}

.hero-art {
  position: relative;
  isolation: isolate;
  padding: 44px 4px 55px;
}

.orbit {
  position: absolute;
  z-index: -2;
  width: 480px;
  height: 480px;
  top: 35px;
  left: 0;
  border: 1px solid #dadbcd;
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(-30deg) scaleX(1.19) scaleY(.93);
}

.orbit-two {
  transform: rotate(-30deg) scaleX(1.35) scaleY(.74);
}

.art-label {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  background: #e9efdf;
  border: 1px solid #d3dcc7;
  border-radius: 5px;
  transform: rotate(5deg);
  font-size: 11px;
  font-weight: 650;
  box-shadow: 0 4px 10px #25271c08;
}

.tiny-spark {
  font-size: 23px;
  line-height: 1;
}

.workflow-board {
  position: relative;
  padding: 25px 25px 17px;
  color: #f7f6f2;
  background: #242722;
  background-image: radial-gradient(ellipse at 70% 40%, #49423540, transparent 65%), radial-gradient(#ffffff0a .7px, transparent .7px);
  background-size: auto, 9px 9px;
  border: 1px solid #484b43;
  border-radius: 17px;
  box-shadow: 0 23px 45px -18px #22291f40, 0 3px 0 #191c19;
  transform: rotate(-2deg);
}

.board-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
  color: #b7bbae;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .8px;
}

.board-topline > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #becda5;
}

.board-dots {
  font-size: 15px;
  letter-spacing: 3px;
  color: #72796a;
}

.workflow-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 80px;
  padding: 17px 15px;
  border: 1px solid #54594a;
  border-radius: 9px;
  background: #34382f;
}

.stage-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: #484e40;
  border: 1px solid #606653;
  border-radius: 9px;
  color: #d9e2c9;
}

.stage-icon .icon {
  width: 20px;
  height: 20px;
}

.stage-kicker {
  display: block;
  margin-bottom: 4px;
  color: #b9c0ad;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .9px;
}

.workflow-stage strong {
  display: block;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.4;
}

.stage-badge {
  align-self: center;
  margin-left: auto;
  padding: 1px 7px;
  color: #cad0be;
  border: 1px solid #59604d;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 8px;
}

.flow-connector {
  position: relative;
  height: 43px;
  width: 1px;
  margin-left: 35px;
  background: #707660;
}

.flow-connector::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #929780;
  border-bottom: 1px solid #929780;
  transform: rotate(45deg);
}

.flow-particle {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  top: 0;
  left: -2px;
  background: #fba772;
  border-radius: 50%;
  box-shadow: 0 0 7px #fa966a;
  animation: flow 3s linear infinite;
}

.flow-connector:nth-of-type(5) .flow-particle {
  animation-delay: 1.5s;
}

.connector-label {
  position: absolute;
  top: 13px;
  left: 16px;
  color: #a1a795;
  font-family: var(--mono);
  font-size: 8px;
  white-space: nowrap;
}

.stage-ai {
  position: relative;
  overflow: hidden;
  min-height: 111px;
  border-color: #c2713e;
  background: linear-gradient(110deg, #533d2d, #3b342b);
  box-shadow: 0 0 26px #f67e2612, inset 0 0 28px #ed722014;
}

.stage-ai .stage-kicker {
  color: #f4b18c;
}

.stage-ai strong {
  color: #ffe1c9;
  font-size: 15px;
}

.stage-detail {
  display: block;
  margin-top: 5px;
  color: #c2ad98;
  font-size: 10px;
}

.ai-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: #fff0d4;
  background: radial-gradient(circle at 30% 25%, #ffd29e, #ef7942 40%, #a83418 85%);
  border-radius: 15px;
  box-shadow: 0 0 30px #ed6e293d, inset 0 1px 2px #ffedbf9e;
}

.ai-orb .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.ai-glint {
  position: absolute;
  right: 13px;
  top: 10px;
  color: #e1955a;
  font-size: 14px;
}

.stage-output {
  background: #343a2e;
  border-color: #687652;
}

.stage-output .stage-icon {
  background: #596644;
  border-color: #7b8c61;
  color: #e2edc8;
}

.board-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  color: #a8af9d;
  font-size: 8px;
}

.board-bottom > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.board-bottom .icon {
  width: 14px;
  height: 14px;
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -19px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 19px;
  background: var(--white);
  border: 1px solid #e8e7df;
  border-radius: 9px;
  box-shadow: 0 10px 30px #28291c12;
  transform: rotate(3deg);
}

.note-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--orange-dark);
  background: #fff0e8;
  border-radius: 50%;
}

.note-icon .icon {
  width: 18px;
  height: 18px;
}

.floating-note strong {
  display: block;
  font-size: 10px;
  font-weight: 750;
}

.floating-note div > span {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 9px;
}

.note-star {
  padding-left: 8px;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 28px;
}

.art-footnote {
  position: absolute;
  bottom: 0;
  left: 8px;
  color: #868a7e;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.3px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 68px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-bottom > span {
  font-size: 12px;
  font-weight: 700;
}

.hero-bottom > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #717567;
  font-size: 11px;
}

.hero-bottom .icon {
  width: 18px;
  height: 18px;
  color: #797f6b;
}

/* Opportunities */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 43px;
}

h2 {
  font-size: clamp(32px, 3.15vw, 44px);
  line-height: 1.2;
  letter-spacing: -1.8px;
}

.section-heading > p {
  max-width: 290px;
  flex-shrink: 0;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.opportunity-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 28px 25px;
  background: #eeeee7;
  border: 1px solid #e5e6dc;
  border-radius: 9px;
  transition: transform .25s, background .25s;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  background: #e9ecdf;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  margin-bottom: 27px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  background: var(--paper);
  border: 1px solid #d9ddcc;
  border-radius: 9px;
}

.feature-icon .icon {
  width: 21px;
  height: 21px;
}

.card-number {
  color: #969b8a;
  font-family: var(--mono);
  font-size: 10px;
}

.opportunity-card h3 {
  font-size: 22px;
  letter-spacing: -.8px;
  line-height: 1.3;
}

.opportunity-card p {
  margin-top: 14px;
  margin-bottom: 25px;
  color: #626858;
  font-size: 13px;
  line-height: 1.9;
}

.card-tag {
  margin-top: auto;
  padding-top: 17px;
  width: 100%;
  border-top: 1px solid #d8dccd;
  color: #676f59;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
}

.integration-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 65px);
  margin-top: 44px;
  padding: clamp(24px, 3.5vw, 44px);
  background: #e9eddf;
  border: 1px solid #d5ddc7;
  border-radius: 12px;
}

.integration-copy .eyebrow {
  color: #50603e;
  font-size: 9px;
}

.integration-copy .eyebrow .icon {
  width: 17px;
  height: 17px;
}

.integration-copy h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.25;
  letter-spacing: -1px;
}

.integration-copy > p {
  margin-top: 20px;
  color: #59634e;
  font-size: 13px;
  line-height: 1.9;
}

.integration-copy .text-link {
  margin-top: 24px;
  font-size: 11px;
}

.integration-values {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-values li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.integration-values li + li {
  padding-top: 23px;
  border-top: 1px solid #cdd6bc;
}

.integration-values .feature-icon {
  flex-shrink: 0;
  color: #50603e;
}

.integration-values h4 {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.integration-values p {
  color: #59634e;
  font-size: 12px;
  line-height: 1.85;
}

.use-case-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  margin-top: 53px;
  padding: 46px;
  color: var(--paper);
  background: #242722;
  border-radius: 12px;
}

.use-case-copy > .eyebrow {
  color: #afba9d;
  font-size: 8px;
}

.use-case-copy h3 {
  margin-top: 19px;
  font-size: 34px;
  letter-spacing: -1.3px;
}

.use-case-copy > p {
  max-width: 270px;
  margin-top: 16px;
  color: #aeb4a6;
  font-size: 11px;
  line-height: 1.9;
}

.case-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 26px;
}

.case-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 12px 14px;
  color: #b5bbab;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: left;
  font-size: 11px;
  transition: background .2s;
}

.case-tabs button:hover {
  background: #ffffff06;
}

.case-tabs button[aria-selected='true'] {
  color: #edf0e6;
  background: #393f32;
  border-color: #515b42;
}

.case-tabs button .icon {
  width: 16px;
  height: 16px;
  opacity: 0;
}

.case-tabs button[aria-selected='true'] .icon {
  color: #c7d5aa;
  opacity: 1;
}

.case-tabs button:focus-visible, .case-example:focus-visible {
  outline-color: #ffc18c;
}

.case-example {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 25px 28px 18px;
  color: var(--ink);
  background: #f2f2eb;
  border: 1px solid #fff;
  border-radius: 9px;
}

.example-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9ddcd;
  color: #777d6b;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .7px;
}

.example-dot {
  width: 6px;
  height: 6px;
  background: #8c9e70;
  border-radius: 50%;
}

.example-label {
  margin-left: auto;
  color: #535e45;
  font-family: var(--font);
  font-size: 9px;
  letter-spacing: 0;
}

.example-before {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding-block: 24px 19px;
}

.before-label {
  padding: 2px 6px;
  background: #e4e6dc;
  border-radius: 3px;
  color: #767b6d;
  font-family: var(--mono);
  font-size: 8px;
}

.example-before p {
  color: #747a69;
  font-size: 11px;
  line-height: 1.8;
}

.example-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.example-divider > span:not(.mini-ai) {
  flex: 1;
  height: 1px;
  background: #d9ddce;
}

.mini-ai {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .5px;
}

.mini-ai .icon {
  width: 16px;
  height: 16px;
}

.example-after h4 {
  max-width: 330px;
  font-size: 22px;
  letter-spacing: -.6px;
}

.example-after p {
  margin-top: 11px;
  color: #6c7461;
  font-size: 11px;
  line-height: 1.9;
}

.example-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px;
  color: #465735;
  background: #e1e8d6;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 650;
}

.example-result .icon {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.example-disclaimer {
  margin-top: auto;
  padding-top: 13px;
  color: #7d8374;
  font-size: 8px;
}

/* Approach */
.approach {
  padding-top: 5px;
}

.approach .section-heading {
  margin-bottom: 48px;
}

.approach .section-heading > p {
  max-width: 270px;
}

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

.step {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #cdd0c2;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-bottom: 26px;
  font-size: 35px;
  letter-spacing: -1.5px;
  font-weight: 500;
}

.step-number > span {
  font-size: 25px;
  font-weight: 400;
  color: #92977f;
}

.step-kicker {
  margin-bottom: 10px;
  color: #6f785f;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.1px;
}

.step h3 {
  margin-bottom: 13px;
  font-size: 19px;
  letter-spacing: -.6px;
}

.step > p {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.step-outcome {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 650;
}

.step-outcome > span {
  color: #828775;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: .7px;
}

.approach-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 43px;
  padding: 16px 22px;
  background: #eeeee7;
  border-radius: 5px;
  color: #767b6b;
  font-size: 10px;
}

.approach-note .icon {
  color: #667553;
  width: 16px;
  height: 16px;
}

.approach-note strong {
  color: #4e5843;
  font-weight: 600;
}

/* Personal, not corporate */
.about {
  background: #eeeee6;
  border-top: 1px solid #e5e5dc;
  border-bottom: 1px solid #e5e5dc;
}

.about-grid {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  align-items: center;
  gap: 95px;
}

.about-art {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 465px;
  padding: 25px 28px;
  overflow: hidden;
  color: #e9eee0;
  background: #303b2a;
  border-radius: 9px;
}

.about-art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(#c9d3ae22 .7px, transparent .7px);
  background-size: 6px 6px;
}

.about-art-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b5c3a2;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.3px;
}

.about-art-top > span:last-child {
  font-size: 23px;
}

.about-orbit {
  position: absolute;
  z-index: -1;
  width: 350px;
  height: 350px;
  top: 29px;
  left: 60px;
  border: 1px solid #70845964;
  border-radius: 50%;
  transform: rotate(-28deg) scaleX(1.25) scaleY(.66);
}

.big-asterisk {
  align-self: center;
  margin-top: 0;
  color: #f9754a;
  font-family: Arial, sans-serif;
  font-size: 245px;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 2px 3px 0 #c34927;
  transform: rotate(-10deg);
}

.about-art-message {
  margin-top: auto;
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -1.2px;
  line-height: 1.17;
}

.about-art-message > span {
  color: #b6c998;
}

.about-art-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #657154;
  color: #a7b596;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .7px;
}

.about-copy h2 {
  margin-bottom: 22px;
  font-size: 35px;
  letter-spacing: -1.4px;
}

.about-copy > p {
  color: #626858;
  font-size: 13px;
  line-height: 1.95;
}

.about-copy > p + p {
  margin-top: 13px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.about-values li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
}

.about-values .icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #6c7b55;
  stroke-width: 2;
}

.about-link {
  padding-block: 5px;
  border-bottom: 1px solid #9ba38b;
}

.about-link .icon {
  width: 17px;
  height: 17px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
}

.faq-grid > div > p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.inline-link {
  border-bottom: 1px solid #a3aa95;
}

.inline-link:hover {
  color: var(--orange-dark);
}

.faq-list {
  border-top: 1px solid #d1d5c7;
}

.faq-list details {
  border-bottom: 1px solid #d1d5c7;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 73px;
  padding-block: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary:hover {
  color: var(--orange-dark);
}

.faq-list summary .icon {
  width: 19px;
  height: 19px;
  color: #7a826b;
  transition: transform .2s;
}

.faq-list details[open] summary .icon {
  transform: rotate(45deg);
  color: var(--orange-dark);
}

.faq-list details p {
  padding: 0 36px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* Conversion */
.contact-section {
  padding-block: 83px;
  background: var(--orange);
  background-image: radial-gradient(ellipse at 5% 90%, #ff8b522e, transparent 65%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}

.contact-copy > .eyebrow {
  font-size: 8px;
  color: #47271b;
}

.dark-dot {
  background: var(--ink);
  width: 6px;
  height: 6px;
}

.contact-copy h2 {
  margin-top: 26px;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -2.3px;
  line-height: 1.13;
}

.contact-copy h2 > span {
  color: #ffc3a2;
}

.contact-copy > p {
  max-width: 365px;
  margin-top: 23px;
  color: #562c20;
  font-size: 12px;
  line-height: 1.9;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #42291d;
  font-size: 11px;
  font-weight: 600;
}

.contact-benefits .icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.contact-signoff {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid #982e204a;
}

.contact-asterisk {
  font-family: Arial, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}

.contact-signoff > span:last-child {
  font-size: 11px;
  color: #573324;
  line-height: 1.8;
}

.contact-signoff strong {
  color: #32251b;
  font-weight: 700;
}

.contact-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid #ffffff90;
  border-radius: 12px;
  box-shadow: 0 18px 40px -15px #7f2c2430;
}

.contact-card h3 {
  font-size: 22px;
  letter-spacing: -.8px;
}

.contact-card > p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

#contact-form {
  margin-top: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 10px;
  font-weight: 650;
}

.form-field label > span:not(.optional) {
  color: var(--orange-dark);
}

.optional {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.form-field input, .form-field textarea, .form-field select {
  display: block;
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid #dedfd5;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.6;
  transition: border-color .2s;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: #91958a;
}

.form-field input:hover, .form-field textarea:hover, .form-field select:hover {
  border-color: #a6ac9a;
}

.form-field input:focus-visible, .form-field textarea:focus-visible, .form-field select:focus-visible {
  outline-width: 2px;
  outline-offset: 2px;
}

.contact-submit {
  justify-content: space-between;
  width: 100%;
  min-height: 49px;
  margin-top: 3px;
  padding: 13px 17px;
  font-size: 11px;
}

.contact-submit:disabled {
  opacity: .65;
  transform: none;
  box-shadow: none;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 13px;
  color: #7c8272;
  font-size: 8px;
  line-height: 1.7;
}

.form-note .icon {
  width: 13px;
  height: 13px;
  margin-top: 1px;
}

.form-status {
  margin-top: 14px;
  padding: 12px;
  color: #3f542c;
  background: #e4ecd9;
  border-radius: 5px;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.form-status[data-state='error'] {
  color: #8d341b;
  background: #fce5da;
}

.form-status a {
  text-decoration: underline;
}

.booking-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #59624c;
  font-size: 10px;
  font-weight: 600;
}

.booking-link:hover {
  color: var(--orange-dark);
}

/* Footer & privacy */
.site-footer {
  padding-top: 41px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 34px;
}

.footer-top .brand {
  font-size: 26px;
}

.footer-top .brand-mark {
  font-size: 36px;
}

.footer-top p {
  color: var(--muted);
  font-size: 11px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
}

.back-to-top > span {
  font-size: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-block: 21px;
  border-top: 1px solid var(--line);
  color: #878c7d;
  font-size: 8px;
}

.privacy-trigger {
  min-height: 30px;
  padding: 0;
  border: 0;
  background: none;
  color: #707766;
  font-size: 9px;
}

.privacy-trigger:hover {
  text-decoration: underline;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .9px;
}

.footer-credit .orange-text {
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.privacy-dialog {
  width: min(570px, calc(100% - 36px));
  max-height: calc(100dvh - 60px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 25px 100px #0003;
}

.privacy-dialog::backdrop {
  background: #1e261dc4;
  backdrop-filter: blur(5px);
}

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

.dialog-top .eyebrow {
  font-size: 8px;
}

.dialog-close {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  font-size: 25px;
  line-height: 1;
}

.privacy-dialog h2 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 30px;
}

.privacy-dialog p {
  margin-block: 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.privacy-dialog .privacy-setup-note {
  padding: 12px;
  background: #eceee3;
  border-radius: 5px;
  color: #606950;
  font-size: 11px;
}

.dialog-confirm {
  margin-top: 8px;
  font-size: 11px;
}

@keyframes flow {
  0% {
    top: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 38px;
    opacity: 0;
  }
}

/* Smaller desktop / tablet */
@media (min-width: 1500px) {
  .hero {
    padding-top: 95px;
  }

  .hero-grid {
    gap: 85px;
  }
}

@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }

  .desktop-nav {
    gap: 20px;
    padding-left: 0;
  }

  .hero-grid {
    gap: 38px;
  }

  h1 {
    font-size: 73px;
    letter-spacing: -4px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .text-link {
    font-size: 10px;
  }

  .hero-actions .button {
    padding-inline: 17px;
    gap: 16px;
    font-size: 11px;
  }

  .workflow-board {
    padding-inline: 18px;
  }

  .workflow-stage {
    gap: 10px;
    padding-inline: 12px;
  }

  .stage-kicker {
    font-size: 7px;
  }

  .workflow-stage strong {
    font-size: 11px;
  }

  .stage-ai strong {
    font-size: 13px;
  }

  .stage-badge {
    display: none;
  }

  .stage-detail {
    font-size: 9px;
  }

  .floating-note {
    right: -10px;
  }

  .orbit {
    width: 400px;
    height: 440px;
  }

  .section-heading {
    gap: 30px;
  }

  .section-heading > p {
    max-width: 250px;
  }

  .use-case-panel {
    padding: 35px;
    gap: 40px;
  }

  .opportunity-card {
    padding: 24px;
  }

  .opportunity-card h3 {
    font-size: 20px;
  }

  .steps-grid {
    gap: 25px;
  }

  .about-grid {
    gap: 55px;
  }

  .about-copy h2 {
    font-size: 31px;
  }

  .faq-grid {
    gap: 65px;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-card {
    padding: 27px;
  }

  .contact-card h3 {
    font-size: 20px;
  }
}

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

  .container {
    width: calc(100% - 56px);
  }

  .section {
    padding-block: 75px;
  }

  .header-inner {
    min-height: 76px;
    gap: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  h1 {
    font-size: 59px;
    letter-spacing: -3px;
  }

  .title-spark {
    margin-left: 18px;
  }

  .hero-copy > .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
  }

  .hero-description {
    font-size: 12px;
  }

  .desktop-break {
    display: none;
  }

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

  .hero-actions .button {
    min-height: 48px;
  }

  .hero-note {
    font-size: 8px;
    gap: 4px;
  }

  .hero-art {
    padding-top: 28px;
  }

  .art-label {
    top: 0;
    right: 0;
    font-size: 9px;
    padding: 8px 12px;
  }

  .workflow-board {
    padding: 19px 14px 14px;
  }

  .board-topline {
    font-size: 7px;
    letter-spacing: .4px;
    margin-bottom: 20px;
  }

  .workflow-stage {
    min-height: 73px;
    gap: 9px;
    padding: 12px 9px;
  }

  .stage-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .stage-kicker {
    font-size: 6px;
    letter-spacing: .4px;
  }

  .workflow-stage strong {
    font-size: 10px;
  }

  .flow-connector {
    margin-left: 25px;
  }

  .stage-ai {
    min-height: 103px;
  }

  .ai-orb {
    width: 36px;
    height: 42px;
    border-radius: 10px;
  }

  .ai-orb .icon {
    width: 23px;
    height: 23px;
  }

  .stage-detail {
    font-size: 7px;
  }

  .ai-glint {
    font-size: 10px;
    right: 9px;
    top: 6px;
  }

  .board-bottom {
    font-size: 6px;
  }

  .floating-note {
    padding: 13px;
    gap: 8px;
    right: -5px;
    bottom: 35px;
  }

  .floating-note strong {
    font-size: 8px;
  }

  .floating-note div > span {
    font-size: 7px;
  }

  .note-star {
    font-size: 23px;
  }

  .note-icon {
    width: 28px;
    height: 28px;
  }

  .art-footnote {
    font-size: 6px;
    letter-spacing: .5px;
  }

  .orbit {
    width: 330px;
    height: 380px;
  }

  .hero-bottom {
    margin-top: 40px;
    gap: 18px;
    flex-wrap: wrap;
    padding-block: 23px;
  }

  .hero-bottom > span {
    width: 100%;
    font-size: 11px;
  }

  .hero-bottom > div {
    font-size: 10px;
  }

  .section-heading {
    gap: 24px;
  }

  h2 {
    font-size: 31px;
    letter-spacing: -1.3px;
  }

  .section-heading > p {
    max-width: 205px;
    font-size: 11px;
  }

  .opportunity-grid {
    gap: 12px;
  }

  .opportunity-card {
    padding: 19px;
  }

  .opportunity-card h3 {
    font-size: 18px;
  }

  .opportunity-card p {
    font-size: 11px;
  }

  .card-tag {
    font-size: 6px;
    letter-spacing: .6px;
  }

  .use-case-panel {
    gap: 27px;
    padding: 28px;
    grid-template-columns: .8fr 1.2fr;
  }

  .use-case-copy h3 {
    font-size: 29px;
  }

  .use-case-copy > .eyebrow {
    font-size: 7px;
  }

  .case-example {
    padding: 20px;
  }

  .example-after h4 {
    font-size: 20px;
  }

  .example-header {
    font-size: 7px;
  }

  .example-label {
    font-size: 8px;
  }

  .example-result {
    font-size: 8px;
  }

  .example-disclaimer {
    font-size: 7px;
  }

  .approach {
    padding-top: 0;
  }

  .approach .section-heading > p {
    max-width: 190px;
  }

  .step h3 {
    font-size: 17px;
  }

  .step > p {
    font-size: 11px;
  }

  .step-outcome {
    gap: 5px;
    font-size: 9px;
  }

  .about-grid {
    gap: 35px;
    grid-template-columns: .85fr 1.15fr;
  }

  .about-art {
    min-height: 475px;
    padding-inline: 21px;
  }

  .about-art-top {
    font-size: 6px;
  }

  .about-art-bottom {
    font-size: 6px;
    letter-spacing: .3px;
  }

  .big-asterisk {
    margin-top: 25px;
    font-size: 200px;
  }

  .about-art-message {
    font-size: 30px;
  }

  .about-copy h2 {
    font-size: 29px;
  }

  .about-copy > p {
    font-size: 11px;
  }

  .about-values li {
    font-size: 9px;
  }

  .faq-grid {
    gap: 40px;
    grid-template-columns: .7fr 1.3fr;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-copy h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }

  .contact-copy > .eyebrow {
    font-size: 6px;
  }

  .contact-copy > p {
    font-size: 11px;
  }

  .contact-benefits li {
    font-size: 10px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

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

  .contact-signoff > span:last-child {
    font-size: 10px;
  }

  .footer-bottom {
    gap: 22px;
  }

  .footer-credit {
    font-size: 6px;
    letter-spacing: .5px;
  }
}

/* Mobile: intentional layouts, not a squeezed desktop */
@media (max-width: 650px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 61px;
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    font-size: 28px;
  }

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

  .header-cta {
    gap: 9px;
    padding: 8px 12px;
    font-size: 9px;
    min-height: 39px;
  }

  .header-cta .icon {
    width: 15px;
    height: 15px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy > .eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  h1 {
    font-size: clamp(54px, 13.7vw, 82px);
    letter-spacing: -3.4px;
    line-height: 1.06;
  }

  .title-spark {
    margin-left: 26px;
  }

  .hero-description {
    max-width: 420px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
  }

  .hero-actions .button {
    min-height: 50px;
    font-size: 11px;
    gap: 16px;
    padding-inline: 17px;
  }

  .hero-actions .text-link {
    gap: 7px;
    font-size: 10px;
  }

  .hero-note {
    margin-top: 14px;
    font-size: 9px;
    gap: 6px;
  }

  .hero-art {
    width: min(440px, calc(100% - 10px));
    margin-inline: auto;
    padding: 35px 4px 55px;
  }

  .workflow-board {
    padding: 23px 20px 17px;
  }

  .art-label {
    top: 6px;
    right: 9px;
    padding: 9px 14px;
    font-size: 10px;
  }

  .board-topline {
    margin-bottom: 23px;
    font-size: 8px;
    letter-spacing: .7px;
  }

  .workflow-stage {
    gap: 12px;
    padding: 15px 12px;
    min-height: 79px;
  }

  .stage-icon {
    width: 36px;
    height: 36px;
  }

  .stage-kicker {
    font-size: 7px;
    letter-spacing: .7px;
  }

  .workflow-stage strong {
    font-size: 12px;
  }

  .stage-badge {
    display: inline;
  }

  .flow-connector {
    margin-left: 30px;
  }

  .stage-ai {
    min-height: 104px;
  }

  .stage-ai strong {
    font-size: 14px;
  }

  .stage-detail {
    font-size: 9px;
  }

  .ai-orb {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }

  .ai-glint {
    top: 10px;
    right: 10px;
  }

  .board-bottom {
    font-size: 7px;
  }

  .floating-note {
    right: -5px;
    padding: 15px;
    bottom: 32px;
    gap: 10px;
  }

  .floating-note strong {
    font-size: 9px;
  }

  .floating-note div > span {
    font-size: 8px;
  }

  .note-icon {
    width: 32px;
    height: 32px;
  }

  .note-star {
    font-size: 26px;
  }

  .art-footnote {
    left: 5px;
    font-size: 6px;
    letter-spacing: .8px;
  }

  .orbit {
    width: 350px;
    height: 430px;
    top: 15px;
    left: 50%;
    translate: -50% 0;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    padding-block: 24px;
  }

  .hero-bottom > span {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .hero-bottom > div {
    font-size: 11px;
  }

  .hero-bottom .icon {
    width: 17px;
    height: 17px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .section-label {
    margin-bottom: 18px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    margin-bottom: 29px;
  }

  h2 {
    font-size: clamp(28px, 7.4vw, 39px);
    letter-spacing: -1.25px;
    line-height: 1.22;
  }

  .section-heading > p {
    max-width: 380px;
    padding: 0;
    font-size: 12px;
  }

  .opportunity-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .opportunity-card {
    padding: 24px;
  }

  .card-top {
    margin-bottom: 21px;
  }

  .opportunity-card h3 {
    font-size: 24px;
  }

  .opportunity-card p {
    max-width: 380px;
    font-size: 13px;
    margin-bottom: 22px;
  }

  .card-tag {
    font-size: 8px;
  }

  .use-case-panel {
    grid-template-columns: 1fr;
    margin-top: 29px;
    padding: 25px 20px 20px;
    gap: 25px;
  }

  .use-case-copy > .eyebrow {
    font-size: 8px;
  }

  .use-case-copy h3 {
    font-size: 32px;
    margin-top: 16px;
  }

  .use-case-copy h3 br {
    display: none;
  }

  .use-case-copy > p {
    max-width: 350px;
    font-size: 12px;
  }

  .case-tabs {
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
  }

  .case-tabs button {
    width: auto;
    padding: 9px 10px;
    font-size: 9px;
    border-color: #414739;
  }

  .case-tabs button .icon {
    display: none;
  }

  .case-example {
    padding: 22px 18px 17px;
    min-height: 360px;
  }

  .example-header {
    font-size: 7px;
  }

  .example-before p, .example-after p {
    font-size: 12px;
  }

  .example-after h4 {
    font-size: 23px;
  }

  .example-result {
    font-size: 9px;
    padding: 11px 9px;
  }

  .example-disclaimer {
    font-size: 8px;
  }

  .approach {
    padding-top: 0;
  }

  .approach .section-heading {
    margin-bottom: 30px;
  }

  .approach .section-heading > p {
    max-width: 380px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .step-number {
    margin-bottom: 20px;
    padding-top: 13px;
    font-size: 36px;
  }

  .step-kicker {
    font-size: 9px;
  }

  .step h3 {
    font-size: 24px;
  }

  .step > p {
    font-size: 13px;
  }

  .step-outcome {
    gap: 10px;
    font-size: 11px;
  }

  .step-outcome > span {
    font-size: 8px;
  }

  .approach-note {
    align-items: flex-start;
    margin-top: 31px;
    font-size: 11px;
    padding: 17px;
  }

  .approach-note .icon {
    margin-top: 2px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-art {
    min-height: 375px;
    padding: 22px 26px;
  }

  .about-art-top {
    font-size: 8px;
  }

  .big-asterisk {
    position: absolute;
    right: 22px;
    top: 28px;
    margin: 0;
    font-size: 220px;
  }

  .about-art-message {
    margin-top: 170px;
    font-size: 35px;
  }

  .about-art-bottom {
    font-size: 7px;
    letter-spacing: .6px;
  }

  .about-copy h2 {
    font-size: 32px;
    line-height: 1.24;
  }

  .about-copy > p {
    font-size: 13px;
  }

  .about-values {
    gap: 14px;
  }

  .about-values li {
    font-size: 11px;
  }

  .about-values .icon {
    margin-top: 3px;
  }

  .about-link {
    font-size: 13px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-grid h2 br {
    display: none;
  }

  .faq-grid > div > p {
    margin-top: 17px;
    font-size: 12px;
  }

  .faq-list summary {
    min-height: 75px;
    font-size: 13px;
  }

  .faq-list details p {
    padding-right: 12px;
    font-size: 13px;
  }

  .contact-section {
    padding-block: 55px;
  }

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

  .contact-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: .7px;
  }

  .contact-copy h2 {
    margin-top: 21px;
    font-size: clamp(37px, 10.1vw, 56px);
    letter-spacing: -1.8px;
  }

  .contact-copy > p {
    max-width: 420px;
    font-size: 13px;
  }

  .contact-benefits {
    gap: 11px;
    margin-top: 23px;
  }

  .contact-benefits li {
    font-size: 12px;
  }

  .contact-signoff {
    margin-top: 28px;
    padding-top: 22px;
  }

  .contact-signoff > span:last-child {
    font-size: 12px;
  }

  .contact-card {
    padding: 25px 22px;
  }

  .contact-card h3 {
    font-size: 24px;
  }

  .contact-card > p {
    font-size: 12px;
    line-height: 1.8;
  }

  #contact-form {
    margin-top: 22px;
  }

  .form-field {
    margin-bottom: 17px;
    gap: 7px;
  }

  .form-field label {
    font-size: 12px;
  }

  .optional {
    font-size: 10px;
  }

  .form-field input, .form-field textarea, .form-field select {
    min-height: 49px;
    padding: 12px;
    font-size: 16px;
  }

  .form-field input::placeholder, .form-field textarea::placeholder {
    font-size: 12px;
  }

  .form-field textarea {
    min-height: 114px;
  }

  .contact-submit {
    min-height: 53px;
    font-size: 12px;
  }

  .form-note {
    margin-top: 15px;
    font-size: 9px;
  }

  .form-status {
    font-size: 12px;
  }

  .booking-link {
    font-size: 11px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 22px;
    padding-bottom: 23px;
  }

  .footer-top p {
    order: 3;
    width: 100%;
    font-size: 11px;
  }

  .back-to-top {
    margin-left: auto;
    gap: 9px;
    font-size: 9px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-block: 17px;
    font-size: 8px;
  }

  .privacy-trigger {
    margin-left: auto;
    font-size: 9px;
  }

  .footer-credit {
    width: 100%;
    margin-left: 0;
    font-size: 7px;
  }

  .privacy-dialog {
    padding: 22px;
  }

  .privacy-dialog h2 {
    font-size: 28px;
  }

  .privacy-dialog p {
    font-size: 13px;
  }
}

/* Keep the longer wordmark readable; contact remains in the mobile menu and hero. */
@media (max-width: 420px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 25px;
  }

  .brand-mark {
    font-size: 33px;
    margin-right: 5px;
  }

  .header-inner {
    gap: 9px;
  }

  .header-cta {
    font-size: 8px;
    padding-inline: 9px;
    gap: 6px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .text-link {
    font-size: 9px;
  }

  .hero-actions .button {
    padding-inline: 13px;
    gap: 10px;
    font-size: 10px;
  }

  .hero-art {
    width: 100%;
  }

  .workflow-board {
    padding-inline: 14px;
  }

  .stage-badge {
    display: none;
  }

  .workflow-stage strong {
    font-size: 11px;
  }

  .stage-kicker {
    font-size: 6px;
  }

  .stage-ai strong {
    font-size: 12px;
  }

  .stage-detail {
    font-size: 8px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .contact-card h3 {
    font-size: 22px;
  }

  .form-field label {
    font-size: 11px;
  }
}

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

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

  .button:hover, .opportunity-card:hover {
    transform: none;
  }
}
