/* CoachPanel landing · OriginKit-inspired native (no React/Framer/WebGL) */
:root {
  --ok-blue: #0b67f4;
  --ok-blue-deep: #084bb3;
  --ok-blue-soft: #eaf2ff;
  --ok-ink: #0f172a;
  --ok-muted: #475569;
  --ok-line: #e2e8f0;
  --ok-bg: #f8fafc;
  --ok-surface: #ffffff;
  --ok-radius: 14px;
  --ok-header-h: 72px;
  --ok-font: "DM Sans", system-ui, sans-serif;
  --ok-display: "Sora", "DM Sans", system-ui, sans-serif;
  --ok-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

html {
  scroll-padding-top: calc(56px + env(safe-area-inset-top, 0px));
}

.ok-landing .landing-expired-banner {
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
}
.ok-landing .landing-expired-banner:not([hidden]) ~ .ok-header {
  padding-top: 0;
}

.ok-landing {
  margin: 0;
  font-family: var(--ok-font);
  color: var(--ok-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(11, 103, 244, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(37, 99, 235, 0.08), transparent 50%),
    var(--ok-bg);
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.ok-landing img { max-width: 100%; height: auto; display: block; }
.ok-wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; box-sizing: border-box; }
.ok-display { font-family: var(--ok-display); letter-spacing: -0.03em; }

/* Header */
.ok-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  /* iOS 11.0–11.2: constant(); moderno: env() */
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top, 0px);
  min-height: calc(56px + constant(safe-area-inset-top));
  min-height: calc(56px + env(safe-area-inset-top, 0px));
}
.ok-header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: space-between;
  padding-block: 0.5rem;
  max-width: 100%;
  box-sizing: border-box;
}
.ok-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ok-ink);
  font-family: var(--ok-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.ok-brand strong { font-weight: 800; letter-spacing: -0.03em; }
/* Logo original CoachPanel: 4 barras (igual que favicon.svg / .brand-mark) */
.ok-brand .brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  align-items: end;
  flex: 0 0 auto;
}
.ok-brand .brand-mark span {
  display: block;
  width: 100%;
  max-width: 7px;
  margin-inline: auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #14b8ff, #0866ff);
  transform-origin: bottom center;
}
.ok-brand .brand-mark span:nth-child(1) { height: 18px; }
.ok-brand .brand-mark span:nth-child(2) { height: 30px; }
.ok-brand .brand-mark span:nth-child(3) { height: 22px; }
.ok-brand .brand-mark span:nth-child(4) { height: 14px; }
@media (hover: hover) and (pointer: fine) {
  .ok-brand:hover .brand-mark span {
    animation: ok-logo-pulse 0.9s ease;
  }
  .ok-brand:hover .brand-mark span:nth-child(2) { animation-delay: 0.05s; }
  .ok-brand:hover .brand-mark span:nth-child(3) { animation-delay: 0.1s; }
  .ok-brand:hover .brand-mark span:nth-child(4) { animation-delay: 0.15s; }
}
@keyframes ok-logo-pulse {
  0%, 100% { transform: scaleY(1); }
  45% { transform: scaleY(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .ok-brand:hover .brand-mark span { animation: none; }
}

.ok-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}
.ok-nav a {
  color: var(--ok-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.ok-nav a:hover { color: var(--ok-blue); }
.ok-header-actions { display: flex; align-items: center; gap: 0.55rem; }
.ok-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  min-height: 40px;
  height: 40px;
  border: 1px solid var(--ok-line);
  background: #fff;
  border-radius: 12px;
  padding: 0 12px;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--ok-ink);
  cursor: pointer;
}

@media (min-width: 960px) {
  .ok-nav { display: flex; }
  .ok-nav-toggle { display: none; }
  .ok-header-actions .ok-cta-mobile { display: none; }
}
@media (max-width: 959px) {
  .ok-header-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 52px;
    padding-block: 0.45rem;
  }
  .ok-brand {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: calc(50% - 3.5rem);
  }
  .ok-brand strong {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ok-nav-toggle {
    position: absolute;
    left: 50%;
    top: 0.45rem;
    transform: translateX(-50%);
    z-index: 2;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: 0 14px;
  }
  .ok-header-actions {
    position: relative;
    z-index: 1;
    margin-left: auto;
    gap: 0.35rem;
    min-width: 0;
    align-items: center;
  }
  .ok-header-actions .ok-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 40px;
    height: 40px;
    max-height: 40px;
    padding: 0 14px;
    font-size: 0.8125rem;
    border-radius: 12px;
    white-space: nowrap;
    line-height: 1;
  }
  .ok-nav {
    display: none;
    flex: 1 1 100%;
    order: 5;
    position: relative;
    left: auto; right: auto;
    top: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 0.15rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .ok-nav.is-open {
    display: flex;
    margin-top: 0.15rem;
    padding: 0.35rem 0.5rem 0.65rem;
    background: #fff;
    border: 1px solid var(--ok-line);
    border-radius: 12px;
    box-shadow: var(--ok-shadow);
  }
  .ok-nav a, .ok-nav button {
    padding: 0.85rem 0.75rem;
    text-align: left;
    border: 0;
    background: transparent;
    border-bottom: 1px solid var(--ok-line);
    font: inherit;
    color: var(--ok-ink);
    cursor: pointer;
  }
  .ok-nav a:last-child, .ok-nav button:last-child { border-bottom: 0; }
  .ok-header-actions .ok-btn-ghost:not(.ok-nav-toggle) { display: none; }
}

.ok-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.ok-btn-primary {
  background: var(--ok-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 103, 244, 0.28);
}
.ok-btn-primary:hover { background: var(--ok-blue-deep); }
.ok-btn-ghost {
  background: transparent;
  color: var(--ok-ink);
  border: 1px solid var(--ok-line);
}
.ok-btn-ghost:hover { border-color: #cbd5e1; background: #fff; }

/* Magnetic: visual only — clickable child stays put */
.ok-magnetic {
  position: relative;
  display: inline-flex;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.ok-magnetic__face {
  pointer-events: none;
  will-change: transform;
  transition: transform 0.15s ease-out;
}
.ok-magnetic__hit {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border-radius: 12px;
}
@media (hover: none), (pointer: coarse) {
  .ok-magnetic__face { transform: none !important; }
}

/* Hero */
.ok-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  min-height: min(88vh, 920px);
  display: flex;
  align-items: center;
}
.ok-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .ok-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.ok-eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--ok-blue);
  font-size: 0.95rem;
}
.ok-eyebrow span { color: var(--ok-muted); font-weight: 500; }
.ok-h1 {
  margin: 0 0 1rem;
  font-family: var(--ok-display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.ok-h1 em { font-style: normal; color: var(--ok-blue); }
.ok-lead {
  margin: 0 0 1.35rem;
  color: var(--ok-muted);
  font-size: 1.1rem;
  max-width: 36rem;
}
.ok-morph {
  display: inline-grid;
  vertical-align: baseline;
  min-width: 7.5ch;
}
.ok-morph > span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.45s ease, transform 0.45s ease;
  color: var(--ok-blue);
  font-weight: 700;
}
.ok-morph > span.is-active {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .ok-morph > span { transition: none; }
  .ok-morph > span:not(.is-active) { display: none; }
  .ok-morph > span.is-active { opacity: 1; transform: none; }
  .ok-magnetic__face { transition: none !important; transform: none !important; }
  .ok-pill::after { animation: none !important; opacity: 0 !important; }
  .ok-reveal-line { opacity: 1 !important; color: inherit !important; font-weight: inherit !important; }
}

.ok-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 1.25rem; }
.ok-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.ok-pill {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ok-line);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ok-ink);
}
.ok-pill.is-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.65) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: ok-sheen 4.5s ease-in-out 1;
}
@keyframes ok-sheen {
  0% { transform: translateX(-120%); }
  35%, 100% { transform: translateX(120%); }
}

