/* styles.css — WeSalire · 5 Prompts IA — Guía interactiva
   Sistema de identidad oficial Wesalire v1.0
   Deep Navy #0F2D4A · Teal Ascent #1D9E75 · Rise Amber #EF9F27
   Fraunces (display) + DM Sans (UI/body) */

:root {
  /* Wesalire palette — exact hexes from brand guidelines */
  --navy:        #0F2D4A;
  --navy-deep:   #0A1F33;
  --teal:        #1D9E75;
  --teal-light:  #5DCAA5;
  --teal-tint:   #E1F5EE;
  --teal-dark:   #085041;
  --amber:       #EF9F27;
  --amber-tint:  #FEF3E2;
  --amber-dark:  #412402;
  --sand:        #F0EDE4;
  --sand-warm:   #F7F3EB;
  --cloud:       #F5F7FA;
  --steel:       #B0AA9E;
  --white:       #FFFFFF;

  /* Default (Warm Sand) theme tokens */
  --bg:        var(--sand-warm);
  --bg-deep:   var(--sand);
  --paper:     var(--cloud);
  --ink:       var(--navy);
  --ink-soft:  #2A4664;
  --ink-mute:  #6E7F90;
  --rule:      #D9D2C2;
  --rule-soft: #E6DFCD;
  --accent:    var(--teal);
  --boost:     var(--amber);

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans:    'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 64px);
}

/* Theme variants applied to <body> */
body.theme-sand {
  --bg: var(--sand-warm); --bg-deep: var(--sand);
  --paper: var(--cloud); --ink: var(--navy);
  --rule: #D9D2C2; --rule-soft: #E6DFCD;
}
body.theme-cloud {
  --bg: var(--cloud); --bg-deep: #E9EEF4;
  --paper: var(--white); --ink: var(--navy);
  --rule: #D7DEE7; --rule-soft: #E6EBF1;
}
body.theme-navy {
  --bg: var(--navy); --bg-deep: var(--navy-deep);
  --paper: #112F4E; --ink: var(--sand-warm);
  --ink-soft: #CFD9E3; --ink-mute: #7B8B9D;
  --rule: #1F3F5E; --rule-soft: #173251;
  --accent: var(--teal-light); --boost: var(--amber);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Layout primitives ───────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ── Top nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  display: block;
}
.brand-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-name .we { font-style: italic; }
.brand-name .salire { color: var(--teal); }
body.theme-navy .brand-name .salire { color: var(--teal-light); }
.brand-tag {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

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

.lang-toggle {
  display: inline-flex; padding: 3px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lang-toggle button {
  border: 0; background: transparent; padding: 5px 12px;
  border-radius: 999px; cursor: pointer; color: var(--ink-mute);
  font-family: inherit; font-weight: 600;
  letter-spacing: inherit;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle button.active {
  background: var(--navy); color: var(--sand-warm);
}
body.theme-navy .lang-toggle button.active { background: var(--teal); color: var(--navy); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: var(--bg-deep); border-color: var(--ink-soft); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(48px, 8vw, 112px) 0 clamp(36px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero-eyebrow {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.hero-eyebrow .free-tag {
  padding: 4px 10px; background: var(--amber); color: var(--amber-dark);
  border-radius: 999px; letter-spacing: 0.16em;
  font-weight: 600;
}
.hero-eyebrow .sep {
  width: 24px; height: 1px; background: var(--ink-mute);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8.5vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal);
}
body.theme-navy .hero h1 em { color: var(--teal-light); }
.hero-sub {
  max-width: 560px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 0;
  text-wrap: pretty;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(40px, 5vw, 64px);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta span::before {
  content: ''; width: 5px; height: 5px;
  background: var(--teal); border-radius: 50%;
}
.hero-iso {
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.hero-iso img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 45, 74, 0.18));
}
.hero-iso .caption {
  position: absolute;
  bottom: -4px; right: 0;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.6;
}

/* ── How-it-works strip ──────────────────────────────────────────── */
.howto {
  padding: clamp(48px, 8vw, 96px) 0;
}
.howto-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.howto h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  max-width: 720px;
}
.howto h2 em { font-style: italic; color: var(--teal); }
body.theme-navy .howto h2 em { color: var(--teal-light); }

.howto .kicker {
  font-family: var(--font-sans); font-size: 10px;
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--ink-mute);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.step {
  padding: 36px 32px 32px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step:not(:first-child) { padding-left: 32px; }
.step .num {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
body.theme-navy .step .num { color: var(--teal-light); }
.step .num .big {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 42px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.step p { color: var(--ink-soft); font-size: 15px; margin: 0; max-width: 30ch; line-height: 1.6; }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--rule); padding: 24px 0; }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: 0; }
}

/* ── Prompts section ─────────────────────────────────────────────── */
.prompts { padding-bottom: 64px; }
.section-head {
  padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 2.6vw, 32px);
  display: flex; align-items: end; justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  gap: 24px;
  flex-wrap: wrap;
}
.section-head .label {
  font-family: var(--font-sans); font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(40px, 5.2vw, 72px);
  margin: 0; letter-spacing: -0.02em; line-height: 0.96;
}
.section-head h2 em { font-style: italic; color: var(--teal); }
body.theme-navy .section-head h2 em { color: var(--teal-light); }

.prompt {
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--rule);
}
.prompt:last-child { border-bottom: 0; }

