:root {
  --bg: #ffffff;
  --text: #172026;
  --muted: #5d6a72;
  --faint: #eef2f1;
  --line: #d9e2df;
  --dark: #071619;
  --teal: #00796f;
  --teal-dark: #006056;
  --teal-soft: #e5f4f1;
  --amber: #c7872b;
  --green: #25a06d;
  --shadow: 0 24px 70px rgba(12, 31, 35, 0.1);
  --shadow-strong: 0 34px 90px rgba(7, 22, 25, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #25a06d, var(--amber));
  transform-origin: left center;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header[data-elevated="true"] {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(12, 31, 35, 0.06);
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.brand {
  font-size: 21px;
}

.brand-mark,
.mini-brand svg {
  width: 28px;
  height: 28px;
  fill: var(--teal);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #1d292f;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 12px 0;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.btn:focus-visible,
.menu-button:focus-visible,
.segment:focus-visible,
.side-item:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.24) 48%, transparent 60% 100%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 180ms ease,
    transform 520ms ease;
}

.btn.primary:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.btn.primary {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  box-shadow: 0 10px 24px rgba(0, 121, 111, 0.18);
}

.btn.primary:hover {
  background: var(--teal-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--text);
}

.btn.large {
  min-height: 56px;
  padding-inline: 26px;
  font-size: 16px;
}

.btn.full {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 44px clamp(20px, 5vw, 56px) 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    linear-gradient(rgba(0, 121, 111, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 121, 111, 0.06) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: 0;
  z-index: -1;
  width: min(620px, 48vw);
  height: 64%;
  border: 1px solid rgba(0, 121, 111, 0.1);
  border-bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(7, 22, 25, 0.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(0deg, rgba(7, 22, 25, 0.04) 0 1px, transparent 1px 26px);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.contact-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9d8d1;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
}

.hero h1,
.contact h2 {
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: 70px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 630px;
  margin: 24px 0 0;
  color: #3f4f57;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
}

.trust-row svg,
.impact svg,
.deliverable-grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row svg {
  grid-row: span 2;
}

.trust-row strong {
  font-size: 14px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-product {
  position: relative;
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 430px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: translateZ(0);
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: inherit;
}

.hero-product::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 23%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 121, 111, 0.36), transparent);
  transform: rotate(16deg);
  animation: product-sweep 4.8s ease-in-out infinite;
}

.product-sidebar {
  background: linear-gradient(180deg, #061316, #0a2024);
  color: white;
  padding: 24px 16px;
}

.mini-brand {
  margin-bottom: 26px;
  font-size: 14px;
}

.mini-brand svg {
  width: 18px;
  height: 18px;
}

.side-item {
  display: block;
  width: 100%;
  margin-bottom: 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  padding: 11px 10px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.side-item.active,
.side-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.product-main {
  min-width: 0;
  padding: 26px;
}

.product-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #405058;
  font-size: 12px;
  font-weight: 900;
}

.product-status span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfdfc;
  padding: 0 11px;
}

.product-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(37, 160, 109, 0.15);
  animation: status-pulse 1.8s ease-in-out infinite;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.product-top h2,
.section-head h2,
.impact h2,
.deliverables h2,
.workflow h2,
.start-path h2,
.samples h2,
.pricing h2,
.packet h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-top h2 {
  font-size: 20px;
}

.product-top select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #405058;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

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

.metric-grid article {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.metric-grid article:hover {
  border-color: #b9d8d1;
  box-shadow: 0 14px 34px rgba(12, 31, 35, 0.08);
  transform: translateY(-2px);
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 27px;
  letter-spacing: 0;
}

.metric-grid em {
  display: block;
  margin-top: 11px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.chart-panel {
  position: relative;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 18px;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 26%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 121, 111, 0.12), transparent);
  transform: skewX(-14deg);
  animation: scan-panel 5.4s ease-in-out infinite;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  color: #28373d;
  font-size: 13px;
}

.chart-head span {
  color: var(--teal);
  font-weight: 800;
}

.line-chart {
  width: 100%;
  height: auto;
  margin-top: 12px;
}

.line-chart path,
.line-chart circle {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grid-line {
  stroke: #e8eeee;
}

.chart-muted {
  stroke: #c4cdca;
  stroke-width: 3;
  stroke-dasharray: 7 7;
}

.chart-live {
  stroke: var(--teal);
  stroke-width: 4;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: draw-line 2.1s ease forwards 420ms;
}

.line-chart circle {
  fill: var(--teal);
  stroke: white;
  stroke-width: 3;
  animation: status-pulse 2s ease-in-out infinite 1.1s;
}

.signal-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(460px, 1.24fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(56px, 8vw, 98px) clamp(20px, 5vw, 56px);
  background: var(--dark);
  color: #fff;
}

.signal-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.signal-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.signal-board {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.board-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.board-row:first-child {
  border-top: 0;
}

.board-row span {
  display: flex;
  align-items: center;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.board-row span:first-child {
  border-left: 0;
  color: #fff;
}

.board-head {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

.board-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.board-decision {
  background: rgba(0, 121, 111, 0.28);
}

.board-decision span {
  color: #fff;
}

.tool-strip {
  padding: 28px clamp(20px, 5vw, 56px) 42px;
  text-align: center;
}

.tool-strip span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 700;
}

.tool-strip ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 6vw, 82px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #141d22;
  font-size: 25px;
  font-weight: 900;
}

.impact,
.deliverables,
.workflow,
.demo,
.agency-fit,
.samples,
.start-path,
.pricing,
.packet,
.faq,
.contact {
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 56px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

section[id] {
  scroll-margin-top: 96px;
}

.impact {
  background: linear-gradient(180deg, #fff, #f6f9f8);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.impact-grid article,
.deliverable-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.impact-grid article {
  min-height: 220px;
  padding: 28px;
}

.impact-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.12;
}

.impact-grid p,
.deliverable-grid p,
.price-card p,
.faq p,
.contact p {
  color: var(--muted);
  line-height: 1.55;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.deliverable-grid article {
  min-height: 250px;
  padding: 24px;
}

.deliverable-grid h3 {
  margin: 26px 0 0;
  font-size: 17px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
}

.timeline article {
  position: relative;
  min-height: 150px;
  padding-right: 30px;
}

.timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 26px;
  left: 52px;
  height: 2px;
  background: var(--teal);
}

.timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-top: 14px;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.scope-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.scope-list h3 {
  margin: 0;
  font-size: 18px;
}

.scope-list ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #2a393f;
  line-height: 1.45;
  font-weight: 700;
}

.scope-list li::before {
  content: ">";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.section-head {
  display: flex;
  min-width: 0;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: #fff;
}

.segment {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 800;
}

.segment.active {
  background: var(--dark);
  color: #fff;
}

.demo-panel {
  display: grid;
  grid-template-columns: 300px minmax(360px, 1fr) 240px;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.demo-steps {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.demo-steps article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  color: var(--muted);
}

.demo-steps article.active {
  color: var(--text);
}

.demo-steps svg,
.resolved svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-steps strong,
.demo-steps span {
  display: block;
}

.demo-steps span {
  margin-top: 3px;
  font-size: 13px;
}

.conversation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 32px clamp(24px, 5vw, 60px);
  background: linear-gradient(180deg, #fbfdfc, #fff);
}

.bubble {
  max-width: 460px;
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 700;
}

.incoming {
  align-self: flex-start;
  background: #f0f3f2;
}

.outgoing {
  align-self: flex-end;
  background: #dff3e7;
}

.order-card {
  max-width: 430px;
  width: 100%;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.order-card strong,
.order-card span {
  display: block;
}

.order-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.progress span {
  position: relative;
  height: 4px;
  background: #dce5e2;
}

.progress span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dce5e2;
}

.progress span.done,
.progress span.done::before {
  background: var(--teal);
}

.progress-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.resolved {
  display: flex;
  max-width: 440px;
  width: 100%;
  align-self: center;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
  color: var(--teal);
  font-weight: 900;
}

.resolved em {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.automation {
  padding: 28px 22px;
  border-left: 1px solid var(--line);
}

.automation h3 {
  margin: 0 0 24px;
}

.automation dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.automation dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.automation dd {
  margin: 5px 0 0;
  color: var(--teal);
  font-weight: 900;
}

.agency-fit {
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.agency-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.agency-grid span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.agency-grid h3 {
  margin: 20px 0 0;
  font-size: 25px;
  line-height: 1.12;
}

.agency-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.agency-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #b9d8d1;
  border-radius: 8px;
  background: var(--teal-soft);
  padding: 16px;
}

.agency-proof strong,
.agency-proof span,
.agency-proof a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 900;
}

.agency-proof strong {
  background: var(--dark);
  color: #fff;
}

.agency-proof span {
  border: 1px solid #b9d8d1;
  background: #fff;
  color: var(--teal-dark);
}

.agency-proof a {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #fff;
}

.samples {
  background: #fbfdfc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.sample-grid article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.sample-grid span {
  align-self: flex-start;
  border: 1px solid #b9d8d1;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.sample-grid h3 {
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.sample-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.sample-grid ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: #2a393f;
  font-weight: 700;
  line-height: 1.4;
}

.sample-grid li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.sample-grid a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.proof-strip strong,
.proof-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 800;
}

.proof-strip strong {
  background: var(--dark);
  color: #fff;
}

.mini-audit-path {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border: 1px solid #b9d8d1;
  border-radius: 8px;
  background: var(--teal-soft);
  padding: 20px;
}

.mini-audit-path strong {
  display: block;
  color: var(--teal-dark);
  font-size: 17px;
}

.mini-audit-path p {
  max-width: 860px;
  margin: 8px 0 0;
  color: #26363d;
  line-height: 1.5;
}

.start-path {
  background: #fff;
}

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

.start-grid article {
  display: grid;
  min-height: 250px;
  min-width: 0;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.start-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
}

.start-grid h3 {
  margin: 24px 0 0;
  color: #203036;
  font-size: 23px;
  line-height: 1.13;
}

.start-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.intake-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #b9d8d1;
  border-radius: 8px;
  background: var(--teal-soft);
  padding: 16px;
}

.intake-strip strong,
.intake-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 900;
}

.intake-strip strong {
  background: var(--dark);
  color: #fff;
}

.intake-strip span {
  border: 1px solid #b9d8d1;
  background: #fff;
  color: var(--teal-dark);
}

.pricing {
  background: #f7faf9;
}

.pricing-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0;
  font-size: 20px;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-size: 36px;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: #2a393f;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.price-note {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.invoice-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 26px auto 0;
}

.invoice-flow article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 13px;
  row-gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.invoice-flow span {
  display: inline-flex;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 900;
}

.invoice-flow strong {
  color: #203036;
  font-size: 15px;
}

.invoice-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.packet {
  background: #fff;
  border-top: 1px solid var(--line);
}

.packet-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
}

.packet-summary,
.packet-flow {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.packet-summary {
  border-color: #b9d8d1;
  background: var(--teal-soft);
}

.packet-summary span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-summary h3,
.packet-flow h3 {
  margin: 12px 0 0;
  color: #203036;
  font-size: 26px;
  line-height: 1.15;
}

.packet-summary p,
.packet-flow p {
  margin: 14px 0 0;
  color: #33444b;
  line-height: 1.55;
}

.packet-summary ul,
.packet-flow ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 22px;
  padding: 0;
  color: #2a393f;
  font-weight: 700;
  line-height: 1.45;
}

.packet-summary ul {
  list-style: none;
}

.packet-summary li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.packet-flow ol {
  padding-left: 22px;
}

.packet-flow p {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 900;
}

summary::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
}

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

.contact {
  display: block;
  min-width: 0;
  border-top: 1px solid var(--line);
}

.contact-head {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.contact h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: 58px;
}

.contact-kicker + h2 {
  margin-top: 18px;
}

.contact p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 18px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(400px, 1.06fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-left {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}

.reply-card {
  border: 1px solid #b9d8d1;
  border-radius: 8px;
  background: var(--teal-soft);
  padding: 18px;
}

.reply-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.reply-card p {
  margin: 8px 0 0;
  color: #26363d;
  font-size: 15px;
}

.asset-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.asset-card strong {
  display: block;
  color: #26363d;
  font-size: 13px;
  font-weight: 900;
}

.asset-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.asset-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
  font-weight: 900;
}

.delivery-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid #b9d8d1;
  border-radius: 8px;
  background: #fbfdfc;
  padding: 18px;
}