.ok-hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #e8eef7;
  box-shadow: var(--ok-shadow);
  min-height: 280px;
  aspect-ratio: 16 / 10;
}
.ok-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.ok-hero-visual figcaption { display: none; }

/* Sections */
.ok-sec { padding: clamp(3rem, 6vw, 5rem) 0; }
.ok-sec--soft { background: rgba(255,255,255,0.55); }
.ok-sec-head { margin-bottom: 2rem; max-width: 40rem; }
.ok-sec-head--center { margin-inline: auto; text-align: center; }
.ok-h2 {
  margin: 0 0 0.65rem;
  font-family: var(--ok-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.ok-sub { margin: 0; color: var(--ok-muted); font-size: 1.05rem; }

/* Problem / solution highlight */
.ok-story { display: grid; gap: 1rem; max-width: 42rem; }
.ok-reveal-line {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #94a3b8;
  font-weight: 500;
  transition: color 0.35s ease, opacity 0.35s ease, font-weight 0.35s ease;
}
.ok-reveal-line.is-on {
  color: var(--ok-ink);
  font-weight: 700;
  opacity: 1;
}
.ok-ba {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .ok-ba { grid-template-columns: 1fr auto 1fr; align-items: stretch; }
}
.ok-ba-col {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius);
  padding: 1.15rem 1.25rem;
}
.ok-ba-col--after { border-color: rgba(11,103,244,0.35); background: var(--ok-blue-soft); }
.ok-ba-col h3 { margin: 0 0 0.85rem; font-size: 1rem; }
.ok-ba-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(226,232,240,0.9);
  font-size: 0.95rem;
}
.ok-ba-item:first-of-type { border-top: 0; }
.ok-ba-arrow { display: none; align-items: center; color: var(--ok-blue); font-size: 1.5rem; font-weight: 700; }
@media (min-width: 800px) { .ok-ba-arrow { display: flex; } }

