:root {
  --ink: #10120f;
  --ink-2: #22261f;
  --muted: #656d62;
  --paper: #f1ecdf;
  --paper-2: #e8dfcf;
  --white: #fffdfa;
  --cream: #f8f3e8;
  --mist: #e8efe8;
  --line: rgba(16, 18, 15, 0.13);
  --line-dark: rgba(255, 253, 250, 0.16);
  --green: #075846;
  --green-2: #0e735d;
  --green-dark: #022d25;
  --gold: #c79a3a;
  --gold-2: #efdbad;
  --blue: #e9f2f1;
  --danger: #b64d45;
  --shadow: 0 28px 80px rgba(16, 18, 15, 0.15);
  --shadow-soft: 0 18px 42px rgba(16, 18, 15, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(14, 115, 93, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f1e5 0%, var(--paper) 42%, #ece3d4 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 88px);
  background: rgba(246, 240, 229, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(16, 18, 15, 0.09);
  background: rgba(246, 240, 229, 0.94);
  box-shadow: 0 12px 32px rgba(16, 18, 15, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 900;
}

.brand-mark,
.cta-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(199, 154, 58, 0.45);
  border-radius: 8px;
  color: var(--gold);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 18, 15, 0.15);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 25px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4d554c;
  font-size: 13px;
  font-weight: 800;
}

.nav a,
.footer-links a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-call,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.header-call {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(7, 88, 70, 0.22);
  white-space: nowrap;
}

.button:hover,
.header-call:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 38px rgba(7, 88, 70, 0.24);
}

.button-primary:hover {
  background: #064737;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 253, 250, 0.76);
}

.button-gold {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(199, 154, 58, 0.25);
}

.hero {
  min-height: min(860px, 90vh);
  padding: 98px clamp(18px, 6.5vw, 92px) 40px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 154, 58, 0.22), transparent 24%),
    radial-gradient(circle at 18% 70%, rgba(7, 88, 70, 0.10), transparent 28%),
    linear-gradient(120deg, #f7f0e3 0%, #eee7d8 50%, #dfe6dc 100%);
}

.hero-grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 0.9fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1,
.split-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(60px, 7.2vw, 108px);
  line-height: 0.91;
  overflow-wrap: normal;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

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

.live-proof {
  display: inline-flex;
  max-width: 620px;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  border: 1px solid rgba(7, 88, 70, 0.18);
  border-radius: var(--radius);
  padding: 11px 13px;
  color: #384139;
  background: rgba(255, 253, 250, 0.56);
  box-shadow: 0 12px 28px rgba(16, 18, 15, 0.05);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.live-proof span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #5bd491;
  box-shadow: 0 0 0 6px rgba(91, 212, 145, 0.13);
}

.live-proof strong {
  color: var(--green);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 21px 0 0;
  padding: 0;
  color: #485046;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-checks li::before {
  content: "";
  width: 7px;
  height: 12px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.proof-row span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.proof-row svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.call-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(312px, 1fr) minmax(260px, 286px);
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 640px;
}

.phone-shell {
  position: relative;
  z-index: 2;
  grid-row: 1 / span 3;
  justify-self: start;
  top: auto;
  left: auto;
  width: 312px;
  min-height: 590px;
  transform: none;
  border: 1px solid rgba(255, 253, 250, 0.18);
  border-radius: 38px;
  padding: 22px 18px 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 88%, rgba(14, 115, 93, 0.38), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01)),
    #11130f;
  box-shadow: 0 30px 90px rgba(16, 18, 15, 0.25);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 253, 250, 0.1);
  border-radius: 30px;
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 96px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #050604;
}

.phone-top,
.caller-row,
.transcript-row {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 253, 250, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.08);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 11px 12px;
  color: rgba(255, 253, 250, 0.72);
  font-size: 12px;
}

.phone-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #5bd491;
  box-shadow: 0 0 0 6px rgba(91, 212, 145, 0.12);
}

.phone-top strong {
  color: var(--white);
}

.phone-top em {
  font-style: normal;
}

.caller-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: #d9d4c8;
  font-weight: 900;
}

