:root {
  --ink: #171312;
  --muted: #625853;
  --soft: #f5f0ea;
  --paper: #fffaf4;
  --line: #ded4ca;
  --clay: #b85f45;
  --clay-dark: #7a3328;
  --moss: #516b58;
  --blue: #3b6475;
  --gold: #d7ae56;
  --shadow: 0 24px 70px rgba(50, 35, 26, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 19, 18, 0.1);
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.trust-row,
.hero-actions,
.role-tabs,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.32), 0 0 0 1px rgba(23, 19, 18, 0.18);
  font-family: "Instrument Serif", serif;
  font-size: 24px;
}

.image-mark {
  overflow: hidden;
  background: #050505;
}

.site-header .brand .image-mark img {
  display: block;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
  max-width: 38px;
  min-height: 38px;
  max-height: 38px;
  object-fit: cover;
  transform: none;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-cta,
.secondary-cta {
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 7px 18px 7px 9px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.sms-cta {
  gap: 10px;
}

.messages-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.76fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  min-height: calc(148vh - 72px);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 86px) 48px;
  background:
    linear-gradient(120deg, rgba(184, 95, 69, 0.16), transparent 34%),
    linear-gradient(310deg, rgba(81, 107, 88, 0.16), transparent 36%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8.4vw, 112px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 72px);
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.12;
}

.hero-subhead,
.section-heading p,
.sticky-copy p,
.proof-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-subhead {
  max-width: 700px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 10px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
}

.primary-cta {
  color: #fff;
  background: var(--clay-dark);
  box-shadow: 0 12px 24px rgba(122, 51, 40, 0.2);
}

.primary-cta.sms-cta {
  padding-left: 10px;
}

.primary-cta.dark {
  background: var(--ink);
}

.secondary-cta {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}

.domain-note {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row {
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(23, 19, 18, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.hero-product {
  display: grid;
  place-items: center;
  position: sticky;
  top: 92px;
  align-self: start;
  width: 100%;
}

.phone-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 392px);
  height: min(760px, calc(100vh - 118px));
  min-height: 690px;
  padding: 10px;
  border: 10px solid #1d1917;
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

.phone-top,
.message-header,
.composer {
  display: flex;
  align-items: center;
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 32px;
  padding: 0 16px;
  color: #050505;
  font-size: 13px;
  font-weight: 800;
}

.status-time {
  align-self: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.cellular {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  width: 22px;
  height: 13px;
  align-self: center;
  justify-self: start;
}

.cellular span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
}

.cellular span:nth-child(1) {
  height: 4px;
}

.cellular span:nth-child(2) {
  height: 6px;
}

.cellular span:nth-child(3) {
  height: 9px;
}

.cellular span:nth-child(4) {
  height: 12px;
}

.battery {
  position: relative;
  display: block;
  width: 26px;
  height: 12px;
  align-self: center;
  justify-self: end;
  border: 1.8px solid currentColor;
  border-radius: 3.8px;
}

.battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -3.6px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
}

.battery-fill {
  position: absolute;
  inset: 2px;
  width: 18px;
  border-radius: 2px;
  background: currentColor;
}

.message-header {
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 78px;
  padding: 8px 44px 12px;
  border-bottom: 1px solid #d8d8dc;
  text-align: center;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(#7c8c83, #516b58);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.logo-avatar {
  overflow: hidden;
  background: #050505;
}

.logo-avatar img {
  display: block;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  object-fit: cover;
}

.message-header small {
  display: block;
  color: #8e8e93;
  font-size: 11px;
}

.message-feed {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 7px;
  min-height: 0;
  overflow: hidden;
  padding: 14px 4px 10px;
  scroll-behavior: smooth;
}

.imessage-time {
  align-self: center;
  flex: 0 0 auto;
  margin: 2px 0 8px;
  color: #8e8e93;
  font-size: 11px;
  font-weight: 700;
}

.dark-time {
  color: #8e8e93;
}

.bubble {
  position: relative;
  flex: 0 0 auto;
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
  transform-origin: left bottom;
  will-change: transform, opacity, filter;
}

.inbound {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  color: #050505;
  background: #e9e9eb;
}

.inbound::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 12px;
  height: 16px;
  background: #e9e9eb;
  border-bottom-right-radius: 12px 10px;
}

.inbound::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 10px;
  height: 16px;
  background: #fff;
  border-bottom-right-radius: 10px;
}

