:root {
  --ink: #0b0e12;
  --ink-soft: #151a20;
  --paper: #f5f5f0;
  --background: var(--paper);
  --background-soft: #edf4f1;
  --surface: var(--ink);
  --surface-soft: #20272e;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: #d9ddd8;
  --text: #11161b;
  --muted: #59636c;
  --light-muted: #aeb8bf;
  --signal: #5ee5c2;
  --signal-dark: #075345;
  --danger: #b43b32;
  --radius: 6px;
  --shadow: 0 22px 70px rgba(10, 14, 18, 0.16);
  --header-height: 72px;
  --section-space: 108px;
  --motion-duration: 450ms;
  --motion-easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 4.5rem;
  line-height: 0.98;
}

h2 {
  font-size: 3rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.page-shell,
.nav-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow-shell {
  width: min(900px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 14, 18, 0.96);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.brand small {
  margin-top: 4px;
  color: var(--light-muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: #d2d9de;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav .nav-phone {
  color: var(--signal);
  font-variant-numeric: tabular-nums;
}

.main-nav .nav-phone:hover {
  color: #8ff3d9;
}

.main-nav .nav-contact {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #424a52;
  border-radius: var(--radius);
  color: var(--white);
}

.main-nav .nav-contact:hover {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  right: 9px;
  left: 9px;
  display: block;
  height: 2px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.menu-button span:nth-child(1) { top: 13px; }
.menu-button span:nth-child(2) { top: 21px; }
.menu-button span:nth-child(3) { top: 29px; }

.menu-button[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 10, 13, 0.97) 0%, rgba(7, 10, 13, 0.88) 34%, rgba(7, 10, 13, 0.38) 64%, rgba(7, 10, 13, 0.14) 100%);
}

.hero-content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 70px;
}

.hero-content > * {
  max-width: 660px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--signal-dark);
}

