/* TecnoSOS — Creadores · "tu esquina de internet"
   Cool paper + deep ink + electric coral. Personal magazine.
   Signature: media kit vivo + rate card. Link-in-bio phone stays.
   WA green only on WhatsApp CTAs. */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #F5F4F1;
  --paper-deep: #E9E7E2;
  --card: #FFFFFF;
  --ink: #13141C;
  --ink-2: #4A4D5A;
  --ink-3: #8B8F9C;
  --line: rgba(19, 20, 28, 0.12);
  --coral: #E8452F;
  --coral-deep: #B52E1F;
  --coral-wash: rgba(232, 69, 47, 0.12);
  --teal: #1FA8A0;
  --teal-wash: rgba(31, 168, 160, 0.14);
  --amber: #F0A500;
  --amber-text: #6F5835;
  --amber-wash: rgba(166, 139, 91, 0.18);
  --ok: #1D7A46;
  --ok-wash: rgba(29, 122, 70, 0.12);
  --wa: #25D366;
  --wa-ink: #0B3D22;
  --ivory: #F5F4F1;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --display: "Space Grotesk", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding: 0; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

body {
  background:
    radial-gradient(ellipse 70% 45% at 95% -8%, rgba(232, 69, 47, 0.09), transparent 55%),
    radial-gradient(ellipse 55% 40% at -8% 25%, rgba(31, 168, 160, 0.08), transparent 50%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.115rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, 68rem); margin-inline: auto; }
section { scroll-margin-top: 5rem; }

/* ---------- Type ---------- */
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.8rem, 4.4vw, 2.75rem); max-width: 26ch; }
h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.kicker {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 1rem;
}
.section-sub { color: var(--ink-2); max-width: 56ch; margin-top: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  min-height: 3.4rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.6); }
.btn-ghost { border: 2px solid var(--ink); color: var(--ink); background: transparent; }
.btn-ink { background: var(--ink); color: var(--ivory); }
@media (hover: hover) {
  .btn-wa:hover { filter: brightness(1.04); transform: translateY(-2px); }
  .btn-ghost:hover, .btn-ink:hover { transform: translateY(-2px); }
}

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 244, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }

.beacon {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber);
  margin-left: 2px;
  animation: sos 3.8s infinite;
}
@keyframes sos {
  0%, 100% { opacity: 0.25; }
  3%, 7% { opacity: 1; }
  5%, 10% { opacity: 0.25; }
  13%, 17% { opacity: 1; }
  15%, 20% { opacity: 0.25; }
  26%, 44% { opacity: 1; }
  52% { opacity: 0.25; }
}

.head-nav { display: none; gap: 1.4rem; }
.head-nav a { text-decoration: none; font-weight: 600; font-size: 0.94rem; color: var(--ink-2); }
.head-nav a:hover { color: var(--ink); }
@media (min-width: 920px) { .head-nav { display: flex; } }
.btn-head { padding: 0.5rem 1.05rem; min-height: 2.6rem; font-size: 0.92rem; box-shadow: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 55%;
  width: 28rem; height: 28rem; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(31, 168, 160, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; } }

