@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
}

/* Content discovery: thematic routes, search and filters */
.topic-directory {
  display: grid;
  gap: clamp(38px, 6vw, 82px);
  padding: 92px 0 116px;
  border-top: 1px solid var(--ink);
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
}

.topic-directory-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.topic-directory-heading h2 {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.topic-directory-heading > p:last-child {
  max-width: 520px;
  color: #665e58;
}

.topic-directory ul {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid #d5cdc6;
  list-style: none;
}

.topic-directory li {
  margin: 0;
}

.topic-directory a {
  display: grid;
  align-items: start;
  gap: 18px;
  padding: 28px 6px;
  border-bottom: 1px solid #d5cdc6;
  color: var(--ink);
  text-decoration: none;
  grid-template-columns: 34px minmax(180px, 0.72fr) minmax(220px, 1fr) 24px;
  transition: border-color 180ms ease, color 180ms ease, padding-inline 180ms ease;
}

.topic-directory a:hover,
.topic-directory a:focus-visible {
  padding-inline: 14px;
  border-color: var(--orange);
  color: var(--orange);
}

.topic-directory a > span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.topic-directory a strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.topic-directory a small {
  color: #6f665f;
  font-size: 0.78rem;
  line-height: 1.55;
}

.topic-directory a i {
  justify-self: end;
  font-style: normal;
}

.catalog-controls {
  padding: clamp(28px, 4vw, 52px);
  margin: 46px 0 82px;
  color: #fffaf4;
  background: var(--ink);
}

.catalog-search {
  display: block;
  max-width: 920px;
}

.catalog-search > span {
  display: block;
  margin-bottom: 12px;
  color: #c8beb4;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-search > div {
  display: grid;
  align-items: center;
  border-bottom: 1px solid #867a71;
  grid-template-columns: 28px minmax(0, 1fr) auto;
}

.catalog-search svg {
  width: 21px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 1.6;
}

.catalog-search input {
  min-width: 0;
  padding: 15px 12px 18px;
  border: 0;
  outline: 0;
  color: #fffaf4;
  background: transparent;
  font: inherit;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}

.catalog-search input::placeholder {
  color: #867d76;
}

.catalog-search > div:focus-within {
  border-color: var(--orange);
}

.catalog-search button {
  padding: 10px 0 10px 18px;
  border: 0;
  color: #fffaf4;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.catalog-filters button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #655d57;
  color: #d9d0c8;
  background: transparent;
  font: inherit;
  font-size: 0.74rem;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.catalog-filters button:hover,
.catalog-filters button:focus-visible,
.catalog-filters button.is-active {
  border-color: var(--orange);
  color: #fff;
  background: #312824;
}

.catalog-filters button span {
  color: var(--orange);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.catalog-feedback {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  margin-top: 24px;
  border-top: 1px solid #413b37;
  color: #9f958d;
  font-size: 0.68rem;
}

.catalog-feedback p {
  margin: 0;
}

.catalog-feedback p:first-child {
  color: #fffaf4;
}

.catalog-empty {
  padding: clamp(50px, 8vw, 96px) 24px;
  margin-bottom: 64px;
  border: 1px solid #d8d0c8;
  text-align: center;
  background: #faf7f2;
}

.catalog-empty > span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-empty h3 {
  max-width: 650px;
  margin: 0 auto 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.catalog-empty p {
  margin-bottom: 28px;
  color: #665e58;
}

[data-catalog-card][hidden],
[data-catalog-group][hidden],
.catalog-empty[hidden],
[data-catalog-clear][hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .topic-directory {
    grid-template-columns: 1fr;
  }

  .topic-directory-heading {
    position: static;
  }

  .topic-directory a {
    grid-template-columns: 30px minmax(150px, 0.75fr) minmax(180px, 1fr) 20px;
  }
}

@media (max-width: 680px) {
  .topic-directory {
    gap: 34px;
    padding: 70px 0 84px;
  }

  .topic-directory a {
    gap: 12px;
    padding: 22px 0;
    grid-template-columns: 26px minmax(0, 1fr) 20px;
  }

  .topic-directory a small {
    display: block;
    grid-column: 2 / -1;
  }

  .catalog-controls {
    margin: 36px 0 62px;
  }

  .catalog-search > div {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .catalog-search button {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 8px 0 14px;
  }

  .catalog-filters {
    flex-wrap: nowrap;
    padding-bottom: 10px;
    margin-right: calc(clamp(28px, 4vw, 52px) * -1);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .catalog-filters button {
    flex: none;
  }

  .catalog-feedback {
    display: block;
  }

  .catalog-feedback p + p {
    margin-top: 7px;
  }
}

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
}

:root {
  --ink: #231e1a;
  --ink-2: #332a25;
  --ink-3: #51443d;
  --teal: #d9542b;
  --teal-dark: #b94322;
  --teal-soft: #fae7dc;
  --sand: #faf1eb;
  --paper: #fcfbfa;
  --white: #ffffff;
  --line: #e7dfda;
  --line-dark: #4d413a;
  --muted: #756d68;
  --gold: #f17b46;
  --shadow: 0 32px 80px rgba(35, 30, 26, 0.14);
  --radius: 24px;
  --radius-small: 10px;
  --shell: min(1220px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

::selection {
  background: #f6c7b3;
  color: var(--ink);
}

button,
a,
summary {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.9vw, 5.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.2vw, 3.9rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

p {
  color: var(--muted);
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(35, 30, 26, 0.07);
  background: rgba(252, 251, 250, 0.94);
  box-shadow: 0 8px 30px rgba(35, 30, 26, 0.035);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #d9542b 0%, #f17b46 100%);
  box-shadow: 0 7px 18px rgba(217, 84, 43, 0.22);
  color: var(--white);
}

.brand-mark img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.desktop-nav a,
.text-link {
  position: relative;
  color: #756d68;
  font-size: 0.91rem;
  font-weight: 620;
  text-decoration: none;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 8px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, #d9542b 0%, #f17b46 100%);
  box-shadow: 0 0 0 1px rgba(217, 84, 43, 0.08), 0 15px 32px -9px rgba(217, 84, 43, 0.46);
  color: var(--white);
  font-weight: 690;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #c74a25 0%, #e86c35 100%);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.89rem;
}

.button-secondary {
  border-color: #e2d9d3;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #d6c8bf;
  background: var(--white);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  box-shadow: none;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--sand);
  background: var(--sand);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 104px 126px;
  background:
    linear-gradient(rgba(217, 84, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 84, 43, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 23% 0%, rgba(241, 123, 70, 0.14), transparent 35%),
    radial-gradient(circle at 82% 18%, rgba(217, 84, 43, 0.09), transparent 31%),
    var(--paper);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(13, 113, 105, 0.13);
  content: "";
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -390px;
  right: -110px;
  border-radius: 50%;
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: 185px;
  left: -180px;
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 94px;
  grid-template-columns: 1fr;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  justify-content: center;
  padding: 8px 15px;
  margin-inline: auto;
  border: 1px solid rgba(217, 84, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 18px rgba(35, 30, 26, 0.06);
  color: #4a403a;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow span {
  color: var(--teal);
  font-size: 1rem;
}

.hero-copy h1 {
  max-width: 980px;
  margin-inline: auto;
  max-width: 1050px;
  font-size: clamp(3.4rem, 5.7vw, 5.45rem);
  line-height: 1.015;
  text-align: center;
}

.hero-copy h1 em {
  display: inline;
  background: linear-gradient(135deg, #d9542b 0%, #f17b46 100%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 840px;
  margin: 0 auto 12px;
  color: #756d68;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  text-align: center;
}

.hero-context {
  margin: 0 auto 30px;
  color: #9a928d;
  font-size: 0.9rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 27px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  gap: 0;
  padding: 8px;
  margin-inline: auto;
  border: 1px solid rgba(217, 84, 43, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 35px rgba(35, 30, 26, 0.05);
  padding: 0;
  margin: 0;
  justify-content: center;
  color: #756d68;
  font-size: 0.86rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-right: 1px solid #ebe2dd;
}

.hero-points li:last-child {
  border-right: 0;
}

.hero-points span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.product-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: visible;
  max-width: 1100px;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-visual::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -6%;
  bottom: -8%;
  left: 6%;
  border-radius: 32px;
  background: linear-gradient(145deg, #f17b46, #c64825);
  box-shadow: 0 40px 90px rgba(217, 84, 43, 0.21);
  content: "";
  transform: rotate(1.8deg);
}

.product-frame {
  overflow: hidden;
  border: 1px solid #ded4ce;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 42px 95px rgba(35, 30, 26, 0.17), 0 3px 10px rgba(35, 30, 26, 0.06);
}

.frame-bar {
  display: grid;
  min-height: 42px;
  align-items: center;
  padding-inline: 16px;
  border-bottom: 1px solid #eee6e1;
  background: #f8f5f2;
  color: #8f8580;
  font-size: 0.67rem;
  grid-template-columns: 1fr auto 1fr;
}

.frame-dots {
  display: flex;
  gap: 6px;
}

.frame-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd2cb;
}

.frame-dots i:first-child {
  background: #f17b46;
}

.frame-secure {
  justify-self: end;
  color: #9d918b;
}

.frame-secure::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #52a879;
  content: "";
}

.product-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-note {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 205px;
  gap: 1px;
  padding: 15px 17px;
  border: 1px solid rgba(222, 212, 206, 0.88);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(35, 30, 26, 0.13);
  backdrop-filter: blur(14px);
}

.visual-note > span {
  color: var(--teal);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.visual-note strong {
  color: var(--ink);
  font-size: 0.81rem;
  letter-spacing: -0.01em;
}

.visual-note small {
  color: #8b817c;
  font-size: 0.67rem;
}

.visual-note-doc {
  top: 12%;
  left: -8%;
}

.visual-note-photo {
  top: 47%;
  right: -9%;
}

.visual-note-pdf {
  bottom: 8%;
  left: -6%;
}

.product-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 18px;
  background: var(--ink);
  color: #d8e5e4;
  font-size: 0.7rem;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 740;
}

.product-brand span {
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid #78b3a9;
  border-radius: 3px;
}

.toolbar-status {
  padding: 5px 9px;
  border: 1px solid #49636a;
  border-radius: 4px;
  color: #acc0c1;
}

.product-layout {
  display: grid;
  min-height: 440px;
  grid-template-columns: 132px 1fr;
}

.product-sidebar {
  padding: 21px 13px;
  border-right: 1px solid #e0e4e1;
  background: #f2f3ef;
}

.sidebar-title {
  display: block;
  margin: 0 8px 15px;
  color: #8a999b;
  font-size: 0.55rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  margin-bottom: 3px;
  border-radius: 5px;
  color: #637377;
  font-size: 0.61rem;
  white-space: nowrap;
}

.sidebar-item i {
  color: #9aa5a6;
  font-size: 0.5rem;
  font-style: normal;
}

.sidebar-item.is-active {
  background: var(--white);
  box-shadow: 0 3px 10px rgba(20, 51, 58, 0.07);
  color: var(--teal-dark);
  font-weight: 700;
}

.product-main {
  min-width: 0;
  padding: 27px;
  background: #fcfcfa;
}

.product-heading,
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-heading strong,
.panel-heading strong {
  display: block;
  margin-top: 4px;
  color: #17353c;
  font-size: 0.98rem;
}

.micro-label {
  display: block;
  color: #8c9a9d;
  font-size: 0.52rem;
  font-weight: 770;
  letter-spacing: 0.11em;
}

.outline-badge {
  padding: 5px 9px;
  border: 1px solid #d4ddd9;
  border-radius: 4px;
  color: #6a797b;
  font-size: 0.56rem;
}

.summary-grid {
  display: grid;
  gap: 8px;
  margin-block: 23px;
  grid-template-columns: repeat(3, 1fr);
}

.summary-grid div {
  padding: 12px;
  border: 1px solid #e0e6e2;
  border-radius: 7px;
  background: var(--white);
}

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

.summary-grid span {
  color: #879598;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.summary-grid strong {
  margin-top: 4px;
  color: #36555b;
  font-size: 0.65rem;
}

.comparison-panel {
  overflow: hidden;
  border: 1px solid #dfe5e1;
  border-radius: 8px;
  background: var(--white);
}

.panel-heading {
  padding: 15px;
  border-bottom: 1px solid #e2e7e4;
}

.panel-heading strong {
  font-size: 0.72rem;
}

.panel-action {
  color: var(--teal);
  font-size: 0.55rem;
  font-weight: 700;
}

.table-head,
.table-row {
  display: grid;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  grid-template-columns: 1.35fr 0.8fr 0.75fr 0.7fr;
}

.table-head {
  background: #f4f5f2;
  color: #809094;
  font-size: 0.48rem;
  font-weight: 760;
  text-transform: uppercase;
}

.table-row {
  border-top: 1px solid #edf0ee;
  color: #647579;
  font-size: 0.53rem;
}

.table-row:first-of-type {
  border-top: 0;
}

.table-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #324f56;
  font-weight: 650;
}

.table-row b {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 4px;
  background: #e0eeea;
  color: var(--teal);
  font-size: 0.5rem;
}

.status-dot {
  color: var(--teal-dark);
  font-weight: 700;
}

.status-dot::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.status-dot.muted {
  color: #88724d;
}

.status-dot.muted::before {
  background: var(--gold);
}

.product-visual figcaption {
  padding-top: 24px;
  color: #8c817b;
  font-size: 0.76rem;
  text-align: center;
}

.audience-strip {
  padding-block: 27px;
  border-block: 1px solid #eadfd8;
  background: #faf1eb;
}

.audience-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.audience-list > span {
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 30px;
  padding: 0;
  margin: 0;
  color: #435d63;
  font-size: 0.87rem;
  font-weight: 610;
  list-style: none;
}

.audience-list li {
  position: relative;
}

.audience-list li + li::before {
  position: absolute;
  top: 50%;
  left: -17px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.problem-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 83% 15%, rgba(241, 123, 70, 0.16), transparent 28%),
    linear-gradient(140deg, #171310 0%, #211b17 72%, #291d17 100%);
  color: var(--white);
}

.problem-section::before {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -230px;
  bottom: -240px;
  border: 1px solid rgba(241, 123, 70, 0.25);
  border-radius: 50%;
  content: "";
}

.problem-section h2,
.problem-section p {
  color: var(--white);
}

.problem-section .intro-copy > p:first-child {
  color: #c9c1bc;
}

.problem-section .accent-note {
  color: #fff4ed;
}

.split-intro {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 1.05fr 0.75fr;
}

.split-intro h2 {
  max-width: 690px;
}

.intro-copy {
  padding-top: 38px;
}

.intro-copy > p:first-child {
  font-size: 1.08rem;
  line-height: 1.8;
}

.accent-note {
  padding: 15px 0 15px 18px;
  margin: 28px 0 0;
  border-left: 2px solid var(--teal);
  color: var(--ink-2);
  font-weight: 660;
}

.transformation-path {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 34px 0 0;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  counter-reset: path;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.transformation-path::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 20%;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, #f17b46, #d9542b);
  content: "";
}

.transformation-path li {
  position: relative;
  display: grid;
  min-height: 125px;
  align-content: start;
  gap: 4px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.transformation-path li:first-child {
  padding-left: 0;
}

.transformation-path li:last-child {
  padding-right: 0;
  border-right: 0;
}

.transformation-path span {
  margin-bottom: 22px;
  color: #f28b5d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.transformation-path strong {
  color: var(--white);
  font-size: 1rem;
}

.transformation-path small {
  color: #a99d96;
  font-size: 0.76rem;
}

.features-section {
  padding-top: 64px;
  background:
    radial-gradient(circle at 0% 30%, rgba(241, 123, 70, 0.075), transparent 24%),
    radial-gradient(circle at 100% 70%, rgba(217, 84, 43, 0.05), transparent 25%),
    var(--paper);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

.section-heading > p:last-child,
.faq-heading > p:last-child,
.workflow-heading > p {
  max-width: 650px;
  font-size: 1.05rem;
}

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

.centered-heading .section-kicker {
  justify-content: center;
}

.narrow-heading {
  max-width: 680px;
}

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

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid #e7dfda;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(35, 30, 26, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: #d9c8be;
  box-shadow: 0 24px 55px rgba(35, 30, 26, 0.1);
  transform: translateY(-5px);
}

.feature-card-wide {
  display: grid;
  min-height: 420px;
  align-items: center;
  gap: 30px;
  grid-column: 1 / -1;
  border-color: #eadbd2;
  background: linear-gradient(135deg, #fff 0%, #fffaf6 68%, #fae7dc 100%);
  grid-template-columns: 0.9fr 0.8fr;
}

.feature-number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: #9aa7a5;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.feature-copy h3,
.feature-card > h3 {
  max-width: 430px;
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

.feature-card p {
  max-width: 520px;
  line-height: 1.75;
}

.clean-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 26px 0 0;
  color: #486068;
  font-size: 0.91rem;
  list-style: none;
}

.clean-list li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.document-stack {
  position: relative;
  min-height: 300px;
}

.paper {
  position: absolute;
  width: min(310px, 82%);
  height: 270px;
  border: 1px solid #d3d9d5;
  border-radius: 8px;
  background: var(--white);
}

.paper-back {
  top: 26px;
  right: 9%;
  transform: rotate(4deg);
}

.paper-front {
  z-index: 2;
  top: 0;
  right: 14%;
  padding: 30px;
  box-shadow: 0 22px 45px rgba(18, 47, 53, 0.12);
  transform: rotate(-2deg);
}

.paper-front::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 8px 0 0 8px;
  background: var(--teal);
  content: "";
}

.paper-front i,
.paper-front strong,
.paper-front span,
.paper-front b {
  display: block;
}

.paper-front i {
  margin-bottom: 18px;
  color: #7f9092;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.paper-front strong {
  margin-bottom: 27px;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.paper-front span,
.paper-back span {
  width: 100%;
  height: 6px;
  margin-bottom: 11px;
  border-radius: 3px;
  background: #e2e6e3;
}

.paper-front span.short {
  width: 65%;
}

.paper-front b {
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid #e1e6e2;
  color: var(--teal);
  font-size: 0.67rem;
}

.paper-back {
  padding: 36px;
}

.mini-comparables {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.mini-comparables > span {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid #d9dfdb;
  border-radius: 7px;
  background: var(--white);
  grid-template-columns: 28px 1fr auto;
}

.mini-comparables i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 5px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 760;
}

.mini-comparables b {
  height: 6px;
  border-radius: 3px;
  background: #d9dfdc;
}

.mini-comparables em {
  color: #6a7c7e;
  font-size: 0.62rem;
  font-style: normal;
}

.photo-analysis {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  min-height: 145px;
  overflow: hidden;
  border: 1px solid #e5ddd7;
  border-radius: 10px;
  background: var(--white);
  grid-template-columns: 0.9fr 1.1fr;
}

.photo-scene {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ead6c8 0 47%, #d3b9a6 47% 53%, #b98567 53% 100%);
}

.photo-window {
  position: absolute;
  width: 54px;
  height: 64px;
  top: 20px;
  left: 22px;
  border: 5px solid #f5eee9;
  background: linear-gradient(145deg, #bfd7d7, #e7eeee);
  box-shadow: 0 8px 18px rgba(35, 30, 26, 0.12);
}

.photo-floor {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: repeating-linear-gradient(105deg, #aa7356 0 19px, #c18b69 20px 38px);
  transform: skewY(-5deg);
  transform-origin: left bottom;
}

.focus-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--teal);
  border-style: solid;
}

.focus-one {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
}

.focus-two {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
}

.analysis-result {
  padding: 19px;
}

.analysis-result > span,
.analysis-result strong {
  display: block;
}

.analysis-result > span {
  color: var(--teal);
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.analysis-result strong {
  margin-block: 5px 12px;
  color: var(--ink-2);
  font-size: 0.78rem;
}

.analysis-result ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.analysis-result li {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.52rem;
  font-weight: 600;
}

.dark-card {
  border-color: #1d1916;
  background:
    radial-gradient(circle at 85% 15%, rgba(241, 123, 70, 0.17), transparent 27%),
    #1d1916;
  color: var(--white);
}

.dark-card h3,
.dark-card p {
  color: var(--white);
}

.dark-card p {
  color: #b9c9ca;
}

.dark-card .feature-number {
  color: #7f989b;
}

.report-preview {
  position: absolute;
  right: 38px;
  bottom: -65px;
  left: 38px;
  min-height: 230px;
  padding: 30px;
  border-radius: 8px 8px 0 0;
  background: var(--white);
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.15);
  color: var(--ink);
}

.report-mark {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 17px;
  border: 2px solid var(--teal);
  border-radius: 6px;
}

.report-preview i,
.report-preview strong,
.report-preview > span:not(.report-mark) {
  display: block;
}

.report-preview i {
  color: #819194;
  font-size: 0.5rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.report-preview strong {
  margin-block: 7px 17px;
}

.report-preview > span:not(.report-mark) {
  width: 80%;
  height: 5px;
  margin-bottom: 8px;
  border-radius: 3px;
  background: #dce2de;
}

.report-preview > span:nth-of-type(4) {
  width: 55%;
}

.report-preview div {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 48px;
  margin-top: 17px;
}

.report-preview div b {
  width: 13%;
  background: var(--teal-soft);
}

.report-preview div b:nth-child(1) { height: 38%; }
.report-preview div b:nth-child(2) { height: 56%; }
.report-preview div b:nth-child(3) { height: 80%; background: var(--teal); }
.report-preview div b:nth-child(4) { height: 64%; }
.report-preview div b:nth-child(5) { height: 44%; }

.workflow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(217, 84, 43, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(217, 84, 43, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #faf1eb 0%, #fcfbfa 100%);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--white);
}

.workflow-section::after {
  position: absolute;
  width: 330px;
  height: 330px;
  top: 50px;
  right: -210px;
  border: 1px solid rgba(217, 84, 43, 0.18);
  border-radius: 50%;
  content: "";
}

.workflow-grid {
  display: grid;
  align-items: start;
  gap: 110px;
  grid-template-columns: 0.82fr 1.18fr;
}

.workflow-heading {
  position: sticky;
  top: 120px;
}

.workflow-heading h2,
.workflow-heading p {
  color: var(--ink);
}

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

.light-kicker {
  color: #88c2b8;
}

.workflow-heading .button {
  margin-top: 20px;
}

.workflow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  gap: 25px;
  padding: 34px 22px 34px 0;
  border-top: 1px solid #dfd5ce;
  grid-template-columns: 50px 1fr;
}

.workflow-list li:last-child {
  border-bottom: 1px solid #dfd5ce;
}

.workflow-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(217, 84, 43, 0.23);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.workflow-list h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.65rem;
}

.workflow-list p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.comparison-section {
  background: linear-gradient(180deg, #f8eee7 0%, #fbf7f3 100%);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #cfd5d1;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 55px rgba(35, 30, 26, 0.07);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 28px;
  border-bottom: 1px solid #dfe4e0;
  vertical-align: top;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  background: #f4f4ef;
  color: #627276;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child {
  width: 22%;
}

.comparison-table thead th:last-child {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.comparison-table tbody th {
  color: var(--ink-2);
  font-size: 0.93rem;
}

.comparison-table tbody td {
  color: #627276;
}

.comparison-table tbody td:last-child {
  background: #fff5ee;
  color: #8c351d;
  font-weight: 620;
}

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

.professional-grid {
  display: grid;
  border-top: 1px solid #d6ddd9;
  border-left: 1px solid #d6ddd9;
  grid-template-columns: repeat(4, 1fr);
}

.professional-grid article {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 30px;
  border-right: 1px solid #d6ddd9;
  border-bottom: 1px solid #d6ddd9;
}

.professional-grid article::after {
  position: absolute;
  right: -6px;
  bottom: -45px;
  color: rgba(217, 84, 43, 0.055);
  content: attr(data-profile);
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.professional-grid article > * {
  position: relative;
  z-index: 1;
}

.professional-grid article:nth-child(even) {
  background: #fff9f5;
}

.professional-grid article > span {
  display: block;
  margin-bottom: 60px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 760;
}

.professional-grid h3 {
  font-size: 1.32rem;
}

.professional-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.professional-control {
  padding-top: 24px;
  background: var(--white);
}

.control-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 90px;
  padding: 76px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 95%, rgba(241, 123, 70, 0.12), transparent 30%),
    #faf1eb;
  grid-template-columns: 1fr 0.9fr;
}

.control-copy p:last-child {
  max-width: 580px;
  line-height: 1.8;
}

.control-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.control-list li {
  display: grid;
  gap: 19px;
  padding-block: 22px;
  border-top: 1px solid #cad4cf;
  grid-template-columns: 42px 1fr;
}

.control-list li:last-child {
  border-bottom: 1px solid #cad4cf;
}

.control-list > li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(217, 84, 43, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 760;
}

.control-list strong {
  color: var(--ink-2);
  font-size: 1rem;
}

.control-list p {
  margin: 4px 0 0;
  font-size: 0.87rem;
}

.faq-section {
  background: var(--paper);
}

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

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-item {
  border-top: 1px solid #cfd6d2;
}

.faq-item:last-child {
  border-bottom: 1px solid #cfd6d2;
}

.faq-item summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--ink-2);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 680;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 15px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item[open] summary {
  color: var(--teal-dark);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 730px;
  padding: 0 48px 25px 0;
  margin: 0;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #b83e20 0%, #df5c2e 58%, #f17b46 100%);
  color: var(--white);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  width: 330px;
  height: 330px;
  top: -230px;
  right: 10%;
}

.final-cta::after {
  width: 160px;
  height: 160px;
  right: -80px;
  bottom: -90px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: 1fr auto;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--white);
}

.final-cta p:not(.section-kicker) {
  max-width: 660px;
  margin-bottom: 0;
  color: #c2d9d4;
  font-size: 1.05rem;
}

.final-cta-actions {
  display: grid;
  justify-items: center;
  gap: 15px;
}

.light-link {
  color: #d9e8e4;
  font-size: 0.86rem;
  text-underline-offset: 4px;
}

.site-footer {
  padding-block: 72px 28px;
  background: #0e121b;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 60px;
  grid-template-columns: 1.8fr repeat(3, 0.7fr);
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-name span {
  color: var(--white);
}

.footer-brand p {
  max-width: 310px;
  margin-top: 20px;
  color: #8fa6aa;
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: #80999c;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: 11px;
  color: #c2d0d1;
  font-size: 0.87rem;
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #294047;
}

.footer-bottom p {
  margin: 0;
  color: #718a8e;
  font-size: 0.76rem;
}

.interactive-tool {
  padding-block: 30px 92px;
}

.free-tool {
  display: grid;
  gap: 32px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid #cfc7bf;
  background:
    linear-gradient(rgba(24, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 18, 0.035) 1px, transparent 1px),
    #fbf9f5;
  background-size: 38px 38px;
  box-shadow: 10px 10px 0 rgba(217, 84, 43, 0.12);
}

.free-tool-heading {
  max-width: 760px;
}

.free-tool-heading h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.free-tool-heading > p:last-child {
  max-width: 650px;
  color: #6d645d;
}

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

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

.free-tool label {
  display: grid;
  gap: 9px;
  color: #443d37;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.free-tool input:not([type="checkbox"]),
.free-tool textarea,
.free-tool select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #bdb3a9;
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.88);
  color: #181512;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
}

.free-tool textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.free-tool input:not([type="checkbox"]):focus,
.free-tool textarea:focus,
.free-tool select:focus {
  border-color: #d9542b;
  box-shadow: 0 0 0 3px rgba(217, 84, 43, 0.12);
}

.free-tool > .button {
  width: fit-content;
}

.tool-result {
  display: grid;
  gap: 7px;
  padding: 26px 28px;
  border-left: 3px solid #d9542b;
  background: #181512;
  color: #fff;
}

.tool-result span {
  color: #f2b49f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-result strong {
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.tool-result small {
  color: #d7cec5;
  font-size: 0.84rem;
  line-height: 1.55;
}

.checklist-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checklist-groups fieldset {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #cfc7bf;
  background: rgba(255, 255, 255, 0.78);
}

.checklist-groups legend {
  width: 100%;
  padding: 14px 16px;
  border-bottom: 1px solid #cfc7bf;
  background: #181512;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checklist-groups label {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 58px;
  padding: 15px 16px;
  border-bottom: 1px solid #e3ddd6;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  cursor: pointer;
}

.checklist-groups label:last-child {
  border-bottom: 0;
}

.checklist-groups input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: #d9542b;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #181512;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  color: #d9542b;
}

/* Professional valuation workbench */
.valuation-tool {
  --tool-progress: 0%;
  border: 1px solid #c9c0b7;
  background: #f8f5f0;
  box-shadow: 12px 12px 0 rgba(217, 84, 43, 0.11);
}

.tool-workbench-header {
  display: grid;
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
  padding: clamp(32px, 5vw, 66px);
  border-bottom: 1px solid #c9c0b7;
  background:
    linear-gradient(rgba(24, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 18, 0.035) 1px, transparent 1px),
    #fbf9f5;
  background-size: 38px 38px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.tool-workbench-header h2 {
  max-width: 850px;
  margin: 8px 0 18px;
  font-size: clamp(2.7rem, 5vw, 5.15rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}

.tool-workbench-header > div > p:last-child {
  max-width: 680px;
  margin: 0;
  color: #625a53;
}

.tool-workbench-header > ul {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid #bfb6ad;
  list-style: none;
}

.tool-workbench-header > ul li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #d6cfc8;
  color: #544c46;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.tool-workbench-header > ul span {
  color: var(--orange);
  font-size: 0.62rem;
}

.tool-workbench-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
}

.tool-input-panel {
  padding: clamp(30px, 5vw, 64px);
  border-right: 1px solid #c9c0b7;
}

.tool-output-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3.5vw, 46px);
}

.tool-step {
  min-width: 0;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border: 0;
  border-bottom: 1px solid #d3cbc4;
}

.tool-step legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 0 22px;
  color: #181512;
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.tool-step legend span {
  display: inline-grid;
  width: 31px;
  height: 31px;
  border: 1px solid #181512;
  place-items: center;
  color: var(--orange);
  font-size: 0.64rem;
}

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

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

.tool-field {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.tool-field-label,
.coefficient-row label > span:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #3f3934;
  font-size: 0.72rem;
  font-weight: 750;
}

.tool-field-label i {
  color: #9b8e84;
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-input-wrap {
  display: grid;
  align-items: stretch;
  min-width: 0;
  border: 1px solid #bdb3a9;
  background: #fff;
  grid-template-columns: minmax(0, 1fr) auto;
}

.tool-input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 84, 43, 0.11);
}

.valuation-tool input,
.valuation-tool textarea,
.valuation-tool select {
  min-width: 0;
  width: 100%;
  padding: 15px 16px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #181512;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 560;
}

.valuation-tool textarea {
  min-height: 190px;
  border: 1px solid #bdb3a9;
  background: #fff;
  line-height: 1.65;
  resize: vertical;
}

.valuation-tool textarea:focus,
.valuation-tool select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 84, 43, 0.11);
}

.tool-input-wrap b {
  display: grid;
  min-width: 48px;
  padding: 0 13px;
  border-left: 1px solid #d5cec7;
  background: #f0ebe5;
  place-items: center;
  color: #766b63;
  font-size: 0.66rem;
  font-weight: 750;
}

.tool-input-wrap--select {
  display: block;
}

.tool-field > small,
.tool-step-help {
  margin: 0;
  color: #7c7168;
  font-size: 0.65rem;
  line-height: 1.45;
}

.tool-step > .tool-field + .tool-field {
  margin-top: 18px;
}

.coefficient-editor {
  display: grid;
  gap: 8px;
}

.coefficient-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d4ccc4;
  background: rgba(255, 255, 255, 0.72);
  grid-template-columns: minmax(0, 1fr) 150px;
}

.coefficient-row label {
  display: grid;
  gap: 7px;
}

.coefficient-row label:first-child input {
  border: 1px solid #d7d0c9;
  background: #fff;
}

.tool-step-help {
  margin-top: 12px;
}

.valuation-tool .tool-actions {
  gap: 18px;
}

.valuation-tool .text-button {
  font-size: 0.75rem;
}

.valuation-tool .tool-result {
  display: block;
  padding: clamp(25px, 4vw, 42px);
  border: 0;
  border-top: 5px solid var(--orange);
  background: #181512;
  color: #fffaf4;
}

.valuation-tool .tool-result header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #433c37;
}

.valuation-tool .tool-result header span,
.valuation-tool .tool-result header small {
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.valuation-tool .tool-result header span {
  color: #f2b49f;
}

.valuation-tool .tool-result header small {
  color: #948a82;
}

.valuation-tool .tool-result output {
  display: block;
  padding: 28px 0;
}

.valuation-tool .tool-result output strong {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.valuation-tool .tool-result output p {
  margin: 13px 0 0;
  color: #c7bdb5;
  font-size: 0.78rem;
  line-height: 1.55;
}

.tool-result-metrics {
  display: grid;
  margin: 0;
  border-top: 1px solid #433c37;
  border-left: 1px solid #433c37;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-result-metrics > div {
  min-width: 0;
  padding: 15px;
  border-right: 1px solid #433c37;
  border-bottom: 1px solid #433c37;
}

.tool-result-metrics dt {
  margin-bottom: 7px;
  color: #8f857d;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tool-result-metrics dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.tool-result-detail {
  padding-top: 22px;
}

.tool-result-detail ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tool-result-detail li {
  position: relative;
  padding-left: 16px;
  color: #c7bdb5;
  font-size: 0.68rem;
  line-height: 1.5;
}

.tool-result-detail li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.valuation-tool .tool-result-note {
  padding-top: 18px;
  margin: 22px 0 0;
  border-top: 1px solid #433c37;
  color: #8f857d;
  font-size: 0.62rem;
  line-height: 1.5;
}

.tool-copy {
  padding: 9px 0;
  margin-top: 18px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #fffaf4;
  font: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
}

.tool-copy:disabled {
  color: #6e665f;
  cursor: not-allowed;
}

.tool-guardrails {
  padding: 24px;
  border: 1px solid #cfc6bd;
  background: #eee8e1;
}

.tool-guardrails > strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.75rem;
}

.tool-guardrails ul {
  display: grid;
  gap: 8px;
  padding-left: 17px;
  margin: 0;
  color: #635b54;
  font-size: 0.67rem;
  line-height: 1.45;
}

.checklist-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.valuation-tool .checklist-groups {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 28px;
}

.valuation-tool .checklist-groups fieldset {
  background: #fff;
}

.valuation-tool .checklist-groups legend {
  display: grid;
  align-items: center;
  grid-template-columns: 32px minmax(0, 1fr) auto;
}

.valuation-tool .checklist-groups legend span,
.valuation-tool .checklist-groups legend small {
  color: #f2b49f;
  font-size: 0.58rem;
}

.valuation-tool .checklist-groups label span {
  display: block;
}

.valuation-tool .checklist-groups input[type="checkbox"] {
  flex: none;
}

.valuation-tool.is-pending-mode .checklist-groups label:has(input:checked) {
  display: none;
}

.valuation-tool[data-tool="valuation-checklist"] .tool-result::after {
  display: block;
  width: var(--tool-progress);
  height: 4px;
  margin-top: 24px;
  background: var(--orange);
  content: "";
  transition: width 220ms ease;
}

@media (max-width: 1050px) {
  .tool-workbench-grid,
  .tool-workbench-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .tool-workbench-header {
    gap: 34px;
  }

  .tool-workbench-header > ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tool-workbench-header > ul li {
    padding: 13px;
    border: 1px solid #d6cfc8;
    border-left: 0;
  }

  .tool-input-panel {
    border-right: 0;
    border-bottom: 1px solid #c9c0b7;
  }

  .tool-output-panel {
    position: static;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }
}

@media (max-width: 700px) {
  .valuation-tool {
    box-shadow: 6px 6px 0 rgba(217, 84, 43, 0.11);
  }

  .tool-workbench-header > ul,
  .tool-output-panel,
  .tool-field-grid,
  .tool-field-grid--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .tool-workbench-header > ul li {
    border-left: 1px solid #d6cfc8;
  }

  .tool-output-panel {
    padding: 18px;
  }

  .coefficient-row {
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .tool-result-metrics {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .valuation-tool .tool-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.84rem;
  }

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

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

  .dark-card {
    grid-column: 1 / -1;
  }

  .visual-note-doc {
    left: -3%;
  }

  .visual-note-photo {
    right: -3%;
  }

  .visual-note-pdf {
    left: -2%;
  }

  .product-layout {
    grid-template-columns: 105px 1fr;
  }

  .product-main {
    padding: 20px;
  }

  .sidebar-item {
    font-size: 0.54rem;
  }

  .workflow-grid,
  .faq-grid {
    gap: 70px;
  }

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

@media (max-width: 880px) {
  .tool-fields,
  .tool-fields--coefficients {
    grid-template-columns: minmax(0, 1fr);
  }

  .checklist-groups {
    grid-template-columns: minmax(0, 1fr);
  }

  :root {
    --shell: min(100% - 36px, 720px);
  }

  .section {
    padding-block: 88px;
  }

  .desktop-nav,
  .desktop-action {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    padding: 9px 0;
    color: var(--ink-2);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 690;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::after {
    display: inline-block;
    margin-left: 6px;
    content: "+";
  }

  .mobile-nav[open] summary::after {
    content: "−";
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 12px 18px 18px;
    border: 1px solid #d8ddd8;
    border-top: 0;
    background: var(--paper);
    box-shadow: 0 18px 38px rgba(19, 48, 55, 0.12);
  }

  .mobile-nav nav a {
    padding: 11px 4px;
    border-bottom: 1px solid #e2e5e1;
    color: var(--ink-2);
    font-size: 0.92rem;
    font-weight: 620;
    text-decoration: none;
  }

  .hero {
    padding-block: 72px 64px;
  }

  .hero-grid,
  .split-intro,
  .workflow-grid,
  .control-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .product-visual {
    width: calc(100% - 32px);
  }

  .visual-note {
    min-width: 180px;
    padding: 12px 14px;
  }

  .visual-note-doc {
    top: 8%;
    left: -18px;
  }

  .visual-note-photo {
    top: 46%;
    right: -18px;
  }

  .visual-note-pdf {
    bottom: 9%;
    left: -12px;
  }

  .transformation-path {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
  }

  .hero-copy h1 {
    max-width: 700px;
  }

  .product-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .audience-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .audience-list ul {
    justify-content: flex-start;
  }

  .split-intro {
    gap: 20px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .feature-card-wide {
    grid-template-columns: 1fr 0.85fr;
  }

  .workflow-grid {
    gap: 52px;
  }

  .workflow-heading,
  .faq-heading {
    position: static;
  }

  .control-grid {
    gap: 45px;
    padding: 54px;
  }

  .faq-grid {
    gap: 42px;
  }

  .final-cta-inner {
    gap: 38px;
  }

  .final-cta-actions {
    justify-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .interactive-tool,
  .interactive-tool * {
    visibility: visible;
  }

  .interactive-tool {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
  }

  .free-tool {
    padding: 14mm;
    box-shadow: none;
  }

  .tool-actions {
    display: none;
  }
}

@media (max-width: 650px) {
  .interactive-tool {
    padding-bottom: 68px;
  }

  .free-tool {
    gap: 25px;
    box-shadow: 6px 6px 0 rgba(217, 84, 43, 0.12);
  }

  .free-tool-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  :root {
    --shell: min(100% - 28px, 540px);
  }

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

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

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

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.79rem;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12.4vw, 3.75rem);
  }

  .hero-points {
    width: 100%;
    align-items: stretch;
    padding: 6px;
  }

  .hero-points li {
    width: 100%;
    padding: 9px 10px;
    border-right: 0;
    border-bottom: 1px solid #ebe2dd;
  }

  .hero-points li:last-child {
    border-bottom: 0;
  }

  .product-visual {
    width: 100%;
    padding-bottom: 188px;
  }

  .product-visual::before {
    right: -3%;
    bottom: 168px;
    left: 3%;
  }

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

  .frame-secure {
    display: none;
  }

  .visual-note {
    right: 0;
    left: 0;
    min-width: 0;
    padding: 11px 14px;
  }

  .visual-note-doc {
    top: auto;
    bottom: 125px;
  }

  .visual-note-photo {
    top: auto;
    bottom: 62px;
  }

  .visual-note-pdf {
    bottom: 0;
  }

  .product-visual figcaption {
    display: none;
  }

  .transformation-path {
    gap: 0;
    margin-top: 54px;
    grid-template-columns: repeat(5, minmax(155px, 1fr));
  }

  .transformation-path li {
    min-height: 110px;
    padding-inline: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13.2vw, 4rem);
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
  }

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

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

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

  .product-layout {
    min-height: 380px;
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 17px;
  }

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

  .summary-grid div {
    padding: 9px;
  }

  .summary-grid strong {
    font-size: 0.55rem;
  }

  .table-head,
  .table-row {
    grid-template-columns: 1.45fr 0.8fr 0.7fr;
  }

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

  .audience-list ul {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-list li + li::before {
    display: none;
  }

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

  .feature-card,
  .feature-card-wide {
    min-height: auto;
    padding: 30px 26px;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .dark-card {
    grid-column: auto;
  }

  .photo-card {
    min-height: 540px;
  }

  .photo-analysis {
    right: 26px;
    left: 26px;
    grid-template-columns: 1fr;
  }

  .photo-scene {
    min-height: 125px;
  }

  .document-stack {
    min-height: 280px;
  }

  .paper-front {
    right: 8%;
  }

  .paper-back {
    right: 2%;
  }

  .dark-card {
    min-height: 525px;
  }

  .report-preview {
    right: 26px;
    left: 26px;
  }

  .workflow-list li {
    grid-template-columns: 38px 1fr;
  }

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

  .professional-grid article {
    min-height: auto;
  }

  .professional-grid article > span {
    margin-bottom: 32px;
  }

  .control-grid {
    padding: 38px 26px;
  }

  .faq-item summary {
    padding-right: 38px;
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding-right: 18px;
  }

  .final-cta {
    padding-block: 72px;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
  }

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

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

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

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

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

/* Dirección de arte EasyTas — editorial técnico */
:root {
  --ink: #181512;
  --ink-2: #2b2521;
  --ink-3: #514943;
  --paper: #f7f4ef;
  --white: #fffefa;
  --line: #ddd7cf;
  --muted: #706862;
  --radius: 2px;
  --shadow: 0 34px 90px rgba(24, 21, 18, 0.16);
}

body {
  background: var(--paper);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.site-header {
  padding-top: 12px;
  border: 0;
  background: linear-gradient(var(--paper) 0 52%, transparent 100%);
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: 66px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(43, 37, 33, 0.12);
  border-radius: 4px;
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 16px 50px rgba(24, 21, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 3px;
  box-shadow: 5px 5px 0 #f1c5b2;
}

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

.desktop-nav {
  padding: 5px;
  border: 1px solid #e5dfd8;
  border-radius: 3px;
  background: #f8f5f1;
  gap: 2px;
}

.desktop-nav a {
  padding: 6px 11px;
  font-size: 0.78rem;
}

.desktop-nav a:hover {
  background: var(--white);
}

.desktop-nav a::after {
  display: none;
}

.button {
  min-height: 48px;
  border-radius: 3px;
  background: var(--teal);
  box-shadow: 6px 6px 0 #f1c5b2;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.button:hover {
  background: var(--ink);
  box-shadow: 3px 3px 0 #f1c5b2;
  transform: translate(3px, 3px);
}

.button-small {
  min-height: 40px;
  box-shadow: 4px 4px 0 #f1c5b2;
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.application-dock {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: #191613;
  box-shadow: 0 18px 48px rgba(24, 21, 18, 0.28);
  color: white;
  font-size: 0.76rem;
  text-decoration: none;
}

.application-dock > span {
  padding: 7px 8px;
  border-radius: 2px;
  background: var(--teal);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.application-dock i {
  color: #f28b5d;
  font-style: normal;
}

.hero {
  min-height: calc(100vh - 78px);
  padding-block: 86px 104px;
  background:
    linear-gradient(rgba(24, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 18, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 0% 0%, rgba(217, 84, 43, 0.12), transparent 32%),
    var(--paper);
  background-position: center;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.hero::before {
  width: 1px;
  height: 72%;
  top: 14%;
  right: auto;
  left: max(18px, calc((100vw - 1220px) / 2 - 24px));
  border: 0;
  border-left: 1px solid rgba(24, 21, 18, 0.18);
  border-radius: 0;
}

.hero::after {
  width: 18px;
  height: 18px;
  top: 101px;
  bottom: auto;
  left: max(9px, calc((100vw - 1220px) / 2 - 33px));
  border-color: var(--teal);
  border-radius: 50%;
}

.hero-coordinates {
  position: absolute;
  top: 106px;
  right: 22px;
  bottom: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #8e857e;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-grid {
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: minmax(400px, 0.82fr) minmax(570px, 1.18fr);
}

.hero-copy {
  position: relative;
  z-index: 6;
}

.hero-copy::before {
  display: block;
  width: 58px;
  height: 5px;
  margin-bottom: 30px;
  background: var(--teal);
  box-shadow: 64px 0 0 #efb49b, 92px 0 0 #efb49b;
  content: "";
}

.eyebrow {
  justify-content: flex-start;
  padding: 0;
  margin: 0 0 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink-3);
  font-size: 0.72rem;
  text-align: left;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: clamp(3.6rem, 5.1vw, 5.2rem);
  line-height: 0.94;
  text-align: left;
}

.hero-copy h1 em {
  display: block;
  margin-top: 10px;
  background: none;
  color: var(--teal);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.08em;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.72;
  text-align: left;
}

.hero-context {
  margin: 0 0 28px;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  width: 100%;
  max-width: 610px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #cfc8c0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-points li {
  min-height: 78px;
  align-items: flex-start;
  padding: 16px 14px 0 0;
  border-right: 0;
  color: #5e5650;
  font-size: 0.71rem;
  line-height: 1.35;
}

.hero-points span {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 2px;
  background: var(--ink);
  color: white;
}

.product-visual {
  width: 118%;
  max-width: none;
  margin-right: -18%;
}

.product-visual::before {
  top: -14px;
  right: -14px;
  bottom: 18px;
  left: 22px;
  border-radius: 2px;
  background: var(--teal);
  box-shadow: 20px 24px 0 rgba(241, 197, 178, 0.75);
  transform: rotate(0);
}

.product-frame {
  border-color: #bfb7b0;
  border-radius: 2px;
  box-shadow: 0 48px 100px rgba(24, 21, 18, 0.2);
  transform: rotate(-1deg);
  transform-origin: 30% 70%;
}

.frame-bar {
  background: #f2eee9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visual-note {
  min-width: 190px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 8px 8px 0 rgba(24, 21, 18, 0.12);
  backdrop-filter: none;
}

.visual-note-doc {
  top: 9%;
  left: -7%;
}

.visual-note-photo {
  top: 50%;
  right: -2%;
}

.visual-note-pdf {
  bottom: 10%;
  left: -4%;
}

.product-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px 0;
  border-bottom: 1px solid #c9c1ba;
  color: #756c66;
  text-align: left;
}

.product-visual figcaption a {
  display: inline-flex;
  gap: 14px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.audience-strip {
  padding-block: 0;
  border: 0;
  background: var(--ink);
  color: white;
}

.audience-list {
  min-height: 76px;
}

.audience-list > span {
  color: #f28b5d;
}

.audience-list ul {
  color: #d8d0c9;
  font-size: 0.78rem;
}

.strip-cta {
  display: inline-flex;
  flex: none;
  gap: 14px;
  padding: 9px 12px;
  border: 1px solid #635750;
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.strip-cta:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.problem-section {
  padding-block: 150px 68px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(140deg, #161310, #231b17);
  background-size: 25% 100%, auto;
}

.problem-section::after {
  position: absolute;
  top: 72px;
  left: 4vw;
  color: rgba(255, 255, 255, 0.055);
  content: "PROCESO / 01";
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 1;
}

.split-intro {
  gap: 12vw;
  grid-template-columns: 1.15fr 0.72fr;
}

.split-intro h2 {
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.96;
}

.split-intro h2::first-line {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.transformation-path {
  margin-top: 110px;
}

.transformation-path::before {
  width: 40%;
}

.transformation-path li:nth-child(odd) {
  transform: translateY(-18px);
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #a99d96;
  font-size: 0.76rem;
}

.section-action a {
  display: inline-flex;
  gap: 28px;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.features-section {
  padding-block: 130px;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(24,21,18,.07) 50%, transparent calc(50% + .5px)),
    var(--paper);
}

.features-section .section-heading {
  max-width: 900px;
  margin-bottom: 80px;
}

.centered-heading,
.centered-heading .section-kicker {
  justify-content: flex-start;
  margin-inline: 0;
  text-align: left;
}

.centered-heading h2 {
  max-width: 850px;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  line-height: 0.96;
}

.centered-heading > p:last-child {
  margin-left: 34%;
  padding-left: 24px;
  border-left: 1px solid var(--teal);
}

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

.feature-card {
  border-radius: 2px;
  box-shadow: none;
}

.feature-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  content: "";
}

.feature-card:hover {
  box-shadow: 12px 12px 0 #ead4c9;
  transform: translate(-4px, -4px);
}

.feature-card-wide {
  grid-column: 1 / 11;
  min-height: 500px;
  border-color: #cfc6be;
  background: var(--white);
}

.feature-card:nth-child(2) {
  grid-column: 1 / 6;
  min-height: 490px;
}

.photo-card {
  grid-column: 6 / 13;
  min-height: 570px;
  margin-top: 72px;
}

.dark-card {
  grid-column: 3 / 11;
  min-height: 540px;
  margin-top: 0;
}

.feature-number {
  top: 18px;
  right: 18px;
  padding: 5px 7px;
  border: 1px solid currentColor;
}

.feature-copy h3,
.feature-card > h3 {
  max-width: none;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.01;
}

.feature-card-wide .feature-copy h3 {
  max-width: 520px;
  font-size: clamp(2.35rem, 3.2vw, 3.35rem);
}

.feature-card:nth-child(2) > h3 {
  font-size: clamp(2.15rem, 2.7vw, 2.7rem);
}

.photo-card > h3 {
  max-width: 610px;
  font-size: clamp(2.35rem, 3vw, 3rem);
}

.dark-card > h3 {
  max-width: 580px;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
}

.inline-conversion {
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 32px 0;
  margin: 90px 0 0;
  border-block: 1px solid var(--ink);
}

.inline-conversion::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 5px;
  background: var(--teal);
  content: "";
}

.conversion-index {
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.inline-conversion p {
  max-width: 580px;
  margin: 0;
  font-size: 0.9rem;
}

.inline-conversion p strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}

.workflow-section {
  padding-block: 140px;
  background: #eae4dc;
}

.workflow-grid {
  gap: 12vw;
}

.workflow-heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
}

.workflow-list li {
  padding: 42px 18px 42px 0;
  border-color: #bdb4ab;
}

.workflow-list li:nth-child(even) {
  margin-left: 56px;
}

.workflow-list > li > span {
  border-radius: 50%;
  background: transparent;
}

.comparison-section {
  padding-block: 140px;
  background: var(--white);
}

.comparison-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

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

.editorial-link {
  display: inline-flex;
  gap: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.comparison-table-wrap {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.comparison-table th,
.comparison-table td {
  padding: 26px 22px;
  border-color: #d1cbc4;
}

.comparison-table thead th,
.comparison-table thead th:last-child {
  background: transparent;
}

.comparison-table tbody td:last-child {
  position: relative;
  background: #f7e5db;
}

.comparison-table tbody td:last-child::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--teal);
  content: "";
}

.professionals-section {
  padding-bottom: 140px;
  background: var(--white);
}

.professionals-section .centered-heading {
  max-width: 820px;
}

.professional-grid {
  gap: 14px;
  border: 0;
}

.professional-grid article {
  min-height: 340px;
  padding: 30px;
  border: 1px solid #d5cec7;
}

.professional-grid article:nth-child(even) {
  margin-top: 46px;
  background: #f3eee8;
}

.professional-grid article::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.professional-control {
  padding-block: 0 140px;
  background: var(--white);
}

.control-grid {
  border: 1px solid #d2cbc4;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(24,21,18,.04) 1px, transparent 1px),
    linear-gradient(rgba(24,21,18,.04) 1px, transparent 1px),
    #f2ede7;
  background-size: 36px 36px;
}

.faq-section {
  padding-block: 140px;
  background: #f3eee8;
}

.faq-item summary {
  font-size: 1.1rem;
}

.final-cta {
  padding-block: 130px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    var(--teal);
  background-size: 10% 100%, auto;
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.92;
}

.final-cta .button-light {
  box-shadow: 7px 7px 0 rgba(24,21,18,.28);
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .product-visual {
    width: 108%;
    margin-right: -8%;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 5vw, 4.5rem);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-intro {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .product-visual {
    width: calc(100% - 40px);
    margin-right: 0;
  }

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

  .feature-card-wide,
  .feature-card:nth-child(2),
  .photo-card,
  .dark-card {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .inline-conversion {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .audience-list ul {
    display: none;
  }
}

@media (max-width: 650px) {
  .site-header {
    padding-top: 0;
    background: var(--white);
  }

  .header-inner {
    min-height: 66px;
    padding-inline: 0;
    border: 0;
    box-shadow: none;
  }

  .application-dock {
    right: 12px;
    bottom: 12px;
  }

  .application-dock strong {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 72px 76px;
  }

  .hero-coordinates {
    display: none;
  }

  .hero-copy::before {
    margin-bottom: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 12.4vw, 4.2rem);
    line-height: 0.92;
  }

  .hero-copy h1 em {
    margin-top: 12px;
    font-size: 1.02em;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .hero-points li {
    min-height: 0;
    padding: 12px 0;
    border-bottom: 1px solid #d9d1c9;
  }

  .product-visual {
    width: 100%;
    padding-bottom: 186px;
  }

  .product-visual figcaption {
    display: none;
  }

  .audience-list {
    min-height: 68px;
  }

  .audience-list > span {
    max-width: 210px;
  }

  .problem-section,
  .features-section,
  .workflow-section,
  .comparison-section,
  .faq-section {
    padding-block: 92px;
  }

  .split-intro h2,
  .centered-heading h2 {
    font-size: clamp(2.55rem, 10.8vw, 3.5rem);
    line-height: 0.98;
  }

  .transformation-path li:nth-child(odd) {
    transform: none;
  }

  .section-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .centered-heading > p:last-child {
    margin-left: 0;
  }

  .feature-card,
  .feature-card-wide {
    padding: 30px 24px;
  }

  .feature-copy h3,
  .feature-card > h3 {
    font-size: clamp(1.9rem, 8.2vw, 2.25rem);
    line-height: 1.03;
  }

  .comparison-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .professional-grid article:nth-child(even) {
    margin-top: 0;
  }

  .workflow-list li:nth-child(even) {
    margin-left: 0;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }
}

/* Registro iniciado desde la web pública y completado en la aplicación */
.final-cta-inner {
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
}

.signup-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(24, 21, 18, 0.22);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(24, 21, 18, 0.24);
  color: var(--ink);
}

.signup-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 74px;
  height: 5px;
  background: var(--ink);
  content: "";
}

.signup-label {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.signup-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.final-cta .signup-card > p {
  margin-bottom: 25px;
  color: #665e58;
  font-size: 0.9rem;
}

.signup-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
}

.signup-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid #bfb6ae;
  background: white;
}

.signup-field:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(24, 21, 18, 0.1);
}

.signup-field input {
  min-width: 0;
  padding: 15px 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
}

.signup-field input::placeholder {
  color: #a59b93;
}

.signup-field button {
  min-height: 52px;
  padding: 12px 16px;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.signup-field button:hover {
  background: var(--teal);
}

.signup-form small {
  display: block;
  margin-top: 10px;
  color: #877d75;
  font-size: 0.65rem;
  line-height: 1.45;
}

.signup-login {
  display: inline-block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 880px) {
  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .signup-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 480px) {
  .signup-card {
    padding: 26px 20px;
  }

  .signup-field {
    grid-template-columns: minmax(0, 1fr);
  }

  .signup-field button {
    width: 100%;
  }
}

/* Páginas editoriales y comerciales generadas desde contenido */
.desktop-nav a[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 46px 110px;
  border-bottom: 1px solid #d5cec7;
  background:
    linear-gradient(rgba(24, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 18, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 83% 12%, rgba(217, 84, 43, 0.13), transparent 28%),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(217, 84, 43, 0.22);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  margin-bottom: 76px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  color: #847a73;
  font-size: 0.7rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 9px;
  color: var(--teal);
  content: "/";
}

.breadcrumbs a {
  color: var(--ink-3);
  text-decoration: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(48px, 9vw, 130px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.5rem, 6.2vw, 6.4rem);
  line-height: 0.94;
}

.page-hero:not(.page-hero--commercial) h1 {
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.page-hero-intro {
  padding: 28px 0 4px 24px;
  border-left: 1px solid var(--teal);
}

.page-hero-intro > p {
  color: #5f5751;
  font-size: 1rem;
  line-height: 1.8;
}

.page-hero-intro .editorial-link {
  margin-top: 0;
}

.editorial-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 20px;
  color: #827870;
  font-size: 0.7rem;
}

.article-meta a {
  text-decoration-color: rgba(217, 84, 43, 0.45);
  text-underline-offset: 3px;
}

.editorial-page {
  padding-block: 96px 130px;
  background: var(--white);
}

.direct-answer {
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  padding-block: 34px 38px;
  margin-bottom: 82px;
  border-block: 1px solid #cfc7bf;
  grid-template-columns: 180px minmax(0, 1fr);
}

.direct-answer-label > span {
  display: block;
  margin-bottom: 12px;
  color: #8a8078;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.direct-answer-label .section-kicker {
  margin: 0;
}

.direct-answer h2 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.direct-answer > div:last-child > p {
  max-width: 940px;
  margin: 0;
  color: #514943;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.audience-pain-map {
  margin-bottom: 110px;
  border-top: 1px solid var(--ink);
}

.audience-pain-heading {
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  padding: 42px 0 38px;
  border-bottom: 1px solid #d6cec6;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
}

.audience-pain-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 0.98;
}

.audience-pain-heading > p {
  align-self: end;
  max-width: 520px;
  margin: 0 0 3px;
  color: #625a54;
  line-height: 1.75;
}

.audience-pain-grid {
  display: grid;
  border-left: 1px solid #d6cec6;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-pain-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid #d6cec6;
  border-bottom: 1px solid #d6cec6;
  background: #fbf9f6;
}

.audience-pain-grid article:nth-child(2),
.audience-pain-grid article:nth-child(3) {
  background: #f2ece6;
}

.audience-pain-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.audience-pain-problem {
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-pain-grid h3 {
  max-width: 470px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.8vw, 2.65rem);
  line-height: 1.02;
}

.audience-pain-grid article > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #625a54;
  font-size: 0.92rem;
  line-height: 1.75;
}

.page-highlights {
  display: grid;
  margin-bottom: 110px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid #d6cec6;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-highlights article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid #d6cec6;
  border-bottom: 1px solid #d6cec6;
}

.page-highlights article:nth-child(2) {
  background: #f3eee8;
}

.page-highlights span {
  display: block;
  margin-bottom: 58px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 700;
}

.page-highlights h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.page-highlights p {
  margin: 0;
  font-size: 0.88rem;
}

.page-toc {
  display: grid;
  gap: 28px;
  padding: 26px 0;
  margin-bottom: 90px;
  border-block: 1px solid #ccc4bc;
  grid-template-columns: 180px 1fr;
}

.page-toc > strong {
  color: var(--teal);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-toc ol {
  display: grid;
  gap: 10px 28px;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style-position: inside;
}

.page-toc li {
  color: #8b817a;
  font-size: 0.8rem;
}

.page-toc a {
  color: var(--ink-2);
  text-decoration-color: #d9d0c9;
  text-underline-offset: 4px;
}

.editorial-sections {
  border-top: 1px solid #cdc5bd;
}

.editorial-section {
  display: grid;
  gap: clamp(40px, 8vw, 118px);
  padding-block: 76px;
  border-bottom: 1px solid #ddd5ce;
  grid-template-columns: 180px minmax(0, 1fr);
}

.editorial-section-label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.editorial-section-label span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: none;
  place-items: center;
  border: 1px solid #c9c0b8;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
}

.editorial-section-label small {
  padding-top: 8px;
  color: #827870;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-section-content {
  max-width: 820px;
}

.editorial-section-content h2 {
  max-width: 760px;
  margin-bottom: 27px;
  font-size: clamp(2.3rem, 4.2vw, 4.15rem);
  line-height: 0.98;
}

.editorial-section-content p {
  max-width: 720px;
  margin-bottom: 18px;
  color: #665e58;
  font-size: 1rem;
  line-height: 1.85;
}

.editorial-section-content ul {
  display: grid;
  gap: 0;
  max-width: 720px;
  padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid #d9d1ca;
  list-style: none;
}

.editorial-section-content li {
  position: relative;
  padding: 13px 14px 13px 22px;
  border-bottom: 1px solid #e2dcd6;
  color: #4f4843;
  font-size: 0.86rem;
}

.editorial-section-content li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.editorial-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  max-width: 720px;
  margin-top: 28px;
}

.editorial-section-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--rust);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.editorial-section-links a:hover {
  color: var(--rust);
}

.editorial-page--legal .editorial-note {
  border-left-color: var(--rust);
  background: #f8e9df;
}

.editorial-data-table {
  margin-top: 34px;
}

.editorial-note {
  max-width: 720px;
  padding: 24px 26px;
  margin-top: 30px;
  border-left: 3px solid var(--teal);
  background: #f5eee7;
}

.editorial-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.editorial-note p {
  margin: 0;
  font-size: 0.9rem;
}

.editorial-inline-cta {
  display: grid;
  align-items: center;
  gap: 48px;
  padding: 42px 46px;
  border-bottom: 1px solid #d5ccc4;
  background:
    linear-gradient(90deg, rgba(217, 84, 43, 0.055) 1px, transparent 1px),
    #f4eee8;
  background-size: 12.5% 100%, auto;
  grid-template-columns: minmax(0, 1fr) auto;
}

.editorial-inline-cta > div {
  max-width: 790px;
}

.editorial-inline-cta .section-kicker {
  margin-bottom: 14px;
}

.editorial-inline-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1;
}

.editorial-inline-cta p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: #6a6058;
}

.editorial-inline-cta .button {
  min-width: 210px;
}

.editorial-comparison {
  margin-bottom: 100px;
}

.editorial-comparison .section-heading,
.editorial-faq .section-heading {
  max-width: 880px;
}

.editorial-comparison .section-heading h2,
.editorial-faq .section-heading h2,
.related-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.editorial-faq {
  display: grid;
  gap: 80px;
  padding-block: 110px;
  grid-template-columns: 0.72fr 1.28fr;
}

.editorial-faq .faq-list {
  padding-top: 6px;
}

.related-content {
  padding-block: 110px;
  border-top: 1px solid var(--ink);
}

.content-collection {
  padding-bottom: 110px;
}

.collection-groups {
  display: grid;
  gap: 104px;
}

.collection-group > header {
  max-width: 850px;
  margin-bottom: 34px;
}

.collection-group > header h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.collection-group > header > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
}

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

.collection-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid #d8d0c8;
  background: #faf7f2;
}

.collection-grid article:nth-child(4n + 2),
.collection-grid article:nth-child(4n + 3) {
  background: #f1eae3;
}

.collection-grid article > span {
  margin-bottom: 54px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.collection-grid h2,
.collection-grid h3,
.collection-grid h4 {
  max-width: 540px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.collection-grid h2 a,
.collection-grid h3 a,
.collection-grid h4 a {
  text-decoration: none;
}

.collection-grid p {
  max-width: 560px;
  color: #665e58;
  font-size: 0.9rem;
}

.editorial-sources {
  padding-block: 90px;
  border-top: 1px solid #d5cdc6;
}

.editorial-sources ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.editorial-sources li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e1dad3;
  font-size: 0.82rem;
}

.editorial-sources li span {
  flex: none;
  color: #877c74;
  font-size: 0.72rem;
}

.topic-peers {
  display: grid;
  gap: clamp(34px, 7vw, 90px);
  padding-block: 72px;
  border-top: 1px solid #d5cdc6;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
}

.topic-peers h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.topic-peers ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.topic-peers a {
  display: grid;
  gap: 8px 22px;
  padding: 22px 0;
  border-bottom: 1px solid #d5cdc6;
  text-decoration: none;
  grid-template-columns: 110px minmax(0, 1fr);
}

.topic-peers a > span {
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topic-peers a > strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.topic-peers a > small {
  color: var(--muted);
  font-size: 0.78rem;
  grid-column: 2;
  line-height: 1.55;
}

.related-heading {
  max-width: 650px;
  margin-bottom: 48px;
}

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

.related-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d8d0c8;
  background: #faf7f2;
}

.related-grid article:nth-child(2) {
  background: #f1eae3;
}

.related-grid article > span {
  margin-bottom: 50px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-grid h3 {
  font-size: 1.45rem;
}

.related-grid h3 a {
  text-decoration: none;
}

.related-grid p {
  font-size: 0.85rem;
}

.card-link {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid #cfc7c0;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.editorial-cta {
  display: grid;
  align-items: center;
  gap: 70px;
  padding: 70px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--teal);
  background-size: 12.5% 100%, auto;
  color: white;
  grid-template-columns: 1fr auto;
}

.editorial-cta h2 {
  max-width: 740px;
  color: white;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.95;
}

.editorial-cta p:not(.section-kicker) {
  max-width: 650px;
  margin-bottom: 0;
  color: #ffe2d5;
}

.not-found {
  min-height: 70vh;
  padding-block: 120px;
  background:
    linear-gradient(rgba(24, 21, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 21, 18, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.not-found h1 {
  max-width: 800px;
  font-size: clamp(4rem, 9vw, 8rem);
}

.not-found > .shell > p:not(.section-kicker) {
  max-width: 560px;
  font-size: 1.1rem;
}

.not-found nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #cfc7bf;
  font-size: 0.8rem;
}

@media (max-width: 1080px) {
  .desktop-nav a {
    padding-inline: 7px;
    font-size: 0.72rem;
  }

  .page-hero-grid {
    gap: 60px;
  }

  .editorial-faq {
    gap: 55px;
  }
}

@media (max-width: 880px) {
  .page-hero {
    padding-bottom: 82px;
  }

  .breadcrumbs {
    margin-bottom: 55px;
  }

  .page-hero-grid,
  .editorial-faq,
  .editorial-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero-intro {
    max-width: 680px;
  }

  .page-highlights,
  .audience-pain-grid,
  .related-grid,
  .collection-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-pain-heading {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-pain-grid article {
    min-height: auto;
  }

  .audience-pain-grid article:nth-child(3) {
    background: #fbf9f6;
  }

  .audience-pain-grid article:nth-child(even) {
    background: #f2ece6;
  }

  .page-highlights article,
  .related-grid article,
  .collection-grid article {
    min-height: auto;
  }

  .page-highlights span,
  .related-grid article > span,
  .collection-grid article > span {
    margin-bottom: 28px;
  }

  .editorial-section {
    gap: 30px;
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .editorial-cta {
    padding: 54px;
  }

  .topic-peers {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-cta .button {
    width: fit-content;
  }

  .editorial-inline-cta {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-inline-cta .button {
    width: fit-content;
  }

  .direct-answer {
    gap: 24px;
    grid-template-columns: 130px minmax(0, 1fr);
  }
}

@media (max-width: 650px) {
  .page-hero {
    padding-block: 32px 68px;
  }

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

  .page-hero-intro {
    padding-left: 17px;
  }

  .editorial-page {
    padding-block: 70px 90px;
  }

  .direct-answer {
    gap: 18px;
    padding-block: 28px 32px;
    margin-bottom: 62px;
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-pain-map {
    margin-bottom: 76px;
  }

  .audience-pain-heading {
    padding-block: 34px;
  }

  .audience-pain-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .audience-pain-grid article {
    padding: 30px 24px 34px;
  }

  .audience-pain-grid article > span {
    margin-bottom: 28px;
  }

  .direct-answer h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .collection-groups {
    gap: 76px;
  }

  .page-toc {
    gap: 18px;
    margin-bottom: 65px;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-toc ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-section {
    gap: 24px;
    padding-block: 56px;
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-section-content h2 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .editorial-inline-cta {
    gap: 28px;
    padding: 34px 24px;
  }

  .editorial-inline-cta h2 {
    font-size: clamp(2rem, 9.8vw, 2.75rem);
  }

  .editorial-faq,
  .related-content,
  .content-collection,
  .editorial-sources,
  .topic-peers {
    padding-block: 78px;
  }

  .topic-peers a {
    grid-template-columns: minmax(0, 1fr);
  }

  .topic-peers a > small {
    grid-column: 1;
  }

  .editorial-faq {
    gap: 35px;
  }

  .editorial-comparison .section-heading h2,
  .editorial-faq .section-heading h2,
  .related-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .editorial-cta {
    gap: 36px;
    padding: 42px 25px;
  }

  .editorial-cta h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.5rem);
  }

  .editorial-sources li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

/* Sistema UX/CRO: una acción principal clara, contexto y objetivos táctiles cómodos */
[id] {
  scroll-margin-top: 92px;
}

.cta-assurance {
  margin: 10px 0 0;
  color: #776e67;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.45;
}

.hero-assurance {
  margin: -14px 0 26px;
  color: #6f665f;
}

.editorial-hero-conversion {
  margin-top: 25px;
}

.editorial-hero-actions {
  margin-top: 0;
}

.editorial-hero-actions .editorial-link,
.section-action a,
.product-visual figcaption a,
.signup-login {
  min-height: 44px;
  align-items: center;
}

.editorial-hero-actions .button {
  min-height: 48px;
}

.inline-cta-action,
.editorial-cta-action {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.inline-cta-action small {
  max-width: 260px;
  color: #756b64;
  font-size: 0.66rem;
  line-height: 1.45;
}

.editorial-cta-action small {
  max-width: 240px;
  color: #ffe5da;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
}

.final-cta-proof {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 26px 0 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.84rem;
  list-style: none;
}

.final-cta-proof li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.final-cta-proof span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: none;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 0.65rem;
}

.application-dock {
  border-color: rgba(24, 21, 18, 0.28);
  background: var(--teal);
  box-shadow: 0 18px 48px rgba(24, 21, 18, 0.24), 5px 5px 0 #f1c5b2;
}

.application-dock > span {
  background: var(--ink);
}

.application-dock i {
  color: white;
}

.application-dock:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.mobile-nav summary {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-nav nav a {
  min-height: 46px;
}

.faq-item summary {
  min-height: 56px;
}

.site-footer .footer-grid > div:not(.footer-brand) a {
  min-height: 36px;
  padding-block: 6px;
  margin-bottom: 1px;
}

.signup-login {
  display: inline-flex;
  margin-top: 14px;
}

@media (max-width: 880px) {
  .editorial-inline-cta {
    gap: 30px;
  }

  .inline-cta-action,
  .editorial-cta-action {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .hero-copy h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.35rem);
    line-height: 0.96;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 11.6vw, 3.45rem);
    line-height: 0.97;
  }

  .page-hero-intro {
    padding: 22px 0 0 16px;
  }

  .editorial-hero-actions {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-hero-actions .button,
  .editorial-hero-actions .editorial-link,
  .inline-cta-action .button,
  .editorial-cta-action .button {
    width: 100%;
  }

  .editorial-hero-actions .editorial-link {
    justify-content: space-between;
    padding: 12px 0;
  }

  .application-dock {
    right: 10px;
    bottom: 10px;
    gap: 9px;
    padding: 7px 9px 7px 7px;
  }

  .application-dock strong {
    display: inline;
  }

  .application-dock > span {
    padding: 6px;
    font-size: 0.48rem;
  }

  .final-cta h2 {
    font-size: clamp(2.75rem, 11vw, 3.65rem);
    line-height: 0.95;
  }

  .final-cta-proof {
    margin-bottom: 10px;
  }
}

/* Footer EasyTas: cierre de producto, navegación y conversión */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 86px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #161310;
  background-size: 44px 44px;
  color: white;
}

.site-footer::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(241, 123, 70, 0.25);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.footer-lead {
  position: relative;
  display: grid;
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
  padding-block: 88px 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.footer-lead::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 92px;
  height: 4px;
  background: var(--teal);
  content: "";
}

.footer-index {
  margin-bottom: 24px;
  color: #f28b5d;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-lead h2 {
  max-width: 850px;
  margin: 0;
  color: white;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: 0.96;
  text-wrap: balance;
}

.footer-lead-action {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-lead-action .button {
  width: 100%;
  justify-content: space-between;
  box-shadow: 6px 6px 0 rgba(241, 197, 178, 0.28);
}

.footer-lead-action small {
  color: #b7ada6;
  font-size: 0.68rem;
  line-height: 1.45;
}

.footer-login {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 12px;
  color: #f4eee8;
  font-size: 0.76rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.site-footer .footer-grid {
  position: relative;
  display: grid;
  gap: clamp(30px, 4vw, 62px);
  padding-block: 74px 68px;
  grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(130px, 0.78fr));
}

.site-footer .footer-brand {
  padding-right: clamp(10px, 3vw, 46px);
}

.site-footer .brand-light {
  color: white;
}

.site-footer .footer-brand p {
  max-width: 320px;
  margin: 25px 0 28px;
  color: #b7ada6;
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-context {
  display: grid;
  gap: 8px;
  max-width: 320px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-context span {
  color: #f28b5d;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.footer-context small {
  color: #81766f;
  font-size: 0.68rem;
  line-height: 1.55;
}

.site-footer .footer-grid nav h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #a89d95;
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer .footer-grid nav h2 span {
  color: #f28b5d;
}

.site-footer .footer-grid nav a {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  color: #d4cbc5;
  font-size: 0.79rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.site-footer .footer-grid nav a::after {
  color: #f28b5d;
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-footer .footer-grid nav a:hover {
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  transform: translateX(3px);
}

.site-footer .footer-grid nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.site-footer .footer-bottom {
  display: grid;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: auto 1fr auto;
}

.site-footer .footer-bottom > p:nth-child(2) {
  text-align: center;
}

.site-footer .footer-bottom p,
.footer-bottom-links {
  margin: 0;
  color: #81766f;
  font-size: 0.68rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-links span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #9e938b;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  color: #d4cbc5;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: white;
}

@media (max-width: 1080px) {
  .site-footer .footer-grid {
    gap: 48px 34px;
    grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(150px, 1fr));
  }

  .site-footer .footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 780px) {
  .footer-lead {
    align-items: start;
    gap: 42px;
    padding-block: 70px 62px;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-lead-action {
    width: min(100%, 430px);
    padding: 0;
    border-left: 0;
  }

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

  .site-footer .footer-brand {
    padding-right: 0;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .site-footer .footer-bottom {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer .footer-bottom > p:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .footer-lead h2 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .site-footer .footer-grid {
    gap: 0;
    padding-block: 58px 48px;
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer .footer-brand {
    padding-bottom: 44px;
  }

  .site-footer .footer-grid nav {
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .site-footer .footer-grid nav h2 {
    margin-bottom: 14px;
  }

  .site-footer .footer-grid nav a {
    min-height: 44px;
  }

  .footer-bottom-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Navegación principal escalable */
.desktop-nav {
  position: static;
  padding: 4px;
}

.nav-menu {
  position: static;
}

.nav-menu summary,
.desktop-nav .nav-direct {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 0;
  background: transparent;
  color: #706862;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.2;
  list-style: none;
  text-decoration: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary span {
  color: #b7ada6;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-menu[open] summary,
.nav-menu.is-active summary,
.desktop-nav .nav-direct[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.nav-menu[open] summary span {
  color: var(--teal);
  transform: rotate(45deg);
}

.nav-panel {
  position: absolute;
  z-index: 130;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: min(760px, calc(100vw - 48px));
  padding: 9px;
  border: 1px solid #d8d0c8;
  background: rgba(255, 254, 250, 0.98);
  box-shadow: 0 30px 80px rgba(24, 21, 18, 0.2), 8px 8px 0 rgba(217, 84, 43, 0.14);
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  transform: translateX(-50%);
}

.nav-panel-intro {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
}

.nav-panel-intro > span {
  margin-bottom: 32px;
  color: #f28b5d;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-panel-intro > strong {
  margin-bottom: 12px;
  color: white;
  font-size: 1.85rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.nav-panel-intro > p {
  margin-bottom: 24px;
  color: #b7ada6;
  font-size: 0.76rem;
  line-height: 1.6;
}

.desktop-nav .nav-panel-intro > a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 3px;
  margin-top: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-panel-intro > a i {
  color: #f28b5d;
  font-style: normal;
}

.nav-panel-links {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 2px 0 2px 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desktop-nav .nav-panel-links > a {
  position: relative;
  display: grid;
  min-height: 122px;
  align-content: start;
  gap: 8px;
  padding: 20px 38px 18px 20px;
  border: 1px solid #e1dad3;
  background: #fbf8f4;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.desktop-nav .nav-panel-links > a:hover,
.desktop-nav .nav-panel-links > a[aria-current="page"] {
  border-color: #d9a58d;
  background: #f8e9e0;
  transform: translateY(-2px);
}

.nav-panel-links strong {
  font-size: 0.86rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.nav-panel-links small {
  color: #746b64;
  font-size: 0.68rem;
  line-height: 1.5;
}

.nav-panel-links > a > span {
  position: absolute;
  top: 18px;
  right: 17px;
  color: var(--teal);
}

.site-header:has(.nav-menu[open]) {
  z-index: 220;
}

@media (max-width: 1080px) and (min-width: 881px) {
  .nav-menu summary,
  .desktop-nav .nav-direct {
    gap: 5px;
    padding-inline: 7px;
    font-size: 0.7rem;
  }
}

@media (max-width: 880px) {
  .mobile-nav nav {
    top: calc(100% + 1px);
    display: block;
    max-height: calc(100vh - 72px);
    padding: 0;
    overflow-y: auto;
    border-color: #d8d0c8;
    background: #f8f5f1;
    box-shadow: 0 24px 60px rgba(24, 21, 18, 0.18);
  }

  .mobile-nav-section {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #d8d0c8;
  }

  .mobile-nav-section > p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-nav-section > p span {
    color: var(--teal);
    font-size: 0.58rem;
  }

  .mobile-nav nav .mobile-nav-section a,
  .mobile-nav nav .mobile-nav-direct,
  .mobile-nav-account a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid #e2dcd6;
    color: var(--ink-2);
    font-size: 0.88rem;
    font-weight: 620;
    text-decoration: none;
  }

  .mobile-nav nav a[aria-current="page"] {
    color: var(--teal-dark);
  }

  .mobile-nav nav .mobile-nav-direct {
    padding-inline: 20px;
    background: white;
  }

  .mobile-nav-account {
    display: grid;
    gap: 10px;
    padding: 18px 20px 22px;
    background: var(--ink);
  }

  .mobile-nav nav .mobile-nav-account a {
    padding-inline: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
  }

  .mobile-nav nav .mobile-nav-account a[data-cta="trial"] {
    border-color: var(--teal);
    background: var(--teal);
    color: white;
  }
}
