:root {
  --bg: #f3eee6;
  --bg-warm: #eee3d4;
  --paper: rgba(255, 251, 245, 0.9);
  --paper-solid: #fffaf3;
  --ink: #15171c;
  --ink-soft: #4d5260;
  --ink-muted: #777d8c;
  --night: #101722;
  --night-2: #172232;
  --gold: #d28a57;
  --gold-deep: #a85f35;
  --blue: #6ea6b4;
  --green: #9bbf88;
  --line: rgba(22, 29, 42, 0.1);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(18, 25, 38, 0.11);
  --shadow-strong: 0 30px 90px rgba(3, 8, 18, 0.32);
  --radius-lg: 34px;
  --radius-md: 24px;
  --font-body: "Noto Sans SC", "PingFang SC", "Helvetica Neue", sans-serif;
  --font-display: "Noto Serif SC", "Songti SC", serif;
  --font-accent: "Space Grotesk", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(210, 138, 87, 0.2), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(110, 166, 180, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 42%, #e9ddcc 100%);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(20, 26, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 26, 36, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

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

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

ul {
  margin: 0;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar,
.hero__content,
.section,
.footer {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 740px;
  padding: 24px 0 86px;
  color: #f8f2eb;
  background:
    radial-gradient(circle at 17% 12%, rgba(210, 138, 87, 0.34), transparent 24rem),
    radial-gradient(circle at 78% 10%, rgba(110, 166, 180, 0.26), transparent 23rem),
    linear-gradient(142deg, #101722 0%, #172335 46%, #0d131d 100%);
}

.hero__grid-bg,
.hero__orb {
  position: absolute;
  pointer-events: none;
}

.hero__grid-bg {
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.hero__orb {
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.42;
}

.hero__orb--gold {
  top: -12rem;
  left: -9rem;
  background: rgba(210, 138, 87, 0.65);
}

.hero__orb--blue {
  top: 6rem;
  right: -10rem;
  background: rgba(110, 166, 180, 0.45);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 36px rgba(5, 10, 18, 0.34));
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand__text strong {
  font-size: 17px;
  font-weight: 800;
}

.brand__text small {
  color: rgba(248, 242, 235, 0.68);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.topbar__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(248, 242, 235, 0.76);
  font-size: 15px;
}

.topbar__links a,
.case-card__links a,
.product-card a,
.lab-strip a,
.footer__links a {
  transition:
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.topbar__links a:hover,
.topbar__links a:focus-visible,
.footer__links a:hover,
.footer__links a:focus-visible {
  color: #ffd7b8;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, 0.97fr);
  gap: 56px;
  align-items: center;
  padding-top: 86px;
}

.hero__copy {
  min-width: 0;
  animation: reveal-up 720ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.fit-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(44px, 5.3vw, 68px);
  line-height: 1.02;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero__mobile-proof {
  display: none;
}

.hero__lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(248, 242, 235, 0.88);
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 600;
  line-height: 1.64;
}

.hero__sublead {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(248, 242, 235, 0.66);
  font-size: 16px;
  line-height: 1.82;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #11161d;
  background: linear-gradient(135deg, #edb887, #c57745);
  box-shadow: 0 20px 52px rgba(210, 138, 87, 0.28);
}

.button--secondary {
  color: #fff7ef;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(248, 242, 235, 0.8);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 14px;
}

.hero__signals li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edb887, #c57745);
  box-shadow: 0 0 0 3px rgba(237, 184, 135, 0.2);
}

.hero__compact-proof {
  display: none;
  gap: 12px;
  margin-top: 26px;
}

.hero__compact-scene {
  overflow: hidden;
  height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(2, 7, 16, 0.24);
}

.hero__compact-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__compact-cards {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero__compact-cards article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero__compact-cards span {
  color: #ffd7b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero__compact-cards p {
  margin: 8px 0 0;
  color: rgba(248, 242, 235, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 560px;
  animation: reveal-up 780ms 120ms ease both;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 24px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 30% 20%, rgba(210, 138, 87, 0.22), transparent 16rem),
    radial-gradient(circle at 80% 18%, rgba(110, 166, 180, 0.2), transparent 15rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero__scene-frame {
  position: absolute;
  inset: 54px 42px 52px;
  z-index: 1;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 72px rgba(3, 8, 18, 0.34);
}

.hero__scene-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 23, 34, 0.26), transparent 38%),
    linear-gradient(0deg, rgba(16, 23, 34, 0.16), rgba(16, 23, 34, 0.16));
}

.hero__scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(16, 23, 34, 0.72);
  box-shadow: 0 22px 54px rgba(2, 7, 16, 0.28);
  backdrop-filter: blur(12px);
}

.mission-card span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #11161d;
  background: linear-gradient(135deg, #edb887, #c57745);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
}

.mission-card strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
}

.mission-card p {
  margin: 8px 0 0;
  color: rgba(248, 242, 235, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.mission-card--main {
  top: 0;
  left: 0;
}

.mission-card--right {
  top: 74px;
  right: 0;
}

.mission-card--bottom {
  right: 44px;
  bottom: 0;
}

.hero__phone-stack {
  position: absolute;
  inset: 72px 40px 64px;
  z-index: 2;
}

.phone {
  position: absolute;
  width: 158px;
  border: 9px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.phone--a {
  left: 18px;
  bottom: 30px;
  transform: rotate(-10deg);
  animation: float-a 8s ease-in-out infinite;
}

.phone--b {
  left: 50%;
  top: 14px;
  z-index: 2;
  width: 174px;
  transform: translateX(-50%);
  animation: float-b 7s ease-in-out infinite;
}

.phone--c {
  right: 18px;
  bottom: 58px;
  transform: rotate(10deg);
  animation: float-c 9s ease-in-out infinite;
}

.section {
  padding-top: 96px;
}

.section__heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section__heading--light h2,
.section__heading--light .section__lead {
  color: #f9f2eb;
}

.section h2,
.fit-card h2,
.contact-copy h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.16;
}

.section__lead {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.92fr 0.92fr;
  gap: 18px;
}

.solution-card,
.case-card,
.product-card,
.process-card,
.fit-card,
.qr-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.solution-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(110, 166, 180, 0.14), transparent 15rem),
    var(--paper);
}

.solution-card__scene {
  overflow: hidden;
  min-height: 198px;
  margin: -26px -26px 18px;
  border-radius: 34px 34px 22px 22px;
  background: rgba(16, 23, 34, 0.08);
}

.solution-card__scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card--featured {
  min-height: 100%;
  color: #fff8ee;
  background:
    radial-gradient(circle at top right, rgba(210, 138, 87, 0.28), transparent 18rem),
    linear-gradient(155deg, #152032 0%, #101722 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.solution-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.solution-card__head span,
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(210, 138, 87, 0.13);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 800;
}

.solution-card--featured .solution-card__head span {
  color: #11161d;
  background: linear-gradient(135deg, #edb887, #c57745);
}

.solution-card__head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card--featured .solution-card__head p {
  color: rgba(255, 248, 238, 0.62);
}

.solution-card h3,
.case-card h3,
.product-card h3,
.process-card h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.25;
}

.solution-card p,
.case-card p,
.product-card p,
.process-card p,
.fit-card li,
.qr-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.solution-card p,
.case-card p,
.product-card p,
.process-card p,
.qr-card p {
  margin: 14px 0 0;
}

.solution-card--featured p {
  color: rgba(255, 248, 238, 0.72);
}

.solution-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.solution-card__chips span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(18, 25, 38, 0.12);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.solution-card__chips i {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(168, 95, 53, 0.62);
  border-radius: 3px;
  background: rgba(210, 138, 87, 0.18);
}

.solution-card--featured .solution-card__chips span {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 248, 238, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.solution-card--featured .solution-card__chips i {
  border-color: rgba(255, 232, 210, 0.7);
  background: rgba(210, 138, 87, 0.34);
}

.solution-card__link,
.card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff7ef;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.solution-card__link:hover,
.solution-card__link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 217, 189, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.section--dark {
  width: 100%;
  max-width: none;
  margin-top: 104px;
  padding: 96px max(20px, calc((100vw - 1180px) / 2)) 104px;
  color: #f9f2eb;
  background:
    radial-gradient(circle at 14% 18%, rgba(210, 138, 87, 0.22), transparent 24rem),
    radial-gradient(circle at 86% 12%, rgba(110, 166, 180, 0.22), transparent 22rem),
    linear-gradient(180deg, #121b29 0%, #0e151f 100%);
}

.section--dark .section__heading,
.section--dark .case-grid {
  width: min(1180px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  grid-auto-flow: row dense;
}

.case-card {
  --case-accent-glow: rgba(210, 138, 87, 0.24);
  --case-pill-ink: #ffd9bd;
  --case-pill-border: rgba(255, 217, 189, 0.45);
  --case-pill-bg: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #f9f2eb;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045) 65%),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.case-card::before {
  content: "";
  position: absolute;
  top: -7rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: var(--case-accent-glow);
  filter: blur(10px);
  opacity: 0.85;
  pointer-events: none;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card--seo {
  --case-accent-glow: rgba(210, 138, 87, 0.26);
  --case-pill-ink: #ffe4cc;
  --case-pill-border: rgba(255, 221, 192, 0.54);
  --case-pill-bg: rgba(255, 255, 255, 0.1);
}

.case-card--b2b {
  --case-accent-glow: rgba(110, 166, 180, 0.28);
  --case-pill-ink: #d9edf2;
  --case-pill-border: rgba(160, 208, 219, 0.55);
  --case-pill-bg: rgba(110, 166, 180, 0.18);
}

.case-card--risk {
  --case-accent-glow: rgba(168, 121, 98, 0.25);
  --case-pill-ink: #f5ddd0;
  --case-pill-border: rgba(233, 189, 163, 0.5);
  --case-pill-bg: rgba(255, 228, 210, 0.1);
}

.case-card--newpower {
  --case-accent-glow: rgba(80, 145, 208, 0.3);
  --case-pill-ink: #d8ecff;
  --case-pill-border: rgba(170, 211, 255, 0.52);
  --case-pill-bg: rgba(98, 162, 224, 0.19);
}

.case-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
  background:
    radial-gradient(circle at top right, rgba(210, 138, 87, 0.18), transparent 20rem),
    linear-gradient(165deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05) 66%),
    rgba(255, 255, 255, 0.05);
}

.case-card--b2b {
  grid-column: 1 / 5;
}

.case-card--risk {
  grid-column: 5 / 9;
}

.case-card--newpower {
  grid-column: 9 / -1;
}

/* Optional compare mode: left large card + right stacked cards. */
.case-grid.case-grid--split {
  grid-template-columns: 1.1fr 0.9fr;
}

.case-grid.case-grid--split .case-card--wide {
  grid-column: auto;
  min-height: 420px;
}

.case-grid.case-grid--split .case-card--b2b,
.case-grid.case-grid--split .case-card--risk,
.case-grid.case-grid--split .case-card--newpower {
  grid-column: auto;
}

.case-grid.case-grid--split .case-card__shots {
  height: 232px;
}

.case-grid.case-grid--split .case-card__shot-link,
.case-grid.case-grid--split .case-card__shot {
  height: 100%;
  min-height: 0;
}

.case-card h3 {
  margin-top: 16px;
  max-width: 22ch;
}

.case-card__shots {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin: -26px -26px 16px;
  padding: 12px;
  border-radius: 34px 34px 20px 20px;
  background: rgba(6, 11, 18, 0.22);
}

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

.case-card__shot-link {
  min-width: 0;
  display: block;
  border-radius: 15px;
  transition: transform 180ms ease;
}

.case-card__shot-link:hover,
.case-card__shot-link:focus-visible {
  transform: translateY(-2px);
}

.case-card__shot-link:focus-visible {
  outline: 2px solid rgba(255, 220, 194, 0.86);
  outline-offset: 2px;
}

.case-card__shot-link:hover .case-card__shot,
.case-card__shot-link:focus-visible .case-card__shot {
  border-color: rgba(255, 227, 203, 0.52);
}

.case-card__shot {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.case-card--wide .case-card__shot {
  min-height: 172px;
}

.case-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-card__shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 246, 238, 0.94);
  background: rgba(9, 14, 22, 0.58);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card__meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--case-pill-border);
  border-radius: 999px;
  color: var(--case-pill-ink);
  background: var(--case-pill-bg);
  font-size: 13px;
  font-weight: 700;
}

.case-card__meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentcolor;
  opacity: 0.78;
}

.case-card > p {
  color: rgba(249, 242, 235, 0.72);
}

.case-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.case-card__links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff5ea;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.case-card__links a:hover,
.case-card__links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 217, 189, 0.5);
}

.case-card__note {
  margin-top: 18px !important;
  color: rgba(255, 217, 189, 0.78) !important;
}

.case-card__matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.case-card:not(.case-card--wide) .case-card__matrix {
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
}

.case-card__matrix div {
  min-height: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(8, 12, 19, 0.2);
}

.case-card__matrix small {
  display: inline-block;
  color: var(--case-pill-ink);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.case-card__matrix p {
  margin: 8px 0 0;
  color: rgba(255, 245, 234, 0.78);
  font-size: 14px;
  line-height: 1.68;
}

.case-card__flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.case-card__flow span {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 245, 234, 0.88);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 700;
}

.case-card__flow i {
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.section--products {
  padding-top: 96px;
}

.lab-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--shadow);
}

.lab-strip span {
  display: block;
  color: var(--gold-deep);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.lab-strip a,
.product-card a {
  color: var(--gold-deep);
  font-weight: 800;
}

.lab-strip a:hover,
.product-card a:hover,
.lab-strip a:focus-visible,
.product-card a:focus-visible {
  color: #7d4428;
  transform: translateY(-1px);
}

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

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-solid);
}