.hero h1 { font-size: clamp(2.5rem, 7.5vw, 4.3rem); max-width: 13ch; }
.hero h1 em { font-style: italic; color: var(--coral-deep); }
.hero-sub { margin-top: 1.3rem; font-size: clamp(1.08rem, 2.4vw, 1.22rem); color: var(--ink-2); max-width: 48ch; }
.hero-sub strong { color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-proof { margin-top: 1.9rem; font-size: 0.95rem; color: var(--ink-2); max-width: 44ch; border-left: 3px solid var(--coral); padding-left: 0.9rem; }

/* ---------- Link-in-bio phone ---------- */
.hero-phone { margin: 0 auto; max-width: 20.5rem; }
@media (prefers-reduced-motion: no-preference) {
  .hero-phone .phone {
    animation: phone-float 5.5s ease-in-out infinite;
  }
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.phone {
  background: var(--ink);
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 30px 60px -30px rgba(19, 20, 28, 0.5), 0 0 0 1px rgba(19, 20, 28, 0.08);
}
.phone-screen {
  background: linear-gradient(165deg, #1A1B24 0%, #12131A 55%, #1E1520 100%);
  border-radius: 33px;
  overflow: hidden;
  color: #F5F4F1;
  min-height: 28rem;
}
.bio-top {
  position: relative;
  padding: 1.35rem 1.1rem 1.1rem;
  text-align: center;
  overflow: hidden;
}
.bio-top::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5.2rem;
  background:
    linear-gradient(120deg, rgba(232, 69, 47, 0.55), rgba(31, 168, 160, 0.4)),
    url("../assets/img/setup.jpg") center 35% / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.bio-top::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5.2rem;
  background: linear-gradient(to bottom, transparent 20%, #1A1B24 100%);
  pointer-events: none;
}
.bio-avatar {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  margin: 2.6rem auto 0.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--coral), #FF7A3D);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 3px #1A1B24, 0 10px 24px -10px rgba(232, 69, 47, 0.55);
}
.bio-handle {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.bio-tag {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(245, 244, 241, 0.65);
  max-width: 22ch;
  margin-inline: auto;
  line-height: 1.35;
}
.bio-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 0.95rem 0.85rem 0;
  padding: 0.55rem 0.4rem;
  border-radius: 14px;
  background: rgba(245, 244, 241, 0.06);
  border: 1px solid rgba(245, 244, 241, 0.08);
}
.bio-stats div { text-align: center; }
.bio-stats b {
  display: block;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bio-stats span {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.5);
}
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.95rem 0.85rem 1.25rem;
}
.bio-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  background: rgba(245, 244, 241, 0.07);
  border: 1px solid rgba(245, 244, 241, 0.1);
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--display);
}
.bio-link svg { width: 18px; height: 18px; flex: none; color: var(--teal); }
.bio-link.featured {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(232, 69, 47, 0.95), rgba(255, 122, 61, 0.9));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(232, 69, 47, 0.7);
}
.bio-link.featured svg { color: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .bio-link.featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
    transform: translateX(-120%);
    animation: bio-sheen 4.8s ease-in-out infinite;
    pointer-events: none;
  }
}
@keyframes bio-sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
.bio-link small {
  margin-left: auto;
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.68rem;
  opacity: 0.7;
}
.hero-phone figcaption {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-align: center;
}
.demo-note { font-size: 0.8rem; color: var(--ink-3); }
p.demo-note { margin-top: 2rem; text-align: center; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.8rem, 9vw, 6.2rem) 0; }
.strip { background: var(--paper-deep); border-block: 1px solid var(--line); }

/* ---------- Pains ---------- */
.pain-grid { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 760px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
}
.pain > svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
  margin-bottom: 0.85rem;
}
.pain h3 { font-size: 1.1rem; color: var(--coral-deep); margin-bottom: 0.45rem; }
.pain p { font-size: 0.99rem; color: var(--ink-2); }

/* ---------- Sistema ---------- */
.sys-grid { display: grid; gap: 1.9rem 2.2rem; margin-top: 2.4rem; }
@media (min-width: 680px) { .sys-grid { grid-template-columns: repeat(2, 1fr); } }
.sys > svg { width: 30px; height: 30px; color: var(--coral); margin-bottom: 0.75rem; }
.sys h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.sys p { color: var(--ink-2); font-size: 1rem; max-width: 46ch; }

/* ---------- Evidencia — media kit + rate card signature ---------- */
.evidence .section-sub { margin-bottom: 0.2rem; }
.evidence .browser-mock { margin: 2.4rem 0 0; }
.evidence .browser-mock > figcaption,
.evidence-secondary figcaption {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-align: center;
}

.browser {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 56px -32px rgba(19, 20, 28, 0.4);
}
.browser-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #D2D8DD; }
.browser-bar i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 0.75rem;
  margin-left: 0.5rem;
}

.kit-body {
  padding: 0;
  background: #13141C;
  color: #F5F4F1;
}
.kit-hero {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
}
.kit-hero img {
  width: 100%;
  height: 100%;
  min-height: 13rem;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.78;
}
.kit-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(19, 20, 28, 0.94) 0%, rgba(19, 20, 28, 0.55) 52%, rgba(19, 20, 28, 0.18) 100%),
    linear-gradient(to top, rgba(19, 20, 28, 0.55), transparent 45%);
  pointer-events: none;
}
.kit-hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.35rem 1.25rem 1.4rem;
}
.kit-kicker {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.kit-h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.06;
  color: #FFFCFA;
}
.kit-h1 span { color: #FF8A6E; font-style: italic; }
.kit-sub {
  font-size: 0.86rem;
  color: rgba(245, 244, 241, 0.72);
  margin-top: 0.45rem;
  max-width: 42ch;
}

.kit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 0.95rem;
  background: #17181F;
  border-bottom: 1px solid rgba(245, 244, 241, 0.07);
}
.kit-chips span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.72);
  border: 1px solid rgba(245, 244, 241, 0.14);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}

