:root {
  --paper: #0B0B0C;
  --ink: #F0EFEC;
  --muted: #8F9299;
  --line: #242426;
  --dash: #2E2E30;
  --dark: #171B20;
  --accent: #FF8763;
  --placeholder: #5A5D63;
  --header-h: 78px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", sans-serif;
  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.col {
  max-width: 880px;
  margin: 0 auto;
  border-left: 1px dashed var(--dash);
  border-right: 1px dashed var(--dash);
}

.col-pad { padding: 0 40px; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-col { background: var(--paper); }

.header-pad {
  height: var(--header-h);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.wordmark-name { font-family: var(--font-body); font-weight: 600; font-size: 19px; letter-spacing: -0.035em; color: var(--ink); }
.wordmark-sub { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 500; }

.nav { display: flex; gap: 30px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 400; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease;
}
.btn:hover { background: var(--accent); }
.btn-arrow { flex: none; width: 15px; height: 15px; }
.btn-label-short { display: none; }

/* Hero */
.hero .col {
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-h) + 1px);
  background: linear-gradient(180deg, rgba(255,135,99,0.08) 0%, rgba(11,11,12,0) 62%);
  border-bottom: 1px solid var(--line);
}
.hero .col::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: -280px;
  left: 50%;
  width: 1200px;
  height: 640px;
  margin-left: -600px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,135,99,0.16), rgba(255,135,99,0) 70%);
  animation: glow-drift 20s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  0% { transform: translate3d(-160px, 0, 0) scale(1); }
  50% { transform: translate3d(120px, 80px, 0) scale(1.08); }
  100% { transform: translate3d(-80px, 40px, 0) scale(0.98); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .col::before { animation: none; }
}
.hero .col-pad { padding-top: 120px; padding-bottom: 96px; position: relative; }

.eyebrow {
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}

h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: clamp(54px, 5.2vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 790px;
  margin-bottom: 30px;
  text-wrap: balance;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; align-items: center; gap: 18px; }
.hero-note { color: var(--muted); font-size: 14px; }

/* Sections */
.section .col { border-bottom: 1px solid var(--line); }
.section .col-pad { padding-top: 72px; padding-bottom: 72px; }

h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 34px;
  text-wrap: balance;
}

#para-quien h2 { margin-bottom: 20px; }
#muestra h2 { margin-bottom: 16px; }

.section-intro {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 34px;
}

.commercial-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.commercial-note { color: var(--muted); font-size: 14px; max-width: 360px; }

.steps { list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: none; }
.step-num { color: var(--accent); font-size: 13px; font-weight: 500; }
.steps p { font-size: 18px; font-weight: 500; color: var(--ink); line-height: 1.5; }

.includes { list-style: none; }
.includes li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}
.includes li:last-child { border-bottom: none; }

.note { color: var(--muted); font-size: 17px; max-width: 620px; margin-top: 34px; }

.body-text { color: var(--muted); font-size: 17px; max-width: 620px; }

.faq-list { max-width: 700px; }
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { padding-bottom: 0; border-bottom: none; }
.faq-item h3 {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.faq-item p { color: var(--muted); font-size: 16px; max-width: 660px; }

/* Form */
.form { max-width: 620px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input { height: 46px; }
.field textarea { min-height: 86px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--placeholder); }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--ink); }

.btn-submit { width: 320px; max-width: 100%; padding: 14px 18px; font-size: 14px; line-height: 14px; }
.btn-submit:disabled { cursor: wait; opacity: .62; }

.form-note { margin-top: 14px; color: var(--muted); font-size: 14px; max-width: 520px; }
.form-success { margin-top: 20px; color: var(--ink); font-weight: 500; }
.form-success[data-state="pending"] { color: var(--muted); }
.form-success[data-state="error"] { color: var(--accent); }

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  max-width: 620px;
  margin: 4px 0 22px;
}
.form-consent input { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--accent); }
.form-consent label { color: var(--muted); font-size: 14px; line-height: 1.55; }
.form-consent a { color: var(--ink); text-underline-offset: 3px; }
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Footer */
.site-footer .col { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.site-footer .col::before {
  content: "";
  position: absolute;
  pointer-events: none;
  bottom: -320px;
  left: 50%;
  width: 1000px;
  height: 560px;
  margin-left: -500px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,135,99,0.08), rgba(255,135,99,0) 70%);
}
.footer-pad { padding: 96px 40px 0; position: relative; }

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 72px;
}
.footer-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 720px;
  text-wrap: balance;
}
.footer-accent { color: var(--accent); }
.footer-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; flex: none; }
.footer-email { color: var(--muted); text-decoration: none; font-size: 15px; transition: color .15s ease; }
.footer-email:hover { color: var(--accent); }

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--muted); display: inline-flex; transition: color .15s ease; }
.footer-social a:hover { color: var(--ink); }
.footer-social svg { width: 17px; height: 17px; }
.footer-sign { color: var(--muted); font-size: 12px; line-height: 12px; }

/* Tablet */
@media (max-width: 1199px) {
  .col-pad { padding: 0 28px; }
  .header-pad { padding: 0 28px; }
  h1 { font-size: 50px; }
  h2 { font-size: 31px; }
  .nav { gap: 18px; }
  .section .col-pad { padding-top: 64px; padding-bottom: 64px; }
  .hero .col-pad { padding-top: 88px; padding-bottom: 72px; }
  #muestra .col-pad { padding-bottom: 88px; }
  .legal { font-size: 17px; margin-top: 18px; }
  .footer-pad { padding: 64px 28px 0; }
  .footer-top { padding-bottom: 56px; }
  .footer-title { font-size: 42px; line-height: 1.04; }
}

/* Mobile */
@media (max-width: 809px) {
  :root { --header-h: 66px; }
  .col-pad { padding: 0 20px; }
  .header-pad { padding: 0 20px; }
  .nav { display: none; }
  .wordmark-name { font-size: 17px; }
  .wordmark-sub { font-size: 10px; }
  .site-header .btn { font-size: 12px; }
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  body { font-size: 16px; }
  h1 { font-size: 38px; line-height: 1.04; }
  h2 { font-size: 27px; }
  .eyebrow { margin-bottom: 22px; }
  h1 { margin-bottom: 22px; }
  .lede { font-size: 16px; margin-bottom: 22px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .commercial-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero .col-pad { padding-top: 56px; padding-bottom: 56px; }
  .section .col-pad { padding-top: 48px; padding-bottom: 48px; }
  #muestra .col-pad { padding-bottom: 64px; }
  .steps li { grid-template-columns: 34px 1fr; column-gap: 16px; padding: 22px 0; }
  .step-num { font-size: 13px; }
  .steps p { font-size: 17px; line-height: 1.5; }
  .field label { font-size: 12px; font-weight: 400; }
  .btn-submit { width: 320px; font-size: 12px; }
  .footer-pad { padding: 48px 20px 0; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 32px; padding-bottom: 40px; }
  .footer-title { font-size: 34px; line-height: 1.04; }
  .footer-cta { align-items: flex-start; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px 0 28px; }
}