.outbound {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: #fff;
  background: #007aff;
  transform-origin: right bottom;
}

.outbound::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 12px;
  height: 16px;
  background: #007aff;
  border-bottom-left-radius: 12px 10px;
}

.outbound::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 10px;
  height: 16px;
  background: #fff;
  border-bottom-left-radius: 10px;
}

.task-card {
  position: relative;
  flex: 0 0 auto;
  align-self: flex-start;
  max-width: 84%;
  padding: 10px 12px;
  border: 0;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  background: #e9e9eb;
  color: #050505;
  box-shadow: none;
  will-change: transform, opacity, filter;
}

.task-card::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 12px;
  height: 16px;
  background: #e9e9eb;
  border-bottom-right-radius: 12px 10px;
}

.task-card::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 10px;
  height: 16px;
  background: #fff;
  border-bottom-right-radius: 10px;
}

.task-card strong {
  display: block;
  margin: 4px 0 6px;
}

.task-card p {
  margin-bottom: 12px;
  color: #050505;
  font-size: 14px;
  line-height: 1.25;
}

.task-label {
  color: #6d6d72;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.task-card button,
.composer button,
.prompt-chip,
.role-tab {
  cursor: pointer;
  border: 0;
}

.task-card button {
  width: 100%;
  min-height: 40px;
  border-radius: 13px;
  color: #fff;
  background: #007aff;
  font-weight: 800;
}

.compact-task p {
  margin-bottom: 10px;
}

.photo-message {
  flex: 0 0 auto;
  align-self: flex-end;
  width: min(82%, 278px);
  padding: 0;
  border-radius: 19px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  background: #007aff;
  transform-origin: right bottom;
  will-change: transform, opacity, filter;
}

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

.photo-grid img,
.photo-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    #1f1f22;
}

.photo-caption {
  display: block;
  padding: 7px 10px 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.composer {
  gap: 8px;
  padding: 10px 4px 2px;
  border-top: 1px solid #d8d8dc;
  will-change: transform, opacity, filter;
}

.composer .attach-button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #c8c7cc;
  border-radius: 50%;
  color: #8e8e93;
  background: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.composer .attach-button span {
  display: block;
  transform: translateY(-1px);
}

.composer #studioText {
  min-width: 0;
  flex: 1;
  height: 36px;
  padding: 0 13px;
  border: 1px solid #c8c7cc;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 14px;
}

.composer .send-button {
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: #007aff;
  font-weight: 800;
}

.workflow-band,
.engine-section,
.offer-section,
.install-section,
.proof-metrics,
.value-section,
.station-section,
.split-section,
.booking-chaos-section,
.roles-section,
.client-section,
.systems-section,
.day-section,
.report-section,
.proof-section,
.final-cta {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 86px);
}

#workflows,
#engine,
#offer,
#station,
#clients,
#day,
#roles,
#report,
#proof,
#brand-proof {
  scroll-margin-top: 76px;
}

.workflow-band {
  background: var(--ink);
  color: #fff;
}

.workflow-band .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-bottom: 0;
}

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

.prompt-chip {
  min-height: 76px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  font-weight: 800;
  will-change: transform, opacity;
}

.prompt-chip:hover {
  background: rgba(255, 255, 255, 0.14);
}

.engine-section {
  background: #fbf7f1;
}

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

.engine-loop article {
  min-height: 280px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.engine-loop span {
  display: block;
  margin-bottom: 52px;
  color: var(--clay-dark);
  font-weight: 900;
}

.engine-loop p {
  color: var(--muted);
}

.visual-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.visual-callout h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.visual-callout p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.visual-callout img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 30px rgba(23, 19, 18, 0.14));
}