.kit-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.85rem;
  background: #1A1B24;
  border-bottom: 1px solid rgba(245, 244, 241, 0.08);
}
@media (min-width: 560px) {
  .kit-metrics { grid-template-columns: repeat(4, 1fr); }
}
.kit-metrics article {
  background: rgba(245, 244, 241, 0.05);
  border: 1px solid rgba(245, 244, 241, 0.08);
  border-radius: 12px;
  padding: 0.75rem 0.55rem;
  text-align: center;
}
html.js .browser-mock:not(.in) .kit-metrics article { opacity: 0; transform: translateY(8px); }
html.js .browser-mock.in .kit-metrics article {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
html.js .browser-mock.in .kit-metrics article:nth-child(2) { transition-delay: 0.07s; }
html.js .browser-mock.in .kit-metrics article:nth-child(3) { transition-delay: 0.14s; }
html.js .browser-mock.in .kit-metrics article:nth-child(4) { transition-delay: 0.21s; }
.kit-metrics b {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.kit-metrics span {
  font-size: 0.64rem;
  color: rgba(245, 244, 241, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kit-split {
  display: grid;
  gap: 1rem;
  padding: 1rem 0.95rem 1.1rem;
  background: #15161D;
  border-bottom: 1px solid rgba(245, 244, 241, 0.07);
}
@media (min-width: 680px) {
  .kit-split { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
}
.kit-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}
.kit-label-ink { color: var(--coral-deep); }
.aud-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  color: rgba(245, 244, 241, 0.7);
}
.aud-row i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(245, 244, 241, 0.1);
  position: relative;
  overflow: hidden;
}
.aud-row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--teal));
}
html.js .browser-mock.in .aud-row i::after {
  animation: aud-fill 0.85s ease forwards;
}
@keyframes aud-fill {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
.aud-row b {
  font-family: var(--display);
  font-size: 0.82rem;
  color: #FFFCFA;
}
.kit-about p {
  font-size: 0.88rem;
  color: rgba(245, 244, 241, 0.72);
  line-height: 1.5;
  max-width: 38ch;
}
.kit-turnaround {
  margin-top: 0.7rem;
  font-size: 0.8rem !important;
  color: rgba(245, 244, 241, 0.55) !important;
}
.kit-turnaround strong { color: #FFFCFA; font-weight: 600; }

.kit-folio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.75rem;
  background: #1A1B24;
  border-bottom: 1px solid rgba(245, 244, 241, 0.07);
}
.kit-folio figure { margin: 0; }
.kit-folio img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.kit-folio figcaption {
  margin-top: 0.35rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.45);
  text-align: center;
}

.kit-services {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 0.85rem 0.55rem;
  background: #F5F4F1;
  color: var(--ink);
}
.kit-services article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
}
.kit-services article.svc-bundle {
  background: linear-gradient(120deg, rgba(232, 69, 47, 0.08), rgba(31, 168, 160, 0.08));
  border-color: rgba(181, 46, 31, 0.22);
}
.svc-ico {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--coral-wash);
  color: var(--coral-deep);
  flex: none;
}
.svc-ico svg { width: 16px; height: 16px; }
.svc-copy { min-width: 0; }
.svc-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.svc-copy em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 0.12rem;
}
.kit-services > article > b {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--coral-deep);
  white-space: nowrap;
}
@media (max-width: 420px) {
  .kit-services article {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .kit-services > article > b {
    grid-column: 2;
    justify-self: start;
  }
}
.kit-cta-row {
  padding: 0.35rem 0.85rem 1.05rem;
  background: #F5F4F1;
}
.kit-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.78rem 1rem;
}

/* Secondary evidence — link-in-bio + rate card */
.secondary-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.6rem 0 1.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.secondary-label::before,
.secondary-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.evidence-secondary {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}
@media (min-width: 820px) {
  .evidence-secondary { grid-template-columns: minmax(0, 18.5rem) 1fr; gap: 2rem; }
}

.side-phone { max-width: 18.5rem; margin-inline: auto; }
.phone-screen-compact { min-height: auto; }
.bio-links-tight { padding-top: 0.35rem; }

.rate-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.3rem 1.2rem;
  box-shadow: 0 22px 48px -30px rgba(19, 20, 28, 0.4);
}
.rate-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}
.rate-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--coral), #FF7A3D);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}
.rate-kicker {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 0.25rem;
}
.rate-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  max-width: 22ch;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.58rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.rate-row span { color: var(--ink-2); }
.rate-row b { font-family: var(--display); color: var(--ink); text-align: right; }
.rate-row.rate-price b { color: var(--coral-deep); }
.rate-foot {
  margin-top: 0.95rem;
  font-size: 0.78rem;
  color: var(--ink-3);
  border-top: 1px dashed var(--line);
  padding-top: 0.75rem;
}