.product-card__visual {
  position: relative;
  min-height: 280px;
  padding: 24px 24px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 138, 87, 0.18), transparent 16rem),
    linear-gradient(180deg, #f4e9da 0%, #fff9f2 100%);
}

.product-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0), #fff9f2);
}

.product-card__screen {
  width: min(190px, 68%);
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 24px 62px rgba(18, 25, 38, 0.2);
}

.product-card__body {
  padding: 22px 22px 24px;
}

.product-card__title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.product-card__title img {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(18, 25, 38, 0.14);
}

.product-card__title span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__title h3 {
  margin: 4px 0 0;
}

.product-card a {
  display: inline-flex;
  margin-top: 16px;
}

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

.process-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.process-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-card__icon {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(18, 25, 38, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.process-card__icon::before,
.process-card__icon::after {
  content: "";
  position: absolute;
}

.process-card__icon--diagnose::before {
  inset: 10px;
  border: 2px solid rgba(168, 95, 53, 0.52);
  border-radius: 999px;
}

.process-card__icon--diagnose::after {
  right: 8px;
  bottom: 8px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: rgba(168, 95, 53, 0.82);
  transform: rotate(38deg);
}

.process-card__icon--plan::before {
  top: 10px;
  left: 9px;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: rgba(168, 95, 53, 0.78);
  box-shadow:
    0 7px 0 rgba(168, 95, 53, 0.58),
    0 14px 0 rgba(168, 95, 53, 0.38);
}

.process-card__icon--build::before {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(168, 95, 53, 0.82);
  box-shadow:
    11px 0 0 rgba(168, 95, 53, 0.64),
    0 11px 0 rgba(168, 95, 53, 0.5),
    11px 11px 0 rgba(168, 95, 53, 0.35);
}

.process-card__icon--review::before {
  top: 11px;
  left: 9px;
  width: 17px;
  height: 10px;
  border-left: 2px solid rgba(168, 95, 53, 0.78);
  border-bottom: 2px solid rgba(168, 95, 53, 0.78);
  transform: rotate(-45deg);
}

.process-card h3 {
  margin-top: 20px;
}

.section--fit {
  margin-top: 28px;
  padding-top: 84px;
  border-top: 1px solid var(--line);
}

.fit-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.fit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fit-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(168, 95, 53, 0), rgba(168, 95, 53, 0.32), rgba(168, 95, 53, 0));
  transform: translateX(-50%);
  pointer-events: none;
}