.caller-row strong,
.caller-row span {
  display: block;
}

.caller-row span {
  margin-top: 3px;
  color: rgba(255, 253, 250, 0.58);
  font-size: 12px;
}

.transcript {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.transcript-row {
  padding: 14px;
  opacity: 0.88;
}

.transcript-row.is-active {
  border-color: rgba(199, 154, 58, 0.45);
  background: var(--white);
  color: var(--ink);
  opacity: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.transcript-row span,
.artifact-label,
.section-kicker {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transcript-row.caller span {
  color: #66d29c;
}

.transcript-row p {
  margin: 7px 0 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.45;
}

.transcript-row:not(.is-active) p {
  color: rgba(255, 253, 250, 0.82);
}

.voice-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 50px;
  margin: 18px 12px 0;
  opacity: 0.48;
}

.voice-line span {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  animation: voicePulse 1.4s ease-in-out infinite;
}

.voice-line span:nth-child(2n) {
  animation-delay: 160ms;
}

.voice-line span:nth-child(3n) {
  animation-delay: 320ms;
}

.phone-controls {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.phone-controls span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: transparent;
  background: rgba(255, 253, 250, 0.1);
}

.phone-controls span::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.8);
}

.phone-controls .end-call {
  background: #d94d43;
}

@keyframes voicePulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(7); opacity: 1; }
}

.artifact {
  position: relative;
  z-index: 3;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 251, 242, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.appointment-card {
  align-self: end;
}

.link-card {
  align-self: center;
}

.summary-card {
  align-self: start;
}

.artifact-body {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 10px;
}

.artifact-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
}

.artifact strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.artifact p,
.artifact a {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.artifact a {
  display: inline-block;
  color: var(--green);
  font-weight: 850;
}

dl {
  margin: 14px 0 0;
}

.summary-card dl {
  display: grid;
  gap: 10px;
}

.summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.summary-card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.section-band {
  padding: clamp(68px, 8vw, 108px) clamp(18px, 6.5vw, 92px);
  border-top: 1px solid rgba(16, 18, 15, 0.08);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto 42px;
}

.split-heading h2 {
  margin-top: 10px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
}

.split-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.problem-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
}

.problem-rail article {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.rail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  background: var(--cream);
}

.problem-rail h3,
.flow-line h3,
.path-compare h3,
.setup-options h3,
.setup-line h3,
.summary-examples h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
}

.problem-rail p,
.flow-line p,
.path-compare p,
.path-compare li,
.setup-options p,
.setup-options li,
.setup-line p,
.summary-examples p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.flow {
  background: var(--cream);
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.flow-line article {
  position: relative;
  padding-top: 8px;
}

.flow-line article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 8px;
  width: 38px;
  height: 1px;
  background: var(--line);
}

.flow-line article > span,
.path-icon,
.setup-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(7, 88, 70, 0.2);
  font-weight: 900;
}

.bookings {
  background: var(--paper);
}

.path-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.path-compare article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 251, 242, 0.76);
  box-shadow: var(--shadow-soft);
}

.proof {
  background:
    radial-gradient(circle at 88% 18%, rgba(14, 115, 93, 0.10), transparent 25%),
    var(--cream);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.proof-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 251, 242, 0.78);
  box-shadow: var(--shadow-soft);
}

.proof-cards h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
}

.proof-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.path-compare ul,
.setup-options ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.path-compare li,
.setup-options li {
  display: flex;
  gap: 9px;
}

.path-compare li::before,
.setup-options li::before {
  content: "";
  width: 7px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 4px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.summary {
  background: var(--cream);
}

.summary-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.summary-examples article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 23px;
  background: rgba(255, 251, 242, 0.82);
  box-shadow: var(--shadow-soft);
}

.summary-examples h3 {
  min-height: 68px;
  font-size: 17px;
}

.summary-examples p + p {
  margin-top: 7px;
}

.summary-examples p span {
  color: var(--green);
  font-weight: 900;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
}

.status.reply {
  color: var(--gold);
}

.status.priority {
  color: var(--danger);
}