/* Coverflow / carousel */
.ok-gallery { position: relative; }
.ok-gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ok-gallery-track::-webkit-scrollbar { display: none; }
.ok-slide {
  flex: 0 0 min(86%, 720px);
  scroll-snap-align: center;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  transform: scale(0.94);
  opacity: 0.72;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ok-slide.is-active { transform: scale(1); opacity: 1; }
.ok-slide img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #e8eef7; }
.ok-slide figcaption {
  padding: 0.85rem 1rem 1rem;
  background: #fff;
  border-top: 1px solid var(--ok-line);
  font-weight: 600;
}
.ok-slide figcaption small { display: block; font-weight: 500; color: var(--ok-muted); margin-top: 0.2rem; }
@media (min-width: 960px) {
  .ok-gallery-track { perspective: 1200px; }
  .ok-slide {
    flex-basis: min(62%, 680px);
    transform: scale(0.9) rotateY(8deg);
  }
  .ok-slide.is-active { transform: scale(1) rotateY(0); }
  .ok-slide.is-prev { transform: scale(0.9) rotateY(12deg); }
  .ok-slide.is-next { transform: scale(0.9) rotateY(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ok-slide, .ok-slide.is-active, .ok-slide.is-prev, .ok-slide.is-next {
    transform: none !important;
    opacity: 1;
  }
}
.ok-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.ok-gallery-controls button {
  min-width: 44px; min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--ok-line);
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}
.ok-dots { display: flex; gap: 0.4rem; }
.ok-dots button {
  width: 10px; height: 10px; min-width: 10px; min-height: 10px;
  border-radius: 50%; padding: 0; border: 0; background: #cbd5e1; cursor: pointer;
}
.ok-dots button[aria-current="true"] { background: var(--ok-blue); }

/* Feature cards */
.ok-features {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .ok-features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .ok-features { grid-template-columns: repeat(3, 1fr); }
}
.ok-feature {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius);
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .ok-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--ok-shadow);
    border-color: rgba(11,103,244,0.35);
  }
}
.ok-feature .ok-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ok-blue);
  background: var(--ok-blue-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.ok-feature h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.ok-feature p { margin: 0; color: var(--ok-muted); font-size: 0.95rem; }

/* Hotspots */
.ok-tour {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .ok-tour { grid-template-columns: 1.4fr 0.9fr; align-items: start; }
}
.ok-hotspot-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ok-line);
  background: #e8eef7;
}
.ok-hotspot-stage img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ok-hotspot {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--ok-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transform: translate(-50%, -50%);
}
.ok-hotspot[aria-pressed="true"] { background: #fff; color: var(--ok-blue); }
.ok-hotspot-panel {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius);
  padding: 1.15rem;
}
.ok-hotspot-panel h3 { margin: 0 0 0.4rem; }
.ok-hotspot-panel p { margin: 0; color: var(--ok-muted); }
.ok-hotspot-list { display: grid; gap: 0.5rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.ok-hotspot-list button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--ok-line);
  background: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  font: inherit;
}
.ok-hotspot-list button[aria-current="true"] {
  border-color: var(--ok-blue);
  background: var(--ok-blue-soft);
}
@media (max-width: 899px) {
  .ok-hotspot { display: none; }
}