.fit-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
}

.fit-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -56px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.5;
}

.fit-card--good {
  border-color: rgba(79, 122, 65, 0.3);
  background:
    radial-gradient(circle at top right, rgba(155, 191, 136, 0.2), transparent 20rem),
    var(--paper);
}

.fit-card--good::after {
  background: radial-gradient(circle at center, rgba(155, 191, 136, 0.35), rgba(155, 191, 136, 0));
}

.fit-card--quiet {
  border-color: rgba(168, 95, 53, 0.3);
  background:
    radial-gradient(circle at top right, rgba(210, 138, 87, 0.16), transparent 20rem),
    rgba(255, 250, 243, 0.78);
}

.fit-card--quiet::after {
  background: radial-gradient(circle at center, rgba(210, 138, 87, 0.28), rgba(210, 138, 87, 0));
}

.fit-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.fit-card__status i {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid;
  border-radius: 999px;
}

.fit-card__status--good {
  color: #3f6943;
  border-color: rgba(79, 122, 65, 0.28);
  background: rgba(79, 122, 65, 0.1);
}

.fit-card__status--good i {
  border-color: rgba(63, 105, 67, 0.6);
}

.fit-card__status--good i::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #3f6943;
  border-bottom: 2px solid #3f6943;
  transform: rotate(40deg);
}