.delivery-card > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.delivery-card strong {
  color: #203036;
  font-size: 15px;
}

.delivery-card p {
  max-width: none;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2px;
}

.contact-options a {
  position: relative;
  display: grid;
  gap: 13px;
  align-content: space-between;
  min-height: 152px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.96)),
    radial-gradient(circle at 18% 10%, rgba(0, 121, 111, 0.12), transparent 36%);
  padding: 18px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-options a::before {
  position: absolute;
  inset: auto -18px -34px auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(0, 121, 111, 0.07);
  content: "";
}

.contact-options a:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 30px rgba(0, 121, 111, 0.13);
  transform: translateY(-3px);
}

.contact-options a.preferred {
  border-color: #b9d8d1;
  background:
    linear-gradient(145deg, rgba(229, 245, 242, 0.98), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 24% 12%, rgba(0, 121, 111, 0.18), transparent 38%);
}

.contact-options strong {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
}

.contact-options em {
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  padding: 4px 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.method-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 121, 111, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(0, 121, 111, 0.1);
}

.method-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.telegram-icon::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(0, 121, 111, 0.28);
  border-radius: 10px;
  content: "";
  animation: method-pulse 2.8s ease-in-out infinite;
}

.x-icon {
  color: #152026;
}

.mail-icon {
  color: #51636a;
}