.loop-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.loop-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.offer-section .eyebrow {
  color: var(--gold);
}

.offer-section p {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 21px);
}

.offer-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.offer-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.install-section {
  background: #fffaf4;
}

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

.install-grid article,
.metric-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.install-grid p,
.metric-grid p {
  color: var(--muted);
}

.proof-metrics {
  background: #f2e7dc;
}

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

.demand-callout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.8fr);
  background: #fffaf4;
}

.metric-grid strong {
  display: block;
  margin-bottom: 38px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.9;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #fbf7f1;
}

.value-section > p {
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--clay-dark);
  color: var(--muted);
  background: #fffdf9;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
}

.station-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: #f2e7dc;
}

.station-visual {
  display: grid;
  place-items: center;
  min-height: 500px;
  border: 1px solid rgba(23, 19, 18, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.8), rgba(255, 255, 255, 0.42)),
    #fffaf4;
  overflow: hidden;
}

.station-visual img {
  display: block;
  width: min(92%, 520px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(23, 19, 18, 0.16));
}

.station-copy {
  max-width: 760px;
}

.station-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.station-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.station-actions span {
  padding: 9px 12px;
  border: 1px solid rgba(23, 19, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  background: #fbf7f1;
}

.sticky-copy {
  position: sticky;
  top: 104px;
  align-self: start;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-showcase {
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.workflow-showcase img {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

.workflow-showcase p {
  color: var(--muted);
}

.workflow-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.workflow-item p,
.systems-grid p,
.role-panel p,
.role-panel li {
  color: var(--muted);
}

.item-number {
  color: var(--clay-dark);
  font-weight: 900;
}

.roles-section {
  background: var(--soft);
}

.booking-chaos-section {
  background: #fffaf4;
}

.booking-chaos-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.76fr);
  gap: 14px;
  align-items: center;
}

.booking-chaos-grid img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.compact {
  margin-bottom: 22px;
}

.role-tabs {
  width: fit-content;
  gap: 4px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf4;
}

.role-tab {
  min-width: 92px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.role-tab.active {
  color: #fff;
  background: var(--moss);
}

.role-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 28px;
  max-width: 1050px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  box-shadow: 0 18px 48px rgba(50, 35, 26, 0.1);
}

.role-panel h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
}

.role-panel ul {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding-left: 20px;
}

.role-kicker {
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.client-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: #f2e7dc;
}

.client-copy {
  max-width: 780px;
}

.client-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.fine-print {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 3px solid var(--clay);
  font-size: 15px !important;
}

.client-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.client-card span {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.client-card p {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
}

.client-card strong {
  display: block;
  max-width: 420px;
}

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

.systems-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.system-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.systems-grid article:nth-child(2) .system-icon {
  background: var(--clay);
}

.systems-grid article:nth-child(3) .system-icon {
  background: var(--moss);
}

.systems-grid article:nth-child(4) .system-icon {
  background: var(--ink);
}

.day-section {
  background: #171312;
  color: #fff;
}

.day-section .eyebrow {
  color: var(--gold);
}

.day-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
}

.day-message-board {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-content: center;
  justify-content: center;
  min-height: 520px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #fff;
  color: #050505;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

.mini-thread {
  position: relative;
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.25;
  transform-origin: left bottom;
  will-change: transform, opacity, filter;
}

.mini-thread span {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.mini-thread p {
  margin: 0;
  font-weight: 700;
}

.owner-thread,
.artist-thread {
  align-self: flex-end;
  color: #fff;
  background: #007aff;
  border-bottom-right-radius: 5px;
  transform-origin: right bottom;
}

.assistant-thread {
  align-self: flex-start;
  color: #050505;
  background: #e9e9eb;
  border-bottom-left-radius: 5px;
}

.assistant-thread span {
  color: #6d6d72;
}

.owner-thread::before,
.artist-thread::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 12px;
  height: 16px;
  background: #007aff;
  border-bottom-left-radius: 12px 10px;
}

.owner-thread::after,
.artist-thread::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 10px;
  height: 16px;
  background: #fff;
  border-bottom-left-radius: 10px;
}

.assistant-thread::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 12px;
  height: 16px;
  background: #e9e9eb;
  border-bottom-right-radius: 12px 10px;
}