.fit-card__status--quiet {
  color: #7f4a2c;
  border-color: rgba(168, 95, 53, 0.32);
  background: rgba(210, 138, 87, 0.12);
}

.fit-card__status--quiet i {
  border-color: rgba(127, 74, 44, 0.6);
}

.fit-card__status--quiet i::before,
.fit-card__status--quiet i::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  background: #7f4a2c;
}

.fit-card__status--quiet i::before {
  top: 3px;
  width: 2px;
  height: 7px;
}

.fit-card__status--quiet i::after {
  bottom: 3px;
  width: 2px;
  height: 2px;
}

.fit-card ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-left: 20px;
}

.fit-card__hint {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

.fit-list {
  margin-top: 20px !important;
  padding: 0 !important;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 20px;
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.fit-list--good li::before {
  content: "+";
  color: #4f7a41;
}

.fit-list--quiet li::before {
  content: "-";
  color: var(--gold-deep);
}

.section--contact {
  padding: 84px 0 100px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  padding: 30px;
  border-radius: 42px;
  color: #f9f2eb;
  background:
    radial-gradient(circle at 86% 14%, rgba(210, 138, 87, 0.22), transparent 18rem),
    linear-gradient(145deg, #121b29 0%, #0e151f 100%);
  box-shadow: var(--shadow-strong);
}

.contact-copy {
  max-width: 700px;
}

.contact-copy p {
  margin: 18px 0 0;
  color: rgba(249, 242, 235, 0.72);
  font-size: 17px;
  line-height: 1.9;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-topics li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(249, 242, 235, 0.9);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.contact-topics li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edb887, #c57745);
}

.contact-copy__email {
  margin-top: 16px !important;
  font-size: 16px !important;
  color: rgba(249, 242, 235, 0.84) !important;
}

.contact-copy__email a {
  color: #ffd9bd;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-copy__email a:hover,
.contact-copy__email a:focus-visible {
  color: #ffe9d7;
}

.qr-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
  border-radius: 30px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: #ffffff;
}

.qr-image {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.qr-card p {
  color: rgba(249, 242, 235, 0.72);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 34px;
  color: rgba(29, 34, 44, 0.68);
  font-size: 14px;
}

.footer p {
  margin: 0;
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.service-page {
  background:
    linear-gradient(180deg, #fbf6ef 0%, #f2eadf 42%, #e9ddcc 100%);
}

.service-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  padding: 24px 0 72px;
  color: #f8f2eb;
  background: #101722;
}

.service-hero__image,
.service-hero__shade {
  position: absolute;
  inset: 0;
}

.service-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 18, 28, 0.94) 0%, rgba(12, 18, 28, 0.76) 44%, rgba(12, 18, 28, 0.36) 100%),
    linear-gradient(180deg, rgba(12, 18, 28, 0.18), rgba(12, 18, 28, 0.86));
}

.service-hero .topbar,
.service-hero__content {
  position: relative;
  z-index: 1;
}

.service-hero__content {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 106px;
}

.service-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(248, 242, 235, 0.86);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.72;
}

.service-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-hero__signals li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(248, 242, 235, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.service-hero__signals li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edb887, #c57745);
}

.service-section {
  padding-top: 88px;
}

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

.service-flow article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--shadow);
}