.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 154, 58, 0.16), transparent 24%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.dark .split-heading h2,
.dark .setup-options h3 {
  color: var(--white);
}

.dark .split-heading p,
.dark .setup-options p,
.dark .setup-options li {
  color: rgba(255, 253, 250, 0.72);
}

.setup-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}

.setup-options article {
  border: 1px solid rgba(255, 253, 250, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(16, 18, 15, 0.32);
}

.setup-icon {
  color: var(--ink);
  background: var(--gold);
}

.dark .setup-options li::before {
  border-color: var(--gold-2);
}

.setup-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.setup-line article {
  position: relative;
  padding-top: 34px;
}

.setup-line article::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  right: -34px;
  height: 1px;
  background: var(--line);
}

.setup-line article:last-child::before {
  display: none;
}

.setup-line span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
}

.setup-line span::before {
  content: "";
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.industry-cloud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.industry-cloud span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.7);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  max-width: 960px;
  margin: 0 auto;
}

.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.82);
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 900;
}

.faq p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 20px 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1220px;
  margin: clamp(24px, 5vw, 70px) auto;
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 50%, rgba(199, 154, 58, 0.16), transparent 22%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.96;
}

.final-cta p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 253, 250, 0.76);
  line-height: 1.6;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 6.5vw, 92px);
  color: rgba(255, 253, 250, 0.84);
  background: var(--ink);
}

.footer strong {
  display: block;
  margin-bottom: 6px;
}

.footer p {
  margin: 0;
  color: rgba(255, 253, 250, 0.52);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 253, 250, 0.68);
  font-size: 14px;
  font-weight: 750;
}

.mobile-call {
  display: none;
}

.legal-page {
  padding: 132px clamp(18px, 6.5vw, 92px) 72px;
  background:
    radial-gradient(circle at 84% 10%, rgba(199, 154, 58, 0.16), transparent 26%),
    linear-gradient(112deg, #fffdfa 0%, #fbf8ef 48%, #eee5d6 100%);
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto 28px;
}

.legal-hero h1 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.95;
}

.legal-hero p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 32px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1120px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

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

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

  .call-stage {
    min-height: 650px;
    max-width: 860px;
    margin-inline: auto;
  }

  .phone-shell {
    left: auto;
  }

  .appointment-card,
  .link-card {
    right: 0;
  }

  .summary-card {
    right: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .flow-line article::after {
    display: none;
  }

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

  .setup-line article::before {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .header-call {
    display: none;
  }

  .hero {
    padding: 92px 18px 36px;
  }

  .hero-copy {
    width: min(100%, 354px);
  }

  .hero-grid,
  .hero-copy,
  .hero-copy p,
  .hero-copy h1 {
    min-width: 0;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.98;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-checks {
    display: grid;
    gap: 10px;
  }

  .proof-row {
    display: none;
  }

  .live-proof {
    display: flex;
    width: 100%;
  }

  .call-stage {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
  }

  .phone-shell {
    position: relative;
    top: 0;
    left: auto;
    width: min(312px, 100%);
    min-height: 570px;
    transform: none;
  }

  .artifact {
    position: relative;
    z-index: 4;
    width: min(100%, 342px);
  }

  .appointment-card {
    top: auto;
    left: auto;
    right: auto;
  }

  .link-card {
    top: auto;
    right: auto;
  }

  .summary-card {
    top: auto;
    right: auto;
    bottom: auto;
  }

  .section-band {
    padding: 64px 18px;
  }

  .split-heading {
    margin-bottom: 32px;
  }

  .split-heading h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .problem-rail,
  .flow-line,
  .path-compare,
  .proof-cards,
  .summary-examples,
  .setup-options,
  .setup-line,
  .industry-cloud,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .problem-rail article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0 0;
  }

  .summary-examples h3 {
    min-height: auto;
  }

  .setup-line article {
    border-left: 1px solid var(--line);
    padding: 0 0 0 38px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    margin: 28px 18px;
  }

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

  .mobile-call {
    display: none;
  }
}

@media (max-width: 430px) {
  .proof-row {
    grid-template-columns: 1fr;
  }
}