.prompt-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  margin-bottom: 44px;
  align-items: start;
}
.prompt-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--teal);
  font-weight: 300;
}
body.theme-navy .prompt-num { color: var(--teal-light); }
.prompt-num .slash {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.prompt-title h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.prompt-title h2 em { font-style: italic; }
.prompt-title p.pain {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.chip .chip-key {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 600;
}
.chip-level-fácil .dot, .chip-level-easy .dot { background: var(--teal); }
.chip-level-medio .dot, .chip-level-medium .dot { background: var(--amber); }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

@media (max-width: 820px) {
  .prompt-head { grid-template-columns: 1fr; gap: 0; }
  .prompt-num { font-size: 96px; margin-bottom: 16px; }
}

/* ── Static prompt block (PDF-friendly) ─────────────────────────── */
.static-prompt {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
}
body.theme-navy .static-prompt { background: #112F4E; }

.static-prompt-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-deep);
  gap: 16px;
}
body.theme-navy .static-prompt-head { background: var(--navy-deep); }
.static-prompt-head .title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.static-prompt-head .title .pip {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
}
body.theme-navy .static-prompt-head .title .pip { background: var(--teal-light); }

.prompt-text {
  padding: 26px 28px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  white-space: normal;
}
.prompt-text .var {
  display: inline;
  background: var(--amber-tint);
  color: var(--amber-dark);
  padding: 1px 7px;
  margin: 0 1px;
  border-radius: 3px;
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.96em;
  white-space: nowrap;
  border: 1px solid rgba(239, 159, 39, 0.35);
}
body.theme-navy .prompt-text .var {
  background: rgba(239,159,39,0.18);
  color: var(--amber);
  border-color: rgba(239,159,39,0.4);
}

.static-prompt-foot {
  padding: 12px 20px;
  border-top: 1px dashed var(--rule);
  background: transparent;
}
.vars-key {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.vars-key .var-sample {
  background: var(--amber-tint);
  color: var(--amber-dark);
  padding: 1px 7px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 11px;
  border: 1px solid rgba(239, 159, 39, 0.35);
}
body.theme-navy .vars-key .var-sample {
  background: rgba(239,159,39,0.18);
  color: var(--amber);
  border-color: rgba(239,159,39,0.4);
}

.copy-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.copy-pill:hover { border-color: var(--ink); background: var(--bg); }
.copy-pill.copied { color: var(--teal-dark); border-color: var(--teal); background: var(--teal-tint); }
body.theme-navy .copy-pill { background: #112F4E; color: var(--sand-warm); border-color: #1F3F5E; }
body.theme-navy .copy-pill:hover { border-color: var(--teal-light); }
body.theme-navy .copy-pill.copied { color: var(--teal-light); border-color: var(--teal); background: rgba(29,158,117,0.18); }

/* ── Example output block ──────────────────────────────────────── */
.example-block {
  margin-top: 24px;
  padding: 22px 26px 24px;
  background: var(--teal-tint);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
}
body.theme-navy .example-block {
  background: rgba(29,158,117,0.12);
  border-left-color: var(--teal-light);
}
.example-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(29, 158, 117, 0.22);
}
body.theme-navy .example-head { border-bottom-color: rgba(93,202,165,0.25); }
.example-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
body.theme-navy .example-label { color: var(--teal-light); }
.example-meta {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
  opacity: 0.7;
}
body.theme-navy .example-meta { color: var(--teal-light); opacity: 0.75; }
.example-quote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}

/* ── CTA section ──────────────────────────────────────────────── */
.cta {
  padding: clamp(72px, 10vw, 144px) 0;
  background: var(--navy);
  color: var(--sand-warm);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background-image: url('assets/logo-mono-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta-eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 14ch;
  color: var(--sand-warm);
}
.cta h2 em { font-style: italic; color: var(--amber); }
.cta-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: #CFD9E3;
  max-width: 58ch;
  margin: 0 0 64px;
  line-height: 1.65;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-card {
  border: 1px solid #1F3F5E;
  background: var(--navy-deep);
  padding: 36px 32px 32px;
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.cta-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.cta-card .price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid #1F3F5E;
  padding-bottom: 22px;
}
.cta-card .price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sand-warm);
}
.cta-card .price .currency {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  vertical-align: top;
  color: var(--teal-light);
  margin-right: 6px;
  letter-spacing: 0;
}
.cta-card .price-tag {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #CFD9E3;
  padding: 5px 12px;
  border: 1px solid #1F3F5E;
  border-radius: 999px;
}
.cta-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 4px 0 6px;
  color: var(--sand-warm);
}
.cta-card p {
  color: #CFD9E3; margin: 0 0 14px;
  font-size: 15px; line-height: 1.6;
}
.cta-card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: #CFD9E3;
  line-height: 1.5;
}
.cta-card ul li {
  display: flex; gap: 12px; align-items: baseline;
}
.cta-card ul li::before {
  content: '+'; color: var(--amber);
  font-family: var(--font-sans); font-weight: 600;
  font-size: 14px;
}
.cta-card .btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  background: var(--amber); color: var(--amber-dark);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: background 0.15s;
}
.cta-card .btn:hover { background: #F8B14A; }
.cta-card .btn .arrow { font-family: var(--font-sans); font-weight: 400; }

.cta-promise {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #1F3F5E;
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: var(--sand-warm);
}
.cta-promise::before {
  content: ''; width: 24px; height: 1px; background: var(--amber);
}

/* ── Contextual mini-CTA inside prompts ──────────────────────── */
.contextual-cta {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed var(--rule);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: transparent;
}
.contextual-cta p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.contextual-cta a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
body.theme-navy .contextual-cta a { color: var(--teal-light); }
.contextual-cta a:hover { color: var(--teal-dark); }
body.theme-navy .contextual-cta a:hover { color: var(--amber); }

/* ── Footer ─────────────────────────────────────────────────── */
.foot {
  padding: 56px 0 72px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.foot-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
}
.foot-iso { width: 64px; height: auto; }
.foot-mark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.foot-mark .we { font-style: italic; }
.foot-mark .salire { color: var(--teal); }
body.theme-navy .foot-mark .salire { color: var(--teal-light); }
.foot-meta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.8;
}
.foot-meta .tag {
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 9px;
  color: var(--amber);
  margin-top: 6px;
  display: block;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-meta { text-align: left; }
}

/* ── Print styles (Save as PDF) ─────────────────────────────── */
@media print {
  .nav, .tweaks-panel, .twk-panel, .twk-fab, .btn-ghost,
  .copy-pill, .contextual-cta {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  .prompt { break-inside: avoid; page-break-inside: avoid; }
  .static-prompt, .example-block { break-inside: avoid; page-break-inside: avoid; }
  .static-prompt { border: 1px solid #ccc; }
  .static-prompt-head { background: #f5f5f5; }
  .example-block { background: #f7faf8; border-left: 3px solid #1D9E75; }
  .cta { background: #fff; color: #000; padding-top: 48px; }
  .cta h2, .cta-lede, .cta-card { color: #000; }
  .cta-card { background: #f9f9f9; border-color: #ddd; }
  .cta-card .price, .cta-card h3, .cta-card p, .cta-card ul { color: #000; }
  .cta-promise { color: #000; }
  .cta::before { display: none; }
  .hero-iso img { filter: none; }
}