.hero-lead,
.large-copy {
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-lead {
  margin-bottom: 28px;
  color: #e2e7ea;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--signal);
  color: #07110e;
}

.button-primary:hover {
  background: #7defd2;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(8, 12, 15, 0.38);
  color: var(--white);
}

.button-quiet:hover {
  border-color: var(--white);
  background: rgba(8, 12, 15, 0.64);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.check-list li::before,
.outcome-column li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 11px;
  height: 7px;
  border-bottom: 2px solid var(--signal);
  border-left: 2px solid var(--signal);
  transform: rotate(-45deg);
}

.image-disclosure {
  position: absolute;
  right: 18px;
  bottom: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.proof-strip {
  border-bottom: 1px solid #262c31;
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  min-height: 106px;
  padding: 26px 24px;
  border-left: 1px solid #262c31;
}

.proof-grid div:last-child {
  border-right: 1px solid #262c31;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 3px;
  color: var(--signal);
  font-size: 1.08rem;
}

.proof-grid span {
  color: #abb5bb;
  font-size: 0.83rem;
}

.section {
  padding-block: var(--section-space);
}

.section-light {
  background: var(--paper);
  color: var(--text);
}

.section-white {
  background: var(--white);
  color: var(--text);
}

.section-ink {
  background: var(--background-soft);
  color: var(--text);
}

.section-ink .section-heading > p:last-child {
  color: var(--muted);
}

.section-signal {
  background: #dff3ec;
  color: var(--text);
}

.split-intro {
  max-width: 850px;
}

.split-intro h2,
.section-heading h2,
.offer-copy h2,
.trust-layout h2 {
  margin-bottom: 20px;
}

.split-intro p,
.intro-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.split-intro .plain-emphasis,
.intro-copy .plain-emphasis {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 760;
}

.pain-list {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 70px;
}

.pain-list article {
  min-height: 175px;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

.pain-list article:first-child {
  grid-row: span 2;
  display: flex;
  min-height: 368px;
  flex-direction: column;
  justify-content: flex-end;
  background: #e4f5ef;
}

.pain-list article:first-child h3 {
  font-size: 1.8rem;
}

.pain-list p,
.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  max-width: 660px;
  color: var(--light-muted);
  font-size: 1.08rem;
}

.center-heading {
  margin-inline: auto;
  text-align: center;
}

.dark-copy > p:last-child {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  min-height: 150px;
  padding: 25px 0 0;
  border-top: 3px solid var(--signal-dark);
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.message-demo {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 920px;
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid #3a444b;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.message-copy,
.message-details {
  padding: 30px;
}

.message-copy {
  background: var(--surface-soft);
}

.message-copy h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.6rem;
}

.message-copy p:last-child {
  margin-bottom: 0;
  color: var(--light-muted);
}

.mini-label {
  margin-bottom: 12px;
  color: var(--signal-dark);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-ink .mini-label,
.call-screen .mini-label {
  color: var(--signal);
}

.message-details {
  display: grid;
  gap: 16px;
  background: #10151a;
}

.message-details div,
.call-screen dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.message-details div {
  padding-bottom: 14px;
}

.message-details span {
  color: var(--light-muted);
}

.message-details strong {
  color: var(--signal);
}

.benefit-list {
  border-top: 1px solid var(--line-light);
}

.benefit-list article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.benefit-list h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.benefit-list p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: center;
}

.offer-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.1rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 28px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li,
.outcome-column li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.check-list li::before,
.outcome-column li::before {
  border-color: var(--signal-dark);
}

.price-panel {
  padding: 34px;
  border: 1px solid rgba(11, 14, 18, 0.26);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 44, 36, 0.12);
}

.price-kicker {
  margin-bottom: 28px;
  color: var(--signal-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.price-panel h3 {
  margin-bottom: 4px;
  font-size: 1.6rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price strong {
  font-size: 3.5rem;
  line-height: 1;
}

.price span,
.price-panel > p:not(.price):not(.price-kicker) {
  color: var(--muted);
}

.price-divider {
  height: 1px;
  margin: 24px 0;
  background: var(--line-light);
}

.price-panel .price-saving {
  color: var(--text);
  font-weight: 760;
}

.price-panel small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 100px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.text-link {
  color: var(--signal-dark);
  font-weight: 760;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 0;
  width: 38px;
  height: 38px;
  color: var(--signal-dark);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 44px 22px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding-block: 100px;
  background: #dff3ec;
  color: var(--text);
}

.final-cta-inner {
  max-width: 900px;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: 3.4rem;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.center-actions {
  justify-content: center;
}

.final-cta .button-quiet {
  border-color: #83988f;
  background: transparent;
  color: var(--text);
}

.final-cta .button-quiet:hover {
  border-color: var(--signal-dark);
  background: rgba(255, 255, 255, 0.55);
}

.site-footer {
  padding-top: 70px;
  background: #080a0d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 54px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 20px;
  color: var(--light-muted);
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid h2 {
  margin-bottom: 8px;
  color: #77838b;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-link {
  padding-block: 2px;
  border: 0;
  background: none;
  color: #d8dee2;
  font-size: 0.88rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-link:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid #24292e;
  color: #7f8990;
  font-size: 0.78rem;
}

.mobile-cta {
  display: none;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal],
    [data-reveal-group] {
      animation-name: taste-reveal;
      animation-duration: 1ms;
      animation-fill-mode: both;
      animation-timing-function: var(--motion-easing);
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
  }
}

/* Product and subpages */
.subhero,
.legal-hero {
  background: var(--ink);
  color: var(--white);
}

.subhero {
  padding-block: 86px;
}

.subhero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 4rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 48px;
  color: #89939a;
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: inherit;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 80px;
  align-items: center;
}

.call-screen {
  padding: 30px;
  border: 1px solid #354047;
  border-radius: var(--radius);
  background: #171d23;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.call-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 44px;
  color: #aeb8bf;
  font-size: 0.8rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
}

.call-screen h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.call-screen > p:not(.mini-label) {
  color: var(--light-muted);
}

.call-screen dl {
  display: grid;
  gap: 15px;
  margin: 28px 0 0;
}

.call-screen dl div {
  padding-bottom: 12px;
}

.call-screen dt {
  color: var(--light-muted);
}

.call-screen dd {
  margin: 0;
  color: var(--signal);
  font-weight: 760;
}

.call-screen dd.urgent {
  color: #ffb0a8;
}

.vertical-steps {
  border-top: 1px solid var(--line-light);
}

.vertical-steps article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
}

.vertical-steps article > span {
  color: var(--signal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.vertical-steps h3 {
  margin-bottom: 7px;
  font-size: 1.4rem;
}

.vertical-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.capability-grid article {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
}

.capability-grid h3 {
  margin-bottom: 20px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 100px;
  align-items: start;
}

.trust-layout .large-copy {
  color: var(--muted);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.trust-points article {
  min-height: 155px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.trust-points strong,
.trust-points span {
  display: block;
}

.trust-points strong {
  margin-bottom: 14px;
  color: var(--signal-dark);
}

.trust-points span {
  color: var(--muted);
}

.compare-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.compare-column {
  min-height: 420px;
  padding: 42px;
  background: var(--paper);
}

.outcome-column {
  background: #e7f9f3;
}

.compare-column h2 {
  margin-bottom: 34px;
  font-size: 2.35rem;
}

.compare-column ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.muted-column li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
}

.muted-column li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
}

.contact-hero .hero-lead {
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-option {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-option:hover {
  border-color: var(--signal-dark);
  transform: translateY(-2px);
}

.contact-option span {
  margin-bottom: 8px;
  color: var(--signal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-option strong {
  overflow-wrap: anywhere;
  font-size: 1.5rem;
}

.contact-option small {
  margin-top: 8px;
  color: var(--muted);
}

.conversation-plan {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.conversation-plan h2 {
  margin-bottom: 30px;
  font-size: 2.25rem;
}

.conversation-plan ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.conversation-plan li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.conversation-plan li span {
  color: var(--signal);
  font-weight: 800;
}

.conversation-plan > p:last-child {
  margin-bottom: 0;
  color: var(--light-muted);
}

.company-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.company-contact address {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.company-contact address strong {
  margin-bottom: 3px;
  font-size: 1.25rem;
}

.company-contact address span:nth-child(2) {
  margin-bottom: 20px;
  color: var(--muted);
}

/* Legal pages */
.legal-hero {
  padding-block: 72px;
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: 3.7rem;
}

.legal-hero > div > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--light-muted);
}

.legal-shell {
  max-width: 780px;
}

.legal-content {
  padding-block: 80px 110px;
  background: var(--white);
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 1.55rem;
}

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

.legal-content p,
.legal-content li {
  color: #3e484f;
}

.legal-content a {
  color: var(--signal-dark);
}

.legal-content code {
  padding: 2px 5px;
  border-radius: 3px;
  background: #edf0ee;
  color: #273039;
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.inline-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--signal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.legal-note {
  margin-top: 50px;
  padding: 24px;
  border-left: 4px solid var(--signal-dark);
  background: #edf8f4;
}

.legal-note p {
  margin: 8px 0 0;
}

/* Cookie consent */
.cookie-layer {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: min(520px, calc(100% - 40px));
}

.cookie-layer[hidden] {
  display: none;
}

.cookie-dialog {
  width: 100%;
  padding: 22px;
  border: 1px solid #343b42;
  border-radius: var(--radius);
  background: #11161b;
  color: var(--white);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
}

.cookie-dialog h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.cookie-dialog p {
  margin-bottom: 14px;
  color: #b8c1c7;
  font-size: 0.92rem;
}

.cookie-dialog a {
  color: var(--signal);
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cookie-button {
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid #59636b;
  border-radius: var(--radius);
  background: #f4f6f5;
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

.cookie-button:hover {
  border-color: var(--signal);
  background: #ffffff;
}

.cookie-status {
  margin: 12px 0 0;
  color: #8f9aa1;
  font-size: 0.76rem;
}

/* 404 */
.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 48px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
}

.not-found p {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--light-muted);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 28px;
    border-bottom: 1px solid #32383e;
    background: var(--ink);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.38);
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    min-height: 50px;
    padding: 13px 0;
    border-bottom: 1px solid #2a3035;
  }

  .main-nav .nav-contact {
    margin-top: 12px;
    border: 1px solid var(--signal);
    text-align: center;
  }

  .split-intro,
  .offer-layout,
  .faq-layout,
  .product-hero-grid,
  .trust-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .proof-grid div:nth-child(3),
  .proof-grid div:nth-child(4) {
    border-top: 1px solid #262c31;
  }

  .pain-list,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 64px;
    --section-space: 72px;
  }

  .page-shell,
  .nav-shell,
  .narrow-shell {
    width: min(100% - 32px, 1160px);
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.05rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .hero {
    min-height: calc(100svh - 96px);
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 10, 13, 0.96) 0%, rgba(7, 10, 13, 0.82) 68%, rgba(7, 10, 13, 0.45) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-block: 62px 48px;
  }

  .hero-lead,
  .large-copy {
    font-size: 1.05rem;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .image-disclosure {
    right: 8px;
    bottom: 5px;
  }

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

  .proof-grid div {
    min-height: 94px;
    padding: 20px 16px;
  }

  .split-intro {
    gap: 22px;
  }

  .pain-list,
  .process-grid,
  .capability-grid,
  .compare-layout,
  .company-contact {
    grid-template-columns: 1fr;
  }

  .pain-list {
    margin-top: 42px;
  }

  .pain-list article {
    min-height: auto;
    padding: 24px;
  }

  .pain-list article:first-child {
    grid-row: auto;
    min-height: 240px;
  }

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

  .process-grid li {
    min-height: auto;
    padding: 22px 0 8px;
    border-top: 3px solid var(--signal-dark);
  }

  .message-demo {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .message-copy,
  .message-details {
    padding: 24px;
  }

  .vertical-steps article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .benefit-list h3 {
    font-size: 1.3rem;
  }

  .offer-layout {
    gap: 40px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 26px;
  }

  .price strong {
    font-size: 3rem;
  }

  .final-cta {
    padding-block: 76px 110px;
  }

  .final-cta h2 {
    font-size: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

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

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

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 70;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--signal);
    color: var(--ink);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .mobile-cta {
    visibility: hidden;
  }

  .subhero {
    padding-block: 56px 68px;
  }

  .subhero h1,
  .legal-hero h1 {
    font-size: 2.7rem;
  }

  .legal-hero h1 {
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .call-screen {
    padding: 24px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .compare-column {
    min-height: auto;
    padding: 28px;
  }

  .compare-column h2,
  .conversation-plan h2 {
    font-size: 1.9rem;
  }

  .contact-option {
    min-height: 150px;
    padding: 24px;
  }

  .contact-option strong {
    font-size: 1.2rem;
  }

  .legal-hero {
    padding-block: 56px;
  }

  .legal-content {
    padding-block: 62px 100px;
  }

  .cookie-layer {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .cookie-dialog {
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    padding: 20px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
