/* Extracted from pro.html by scripts/extract-inline-styles.cjs (Phase D.5, 2026-05-29). */
/* Verbatim relocation — cascade preserved. Lets the CSP drop 'unsafe-inline' from style-src. */
:root {
  --bg: #0c0b09;
  --surface: #161513;
  --surface2: #201e1b;
  --surface3: #2a2724;
  --amber: #c9a84c;
  --amber-light: #f2efe8;
  --gold: #c9a84c;
  --text: #f2efe8;
  --text-dim: #8a8478;
  --green: #7ac07a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 11, 9, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface3);
}
nav .container { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; }
.nav-brand { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--amber); text-decoration: none; }
.nav-cta {
  background: var(--gold); color: #000;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* Hero — quiet, peer-to-peer, no exclamation. */
.hero { padding: 72px 0 24px; text-align: center; }
.hero .badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12); color: var(--amber);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 auto 18px;
  color: var(--amber-light);
  max-width: 760px;
}
.hero .sub {
  font-size: 1.15rem; color: var(--text-dim);
  max-width: 620px; margin: 0 auto 28px;
}
.hero .meta {
  font-size: 0.88rem; color: var(--text-dim);
  margin-top: 12px;
}
.hero .meta a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* Section base */
section { padding: 56px 0; }
/* D.5 inline-style migration (2026-05-29) — section padding overrides */
section.sec-pt-24 { padding-top: 24px; }
section.sec-pt-8 { padding-top: 8px; }
section.sec-pt-8-pb-24 { padding-top: 8px; padding-bottom: 24px; }
section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 12px;
  text-align: center;
}
section .lede {
  text-align: center; color: var(--text-dim);
  max-width: 640px; margin: 0 auto 36px;
  font-size: 1rem;
}

/* Competitive comparison block — calm, fact-based, no "we're better" rhetoric.
   Shape: 2 columns side-by-side, "Lo que ambos hacen" vs "Lo que solo Nestboard".
   The contract per /etica commitment #7: no inflated claims, named comparison. */
.compare-block {
  background: var(--surface);
  border: 1px solid var(--surface3);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 8px 0 16px;
}
.compare-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--amber-light);
  margin-bottom: 4px;
}
.compare-block .compare-note {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 20px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-col {
  background: var(--surface2);
  border: 1px solid var(--surface3);
  border-radius: 12px;
  padding: 18px 20px;
}
.compare-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: 10px;
  font-weight: 600;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col ul li {
  padding: 7px 0 7px 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
  border-top: 1px solid var(--surface3);
}
.compare-col ul li:first-child { border-top: none; }
.compare-col ul li::before {
  content: "·";
  color: var(--amber);
  position: absolute; left: 6px;
  font-weight: 700;
}
.compare-col.shared ul li::before { content: "="; font-size: 0.78rem; top: 9px; color: var(--text-dim); }
.compare-col.unique ul li::before { content: "+"; color: var(--green); font-size: 1rem; top: 5px; }
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* Feature grid — 5 blocks. Icon + heading + paragraph. Same as landing.html. */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--surface3);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
}
.feature .icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 8px;
  color: var(--amber-light);
}
.feature p { font-size: 0.94rem; color: var(--text-dim); }

/* Pricing strip — single tier, no urgency. */
.pricing-strip {
  background: var(--surface2);
  border: 1px solid var(--amber);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 32px 0;
  text-align: center;
}
.pricing-strip .price-num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1.1;
}
.pricing-strip .price-num small {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}
.pricing-strip .price-line {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 10px 0 16px;
}
.pricing-strip .price-meta {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 8px auto 0;
}

/* Charter promise block — exact same shape as /precios.html, single source. */
.charter {
  background: var(--surface);
  border: 1px solid var(--amber);
  border-radius: 16px;
  padding: 32px;
  margin: 16px 0 32px;
}
.charter h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--amber-light);
  margin-bottom: 16px;
  text-align: left;
}
.charter p { font-size: 0.95rem; color: var(--text); margin-bottom: 12px; }
.charter ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.charter ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: 1px solid var(--surface3);
  font-size: 0.96rem;
  color: var(--text);
}
.charter ul li:first-child { border-top: none; }
.charter ul li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 4px;
  font-weight: 700;
}
.charter a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* Referral note block — Round 2 GTM "Story K" placeholder.
   Per persona spec: facts only, "por confirmar" honest stance. */
.referral-note {
  background: var(--surface);
  border: 1px solid var(--surface3);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 16px 0 32px;
  font-size: 0.94rem;
  color: var(--text);
}
.referral-note strong { color: var(--amber); font-weight: 600; }
.referral-note .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(201, 168, 76, 0.12);
  padding: 2px 8px;
  border-radius: 100px;
  margin-right: 8px;
  vertical-align: middle;
}
.referral-note a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

/* The ONE primary action — symmetry budget = 1. Same as /precios + /cancelar. */
.primary-action-row {
  display: flex;
  justify-content: center;
  margin: 16px 0 8px;
}
.primary-action {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  min-width: 260px;
  text-align: center;
}
.primary-action:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.2);
}
.primary-sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 8px 0 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.primary-sub a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

.secondaries {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 8px;
}
.secondary-action {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.secondary-action:hover { background: rgba(201, 168, 76, 0.08); }

/* Footer */
footer {
  border-top: 1px solid var(--surface3);
  padding: 32px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}
footer .links { margin-bottom: 12px; }
footer .links a { color: var(--amber); text-decoration: none; }
footer .links a:hover { text-decoration: underline; text-underline-offset: 2px; }
footer .credit a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