.email-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}

.email-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fff, #f8fcfb),
    radial-gradient(circle at 90% 0%, rgba(0, 121, 111, 0.12), transparent 36%);
  box-shadow: 0 18px 50px rgba(17, 31, 37, 0.08);
  padding: clamp(24px, 4vw, 34px);
}

.email-card::before {
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(0, 121, 111, 0.08);
  content: "";
}

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

.email-card .method-icon {
  width: 58px;
  height: 58px;
  color: var(--teal-dark);
}

.email-eyebrow {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.email-address {
  color: var(--teal);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.email-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.email-card .btn {
  justify-self: start;
}

.request-brief {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.request-brief strong {
  display: block;
  color: #203036;
  font-size: 15px;
  font-weight: 900;
}

.request-brief ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.method-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.method-copy > span {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: left;
}

@keyframes method-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }

  45% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.contact-form {
  display: grid;
  gap: 18px;
  align-self: stretch;
  max-width: none;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #fbfdfc),
    radial-gradient(circle at 90% 0%, rgba(0, 121, 111, 0.1), transparent 30%);
  box-shadow: 0 18px 50px rgba(17, 31, 37, 0.08);
  padding: clamp(22px, 4vw, 32px);
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26363d;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 15px 16px;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.product-top select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.email-panel .form-note {
  max-width: none;
  margin: 0;
  border: 1px dashed #b9d8d1;
  border-radius: 8px;
  background: var(--teal-soft);
  padding: 16px;
  color: #33444b;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #142025, #111a1e),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 36px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px) clamp(20px, 5vw, 56px) 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 500px;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.footer-mark {
  width: 24px;
  height: 24px;
  color: var(--teal);
  fill: currentColor;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact a {
  color: #8ee2d4;
  overflow-wrap: anywhere;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.45;
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.12);
  }
}

@keyframes product-sweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-140%) rotate(16deg);
  }

  35%,
  55% {
    opacity: 1;
  }

  72% {
    opacity: 0;
    transform: translateX(460%) rotate(16deg);
  }
}

