:root {
  --red: #ef161d;
  --red-dark: #b7070d;
  --ink: #16191f;
  --ink-2: #242831;
  --paper: #ffffff;
  --warm: #f5f4f1;
  --muted: #686d76;
  --line: #dededb;
  --green: #23a66f;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(239, 22, 29, 0.45);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(22, 25, 31, 0.08);
  box-shadow: 0 10px 35px rgba(22, 25, 31, 0.06);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  width: 184px;
  height: 56px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  color: #343840;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 17px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: var(--warm);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: 150px 0 86px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(140deg, #fff 5%, #fbfbfa 55%, #f2f0ed 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(22, 25, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 25, 31, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  right: -160px;
  top: 170px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(239, 22, 29, 0.17), transparent 67%);
}

.hero-glow-two {
  left: 35%;
  bottom: -300px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(22, 25, 31, 0.08), transparent 68%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.manifesto h2,
.method h2,
.contact h2 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 5vw, 5.35rem);
}

.hero h1 strong {
  display: block;
  color: var(--red);
  font-weight: inherit;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: #555a63;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.button span {
  font-size: 1.2em;
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 13px 28px rgba(239, 22, 29, 0.2);
}

.button-primary:hover {
  transform: translateY(-3px);
  background: #d90d14;
  box-shadow: 0 18px 34px rgba(239, 22, 29, 0.27);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #bdc0c5;
  color: #343840;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  max-width: 155px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
  color: #4d5159;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-proof li:first-child {
  padding-left: 0;
  border: 0;
}

.hero-proof span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.hero-example {
  position: relative;
  min-height: 560px;
  padding: 25px;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-radius: 18px;
  box-shadow: 0 30px 75px rgba(22, 25, 31, 0.2);
}

.hero-example::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 38%, #3c414a 38% 100%);
}

.example-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 4px 22px;
  border-bottom: 1px solid #3d424b;
}

.example-topline span,
.example-topline strong {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-topline span {
  color: #ff6c71;
  font-weight: 780;
}

.example-topline strong {
  color: #c2c6cd;
}

.example-flow {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.example-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  min-height: 122px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
}

.example-flow li:not(:last-child)::after {
  content: "↓";
  position: absolute;
  z-index: 2;
  left: 36px;
  bottom: -20px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #454a53;
  font-size: 0.72rem;
}

.example-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red-dark);
  background: #fde8e9;
  font: 790 0.7rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.example-flow small {
  display: block;
  margin-bottom: 5px;
  color: #8a8e96;
  font-size: 0.59rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.example-flow h2 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.example-flow p {
  margin: 7px 0 0;
  color: #6f747d;
  font-size: 0.68rem;
  line-height: 1.4;
}

.example-flow .example-advantic {
  color: white;
  background: var(--red);
}

.example-advantic .example-number {
  color: var(--red);
  background: white;
}

.example-advantic small,
.example-advantic p {
  color: rgba(255, 255, 255, 0.82);
}

.example-result {
  background: #f1f0ed !important;
}

.example-result .example-number {
  color: #16784f;
  background: #ddf4e9;
}

.example-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 4px 0;
  color: #aeb3bb;
  font-size: 0.65rem;
}

.example-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.example-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(35, 166, 111, 0.13);
}

.example-footer strong {
  color: white;
}

.section-pad {
  padding: 120px 0;
}

.manifesto {
  border-top: 1px solid #ececea;
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
  align-items: start;
}

.manifesto h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.manifesto-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-top: 42px;
  border-top: 2px solid var(--ink);
}

.manifesto-copy p {
  margin: 0;
  color: #555a63;
  font-size: 1.05rem;
}

.real-cases {
  background: var(--warm);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbc9c4;
  border-left: 1px solid #cbc9c4;
}

.case-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid #cbc9c4;
  border-bottom: 1px solid #cbc9c4;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 22px 46px rgba(22, 25, 31, 0.08);
}

.case-card-featured {
  grid-column: span 2;
  min-height: 440px;
  color: white;
  background: var(--ink);
}

.case-card-featured:hover {
  background: #20242b;
}

.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-topline i {
  color: #989ca4;
  font: 700 0.67rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  font-style: normal;
}

.case-card h3 {
  max-width: 520px;
  margin: 52px 0 14px;
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.case-card:not(.case-card-featured) h3 {
  margin-top: 38px;
  font-size: 1.45rem;
}

.case-card > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.case-card-featured > p {
  color: #b5b9c1;
  font-size: 1rem;
}

.case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.case-card li {
  padding: 5px 9px;
  border: 1px solid #d4d2cd;
  border-radius: 999px;
  color: #666b73;
  font-size: 0.66rem;
  font-weight: 660;
}

.case-card-featured li {
  border-color: #484c55;
  color: #c6c9cf;
}

.case-card > strong {
  display: block;
  max-width: 650px;
  margin-top: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  font-size: 0.9rem;
}

.case-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 760;
}

.coexistence {
  color: white;
  background: var(--ink);
}

.coexistence-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: center;
}

.coexistence h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.coexistence-layout > div:first-child > p:not(.section-kicker) {
  max-width: 600px;
  margin: 28px 0 0;
  color: #b0b4bc;
}

.systems-map {
  position: relative;
  display: grid;
  gap: 34px;
}

.system-block {
  position: relative;
  padding: 28px;
  border: 1px solid #454952;
  background: #20242b;
}

