:root {
      --bg: oklch(94% 0.004 250);
      --surface: oklch(100% 0 0);
      --fg: oklch(16% 0.01 250);
      --muted: oklch(58% 0.01 250);
      --border: oklch(90% 0.006 250);
      --accent: oklch(16% 0.01 250);
      --success: oklch(62% 0.14 145);
      --success-bg: oklch(95% 0.04 145);
      --nav-bg: oklch(22% 0.015 250);
      --nav-active: oklch(32% 0.012 250);
      --shadow: 0 4px 24px oklch(0% 0 0 / 0.08);
      --shadow-lg: 0 20px 60px oklch(0% 0 0 / 0.12);
      --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
      --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
      --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
      --radius-pill: 999px;
      --radius-card: 24px;
      --radius-sheet: 28px;
      --max-w: 1120px;
      --nav-h: 64px;
    }

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

    html { scroll-behavior: smooth; overflow-x: clip; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      z-index: 300;
      padding: 12px 20px;
      background: var(--accent);
      color: var(--surface);
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .skip-link:focus-visible {
      top: 16px;
    }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.55;
      color: var(--fg);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
    }

    img, svg { display: block; max-width: 100%; }

    a { color: inherit; text-decoration: none; }

    :focus { outline: none; }

    :focus-visible {
      outline: 2px solid var(--fg);
      outline-offset: 3px;
    }

    .btn:focus-visible,
    .plan-tab:focus-visible,
    .faq-trigger:focus-visible,
    .menu-toggle:focus-visible {
      outline: 2px solid var(--fg);
      outline-offset: 2px;
    }

    .cta-box .btn-primary:focus-visible {
      outline-color: var(--surface);
    }

    .container {
      width: min(100% - 40px, var(--max-w));
      margin-inline: auto;
    }

    /* ——— Nav ——— */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 12px 0;
      background: oklch(94% 0.004 250 / 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .site-nav.scrolled { border-bottom-color: var(--border); }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -0.02em;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-brand .logo-mark {
      width: 28px;
      height: 28px;
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 28px;
      list-style: none;
      font-size: 14px;
      font-weight: 550;
      color: var(--muted);
    }

    .nav-links a:hover { color: var(--fg); }

    .nav-links a:focus-visible {
      color: var(--fg);
      border-radius: 6px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 20px;
      border: none;
      border-radius: var(--radius-pill);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.15s;
    }

    .btn:active { transform: scale(0.98); }

    @media (prefers-reduced-motion: reduce) {
      .btn:active { transform: none; }
    }

    .btn-primary {
      background: var(--accent);
      color: var(--surface);
    }

    .btn-primary:hover {
      background: oklch(22% 0.012 250);
    }

    .btn-secondary {
      background: var(--surface);
      color: var(--fg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .btn-secondary:hover {
      border-color: oklch(82% 0.008 250);
      box-shadow: 0 6px 28px oklch(0% 0 0 / 0.1);
    }

    .btn-ghost {
      background: transparent;
      color: var(--fg);
      padding-inline: 12px;
    }

    .btn-ghost:hover {
      background: var(--bg);
    }

    .btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .menu-toggle {
      display: flex;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      cursor: pointer;
    }

    .menu-toggle svg { width: 20px; height: 20px; stroke: var(--fg); fill: none; stroke-width: 2; }

    .mobile-drawer {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: oklch(0% 0 0 / 0.4);
    }

    .mobile-drawer.open { display: block; }

    body.drawer-open { overflow: hidden; }

    .mobile-drawer:not(.open) .drawer-panel {
      visibility: hidden;
    }

    .drawer-panel {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: min(300px, 88vw);
      background: var(--surface);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-shadow: var(--shadow-lg);
    }

    .drawer-panel a {
      padding: 14px 16px;
      border-radius: 12px;
      font-weight: 550;
    }

    .drawer-panel a:hover { background: var(--bg); }

    .drawer-close {
      align-self: flex-end;
      margin-bottom: 8px;
    }

    /* ——— Hero ——— */
    .hero {
      padding: 48px 0 72px;
    }

    .hero-grid {
      display: grid;
      gap: 48px;
      align-items: center;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 5.5vw, 56px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      max-width: min(14ch, 100%);
      margin-bottom: 18px;
      text-wrap: balance;
    }

    .hero-lead {
      font-size: clamp(17px, 2vw, 19px);
      color: var(--muted);
      max-width: 42ch;
      margin-bottom: 28px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .hero-note {
      font-size: 13px;
      color: var(--muted);
      letter-spacing: 0.01em;
    }

    /* Phone mockup */
    .phone-wrap {
      display: flex;
      justify-content: center;
    }

    .phone {
      width: min(300px, 100%);
      background: var(--bg);
      border-radius: 40px;
      box-shadow: var(--shadow-lg), inset 0 0 0 1px oklch(100% 0 0 / 0.06);
      overflow: hidden;
      position: relative;
    }

    .phone--shot {
      background: var(--surface);
      padding: 14px 10px 16px;
    }

    .phone--shot .phone-island {
      display: none;
    }

    .phone-shot {
      display: block;
      width: 100%;
      height: auto;
      vertical-align: top;
      border-radius: calc(var(--radius-sheet) - 6px);
    }

    .mock-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
    }

    .mock-header-left { min-width: 0; }

    .phone-island {
      width: 96px;
      height: 26px;
      background: var(--fg);
      border-radius: 16px;
      position: absolute;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .phone-screen {
      padding: 48px 20px 20px;
      min-height: 520px;
      display: flex;
      flex-direction: column;
    }

    .mock-greet {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .mock-name {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .mock-date {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    .mock-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .mock-status--out {
      background: var(--surface);
      color: var(--muted);
      border: 1px solid var(--border);
    }

    .mock-status--out .mock-status-dot {
      background: var(--muted);
    }

    .mock-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--muted);
    }

    .mock-timer {
      font-family: var(--font-display);
      font-size: 52px;
      font-weight: 700;
      letter-spacing: -0.04em;
      font-variant-numeric: tabular-nums;
      text-align: center;
      margin: 8px 0;
    }

    .mock-timer .secs {
      font-size: 0.42em;
      color: var(--muted);
      font-weight: 500;
    }

    .mock-entry {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .mock-entry strong {
      color: var(--fg);
      font-weight: 600;
      font-variant-numeric: tabular-nums;
    }

    .mock-btn {
      width: 100%;
      min-height: 48px;
      background: var(--accent);
      color: var(--surface);
      border: none;
      border-radius: var(--radius-pill);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 16px;
      pointer-events: none;
    }

    .mock-btn svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .mock-sheet {
      flex: 1;
      background: var(--surface);
      border-radius: var(--radius-sheet) var(--radius-sheet) 0 0;
      box-shadow: 0 -6px 30px oklch(0% 0 0 / 0.1);
      padding: 12px 16px 0;
      margin: 0 -20px -20px;
    }

    .mock-handle {
      width: 32px;
      height: 4px;
      background: var(--border);
      border-radius: var(--radius-pill);
      margin: 0 auto 12px;
    }

    .mock-sheet-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .mock-sheet-title {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .mock-sheet-total {
      font-size: 13px;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
    }

    .mock-timeline {
      list-style: none;
      position: relative;
      padding-bottom: 16px;
    }

    .mock-timeline::before {
      content: '';
      position: absolute;
      left: 11px;
      top: 8px;
      bottom: 8px;
      width: 2px;
      background: var(--border);
    }

    .mock-timeline li {
      display: grid;
      grid-template-columns: 24px 1fr auto;
      gap: 10px;
      align-items: start;
      padding: 6px 0;
      font-size: 12px;
    }

    .mock-tl-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      position: relative;
      z-index: 1;
    }

    .mock-tl-label { font-weight: 600; letter-spacing: -0.01em; }
    .mock-tl-time { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }

    .mock-timeline li > .mock-tl-time:last-child {
      align-self: center;
      font-size: 11px;
      color: oklch(72% 0.01 250);
    }

    .mock-nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      background: var(--nav-bg);
      border-radius: 22px;
      padding: 6px;
      margin: 12px 0 0;
    }

    .mock-nav span {
      display: grid;
      place-items: center;
      gap: 2px;
      padding: 6px 4px;
      border-radius: 14px;
      color: oklch(70% 0.01 250);
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .mock-nav span.active {
      background: var(--nav-active);
      color: var(--surface);
    }

    .mock-nav-label {
      line-height: 1;
    }

    .mock-nav svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }

    /* ——— Sections ——— */
    section { padding: 72px 0; }

    #funciones,
    #app,
    #precios,
    #faq {
      scroll-margin-top: calc(var(--nav-h) + 12px);
    }

    .section-head {
      text-align: center;
      max-width: 52ch;
      margin: 0 auto 48px;
    }

    .section-head h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 12px;
      text-wrap: balance;
    }

    .section-head p {
      color: var(--muted);
      font-size: 17px;
    }

    /* Features — typography-first, no icon cards */
    .features-grid {
      display: grid;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .feature-item {
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
    }

    .feature-index {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .feature-item h3 {
      font-family: var(--font-display);
      font-size: clamp(22px, 3vw, 26px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 10px;
      max-width: 22ch;
      text-wrap: balance;
    }

    .feature-item p {
      font-size: 15px;
      line-height: 1.6;
      color: var(--muted);
      max-width: 42ch;
    }

    /* Compliance line — text only, no icon chips */
    .trust-strip {
      padding: 0 0 48px;
      margin-top: -8px;
    }

    .trust-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px 0;
      list-style: none;
      padding: 16px 0;
      margin: 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .trust-line li {
      display: inline;
    }

    .trust-line li:not(:last-child)::after {
      content: '·';
      margin: 0 12px;
      color: oklch(78% 0.008 250);
      letter-spacing: 0;
    }

    @media (max-width: 479px) {
      .trust-line {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
      }

      .trust-line li:not(:last-child)::after {
        content: none;
      }
    }

    /* Status-quo comparison */
    .compare-section {
      padding: 0 0 72px;
    }

    .compare-band {
      background: var(--nav-bg);
      color: var(--surface);
      border-radius: var(--radius-card);
      padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
    }

    .compare-band .section-head {
      margin-bottom: 40px;
    }

    .compare-band .section-head h2 {
      color: var(--surface);
    }

    .compare-band .section-head p {
      color: oklch(78% 0.01 250);
    }

    .compare-grid {
      display: grid;
      gap: 24px;
    }

    .compare-col {
      border-radius: 20px;
      padding: 28px;
    }

    .compare-col--before {
      background: oklch(28% 0.012 250);
      border: 1px solid oklch(38% 0.01 250);
    }

    .compare-col--after {
      background: var(--surface);
      color: var(--fg);
    }

    .compare-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: oklch(70% 0.01 250);
    }

    .compare-col--after .compare-label {
      color: var(--muted);
    }

    .compare-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .compare-list li {
      font-size: 15px;
      line-height: 1.5;
      padding-left: 1.25em;
      position: relative;
    }

    .compare-col--before .compare-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: oklch(58% 0.02 25);
      font-weight: 500;
    }

    .compare-col--after .compare-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--fg);
    }

    /* Pricing */
    .pricing-section {
      background: var(--surface);
      border-block: 1px solid var(--border);
    }

    .pricing-section .container {
      width: min(100% - 40px, 1240px);
    }

    .pricing-grid {
      display: grid;
      gap: 32px;
      align-items: start;
      min-width: 0;
    }

    .pricing-calc {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 28px;
      max-width: 100%;
    }

    .plan-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-pill);
      padding: 4px;
    }

    .plan-tab {
      flex: 1;
      min-height: 40px;
      border: none;
      background: transparent;
      border-radius: var(--radius-pill);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }

    .plan-tab:hover:not(.active) {
      color: var(--fg);
    }

    .plan-tab.active {
      background: var(--accent);
      color: var(--surface);
    }

    .calc-row {
      margin-bottom: 24px;
    }

    .calc-label {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 550;
    }

    .calc-label span:last-child {
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
    }

    input[type="range"] {
      width: 100%;
      height: 6px;
      -webkit-appearance: none;
      appearance: none;
      background: var(--border);
      border-radius: var(--radius-pill);
      outline: none;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid var(--surface);
      box-shadow: var(--shadow);
      cursor: pointer;
    }

    input[type="range"]::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid var(--surface);
      box-shadow: var(--shadow);
      cursor: pointer;
    }

    input[type="range"]:focus-visible {
      outline: 2px solid var(--fg);
      outline-offset: 4px;
    }

    .price-breakdown {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      margin-top: 8px;
    }

    .price-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      font-size: 14px;
      color: var(--muted);
    }

    .price-line strong {
      color: var(--fg);
      font-weight: 600;
      font-variant-numeric: tabular-nums;
    }

    .price-total {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-top: 16px;
      margin-top: 8px;
      border-top: 1px solid var(--border);
    }

    .price-total-label {
      font-size: 14px;
      font-weight: 600;
    }

    .price-total-value {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-variant-numeric: tabular-nums;
    }

    .price-total-value small {
      font-size: 16px;
      font-weight: 550;
      color: var(--muted);
    }

    .pricing-tiers-wrap {
      min-width: 0;
      max-width: 100%;
    }

    .pricing-tiers {
      display: flex;
      flex-direction: column;
      gap: 14px;
      width: 100%;
    }

    .plan-card {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 24px;
      transition: border-color 0.15s, box-shadow 0.15s;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .plan-card:hover {
      border-color: oklch(82% 0.008 250);
    }

    .plan-card.is-selected {
      border-color: var(--fg);
      box-shadow: var(--shadow);
    }

    .plan-card.is-selected .plan-badge {
      color: var(--fg);
    }

    .plan-badge {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .plan-features {
      flex: 1;
    }

    .plan-card .btn {
      width: 100%;
      margin-top: 16px;
    }

    .pricing-note {
      margin-top: 20px;
      padding: 16px 20px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      font-size: 14px;
      color: var(--muted);
      max-width: 52ch;
    }

    .pricing-note strong {
      color: var(--fg);
      font-weight: 600;
    }

    .calc-cta {
      width: 100%;
      margin-top: 24px;
    }

    .calc-savings {
      font-size: 13px;
      color: oklch(42% 0.1 145);
      font-weight: 550;
      margin-top: 8px;
      min-height: 1.35em;
      line-height: 1.35;
      opacity: 0;
      transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .calc-savings.is-visible {
      opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      .calc-savings { transition: none; }
    }

    .calc-tier-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .plan-card h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }

    .plan-card .plan-desc {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .plan-price {
      font-family: var(--font-display);
      font-size: clamp(24px, 2.2vw, 32px);
      font-weight: 700;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
      margin-bottom: 4px;
      line-height: 1.15;
    }

    .plan-price span {
      font-size: 14px;
      font-weight: 550;
      color: var(--muted);
      white-space: nowrap;
    }

    .plan-per-emp {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 16px;
      font-variant-numeric: tabular-nums;
    }

    .plan-features {
      list-style: none;
      font-size: 14px;
      color: var(--muted);
    }

    .plan-features li {
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
    }

    .plan-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 12px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--border);
    }

    /* FAQ */
    .faq-list {
      max-width: 640px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-trigger {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border: none;
      background: transparent;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      letter-spacing: -0.01em;
      color: var(--fg);
    }

    .faq-trigger:hover {
      background: oklch(98% 0.003 250);
    }

    .faq-trigger svg {
      width: 18px;
      height: 18px;
      stroke: var(--muted);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
      transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .faq-item.open .faq-trigger svg { transform: rotate(180deg); }

    .faq-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .faq-item.open .faq-panel { grid-template-rows: 1fr; }

    .faq-panel[hidden] { display: none; }

    .faq-panel-inner {
      overflow: hidden;
    }

    .faq-panel p {
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--muted);
      max-width: 55ch;
    }

    /* CTA footer */
    .cta-band {
      padding: 72px 0;
    }

    .cta-box {
      background: var(--nav-bg);
      color: var(--surface);
      border-radius: var(--radius-card);
      padding: clamp(32px, 6vw, 56px);
      text-align: center;
    }

    .cta-box h2 {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .cta-box p {
      color: oklch(78% 0.01 250);
      font-size: 16px;
      max-width: 42ch;
      margin: 0 auto 24px;
    }

    .cta-box .btn-primary {
      background: var(--surface);
      color: var(--fg);
    }

    .cta-box .btn-primary:hover {
      background: oklch(96% 0.003 250);
    }

    .site-footer {
      padding: 32px 0 48px;
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .footer-links a:hover { color: var(--fg); }

    .footer-links a:focus-visible {
      color: var(--fg);
      border-radius: 4px;
    }

    .footer-link-muted {
      color: var(--muted);
      opacity: 0.7;
      cursor: default;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .container { width: min(100% - 32px, var(--max-w)); }
      .hero { padding: 32px 0 56px; }
      section { padding: 56px 0; }
      .hero-ctas .btn { flex: 1 1 auto; min-width: min(100%, 220px); }
      .price-total-value { font-size: 30px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .compare-band { border-radius: 20px; }
      .trust-strip { padding-bottom: 40px; }
      .pricing-calc { padding: 20px; }
      .plan-card { padding: 20px; }
    }

    @media (min-width: 768px) {
      .nav-links { display: flex; }
      .menu-toggle { display: none; }
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
      }
      .phone-wrap { justify-content: flex-end; }
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0 40px;
        border-top: none;
      }

      .feature-item {
        padding: 0;
        border-bottom: none;
        border-left: 1px solid var(--border);
        padding-left: 32px;
      }

      .feature-item:first-child {
        border-left: none;
        padding-left: 0;
      }
      .compare-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .pricing-tiers {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
      }
    }

    @media (min-width: 1024px) {
      .hero { padding: 72px 0 96px; }
      .pricing-calc {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 20px 28px;
        max-width: 820px;
        margin-inline: auto;
        padding: 20px 24px;
      }
      .pricing-calc .calc-row {
        flex: 1 1 200px;
        min-width: 200px;
        margin-bottom: 0;
      }
      .pricing-calc .price-breakdown {
        flex: 1 1 260px;
        min-width: 240px;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        border-left: 1px solid var(--border);
        padding-left: 24px;
      }
      .pricing-calc .price-total-value {
        font-size: 28px;
      }
      .pricing-calc > .calc-cta {
        flex: 0 0 auto;
        width: auto;
        min-width: 148px;
        margin-top: 0;
        align-self: flex-end;
      }
      .pricing-calc .pricing-note {
        flex: 1 1 100%;
        max-width: none;
        margin-top: 4px;
      }
      .pricing-tiers {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
      }
      .plan-card {
        padding: 28px 24px;
      }
    }

/* Subpages: legal, registro, descargar */
.page-main {
  padding: 48px 0 80px;
}

.page-head {
  margin-bottom: 32px;
}

.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-head p {
  color: var(--muted);
  max-width: 42rem;
}

.legal {
  max-width: 42rem;
}

.legal h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
}

.legal p,
.legal ul {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.register-form {
  max-width: 28rem;
  display: grid;
  gap: 12px;
}

.register-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.register-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: var(--surface);
  color: var(--fg);
}

.register-form input:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

.form-msg {
  min-height: 1.25rem;
  font-size: 14px;
  color: var(--muted);
}

.form-msg.is-error {
  color: #dc2626;
}

.form-msg.is-success {
  color: var(--success);
}

.form-success-box {
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--success-bg);
  border: 1px solid oklch(85% 0.06 145);
}

.form-success-box h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.form-success-box p {
  color: var(--muted);
  margin-bottom: 16px;
}

.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-card {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 32rem;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

/* App screenshot showcase */
.app-showcase {
  padding: 56px 0 72px;
  background: var(--surface);
}

.app-showcase-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
  max-width: 26rem;
}

.app-tab {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.app-tab:hover {
  border-color: var(--fg);
}

.app-tab.is-active {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--surface);
}

.app-showcase-phone-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.app-showcase .phone {
  width: min(280px, 100%);
}

@media (min-width: 900px) {
  .app-showcase-grid {
    gap: 36px;
  }

  .app-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: auto;
    max-width: none;
    padding: 5px;
    gap: 4px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
  }

  .app-tab {
    border: none;
    background: transparent;
    padding: 11px 22px;
    white-space: nowrap;
  }

  .app-tab:hover {
    background: oklch(100% 0 0 / 0.65);
    border-color: transparent;
  }

  .app-tab.is-active {
    background: var(--fg);
    color: var(--surface);
    box-shadow: 0 2px 8px oklch(0% 0 0 / 0.12);
  }

  .app-showcase .phone {
    width: min(300px, 100%);
  }
}