@keyframes scan-panel {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) skewX(-14deg);
  }

  24%,
  58% {
    opacity: 1;
  }

  78% {
    opacity: 0;
    transform: translateX(560%) skewX(-14deg);
  }
}

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

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 62px;
  }

  .hero p {
    font-size: 19px;
  }

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

  .hero-product {
    max-width: 860px;
  }

  .signal-lab {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .timeline,
  .agency-grid,
  .start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .demo-panel {
    grid-template-columns: 260px 1fr;
  }

  .automation {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .automation dl {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(130px, 0.45fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  body.menu-open .desktop-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 0;
    justify-content: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
    padding: 8px;
  }

  body.menu-open .desktop-nav a {
    padding: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 52px;
  }

  .product-top h2,
  .section-head h2,
  .impact h2,
  .deliverables h2,
  .workflow h2,
  .start-path h2,
  .agency-fit h2,
  .samples h2,
  .pricing h2,
  .packet h2,
  .faq h2 {
    font-size: 32px;
  }

  .contact h2 {
    font-size: 44px;
  }

  .signal-copy h2 {
    font-size: 42px;
  }

  .contact-options {
    max-width: none;
  }

  .mini-audit-path {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row,
  .impact-grid,
  .timeline,
  .scope-list,
  .agency-grid,
  .start-grid,
  .sample-grid,
  .pricing-panel,
  .packet-panel,
  .invoice-flow,
  .faq-grid,
  .contact-shell,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .product-sidebar {
    display: none;
  }

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

  .timeline article {
    min-height: auto;
    padding: 0 0 26px;
  }

  .timeline article:not(:last-child)::after {
    top: 42px;
    right: auto;
    bottom: 0;
    left: 18px;
    width: 2px;
    height: calc(100% - 46px);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .demo-panel {
    grid-template-columns: 1fr;
  }

  .board-row {
    grid-template-columns: 1fr 1fr;
  }

  .board-row span:nth-child(3) {
    border-left: 0;
  }

  .demo-steps,
  .automation {
    border-right: 0;
    border-left: 0;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 12px;
    background-size: auto, 28px 28px, 28px 28px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }

  .contact-head {
    margin-bottom: 28px;
  }

  .contact-shell {
    gap: 20px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-options a {
    grid-template-columns: 50px 1fr;
    align-items: center;
    align-content: center;
    min-height: 90px;
  }

  .email-card {
    min-height: 0;
  }

  .email-card .btn {
    justify-self: stretch;
  }

  .method-copy > span {
    text-align: left;
  }

  .hero-product {
    display: none;
  }

  .signal-lab {
    padding-block: 50px;
  }

  .signal-copy h2 {
    font-size: 34px;
  }

  .signal-copy p {
    font-size: 16px;
  }

  .board-row {
    grid-template-columns: 1fr;
  }

  .signal-board {
    display: grid;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .board-head {
    display: none;
  }

  .board-row {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 32px);
    overflow: hidden;
  }

  .board-row span,
  .board-row span:nth-child(3) {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    min-height: 48px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding: 13px 16px;
  }

  .board-row span:first-child {
    border-top: 0;
  }

  .board-row span::before {
    content: attr(data-label);
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .tool-strip ul {
    font-size: 20px;
  }

  .hero-actions,
  .btn.large {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metric-grid,
  .deliverable-grid,
  .automation dl {
    grid-template-columns: 1fr;
  }

  .product-main {
    padding: 18px;
  }

  .tool-strip ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .impact,
  .deliverables,
  .workflow,
  .demo,
  .agency-fit,
  .samples,
  .start-path,
  .pricing,
  .faq,
  .contact {
    padding-block: 44px;
  }

  .footer-shell {
    padding-block: 34px 24px;
  }

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

  .footer-brand p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