.service-flow span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(210, 138, 87, 0.13);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 800;
}

.service-flow h3 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.28;
}

.service-flow p,
.service-split p,
.service-prep-list li,
.service-pilot-list span {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.service-flow p {
  margin: 12px 0 0;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.94), rgba(255, 250, 243, 0.78)),
    #fffaf3;
  box-shadow: var(--shadow);
}

.service-split h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.service-split p {
  margin: 18px 0 0;
}

.service-pilot-list {
  display: grid;
  gap: 12px;
}

.service-pilot-list div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(18, 25, 38, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.service-pilot-list strong {
  display: block;
  color: var(--gold-deep);
  font-family: var(--font-accent);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.service-pilot-list span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.service-cases {
  margin-top: 92px;
}

.service-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-fit-grid .fit-card h2 {
  font-size: clamp(26px, 2.7vw, 36px);
}

.service-section--prep {
  padding-top: 72px;
}

.service-split--prep {
  align-items: start;
}

.service-prep-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-prep-list li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(18, 25, 38, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.service-prep-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 15px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #edb887, #c57745);
}

.intake-hero {
  min-height: auto;
  padding-bottom: 38px;
}

.intake-hero .service-hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 18, 28, 0.94) 0%, rgba(12, 18, 28, 0.8) 48%, rgba(12, 18, 28, 0.42) 100%),
    linear-gradient(180deg, rgba(12, 18, 28, 0.2), rgba(12, 18, 28, 0.88));
}

.intake-hero__content {
  padding-top: 46px;
}

.intake-hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0;
}

.intake-hero .service-hero__lead {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}

.intake-section {
  padding-top: 34px;
}

.intake-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.94), rgba(255, 250, 243, 0.82)),
    #fffaf3;
  box-shadow: var(--shadow);
}

.intake-draft-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(75, 120, 94, 0.22);
  border-radius: 18px;
  color: #31583e;
  background: rgba(233, 246, 238, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.intake-draft-note::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4b785e;
}

.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.intake-grid--opening {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.intake-choice-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.intake-choice-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 800;
}

.intake-choice-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 25, 38, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-weight: 800;
}

.intake-choice-group input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--gold-deep);
}