/* ---------- Fotos ---------- */
.photo { margin: 0; }
.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px -26px rgba(19, 20, 28, 0.45);
}
.photo figcaption {
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.photo-strip { display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 680px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Paquetes ---------- */
.pack-grid { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 900px) { .pack-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pack {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.pack h3 { font-size: 1.25rem; }
.pack-for { font-size: 0.9rem; color: var(--ink-2); margin-top: 0.25rem; }
.pack-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.15rem;
  letter-spacing: -0.02em;
  margin: 0.9rem 0 1rem;
}
.pack-price span { font-size: 0.95rem; font-weight: 500; color: var(--ink-2); letter-spacing: 0; }
.pack ul { list-style: none; display: grid; gap: 0.5rem; margin-bottom: 1.4rem; }
.pack li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  color: var(--ink-2);
}
.pack li::before {
  content: "";
  position: absolute; left: 0; top: 0.42em;
  width: 0.85rem; height: 0.45rem;
  border-left: 2.2px solid var(--coral);
  border-bottom: 2.2px solid var(--coral);
  transform: rotate(-45deg);
}
.pack .btn-card { margin-top: auto; padding: 0.8rem 1rem; min-height: 3.1rem; font-size: 0.98rem; box-shadow: none; }

.pack-featured { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.pack-featured h3 { color: var(--ivory); }
.pack-featured .pack-for, .pack-featured li { color: rgba(245, 244, 241, 0.75); }
.pack-featured .pack-price { color: var(--ivory); }
.pack-featured .pack-price span { color: rgba(245, 244, 241, 0.65); }
.pack-featured li::before { border-color: var(--amber); }
.pack-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.starter {
  margin-top: 1.6rem;
  background: var(--coral-wash);
  border: 1px solid rgba(181, 46, 31, 0.28);
  border-radius: 18px;
  padding: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.starter h3 { font-size: 1.3rem; }
.starter p { margin-top: 0.5rem; color: var(--ink-2); max-width: 52ch; }
.starter p strong { color: var(--ink); font-family: var(--display); }

.honesty {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-2);
  max-width: 58ch;
  border-left: 3px solid var(--teal);
  padding-left: 0.9rem;
}

.pay-terms { list-style: none; display: grid; gap: 1rem; margin-top: 2.2rem; }
@media (min-width: 820px) { .pay-terms { grid-template-columns: repeat(3, 1fr); } }
.pay-terms li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.93rem; color: var(--ink-2);
}
.pay-terms svg { width: 24px; height: 24px; flex: none; color: var(--coral); margin-top: 0.1rem; }
.pay-terms strong { color: var(--ink); }

/* ---------- Extras ---------- */
.extras-grid { list-style: none; display: grid; gap: 0.9rem; margin-top: 2.2rem; }
@media (min-width: 680px) { .extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .extras-grid { grid-template-columns: repeat(3, 1fr); } }
.extras-grid li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}
.extras-grid svg { width: 26px; height: 26px; flex: none; color: var(--coral); margin-top: 0.15rem; }
.extras-grid span { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.96rem; }
.extras-grid b { font-family: var(--display); font-size: 0.92rem; color: var(--coral-deep); }

/* ---------- FAQ ---------- */
.faq { margin-top: 2.2rem; display: grid; gap: 0.7rem; max-width: 46rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.faq summary {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.03rem;
  line-height: 1.35;
  padding: 1.05rem 3.2rem 1.05rem 1.25rem;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-52%);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--coral);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 1.25rem 1.2rem; color: var(--ink-2); max-width: 60ch; }
.faq details p strong { color: var(--ink); }

/* ---------- Final ---------- */
.final { background: var(--ink); color: var(--ivory); text-align: center; padding: clamp(4.5rem, 10vw, 7rem) 0 2.2rem; }
.final-mark { margin: 0 auto 1.6rem; }
.final h2 { color: var(--ivory); margin-inline: auto; max-width: 20ch; }
.final > .wrap > p { color: rgba(245, 244, 241, 0.72); max-width: 46ch; margin: 1rem auto 2rem; }
.btn-big { padding: 1.15rem 2.1rem; font-size: 1.1rem; }

.foot {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(245, 244, 241, 0.14);
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(245, 244, 241, 0.6);
}
.foot .legal { font-size: 0.78rem; margin-top: 0.5rem; }
.foot a { color: rgba(245, 244, 241, 0.75); }

/* ---------- Sticky WhatsApp ---------- */
.sticky-wa {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: linear-gradient(transparent, rgba(19, 20, 28, 0.06) 30%, rgba(19, 20, 28, 0.12));
  transform: translateY(120%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s 0.35s;
  pointer-events: none;
}
.sticky-wa.show {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s 0s;
  pointer-events: auto;
}
.btn-sticky { width: 100%; font-size: 1rem; }
@media (min-width: 768px) { .sticky-wa { display: none; } }

/* ---------- Reveals ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); }
html.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s ease; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .beacon { animation: none; opacity: 1; }
  .hero-phone .phone { animation: none; }
  .bio-link.featured::after { animation: none; display: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html.js .browser-mock:not(.in) .kit-metrics article,
  html.js .browser-mock.in .kit-metrics article {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html.js .browser-mock.in .aud-row i::after { animation: none; }
  .btn { transition: none; }
  .sticky-wa { transition: none; }
}