.system-block > span {
  color: #8f949d;
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-block strong {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.system-block p {
  margin: 8px 0 0;
  color: #aeb2ba;
  font-size: 0.82rem;
}

.system-advantic {
  border-color: rgba(239, 22, 29, 0.65);
  box-shadow: inset 4px 0 0 var(--red);
}

.system-advantic > span {
  color: #ff6469;
}

.system-bridge {
  position: absolute;
  z-index: 2;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 11px;
  border-radius: 999px;
  color: #1e8d61;
  background: #dff5eb;
  font-size: 0.64rem;
  font-weight: 750;
}

.capabilities {
  background: var(--warm);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.method h2,
.contact h2 {
  max-width: 800px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #c9c9c5;
  border-left: 1px solid #c9c9c5;
}

.capability-card {
  min-height: 355px;
  padding: 38px;
  border-right: 1px solid #c9c9c5;
  border-bottom: 1px solid #c9c9c5;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.capability-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 20px 45px rgba(22, 25, 31, 0.08);
}

.card-index {
  margin-bottom: 45px;
  color: var(--red);
  font: 700 0.7rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.capability-card h3 {
  max-width: 330px;
  margin: 0 0 14px;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.capability-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  padding: 5px 9px;
  border: 1px solid #d4d4d0;
  border-radius: 999px;
  color: #595e66;
  font-size: 0.68rem;
  font-weight: 650;
}

.method {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.method::after {
  content: "A4";
  position: absolute;
  right: -35px;
  bottom: -170px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 30rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.method-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.section-kicker.light {
  color: #ff5a5f;
}

.method-intro > p:not(.section-kicker) {
  max-width: 480px;
  margin: 26px 0 0;
  color: #afb3bb;
  font-size: 1.06rem;
}

.method-target {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid #41454e;
}

.method-target strong {
  color: #ff343a;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.method-target span {
  max-width: 155px;
  padding-bottom: 3px;
  color: #c5c8ce;
  font-size: 0.72rem;
  line-height: 1.35;
}

.method-intro > small {
  display: block;
  max-width: 470px;
  margin-top: 16px;
  color: #747983;
  font-size: 0.67rem;
}

.timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid #42464f;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid #42464f;
}

.timeline-number {
  color: #ff4d52;
  font: 700 0.71rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.timeline small {
  color: #7f848e;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 5px 0 4px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.timeline p {
  max-width: 480px;
  margin: 0;
  color: #aeb2ba;
  font-size: 0.9rem;
}

.smart-investment {
  background: #f4f1ed;
}

.investment-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
}

.investment-layout h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.investment-lede {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.investment-points {
  border-top: 2px solid var(--ink);
}

.investment-points article {
  display: grid;
  grid-template-columns: 44px 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #c9c7c2;
}

.investment-points article > span {
  color: var(--red);
  font: 700 0.68rem/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.investment-points h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.investment-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.solutions {
  background: white;
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfd0ce;
  border-left: 1px solid #cfd0ce;
}

.solution-row {
  min-height: 345px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid #cfd0ce;
  border-bottom: 1px solid #cfd0ce;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.solution-row:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: var(--warm);
  box-shadow: 0 20px 45px rgba(22, 25, 31, 0.08);
}

.solution-code {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  font: 750 0.7rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.solution-row > div {
  margin-top: 38px;
}

.solution-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solution-row h3 {
  margin: 0 0 4px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.solution-row p {
  margin: 0;
  color: var(--muted);
}

.solution-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.solution-row li {
  padding: 4px 8px;
  border: 1px solid #dededb;
  border-radius: 999px;
  color: #6a6f77;
  font-size: 0.65rem;
  font-weight: 650;
}

.solutions-note {
  max-width: 680px;
  margin: 24px 0 0 auto;
  color: #7b8088;
  font-size: 0.72rem;
  text-align: right;
}

.continuity {
  position: relative;
  overflow: hidden;
  color: white;
  background: #1b1e24;
}

.continuity::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(239, 22, 29, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(239, 22, 29, 0.04), 0 0 0 160px rgba(239, 22, 29, 0.025);
}

.continuity-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: start;
}

.continuity h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.continuity-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #b4b8c0;
}

.continuity-copy > strong {
  display: block;
  max-width: 590px;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: #f1f2f3;
  font-size: 1.05rem;
}

.continuity-services {
  border-top: 1px solid #454951;
}

.continuity-services > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #454951;
}

.continuity-services span {
  color: #ff5056;
  font: 700 0.67rem/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.continuity-services p {
  margin: 0;
  font-weight: 670;
}

.contact {
  padding-top: 20px;
  background: white;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 70px;
  align-items: end;
  padding: 72px;
  overflow: hidden;
  color: white;
  background: var(--red);
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -165px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.04), 0 0 0 140px rgba(255, 255, 255, 0.025);
}

.contact .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.contact h2 {
  position: relative;
  max-width: 760px;
}

.contact-card > div > p:not(.section-kicker) {
  position: relative;
  max-width: 590px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  position: relative;
  z-index: 1;
}

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

.button-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(93, 0, 4, 0.2);
}

.contact-actions p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  padding: 42px 0;
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: block;
  width: 165px;
  height: 60px;
  overflow: hidden;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-meta {
  display: flex;
  gap: 24px;
  color: #757a82;
  font-size: 0.74rem;
}

/* Visual sales story */
.field-story {
  overflow: hidden;
  background: #fff;
}

.field-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 88px;
  align-items: end;
  margin-bottom: 54px;
}

.field-story-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.field-story-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.field-photo {
  position: relative;
  min-height: 550px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.field-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(11, 13, 17, 0.9) 100%);
  pointer-events: none;
}

.field-photo img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.field-photo:hover img {
  transform: scale(1.018);
}

.field-photo figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 48px;
  align-items: end;
  padding: 32px 38px;
  color: white;
}

.field-photo figcaption span {
  color: #ff7377;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-photo figcaption strong {
  max-width: 700px;
  justify-self: end;
  font-size: clamp(1.25rem, 2.2vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 78px;
  align-items: center;
  padding-top: 90px;
}

.demo-copy h3 {
  margin: 0;
  font-size: clamp(2.1rem, 3.5vw, 3.85rem);
  letter-spacing: -0.052em;
  line-height: 1;
}

.demo-copy > p:not(.section-kicker) {
  margin: 25px 0 0;
  color: var(--muted);
}

.demo-questions {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.demo-questions span {
  position: relative;
  padding: 15px 24px 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.demo-questions span::after {
  content: "+";
  position: absolute;
  right: 2px;
  color: var(--red);
  font-size: 1rem;
}

.product-window {
  overflow: hidden;
  border: 1px solid #d8d9dc;
  border-radius: 18px;
  background: #f8f9fa;
  box-shadow: 0 34px 80px rgba(22, 25, 31, 0.14);
}

.product-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: #6e737d;
  background: white;
  border-bottom: 1px solid #e3e4e6;
  font-size: 0.66rem;
  font-weight: 700;
}

.product-toolbar > b {
  justify-self: end;
  color: var(--ink);
}

.product-dots {
  display: flex;
  gap: 5px;
}

.product-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d8dc;
}

.product-dots i:first-child {
  background: var(--red);
}

.product-content {
  padding: 30px;
}

.quote-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.quote-header small,
.quote-total small {
  color: #7d828b;
  font-size: 0.61rem;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-header h4 {
  margin: 4px 0 0;
  font-size: 1.62rem;
  letter-spacing: -0.04em;
}

.quote-status {
  padding: 7px 10px;
  border-radius: 999px;
  color: #17764f;
  background: #ddf4e9;
  font-size: 0.61rem;
  font-weight: 760;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
}

.quote-table,
.quote-total,
.project-flow {
  border: 1px solid #e1e2e4;
  border-radius: 12px;
  background: white;
}

.quote-row {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.65fr;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #edeef0;
  color: #6d727b;
  font-size: 0.68rem;
}

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

.quote-row strong {
  color: #30343b;
  font-weight: 700;
}

.quote-row > :last-child {
  text-align: right;
}

.quote-row-head {
  color: #91959d;
  background: #fafafa;
  font-size: 0.56rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-total {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.quote-total strong {
  margin: 2px 0 12px;
  font-size: 1.05rem;
}

.quote-total hr {
  width: 100%;
  margin: auto 0 13px;
  border: 0;
  border-top: 1px solid #e3e4e6;
}

.quote-total .quote-price {
  margin-bottom: 0;
  color: var(--red-dark);
  font-size: 1.35rem;
}

.quote-total > span {
  color: #888d95;
  font-size: 0.58rem;
}

.project-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
}

.project-flow > div {
  padding: 14px;
  border-left: 1px solid #ececef;
}

.project-flow > div:first-child {
  border-left: 0;
}

.project-flow span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7a7f87;
  font-size: 0.57rem;
}

.project-flow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8cbd0;
}

.project-flow i.is-done {
  background: var(--green);
}

.project-flow i.is-active {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 22, 29, 0.12);
}

.project-flow b {
  display: block;
  margin-top: 5px;
  font-size: 0.66rem;
}

/* Interactive diagnostic */
.decision-lab {
  background: #fff;
}

.diagnostic-shell {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 30px 75px rgba(22, 25, 31, 0.13);
}

.diagnostic-intro {
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.diagnostic-badge {
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #ff7277;
  font-size: 0.59rem;
  font-weight: 770;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-intro h3 {
  max-width: 460px;
  margin: 34px 0 18px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.diagnostic-intro > p {
  margin: 0;
  color: #b8bcc4;
  font-size: 0.92rem;
}

.diagnostic-intro ul,
.diagnostic-result ul {
  display: grid;
  gap: 10px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.diagnostic-intro li,
.diagnostic-result li {
  position: relative;
  padding-left: 18px;
  font-size: 0.77rem;
}

.diagnostic-intro li::before,
.diagnostic-result li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.diagnostic-intro small {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #3f444d;
  color: #858a93;
  font-size: 0.62rem;
}

.diagnostic-panel {
  min-width: 0;
  padding: 46px;
  color: var(--ink);
  background: #f4f2ee;
}

.diagnostic-progress {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  color: #747981;
  font-size: 0.63rem;
  font-weight: 730;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diagnostic-progress > div {
  height: 4px;
  overflow: hidden;
  background: #d7d4ce;
  border-radius: 999px;
}

.diagnostic-progress i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

.diagnostic-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.diagnostic-step[hidden],
.diagnostic-result[hidden],
[data-diagnostic-form][hidden] {
  display: none !important;
}

.diagnostic-step legend {
  max-width: 660px;
  padding: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.diagnostic-step > p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.diagnostic-option {
  position: relative;
  cursor: pointer;
}

.diagnostic-option-wide {
  grid-column: 1 / -1;
}

.diagnostic-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.diagnostic-option > span {
  display: block;
  min-height: 90px;
  padding: 17px 18px;
  border: 1px solid #d4d2cd;
  border-radius: 10px;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.diagnostic-option b,
.diagnostic-option small {
  display: block;
}

.diagnostic-option b {
  font-size: 0.82rem;
  letter-spacing: -0.015em;
}

.diagnostic-option small {
  margin-top: 5px;
  color: #777b82;
  font-size: 0.64rem;
  line-height: 1.45;
}

.diagnostic-option:hover > span {
  transform: translateY(-2px);
  border-color: #a8aaae;
}

.diagnostic-option input:checked + span {
  border-color: var(--red);
  box-shadow: inset 0 0 0 2px var(--red), 0 10px 24px rgba(239, 22, 29, 0.08);
}

.diagnostic-option input:focus-visible + span {
  outline: 3px solid rgba(239, 22, 29, 0.2);
  outline-offset: 2px;
}

.diagnostic-story {
  display: grid;
  gap: 10px;
}

.diagnostic-story > span {
  color: #6e7279;
  font-size: 0.7rem;
}

.diagnostic-story textarea {
  width: 100%;
  min-height: 190px;
  padding: 16px;
  border: 1px solid #d4d2cd;
  border-radius: 10px;
  color: var(--ink);
  background: white;
  font: inherit;
  resize: vertical;
}

.diagnostic-story textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(239, 22, 29, 0.13);
}

.diagnostic-story small {
  color: #878b92;
  font-size: 0.61rem;
  text-align: right;
}

.diagnostic-actions,
.diagnostic-result-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.diagnostic-actions .button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.diagnostic-back[hidden] {
  display: block;
  visibility: hidden;
}

.diagnostic-result > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
}

.diagnostic-result h3 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(2.35rem, 4.4vw, 4.65rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.diagnostic-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.diagnostic-summary span {
  padding: 7px 10px;
  border: 1px solid #d5d2cc;
  border-radius: 999px;
  color: #656a72;
  background: white;
  font-size: 0.62rem;
  font-weight: 700;
}

.diagnostic-result ul {
  color: #454a52;
}

.calculator-disclosure {
  margin-top: 30px;
  border: 1px solid #d8d8d5;
  background: white;
}

.calculator-disclosure > summary {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 22px 64px 22px 24px;
  cursor: pointer;
  list-style: none;
}

.calculator-disclosure > summary::-webkit-details-marker {
  display: none;
}

.calculator-disclosure > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--red);
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.calculator-disclosure[open] > summary::after {
  content: "−";
}

.calculator-disclosure > summary span {
  color: var(--red);
  font-size: 0.59rem;
  font-weight: 770;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-disclosure > summary strong {
  font-size: 0.88rem;
}

.calculator-disclosure .calculator-shell {
  margin: 0 22px 22px;
  border-radius: 14px;
  box-shadow: none;
}

.calculator-shell {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 30px 75px rgba(22, 25, 31, 0.13);
}

.calculator-controls {
  display: grid;
  gap: 34px;
  padding: 50px;
}

.calc-field > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.calc-field label {
  font-size: 0.82rem;
  font-weight: 710;
}

.calc-field output {
  color: #ff6268;
  font-size: 1rem;
  font-weight: 780;
}

.calc-field input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 18px 0 10px;
  accent-color: var(--red);
  cursor: pointer;
}

.calc-field > span {
  display: block;
  color: #979ca5;
  font-size: 0.66rem;
}

.calculator-result {
  position: relative;
  padding: 50px;
  color: var(--ink);
  background: #f3f1ed;
}

.calculator-result::before {
  content: "Estimación orientativa";
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 9px;
  border: 1px solid #d5d1ca;
  border-radius: 999px;
  color: #79756f;
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result > p {
  margin: 0;
  color: #77736d;
  font-size: 0.72rem;
  font-weight: 700;
}

.result-number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 3px 0 26px;
}

.result-number strong {
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.result-number span {
  color: #737069;
  font-size: 0.77rem;
  font-weight: 730;
}

.cost-number {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid #d9d5ce;
  border-bottom: 1px solid #d9d5ce;
}

.cost-number span {
  color: #6f6b65;
  font-size: 0.69rem;
}

.cost-number strong {
  color: var(--red-dark);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.cost-chart {
  display: grid;
  gap: 12px;
  margin: 25px 0;
}

.cost-chart > div {
  display: grid;
  grid-template-columns: 46px 1fr 70px;
  gap: 10px;
  align-items: center;
  font-size: 0.61rem;
}

.cost-chart i {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #dedad4;
}

.cost-chart b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #9a9da3;
}

.cost-chart .bar-week {
  width: 23.1%;
}

.cost-chart .bar-month {
  width: 100%;
  background: var(--red);
}

.cost-chart strong {
  text-align: right;
}

.calculator-result > small {
  display: block;
  color: #8b8780;
  font-size: 0.58rem;
}

.comparison {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
  margin-top: 105px;
}

.comparison-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.comparison-table {
  border-top: 2px solid var(--ink);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-row strong {
  font-size: 0.76rem;
}

.comparison-row span {
  color: #676c74;
  font-size: 0.76rem;
}

.comparison-row span:last-child {
  position: relative;
  padding-left: 18px;
  color: #2f343b;
  font-weight: 670;
}

.comparison-row:not(.comparison-head) span:last-child::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.comparison-head {
  padding: 12px 0;
}

.comparison-head span {
  color: #969aa1;
  font-size: 0.57rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-head span:last-child {
  padding-left: 0;
  color: var(--red-dark);
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 78px;
  padding: 30px 34px;
  border: 1px solid #d8d8d5;
  background: var(--warm);
}

.mid-cta div {
  display: grid;
  gap: 2px;
}

.mid-cta span {
  color: var(--red-dark);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mid-cta strong {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.mid-cta .button {
  flex: 0 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 34px);
  z-index: 95;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(22, 25, 31, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.back-to-top span {
  font-size: 1.15rem;
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--red);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

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

  .hero-example {
    width: min(100%, 900px);
    margin-inline: auto;
  }
}

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

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

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

  .operations-visual {
    width: min(100%, 650px);
    min-height: 520px;
    margin: 20px auto 0;
  }

  .manifesto-grid,
  .method-layout,
  .coexistence-layout,
  .investment-layout,
  .continuity-layout {
    gap: 60px;
  }

  .contact-card {
    padding: 56px;
    grid-template-columns: 1fr;
  }

  .contact-actions {
    max-width: 430px;
  }

  .demo-layout {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 46px;
  }

  .product-content {
    padding: 22px;
  }

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

  .quote-total {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 15px;
  }

  .quote-total strong {
    margin-bottom: 5px;
    text-align: right;
  }

  .quote-total hr {
    grid-column: 1 / -1;
  }

  .quote-total > span {
    text-align: right;
  }

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

  .project-flow > div:nth-child(3) {
    border-left: 0;
  }

  .project-flow > div:nth-child(n + 3) {
    border-top: 1px solid #ececef;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header {
    height: 70px;
  }

  .brand {
    width: 155px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 18px 22px;
    border-bottom: 1px solid #dededb;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 32px rgba(22, 25, 31, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 4px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero-layout {
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(3rem, 9vw, 4.25rem);
  }

  .hero-proof {
    flex-wrap: wrap;
    row-gap: 22px;
  }

  .section-pad {
    padding: 85px 0;
  }

  .manifesto-grid,
  .method-layout,
  .coexistence-layout,
  .investment-layout,
  .continuity-layout,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .manifesto-copy {
    padding-top: 30px;
  }

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

  .section-heading > p {
    max-width: 520px;
  }

  .capability-card {
    min-height: 340px;
    padding: 30px;
  }

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

  .case-card-featured {
    grid-column: span 2;
  }

  .investment-points article {
    grid-template-columns: 40px 1fr;
  }

  .investment-points p {
    grid-column: 2;
  }

  .method-intro {
    max-width: 650px;
  }

  .solution-row {
    min-height: 330px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid > p {
    display: none;
  }

  .field-story-heading,
  .demo-layout,
  .comparison {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .field-story-heading > p,
  .demo-copy {
    max-width: 680px;
  }

  .field-photo,
  .field-photo img {
    min-height: 460px;
  }

  .demo-layout {
    padding-top: 72px;
  }

  .product-window {
    width: min(100%, 760px);
  }

  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .comparison {
    margin-top: 82px;
  }

  .comparison-heading {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-top: 108px;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .hero-proof li {
    max-width: none;
    padding: 0 15px;
  }

  .hero-proof li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .operations-visual {
    min-height: 460px;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 210px;
    height: 210px;
  }

  .core-card {
    width: 172px;
    min-height: 165px;
  }

  .signal-card {
    min-width: 174px;
    grid-template-columns: 34px 1fr 6px;
    padding: 12px;
  }

  .signal-card-top {
    top: 34px;
  }

  .signal-card-left {
    left: -8px;
    bottom: 72px;
  }

  .signal-card-right {
    right: -8px;
    bottom: 18px;
  }

  .velocity-pill {
    top: 145px;
    right: 10px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .manifesto h2,
  .section-heading h2,
  .method h2,
  .coexistence h2,
  .investment-layout h2,
  .continuity h2,
  .contact h2 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .case-card,
  .case-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .case-card h3,
  .case-card:not(.case-card-featured) h3 {
    margin-top: 32px;
  }

  .case-card ul {
    margin-top: 28px;
  }

  .system-block {
    padding: 24px;
  }

  .system-bridge {
    left: 18px;
  }

  .capability-card {
    min-height: auto;
  }

  .card-index {
    margin-bottom: 28px;
  }

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

  .method-target span {
    max-width: 230px;
  }

  .timeline li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .investment-points article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .solution-row {
    min-height: 315px;
    padding: 24px;
  }

  .solution-code {
    width: 45px;
    height: 45px;
  }

  .solution-row h3 {
    font-size: 1.18rem;
  }

  .solution-row p {
    font-size: 0.79rem;
    line-height: 1.45;
  }

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

  .solutions-note {
    text-align: left;
  }

  .contact {
    padding-top: 0;
  }

  .contact-card {
    width: 100%;
    padding: 55px 24px;
  }

  .button-light {
    padding-inline: 13px;
    font-size: 0.83rem;
  }

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

  .footer-meta {
    justify-content: space-between;
  }

  .field-story-heading h2 {
    font-size: clamp(2.55rem, 11vw, 3.7rem);
  }

  .field-photo,
  .field-photo img {
    min-height: 520px;
  }

  .field-photo img {
    object-position: 32% center;
  }

  .field-photo figcaption {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 24px 20px;
  }

  .field-photo figcaption strong {
    justify-self: start;
  }

  .demo-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .product-toolbar > span {
    display: none;
  }

  .product-content {
    padding: 17px;
  }

  .quote-header {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .quote-row {
    grid-template-columns: 1.15fr 0.65fr 0.65fr;
    padding-inline: 10px;
    font-size: 0.61rem;
  }

  .project-flow {
    grid-template-columns: 1fr;
  }

  .project-flow > div {
    border-top: 1px solid #ececef;
    border-left: 0;
  }

  .project-flow > div:first-child {
    border-top: 0;
  }

  .calculator-controls,
  .calculator-result {
    padding: 34px 22px;
  }

  .calc-field > div,
  .cost-number {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .comparison-row {
    grid-template-columns: 0.55fr 1fr;
    gap: 14px;
  }

  .comparison-row > :last-child {
    grid-column: 2;
  }

  .comparison-row:not(.comparison-head) > span:nth-child(2)::before {
    content: "Hoy: ";
    color: #969aa1;
    font-size: 0.58rem;
    font-weight: 750;
    text-transform: uppercase;
  }

  .comparison-row:not(.comparison-head) > span:last-child::after {
    content: "Con Advantic4";
    display: block;
    margin-top: 12px;
    color: var(--red-dark);
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .comparison-head span:nth-child(2),
  .comparison-head span:nth-child(3) {
    display: none;
  }

  .mid-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .mid-cta .button {
    width: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Consolidated commercial landing */
.hero-case {
  min-height: 0;
}

.hero-case-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.28fr 0.82fr;
  gap: 10px;
  padding: 20px 0 14px;
}

.hero-case-side,
.hero-quote-screen {
  min-width: 0;
  border-radius: 13px;
}

.hero-case-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 278px;
  padding: 18px;
  color: var(--ink);
  background: #f6f4ef;
}

.hero-case-before {
  background: #fff0f0;
}

.hero-case-after {
  background: #e8f6ef;
}

.hero-case-side small,
.hero-case-side > span {
  color: #787d85;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-case-side strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.hero-quote-screen {
  padding: 16px;
  border: 1px solid #444954;
  background: #20242b;
}

.hero-quote-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid #3f444e;
  color: #bfc3ca;
  font-size: 0.58rem;
  font-weight: 730;
}

.hero-quote-head b {
  color: #ff5f65;
}

.hero-quote-screen > div:not(.hero-quote-head) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #353a43;
  color: #afb4bc;
  font-size: 0.65rem;
}

.hero-quote-screen > div strong {
  color: white;
}

.hero-quote-screen > p {
  margin: 13px 0 0;
  padding: 10px;
  color: white;
  background: var(--red);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 780;
  text-align: center;
}

.hero-case-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  color: #c7cad0;
  background: #242831;
  border-radius: 10px;
  font-size: 0.61rem;
  font-weight: 720;
}

.hero-case-flow i {
  width: 18px;
  height: 1px;
  background: #4d525c;
}

.trust-strip {
  border-top: 1px solid #e1e1de;
  border-bottom: 1px solid #e1e1de;
  background: white;
}

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

.trust-strip-grid > div {
  min-width: 0;
  padding: 23px 22px;
  border-left: 1px solid #e1e1de;
}

.trust-strip-grid > div:last-child {
  border-right: 1px solid #e1e1de;
}

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

.trust-strip-grid span {
  color: #8a8f97;
  font-size: 0.59rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip-grid strong {
  margin-top: 3px;
  font-size: 0.82rem;
}

.proof-case {
  background: white;
}

.case-study {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 0;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 30px 75px rgba(22, 25, 31, 0.14);
}

.case-study-copy {
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.case-badge {
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid #4c515b;
  border-radius: 999px;
  color: #ff777c;
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-copy h3 {
  margin: 32px 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.case-study-copy > p {
  margin: 0;
  color: #b7bbc3;
}

.case-study-copy ul {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.case-study-copy li {
  position: relative;
  padding-left: 18px;
  color: #e6e7e9;
  font-size: 0.83rem;
}

.case-study-copy li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.case-study-copy > strong {
  margin-top: auto;
  padding: 17px 0 0 17px;
  border-top: 1px solid #3d424b;
  border-left: 3px solid var(--red);
  font-size: 0.88rem;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid #3d424b;
  background: #3d424b;
}

.case-facts span {
  min-width: 0;
  padding: 14px 10px;
  color: #b7bbc3;
  background: #20242b;
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: center;
}

.case-facts strong {
  display: block;
  margin-bottom: 2px;
  color: white;
  font-size: 1.15rem;
  line-height: 1;
}

.case-dashboard {
  margin: 24px 24px 24px 0;
  overflow: hidden;
  color: var(--ink);
  background: #f3f2ef;
  border-radius: 16px;
}

.dashboard-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #dededb;
  background: white;
  color: #747981;
  font-size: 0.64rem;
  font-weight: 730;
}

.dashboard-toolbar > div {
  display: flex;
  gap: 5px;
}

.dashboard-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d5d8;
}

.dashboard-toolbar i:first-child {
  background: var(--red);
}

.dashboard-toolbar b {
  justify-self: end;
  color: var(--ink);
}

.dashboard-body {
  padding: 28px;
}

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

.dashboard-title small,
.dashboard-title strong {
  display: block;
}

.dashboard-title small {
  color: #83878e;
  font-size: 0.58rem;
  font-weight: 740;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-title strong {
  margin-top: 4px;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}

.dashboard-title > span {
  padding: 6px 9px;
  color: #14734c;
  background: #ddf4e9;
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 750;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.dashboard-metrics article {
  min-width: 0;
  padding: 16px;
  border: 1px solid #dededb;
  background: white;
  border-radius: 12px;
}

.dashboard-metrics small,
.dashboard-metrics strong,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics small {
  color: var(--red-dark);
  font-size: 0.57rem;
  font-weight: 760;
  text-transform: uppercase;
}

.dashboard-metrics strong {
  margin-top: 12px;
  font-size: 0.82rem;
}

.dashboard-metrics span {
  margin-top: 3px;
  color: #81858c;
  font-size: 0.59rem;
}

.dashboard-network {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 10px;
  margin-top: 10px;
}

.network-center,
.network-branches {
  border: 1px solid #dededb;
  background: white;
  border-radius: 12px;
}

.network-center {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 176px;
  text-align: center;
}

.network-center span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: white;
  background: var(--red);
  border-radius: 14px;
  font-weight: 800;
}

.network-center strong {
  margin-top: 12px;
  font-size: 0.72rem;
}

.network-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.network-branches span {
  display: grid;
  place-items: center;
  min-height: 70px;
  border: 1px solid #e5e5e2;
  border-radius: 8px;
  color: #5f646c;
  background: #fafafa;
  font-size: 0.62rem;
  font-weight: 720;
}

.dashboard-caption {
  margin: 12px 0 0;
  color: #888c93;
  font-size: 0.56rem;
  text-align: right;
}

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

.case-grid-compact .case-card {
  min-height: 300px;
}

.solution-capabilities .solution-row {
  min-height: 250px;
}

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

.solution-capabilities .solution-label {
  letter-spacing: 0.08em;
  color: #737880;
}

.comparison-short {
  margin-top: 82px;
}

.section-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid #dededb;
  background: white;
}

.section-cta > div {
  max-width: 690px;
}

.section-cta > div > strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.section-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.section-cta .button {
  flex: 0 0 auto;
}

.section-cta-compact {
  margin-top: 30px;
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.method-consolidated {
  padding-bottom: 70px;
}

.timeline-three li {
  padding-block: 25px;
}

.continuity-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid #454952;
  border-left: 1px solid #454952;
}

.continuity-bar span {
  padding: 18px 20px;
  border-right: 1px solid #454952;
  border-bottom: 1px solid #454952;
  color: #d5d7dc;
  font-size: 0.74rem;
  font-weight: 690;
  text-align: center;
}

.service-summary {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  padding-top: 48px;
  border-top: 1px solid #454952;
}

.service-summary-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 48px;
  align-items: start;
}

.service-summary-heading h3 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid #454952;
  border-left: 1px solid #454952;
}

.service-summary-grid article {
  min-height: 205px;
  padding: 28px;
  border-right: 1px solid #454952;
  border-bottom: 1px solid #454952;
}

.service-summary-grid small,
.service-summary-grid strong {
  display: block;
}

.service-summary-grid small {
  color: #ff5a5f;
  font-size: 0.61rem;
  font-weight: 770;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-summary-grid strong {
  margin-top: 10px;
  font-size: 1.12rem;
}

.service-summary-grid p {
  margin: 15px 0 0;
  color: #aeb2ba;
  font-size: 0.8rem;
}

.ownership-note {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 48px;
  padding: 24px 28px;
  border-right: 1px solid #454952;
  border-bottom: 1px solid #454952;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.035);
}

.ownership-note strong {
  font-size: 1rem;
}

.ownership-note span {
  color: #aeb2ba;
  font-size: 0.76rem;
}

.service-model {
  background: #f3f1ed;
}

.model-heading h2 {
  max-width: 820px;
}

.model-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cecec9;
  border-left: 1px solid #cecec9;
}

.model-flow article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid #cecec9;
  border-bottom: 1px solid #cecec9;
  background: white;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.model-flow article:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(22, 25, 31, 0.09);
}

.model-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  color: white;
  background: var(--ink);
  font: 750 0.72rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.model-flow article:nth-child(2) .model-number {
  background: var(--red);
}

.model-flow small {
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 770;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-flow h3 {
  margin: 9px 0 14px;
  font-size: clamp(1.6rem, 2.4vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.model-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.model-flow strong {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #dfdfdc;
  font-size: 0.76rem;
}

.model-clarity {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-top: 34px;
  padding: 48px;
  color: white;
  background: var(--ink);
  border-radius: 18px;
  box-shadow: 0 28px 65px rgba(22, 25, 31, 0.13);
}

.model-clarity h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.model-clarity > div:first-child > p:not(.section-kicker) {
  max-width: 500px;
  margin: 24px 0 0;
  color: #b7bbc3;
}

.model-clarity-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
  border-left: 1px solid #454a53;
}

.model-clarity-details > p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.model-clarity-details > small {
  margin-top: 17px;
  color: #8f949d;
  font-size: 0.65rem;
  line-height: 1.55;
}

.model-clarity-details .button {
  align-self: flex-start;
  margin-top: 30px;
}

.founder {
  background: var(--warm);
}

.founder-card {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 78px;
  align-items: stretch;
}

.founder-card-company {
  grid-template-columns: 1fr;
  max-width: 1000px;
  padding: 56px;
  border-top: 4px solid var(--red);
  background: white;
  box-shadow: 0 24px 60px rgba(22, 25, 31, 0.08);
}

.founder-identity {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.founder-identity::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(239, 22, 29, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(239, 22, 29, 0.04), 0 0 0 120px rgba(239, 22, 29, 0.025);
}

.founder-monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  color: white;
  background: var(--red);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.founder-identity > div {
  position: relative;
}

.founder-identity strong,
.founder-identity > div span {
  display: block;
}

.founder-identity strong {
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.founder-identity > div span {
  color: #aeb2ba;
  font-size: 0.76rem;
}

.founder-copy {
  align-self: center;
}

.founder-copy h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.founder-copy > p:not(.section-kicker, .company-legal) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.founder-copy blockquote {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 18px 0 18px 22px;
  border-left: 4px solid var(--red);
  font-size: 1.16rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.company-legal {
  margin: 32px 0 0;
  color: #747981;
  font-size: 0.72rem;
  font-weight: 710;
}

.contact-card-form {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}

.contact-email {
  position: relative;
  display: inline-flex;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 760;
}

.contact-company > strong {
  position: relative;
  display: block;
  max-width: 590px;
  margin-top: 25px;
  padding-left: 18px;
  border-left: 3px solid white;
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-card > .contact-company > .company-legal-light {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 710;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: white;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field-wide,
.privacy-consent,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.contact-field label {
  color: #565b63;
  font-size: 0.67rem;
  font-weight: 730;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #d8d9dc;
  border-radius: 7px;
  color: var(--ink);
  background: #fafafa;
  font: inherit;
}

.contact-field input {
  min-height: 46px;
  padding: 0 12px;
}

.contact-field textarea {
  min-height: 100px;
  padding: 11px 12px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(239, 22, 29, 0.12);
}

.privacy-consent {
  display: flex;
  gap: 9px;
  align-items: start;
  color: #6c7179;
  font-size: 0.65rem;
}

.privacy-consent input {
  margin-top: 3px;
  accent-color: var(--red);
}

.privacy-consent a,
.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.contact-form.is-sent {
  box-shadow: inset 0 0 0 2px #1e8d61;
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-note {
  margin: -4px 0 0;
  color: #777c84;
  font-size: 0.62rem;
  text-align: center;
}

.footer-grid-legal {
  grid-template-columns: 170px minmax(130px, 1fr) minmax(360px, auto);
}

.footer-grid-legal .footer-meta {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.legal-page {
  background: var(--warm);
}

.legal-back {
  border-color: #92969d;
}

.legal-main {
  padding: 150px 0 100px;
}

.legal-document {
  max-width: 900px;
  padding: 64px;
  background: white;
  box-shadow: 0 24px 70px rgba(22, 25, 31, 0.08);
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.legal-updated {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-status {
  margin-top: 32px;
  padding: 16px 18px;
  border-left: 4px solid #d59b1c;
  color: #6f5c30;
  background: #fff8e6;
  font-size: 0.82rem;
}

.legal-document section {
  margin-top: 46px;
}

.legal-document h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.legal-document section p {
  margin: 10px 0 0;
  color: #555a63;
}

.legal-document section a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-document > .button {
  margin-top: 54px;
}

.thank-you-main {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
}

.thank-you-card {
  max-width: 900px;
  padding: 64px;
  border-top: 4px solid var(--red);
  background: white;
  box-shadow: 0 24px 70px rgba(22, 25, 31, 0.08);
}

.thank-you-card h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.thank-you-card > p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.thank-you-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

@media (max-width: 1040px) {
  .diagnostic-shell {
    grid-template-columns: 1fr;
  }

  .diagnostic-intro {
    min-height: 410px;
  }

  .hero-case-grid {
    grid-template-columns: 0.75fr 1.25fr 0.75fr;
  }

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

  .case-dashboard {
    margin: 0 24px 24px;
  }

  .founder-card,
  .contact-card-form {
    gap: 50px;
  }

  .footer-grid-legal {
    grid-template-columns: 160px 1fr;
  }

  .footer-grid-legal .footer-meta {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 800px) {
  .diagnostic-intro,
  .diagnostic-panel {
    padding: 40px;
  }

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

  .hero-case-after {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .hero-case-side {
    min-height: 250px;
  }

  .trust-strip-grid,
  .continuity-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-grid-compact,
  .founder-card,
  .contact-card-form {
    grid-template-columns: 1fr;
  }

  .model-flow,
  .model-clarity {
    grid-template-columns: 1fr;
  }

  .model-flow article {
    min-height: auto;
  }

  .model-clarity-details {
    margin-top: 38px;
    padding: 34px 0 0;
    border-top: 1px solid #454a53;
    border-left: 0;
  }

  .founder-card-company {
    padding: 42px;
  }

  .founder-identity {
    min-height: 330px;
  }

  .contact-form {
    width: min(100%, 680px);
  }

  .legal-document {
    padding: 46px 34px;
  }

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

  .service-summary-heading,
  .ownership-note {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-summary-grid {
    grid-template-columns: 1fr;
  }

  .service-summary-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .diagnostic-intro,
  .diagnostic-panel {
    padding: 30px 22px;
  }

  .diagnostic-intro {
    min-height: auto;
  }

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

  .diagnostic-option-wide {
    grid-column: auto;
  }

  .diagnostic-actions,
  .diagnostic-result-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .diagnostic-actions .button,
  .diagnostic-result-actions .button {
    width: 100%;
  }

  .diagnostic-back {
    align-self: flex-start;
  }

  .hero-proof li:nth-child(3) {
    grid-column: 1 / -1;
  }

  .section-cta {
    padding: 22px;
  }

  .section-cta .button {
    width: 100%;
  }

  .service-summary {
    margin-top: 44px;
    padding-top: 40px;
  }

  .service-summary-grid article {
    padding: 24px 20px;
  }

  .ownership-note {
    padding: 22px 20px;
  }

  .model-flow article {
    padding: 28px 22px;
  }

  .model-number {
    margin-bottom: 30px;
  }

  .model-clarity {
    padding: 34px 22px;
  }

  .calculator-disclosure .calculator-shell {
    margin: 0 10px 10px;
  }

  .hero-example {
    padding: 18px;
  }

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

  .hero-case-after {
    grid-column: auto;
  }

  .hero-case-side {
    min-height: 142px;
  }

  .hero-case-flow {
    gap: 5px;
    font-size: 0.56rem;
  }

  .hero-case-flow i {
    width: 10px;
  }

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

  .trust-strip-grid,
  .continuity-bar,
  .dashboard-metrics,
  .dashboard-network {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div:nth-child(odd) {
    border-left: 1px solid #e1e1de;
  }

  .case-study-copy {
    padding: 32px 23px;
  }

  .case-dashboard {
    margin: 0 12px 12px;
  }

  .dashboard-toolbar {
    grid-template-columns: 1fr auto;
  }

  .dashboard-toolbar > span {
    display: none;
  }

  .dashboard-body {
    padding: 17px;
  }

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

  .network-center {
    min-height: 140px;
  }

  .case-grid-compact .case-card,
  .solution-capabilities .solution-row {
    min-height: auto;
  }

  .founder-card {
    gap: 38px;
  }

  .founder-card-company {
    padding: 32px 22px;
  }

  .founder-identity {
    min-height: 270px;
    padding: 25px;
  }

  .founder-copy h2 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-field,
  .contact-field-wide,
  .privacy-consent,
  .contact-form .button,
  .form-note {
    grid-column: 1;
  }

  .footer-grid-legal {
    grid-template-columns: 1fr;
  }

  .footer-grid-legal .footer-meta {
    grid-column: auto;
    display: grid;
    justify-content: start;
  }

  .legal-main {
    padding: 118px 0 70px;
  }

  .legal-document {
    width: min(calc(100% - 28px), 900px);
    padding: 34px 22px;
  }

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

  .section-cta {
    padding: 22px;
  }

  .section-cta .button {
    width: 100%;
  }

  .thank-you-card {
    width: min(calc(100% - 28px), 900px);
    padding: 38px 22px;
  }

  .thank-you-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Diagnóstico operativo completo */

.full-form-link {
  grid-column: 1 / -1;
  justify-self: center;
  color: #4f545d;
  font-size: 0.76rem;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(79, 84, 93, 0.35);
  text-underline-offset: 4px;
}

.full-form-link:hover {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

.assessment-page {
  background: var(--warm);
}

.assessment-main {
  overflow: hidden;
}

.assessment-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 156px 0 84px;
  color: white;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 28%, rgba(239, 22, 29, 0.28), transparent 28%),
    linear-gradient(145deg, #111319 0%, #1b1e25 72%, #242831 100%);
}

.assessment-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.assessment-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.65fr);
  gap: 90px;
  align-items: end;
}

.assessment-back {
  display: inline-flex;
  margin-bottom: 52px;
  color: #b9bdc5;
  font-size: 0.77rem;
  font-weight: 680;
  transition: color 0.2s ease;
}

.assessment-back:hover {
  color: white;
}

.assessment-hero-copy .section-kicker {
  margin-bottom: 26px;
}

.assessment-hero-copy h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3.45rem, 6.9vw, 7.2rem);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.assessment-hero-copy h1 strong {
  display: block;
  color: #ff5a5f;
  font-weight: 650;
}

.assessment-hero-copy > p:last-child {
  max-width: 740px;
  margin: 34px 0 0;
  color: #b9bdc5;
  font-size: 1.05rem;
}

.assessment-promise {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.assessment-promise-label {
  display: block;
  color: #8f949e;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.assessment-promise ul {
  display: grid;
  gap: 0;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.assessment-promise li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.assessment-promise li b {
  color: var(--red);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.assessment-promise li span {
  color: #f5f6f7;
  font-size: 0.9rem;
  font-weight: 640;
  line-height: 1.35;
}

.assessment-promise small {
  display: block;
  color: #8f949e;
  font-size: 0.68rem;
  line-height: 1.55;
}

.assessment-workspace {
  position: relative;
  padding-top: 96px;
  background:
    linear-gradient(90deg, rgba(22, 25, 31, 0.035) 1px, transparent 1px),
    var(--warm);
  background-size: 72px 72px;
}

.assessment-workspace-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.assessment-sidebar {
  position: sticky;
  top: 116px;
}

.assessment-sidebar h2 {
  margin: 0;
  font-size: 2.15rem;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.assessment-sidebar ol {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.assessment-sidebar li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  min-height: 78px;
  color: #8a8e96;
}

.assessment-sidebar li::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: #d4d4d0;
}

.assessment-sidebar li:last-child::after {
  display: none;
}

.assessment-sidebar li > span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #c9c9c5;
  border-radius: 50%;
  background: var(--warm);
  font-size: 0.68rem;
  font-weight: 760;
}

.assessment-sidebar li b,
.assessment-sidebar li small {
  display: block;
}

.assessment-sidebar li b {
  color: #6b7078;
  font-size: 0.86rem;
}

.assessment-sidebar li small {
  margin-top: 2px;
  font-size: 0.68rem;
}

.assessment-sidebar li.is-active > span {
  color: white;
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239, 22, 29, 0.1);
}

.assessment-sidebar li.is-active b {
  color: var(--ink);
}

.assessment-sidebar li.is-complete > span {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.assessment-privacy-note {
  margin-top: 26px;
  padding: 20px;
  border-left: 3px solid var(--green);
  background: white;
  box-shadow: 0 12px 34px rgba(22, 25, 31, 0.05);
}

.assessment-privacy-note strong {
  display: block;
  font-size: 0.79rem;
}

.assessment-privacy-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.full-diagnostic-form {
  position: relative;
  min-height: 690px;
  padding: 52px 58px 46px;
  border-top: 4px solid var(--red);
  background: white;
  box-shadow: 0 30px 90px rgba(22, 25, 31, 0.1);
  scroll-margin-top: 110px;
}

.full-diagnostic-form.is-sent {
  border-top-color: var(--green);
  box-shadow: 0 30px 90px rgba(22, 25, 31, 0.1), inset 0 0 0 2px rgba(35, 166, 111, 0.35);
}

.full-form-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.full-form-topline > div span,
.full-form-topline > div strong {
  display: block;
}

.full-form-topline > div span {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.full-form-topline > div strong {
  margin-top: 4px;
  font-size: 1rem;
}

.full-form-topline > span {
  color: #8a8e96;
  font-size: 0.66rem;
}

.full-form-progress {
  height: 3px;
  margin: 22px 0 46px;
  overflow: hidden;
  background: #ececea;
}

.full-form-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--red);
  transition: width 0.35s var(--ease);
}

.full-form-recovered {
  margin: -26px 0 30px;
  padding: 13px 16px;
  color: #216849;
  border: 1px solid rgba(35, 166, 111, 0.24);
  background: rgba(35, 166, 111, 0.08);
  font-size: 0.75rem;
  font-weight: 650;
}

.full-form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.full-form-step[hidden],
.full-diagnostic-form [hidden] {
  display: none !important;
}

.full-form-step legend {
  max-width: 760px;
  padding: 0;
  font-size: clamp(2rem, 4.1vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.full-form-step-intro {
  max-width: 730px;
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.full-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
}

.full-field {
  min-width: 0;
}

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

.full-field label:not(.privacy-consent),
.full-field-label {
  display: block;
  margin-bottom: 8px;
  color: #454a53;
  font-size: 0.73rem;
  font-weight: 730;
}

.full-field label span,
.full-field-label span {
  color: #969aa1;
  font-size: 0.64rem;
  font-weight: 560;
}

.full-field input,
.full-field select,
.full-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid #d7d7d3;
  border-radius: 0;
  outline: 0;
  background: #fbfbfa;
  font: inherit;
  font-size: 0.86rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.full-field textarea {
  min-height: 116px;
  resize: vertical;
}

.full-field input:focus,
.full-field select:focus,
.full-field textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(239, 22, 29, 0.09);
}

.full-field > small {
  display: block;
  margin-top: 7px;
  color: #8a8e96;
  font-size: 0.65rem;
}

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

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

.full-choice-grid label {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 14px 13px 44px;
  border: 1px solid #dededb;
  background: #fbfbfa;
  cursor: pointer;
}

.full-choice-grid input {
  position: absolute;
  left: 15px;
  width: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--red);
}

.full-choice-grid label:has(input:checked) {
  color: var(--red-dark);
  border-color: rgba(239, 22, 29, 0.45);
  background: rgba(239, 22, 29, 0.045);
}

.full-choice-grid span {
  font-size: 0.73rem;
  font-weight: 650;
  line-height: 1.3;
}

.full-form-consent {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #4d525b;
}

.full-form-consent a {
  color: var(--red-dark);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.full-form-submit-note {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 3px solid var(--red);
  background: var(--warm);
}

.full-form-submit-note strong {
  display: block;
  font-size: 0.82rem;
}

.full-form-submit-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.full-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #e4e4e1;
}

.full-form-actions .text-link {
  margin-right: auto;
}

.full-form-actions .button {
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.full-form-actions .button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.full-form-note {
  margin: 15px 0 0;
  color: #777c84;
  font-size: 0.69rem;
  text-align: right;
}

.assessment-closing {
  padding: 76px 0;
  color: white;
  background: var(--ink);
}

.assessment-closing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}

.assessment-closing h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.assessment-closing-grid > div:last-child p {
  margin: 0 0 18px;
  color: #aeb2ba;
}

.assessment-closing-grid > div:last-child a {
  color: #ff5a5f;
  font-weight: 760;
}

@media (max-width: 980px) {
  .assessment-hero-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .assessment-promise {
    max-width: 720px;
  }

  .assessment-workspace-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .assessment-sidebar {
    position: static;
  }

  .assessment-sidebar h2,
  .assessment-privacy-note {
    display: none;
  }

  .assessment-sidebar ol {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }

  .assessment-sidebar li {
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding-right: 12px;
  }

  .assessment-sidebar li::after {
    top: 16px;
    right: 0;
    bottom: auto;
    left: 34px;
    width: calc(100% - 34px);
    height: 1px;
  }

  .assessment-sidebar li small {
    display: none;
  }

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

@media (max-width: 680px) {
  .assessment-hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .assessment-back {
    margin-bottom: 40px;
  }

  .assessment-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .assessment-hero-copy > p:last-child {
    font-size: 0.92rem;
  }

  .assessment-promise {
    padding: 26px 22px;
  }

  .assessment-workspace {
    padding: 58px 0;
  }

  .assessment-sidebar .section-kicker {
    display: none;
  }

  .assessment-sidebar ol {
    grid-template-columns: repeat(4, 34px);
    justify-content: space-between;
  }

  .assessment-sidebar li {
    display: block;
    padding: 0;
  }

  .assessment-sidebar li::after {
    left: 34px;
    width: calc((100vw - 48px - 136px) / 3);
  }

  .assessment-sidebar li > div {
    display: none;
  }

  .full-diagnostic-form {
    min-height: 0;
    padding: 34px 22px 28px;
  }

  .full-form-topline {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .full-form-progress {
    margin: 18px 0 34px;
  }

  .full-form-step legend {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .full-form-grid,
  .full-choice-grid,
  .full-choice-grid-three {
    grid-template-columns: 1fr;
  }

  .full-field-wide,
  .full-form-consent {
    grid-column: 1;
  }

  .full-form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .full-form-actions .button {
    width: 100%;
  }

  .full-form-actions .text-link {
    align-self: flex-start;
    margin-right: 0;
  }

  .full-form-note {
    text-align: center;
  }

  .assessment-closing-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