.assistant-thread::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 10px;
  height: 16px;
  background: #fff;
  border-bottom-right-radius: 10px;
}

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

.day-timeline article {
  min-height: 248px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.day-timeline span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-weight: 900;
}

.day-timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.report-section {
  background: #fffaf4;
}

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

.report-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.report-grid strong {
  display: block;
  min-height: 56px;
  color: var(--muted);
}

.report-grid span {
  display: block;
  margin-top: 46px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.9;
}

.report-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #f2e7dc;
}

.quote-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--clay-dark);
}

.quote-card p {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
}

.quote-card span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.final-cta {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(140deg, rgba(215, 174, 86, 0.18), transparent 42%),
    var(--ink);
  color: #fff;
}

.final-cta h2 {
  max-width: 740px;
}

.final-logo {
  width: min(220px, 44vw);
  max-width: 220px;
  height: auto;
  margin-top: 20px;
  border-radius: 50%;
  opacity: 0.9;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 86px);
  color: var(--muted);
  background: #fffaf4;
  font-size: 14px;
  font-weight: 700;
}

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

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #050505;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
.hero,
.offer-section,
.value-section,
.visual-callout,
.client-section,
.station-section,
.split-section,
.booking-chaos-grid,
.day-grid,
.proof-section,
.role-panel {
    grid-template-columns: 1fr;
  }

.hero {
min-height: calc(142vh - 72px);
padding-top: 42px;
}

  .hero-copy {
    order: 1;
  }

  .hero-product {
    order: 2;
    position: sticky;
    top: 86px;
  }

  .phone-shell {
    min-height: 620px;
  }

  .message-feed {
    min-height: 430px;
  }

  .sticky-copy {
    position: static;
  }

  .station-visual {
    min-height: 420px;
  }

.prompt-grid,
.engine-loop,
.install-grid,
.metric-grid,
.booking-chaos-grid,
.systems-grid,
.report-grid,
.day-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
.site-header {
min-height: auto;
align-items: flex-start;
gap: 14px;
}

  .header-cta {
    padding: 7px 12px 7px 7px;
    font-size: 12px;
  }

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

  .primary-cta {
    width: 100%;
    max-width: 360px;
    min-height: 58px;
    padding-right: 16px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .loop-cta .primary-cta {
    max-width: none;
  }

.hero {
min-height: auto;
}

.hero-product {
position: static;
}

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

.prompt-grid,
.engine-loop,
.install-grid,
.metric-grid,
.booking-chaos-grid,
.systems-grid,
.report-grid,
.day-timeline {
    grid-template-columns: 1fr;
  }

.engine-loop article,
.install-grid article,
.metric-grid article,
.report-grid article {
  min-height: auto;
}

  .station-visual {
    min-height: 320px;
  }

  .station-visual img {
    width: min(94%, 390px);
  }

  .visual-callout {
    padding: 16px;
  }

  .demand-callout img {
    order: 2;
  }

  .workflow-showcase {
    padding: 14px;
  }

.engine-loop span,
.metric-grid strong,
.report-grid span {
  margin-top: 24px;
  margin-bottom: 24px;
}

  .day-message-board {
    min-height: 430px;
  }

  .mini-thread {
    max-width: 94%;
  }

  .phone-shell {
    width: 100%;
    min-height: 610px;
    border-width: 8px;
    border-radius: 34px;
  }

  .workflow-item {
    grid-template-columns: 1fr;
  }

  .role-tabs {
    width: 100%;
  }

  .role-tab {
    min-width: 0;
    flex: 1;
    padding: 0 10px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