.intake-choice-group label:has(input:checked) {
  border-color: rgba(168, 95, 53, 0.42);
  color: var(--ink);
  background: rgba(224, 143, 86, 0.16);
}

.intake-form label,
.intake-summary {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

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

.intake-brief {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.intake-form input,
.intake-form select,
.intake-form textarea,
.intake-summary textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 25, 38, 0.14);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  line-height: 1.6;
}

.intake-form .intake-choice-group label {
  display: flex;
}

.intake-form .intake-choice-group input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.intake-form textarea,
.intake-summary textarea {
  resize: vertical;
}

.intake-brief textarea {
  min-height: 190px;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus,
.intake-summary textarea:focus {
  border-color: rgba(168, 95, 53, 0.5);
  outline: 3px solid rgba(210, 138, 87, 0.18);
}

.intake-fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(18, 25, 38, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
}

.intake-fieldset--visible {
  margin-bottom: 0;
}

.intake-fieldset legend {
  padding: 0 8px;
  color: var(--gold-deep);
  font-weight: 800;
}

.intake-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 25, 38, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-size: 14px;
}

.intake-fieldset input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--gold-deep);
}

.intake-voice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-top: -2px;
}

.intake-voice-actions[hidden] {
  display: none;
}

.intake-voice-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(168, 95, 53, 0.28);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(210, 138, 87, 0.11);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.intake-voice-button:hover,
.intake-voice-button:focus-visible {
  border-color: rgba(168, 95, 53, 0.48);
  background: rgba(210, 138, 87, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.intake-voice-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(210, 138, 87, 0.16);
}

.intake-voice-button:disabled {
  cursor: not-allowed;
  border-color: rgba(18, 25, 38, 0.14);
  color: rgba(29, 34, 44, 0.52);
  background: rgba(18, 25, 38, 0.04);
  opacity: 1;
}

.intake-voice-button__icon {
  position: relative;
  width: 14px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.intake-voice-button__icon::before,
.intake-voice-button__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.intake-voice-button__icon::before {
  bottom: -6px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
}

.intake-voice-button__icon::after {
  bottom: -8px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
}

.intake-voice-actions.is-listening .intake-voice-button {
  border-color: rgba(18, 25, 38, 0.18);
  color: #fff7ef;
  background: #15171c;
  box-shadow: 0 12px 30px rgba(18, 25, 38, 0.16);
}

.intake-voice-actions.is-listening .intake-voice-button__icon {
  color: #f2b37f;
}

.intake-voice-actions.is-error .intake-voice-button {
  border-color: rgba(168, 95, 53, 0.3);
  color: var(--gold-deep);
  background: rgba(168, 95, 53, 0.08);
}

.intake-voice-actions p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.intake-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.intake-form__actions p,
.intake-copy-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.intake-result-section[hidden] {
  display: none;
}

.intake-send-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: start;
}

.intake-send-panel__message {
  min-width: 0;
}

.intake-send-panel__message > p {
  max-width: 68ch;
}

.intake-action-list {
  display: grid;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(18, 25, 38, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.intake-action-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  border-top: 1px solid rgba(18, 25, 38, 0.08);
}

.intake-action-item:first-child {
  border-top: 0;
}

.intake-action-item--primary {
  background: rgba(255, 250, 243, 0.72);
}

.intake-action-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff8ef;
  background: #15171c;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 800;
}

.intake-action-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.intake-action-item p {
  max-width: 62ch;
  margin: 8px 0 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.intake-action-item .button {
  width: auto;
}

.intake-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intake-email-manual[hidden] {
  display: none;
}

.intake-email-manual textarea {
  min-height: 220px;
  font-size: 16px;
  -webkit-user-select: text;
  user-select: text;
}

.intake-action-item .button--secondary {
  color: var(--gold-deep);
  border-color: rgba(168, 95, 53, 0.26);
  background: rgba(210, 138, 87, 0.1);
}

.intake-action-item .button--secondary:hover,
.intake-action-item .button--secondary:focus-visible {
  border-color: rgba(168, 95, 53, 0.44);
  background: rgba(210, 138, 87, 0.16);
}

.intake-action-item .intake-summary {
  margin: 12px 0;
}

.intake-send-panel .qr-card {
  width: 100%;
  border-color: rgba(18, 25, 38, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.intake-send-panel .qr-placeholder {
  border-color: rgba(18, 25, 38, 0.12);
}

.intake-send-panel .qr-card p {
  margin-top: 0;
  color: var(--ink-soft);
}

.intake-send-panel .qr-card a {
  color: var(--gold-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.intake-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.intake-result-actions .button {
  width: auto;
}

.intake-summary {
  margin-top: 18px;
}

.intake-summary textarea {
  min-height: 420px;
  font-family: var(--font-body);
}

.intake-summary--compact textarea {
  min-height: 76px;
  font-weight: 800;
}

.intake-public-page .topbar {
  padding-top: 24px;
  color: var(--ink);
}

.intake-public-page .brand__mark {
  filter: none;
}

.intake-public-page .brand__text small,
.intake-public-page .topbar__links {
  color: var(--ink-muted);
}

.intake-public-page .topbar__links a:hover,
.intake-public-page .topbar__links a:focus-visible {
  color: var(--gold-deep);
}

.intake-public-section {
  padding: 58px 0 96px;
}

.intake-public-section h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
}

.intake-public-card,
.intake-public-empty {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(18, 25, 38, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--shadow);
}

.intake-public-lookup {
  display: flex;
  align-items: end;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(18, 25, 38, 0.1);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.72);
}

.intake-public-lookup label {
  display: grid;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.intake-public-lookup input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 25, 38, 0.14);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-family: var(--font-accent);
  font-weight: 800;
  line-height: 1.4;
}

.intake-public-lookup input:focus {
  border-color: rgba(168, 95, 53, 0.5);
  outline: 3px solid rgba(210, 138, 87, 0.18);
}

.intake-public-lookup .button {
  width: auto;
  flex: 0 0 auto;
}

.intake-public-card[hidden],
.intake-public-empty[hidden] {
  display: none;
}

.intake-public-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(18, 25, 38, 0.08);
}

.intake-public-card__header h2 {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.intake-public-card__header span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(79, 122, 65, 0.24);
  border-radius: 999px;
  color: #3f6943;
  background: rgba(79, 122, 65, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.intake-public-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
}

.intake-public-meta div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(18, 25, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.intake-public-meta dt {
  margin: 0 0 6px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 800;
}

.intake-public-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.intake-public-brief {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
}

.intake-public-brief h3,
.intake-public-empty h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.intake-public-brief p,
.intake-public-empty p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-wrap;
}

.intake-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.intake-public-actions .button,
.intake-public-empty .button {
  width: auto;
}

.intake-public-actions .button--secondary {
  color: var(--gold-deep);
  border-color: rgba(168, 95, 53, 0.26);
  background: rgba(210, 138, 87, 0.1);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-a {
  0%,
  100% {
    transform: rotate(-10deg) translateY(8px);
  }

  50% {
    transform: rotate(-8deg) translateY(-8px);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translateX(-50%) translateY(-8px);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes float-c {
  0%,
  100% {
    transform: rotate(10deg) translateY(8px);
  }

  50% {
    transform: rotate(8deg) translateY(-6px);
  }
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero__content,
  .service-hero__content,
  .solution-grid,
  .service-flow,
  .service-split,
  .case-grid,
  .case-grid.case-grid--split,
  .contact-shell,
  .service-fit-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__visual {
    min-height: 500px;
  }

  .case-card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .case-card__shots {
    margin-top: -22px;
    margin-left: -22px;
    margin-right: -22px;
  }

  .case-card__shots--dual {
    grid-template-columns: 1fr;
  }

  .case-grid.case-grid--split .case-card__shots {
    height: auto;
  }

  .case-grid.case-grid--split .case-card__shot-link,
  .case-grid.case-grid--split .case-card__shot {
    height: auto;
  }

  .case-card__shot,
  .case-card--wide .case-card__shot {
    min-height: 152px;
  }

  .case-card--b2b,
  .case-card--risk,
  .case-card--newpower {
    grid-column: auto;
  }

  .case-card:not(.case-card--wide) .case-card__matrix {
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  }

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

  .product-card {
    display: grid;
    grid-template-columns: 280px 1fr;
  }

  .product-card__visual {
    min-height: 100%;
  }

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

@media (max-width: 780px) {
  .topbar,
  .lab-strip,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__links,
  .footer__links {
    justify-content: flex-start;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero__content {
    padding-top: 58px;
    gap: 42px;
  }

  .hero__visual {
    display: none;
  }

  .hero__compact-proof {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .hero__lead {
    font-size: 19px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .mission-card {
    width: 180px;
    padding: 15px;
  }

  .mission-card--right {
    top: 86px;
  }

  .mission-card--bottom {
    right: 16px;
  }

  .phone {
    width: 128px;
    border-width: 7px;
  }

  .phone--b {
    width: 142px;
  }

  .section {
    padding-top: 72px;
  }

  .service-hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .service-hero__shade {
    background:
      linear-gradient(180deg, rgba(12, 18, 28, 0.92) 0%, rgba(12, 18, 28, 0.78) 58%, rgba(12, 18, 28, 0.9) 100%);
  }

  .service-hero__content {
    padding-top: 52px;
  }

  .intake-hero {
    padding-bottom: 32px;
  }

  .intake-hero__content {
    padding-top: 32px;
  }

  .intake-section {
    padding-top: 28px;
  }

  .service-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .service-section {
    padding-top: 72px;
  }

  .service-split {
    padding: 24px;
  }

  .intake-grid,
  .intake-fieldset,
  .intake-choice-group {
    grid-template-columns: 1fr;
  }

  .section h2,
  .fit-card h2,
  .contact-copy h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .section--dark {
    margin-top: 72px;
    padding-top: 72px;
    padding-bottom: 78px;
  }

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

  .case-card__matrix,
  .case-card:not(.case-card--wide) .case-card__matrix {
    grid-template-columns: 1fr;
  }

  .fit-grid::before {
    display: none;
  }

  .product-card__visual {
    min-height: 260px;
  }

  .contact-shell {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .topbar,
  .hero__content,
  .service-hero__content,
  .section,
  .footer {
    width: calc(100% - 28px);
  }

  .topbar__links {
    gap: 12px;
    font-size: 14px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(46px, 15vw, 58px);
    line-height: 1.05;
  }

  .hero h1 > span {
    white-space: normal;
  }

  .hero__copy,
  .hero__actions,
  .hero__lead,
  .hero__sublead,
  .hero__signals,
  .hero__compact-proof,
  .hero__mobile-proof {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero__lead,
  .hero__sublead {
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 1.72;
  }

  .hero__sublead {
    font-size: 15px;
    line-height: 1.85;
  }

  .service-hero h1,
  .service-hero__lead,
  .service-hero__signals {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .service-hero h1,
  .service-hero__lead,
  .service-flow p,
  .service-split p,
  .service-prep-list li,
  .intake-form input,
  .intake-form textarea,
  .intake-summary textarea,
  .intake-fieldset label {
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .service-hero__lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .intake-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .intake-hero .service-hero__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-page .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page .button {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 14px;
  }

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

  .service-hero__signals li {
    justify-content: center;
    min-height: 34px;
    padding: 7px 9px;
    font-size: 13px;
    text-align: center;
  }

  .service-flow article,
  .service-split,
  .service-fit-grid .fit-card,
  .intake-form {
    padding: 20px;
    border-radius: 24px;
  }

  .intake-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .intake-voice-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .intake-voice-actions .button,
  .intake-action-item .button,
  .intake-form__actions .button,
  .intake-result-actions .button {
    width: 100%;
  }

  .intake-action-list {
    border-radius: 20px;
  }

  .intake-action-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .intake-public-section {
    padding-top: 36px;
  }

  .intake-public-card,
  .intake-public-empty {
    padding: 20px;
    border-radius: 24px;
  }

  .intake-public-card__header {
    flex-direction: column;
  }

  .intake-public-lookup {
    align-items: stretch;
    flex-direction: column;
  }

  .intake-public-lookup .button {
    width: 100%;
  }

  .intake-public-meta {
    grid-template-columns: 1fr;
  }

  .intake-public-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .intake-public-actions .button,
  .intake-public-empty .button {
    width: 100%;
  }

  .button {
    max-width: calc(100vw - 28px);
    width: 100%;
  }

  .hero__signals {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero__signals::-webkit-scrollbar {
    display: none;
  }

  .hero__signals li {
    flex: 0 0 auto;
  }

  .hero__compact-cards {
    grid-template-columns: 1fr;
  }

  .hero__mobile-proof {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .mobile-proof-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.065);
  }

  .mobile-proof-card strong {
    display: block;
    color: #fff7ef;
    font-size: 20px;
  }

  .mobile-proof-card span {
    display: block;
    margin-top: 6px;
    color: rgba(248, 242, 235, 0.68);
    font-size: 14px;
    line-height: 1.7;
  }

  .mobile-proof-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background:
      radial-gradient(circle at 30% 0%, rgba(210, 138, 87, 0.18), transparent 12rem),
      rgba(255, 255, 255, 0.05);
  }

  .mobile-proof-images img {
    min-width: 0;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  }

  .hero__visual {
    min-height: 380px;
  }

  .hero__visual::before {
    inset: 28px 0 34px;
  }

  .mission-card {
    width: 160px;
  }

  .mission-card--main {
    left: 0;
  }

  .mission-card--right {
    right: 0;
  }

  .mission-card--bottom {
    right: 18px;
  }

  .hero__phone-stack {
    inset: 88px 12px 72px;
  }

  .phone {
    width: 104px;
  }

  .phone--b {
    width: 118px;
  }

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

  .solution-card,
  .case-card,
  .fit-card {
    padding: 22px;
  }
}