/* Brand variants — simple tabs (no swipe stack v1) */
.ok-brand-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.ok-brand-tabs button {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--ok-line);
  background: #fff;
  padding: 0 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.ok-brand-tabs button[aria-selected="true"] {
  background: var(--ok-ink);
  color: #fff;
  border-color: var(--ok-ink);
}
.ok-brand-preview {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ok-line);
  min-height: 220px;
  padding: 1.25rem;
  color: #fff;
}
.ok-brand-preview[data-variant="azul"] { background: linear-gradient(145deg, #0b67f4, #1e3a8a); }
.ok-brand-preview[data-variant="noche"] { background: linear-gradient(145deg, #0f172a, #334155); }
.ok-brand-preview[data-variant="verde"] { background: linear-gradient(145deg, #0f766e, #115e59); }
.ok-brand-preview strong { display: block; font-size: 1.2rem; margin-bottom: 0.35rem; }
.ok-brand-preview p { margin: 0; opacity: 0.9; }

/* Sectors chips */
.ok-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ok-chips li {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Steps */
.ok-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) { .ok-steps { grid-template-columns: repeat(3, 1fr); } }
.ok-step {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: var(--ok-radius);
  padding: 1.25rem;
}
.ok-step-num {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ok-blue-soft);
  color: var(--ok-blue);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.ok-step h3 { margin: 0 0 0.4rem; }
.ok-step p { margin: 0; color: var(--ok-muted); }

/* Pricing */
.ok-price-card {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2rem);
  max-width: 40rem;
  margin-inline: auto;
  box-shadow: var(--ok-shadow);
}
.ok-price-card h3 { margin: 0 0 0.5rem; font-family: var(--ok-display); }
.ok-price-card p { color: var(--ok-muted); }
.ok-price-card ul { margin: 1rem 0 1.25rem; padding-left: 1.1rem; color: var(--ok-ink); }

/* FAQ */
.ok-faq details {
  background: #fff;
  border: 1px solid var(--ok-line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}
.ok-faq summary { cursor: pointer; font-weight: 700; }
.ok-faq p { color: var(--ok-muted); margin: 0.65rem 0 0.15rem; }

/* Final CTA */
.ok-final {
  background: linear-gradient(145deg, #0f172a, #0b67f4 120%);
  color: #fff;
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .ok-final { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
}
.ok-final h2 { margin: 0 0 0.5rem; font-family: var(--ok-display); font-size: clamp(1.5rem, 3vw, 2rem); }
.ok-final p { margin: 0; opacity: 0.9; }
.ok-final .ok-btn-primary { background: #fff; color: var(--ok-blue); }
.ok-final .field span, .ok-final .check-field, .ok-final .landing-legal-note { color: rgba(255,255,255,0.92); }
.ok-final .field input,
.ok-final .field textarea,
.ok-final .cp-phone-prefix,
.ok-final .cp-phone-local,
.ok-final .cp-phone-other-prefix {
  background: rgba(255,255,255,0.96);
  color: var(--ok-ink);
}
.ok-final a { color: #fff; }

/* Footer */
.ok-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--ok-line);
  margin-top: 2rem;
  background: #fff;
}
.ok-footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .ok-footer-grid { grid-template-columns: 1.2fr 1fr; }
}
.ok-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.ok-footer a, .ok-footer .landing-footer-link {
  color: var(--ok-muted);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.ok-footer a:hover, .ok-footer .landing-footer-link:hover { color: var(--ok-blue); }
.ok-footer-copy { display: block; color: #94a3b8; margin-top: 1rem; }

.ok-placeholder-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
}

/* Reuse existing form helpers from style.css when present */
.ok-landing .p21-beta-form,
.ok-landing .landing-beta-form { display: grid; gap: 0.75rem; }
.ok-landing .field { display: grid; gap: 0.3rem; }
.ok-landing .field.full { grid-column: 1 / -1; }
.ok-landing .check-field { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.9rem; }
.ok-landing .landing-legal-note { font-size: 0.85rem; margin: 0; }

/* Móvil / PWA instalada: caber en viewport + safe areas */
@media (max-width: 959px) {
  .ok-hero {
    min-height: 0;
    padding: 1.25rem 0 2rem;
    align-items: flex-start;
  }
  .ok-hero-grid { gap: 1.35rem; }
  .ok-eyebrow { margin-bottom: 0.45rem; font-size: 0.875rem; }
  .ok-h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.15rem);
    margin-bottom: 0.7rem;
    line-height: 1.12;
  }
  .ok-lead {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.45;
  }
  .ok-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
  }
  .ok-cta-row .ok-magnetic {
    display: block;
    padding: 0;
    width: 100%;
  }
  .ok-cta-row .ok-magnetic__face,
  .ok-cta-row .ok-magnetic__face .ok-btn,
  .ok-cta-row > .ok-btn {
    width: 100%;
  }
  .ok-cta-row .ok-magnetic__hit { inset: 0; }
  .ok-pills { gap: 0.4rem; }
  .ok-pill {
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
  }
  .ok-hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
  .ok-sec { padding: 2.25rem 0; }
  .ok-sec-head { margin-bottom: 1.25rem; }
  .ok-h2 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
}

@media (max-width: 380px) {
  .ok-wrap { width: calc(100% - 1.25rem); }
  .ok-h1 { font-size: 1.65rem; }
  .ok-header-actions .ok-cta-mobile,
  .ok-nav-toggle {
    padding: 0 0.65rem;
    font-size: 0.75rem;
  }
  .ok-brand .brand-mark { width: 28px; height: 28px; }
}

/* Standalone / PWA: refuerzo safe-area (instalación en iOS/Android) */
@media (display-mode: standalone), (display-mode: fullscreen) {
  .ok-header {
    padding-top: max(env(safe-area-inset-top, 0px), 12px);
  }
}
