    :root {
      --accent: #F2A93B; --accent-2: #D8902A;
      --accent-tint: color-mix(in srgb, #F2A93B 16%, transparent);
      --accent-glow: color-mix(in srgb, #F2A93B 50%, transparent);
      --live: #E5533B;
      --void: #16130F; --panel: #1E1A15; --panel-alt: #1A1611;
      --line: #2E281F; --line-strong: #3A332A; --line-chip: #4A4135;
      --muted: #837A6A; --muted-2: #6E665A; --soft: #B8AE9C; --ink: #E7E0D3; --paper: #F3EDE1;
      --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
      --font-text: "Hanken Grotesk", "Segoe UI", Tahoma, sans-serif;
      --font-mono: "JetBrains Mono", "Consolas", monospace;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; background: var(--void); color: var(--ink); font-family: var(--font-text);
      font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
    a { color: var(--accent); text-decoration: none; }
    .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 600;
      text-transform: uppercase; letter-spacing: .18em; color: var(--accent); }
    .mono { font-family: var(--font-mono); }

    /* Eye mark */
    .eye { display: inline-block; vertical-align: middle; }

    /* Nav */
    nav { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, #16130F 86%, transparent);
      backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
    nav .wrap { display: flex; align-items: center; gap: 14px; height: 64px; }
    .brand { display: flex; align-items: center; gap: 10px; }
    .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 22px;
      letter-spacing: -0.02em; color: var(--ink); }
    nav .links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
    nav .links a:not(.btn) { color: var(--soft); font-size: 14px; }
    nav .links a:not(.btn):hover { color: var(--ink); }
    .lang-link { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; }
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: var(--font-text); font-weight: 600; font-size: 15px; padding: 11px 20px;
      border-radius: 10px; border: 1px solid transparent; cursor: pointer; transition: background .15s, transform .05s; }
    .btn:active { transform: translateY(1px); }
    .btn-primary { background: var(--accent); color: var(--void); }
    .btn-primary:hover { background: var(--accent-2); }
    .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-chip); }
    .btn-ghost:hover { background: var(--panel); }
    nav .btn { padding: 8px 16px; font-size: 14px; }

    /* Hero */
    .hero { padding: 76px 0 48px; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
    .hero h1 { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 0.98;
      letter-spacing: -0.035em; margin: 14px 0 18px; color: var(--paper); }
    .hero h1 .amber { color: var(--accent); }
    .hero p.lead { font-size: 19px; color: var(--soft); max-width: 460px; margin: 0 0 26px; }
    .hero .cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .meta-row { margin-top: 22px; font-family: var(--font-mono); font-size: 12px; color: var(--muted);
      letter-spacing: .06em; }
    .meta-row span { margin-right: 6px; }

    /* Multicam grid visual */
    .cam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .tile { position: relative; aspect-ratio: 16/9; border-radius: 10px; border: 1px solid var(--line);
      background: repeating-linear-gradient(135deg, #221E18 0 7px, #1B1712 7px 14px); overflow: hidden; }
    .tile .cam-id { position: absolute; top: 7px; left: 8px; font-family: var(--font-mono); font-size: 10px;
      color: var(--muted); letter-spacing: .08em; }
    .tile.live { outline: 2px solid var(--accent); outline-offset: -1px; box-shadow: 0 0 22px var(--accent-glow); }
    .tile .live-badge { position: absolute; top: 6px; right: 7px; display: none; background: var(--accent);
      color: var(--void); font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: .1em;
      padding: 2px 5px; border-radius: 4px; }
    .tile.live .live-badge { display: block; }
    .program-bar { margin-top: 8px; display: flex; align-items: center; gap: 10px; background: var(--panel);
      border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }
    .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); position: relative; }
    .pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%;
      border: 2px solid var(--accent-glow); animation: pulse 1.6s ease-out infinite; }
    @keyframes pulse { from { transform: scale(.7); opacity: .7; } to { transform: scale(1.8); opacity: 0; } }
    .program-bar .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: .12em; }
    .program-bar .cam { font-family: var(--font-mono); font-size: 12px; color: var(--accent); font-weight: 600; }
    .program-bar .right { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); }

    /* Sections */
    section { padding: 60px 0; border-top: 1px solid var(--line); }
    h2.section-h { font-family: var(--font-display); font-weight: 700; font-size: 34px; letter-spacing: -0.02em;
      margin: 8px 0 10px; color: var(--paper); }
    .section-intro { color: var(--soft); max-width: 560px; margin: 0 0 36px; }

    /* Steps */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .step-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
    .step-n { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--void);
      background: var(--accent); width: 26px; height: 26px; border-radius: 50%; display: flex;
      align-items: center; justify-content: center; margin-bottom: 14px; }
    .step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 6px; letter-spacing: -0.01em; }
    .step-card p { color: var(--soft); font-size: 14px; margin: 0; }

    /* Signature timeline */
    .tl-card { background: var(--panel-alt); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
    .tl-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
    .tl-head .cap { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: .06em; }
    .tl-row { display: flex; align-items: center; height: 26px; gap: 8px; margin-bottom: 5px; }
    .tl-gutter { flex: none; width: 64px; font-family: var(--font-mono); font-size: 10px; color: var(--muted);
      letter-spacing: .08em; text-align: right; }
    .tl-track { position: relative; flex: 1; height: 16px; border-radius: 5px; overflow: hidden; border: 1px solid var(--line);
      background: repeating-linear-gradient(135deg, #26211A 0 7px, #201B15 7px 14px); }
    .tl-block { position: absolute; top: 0; bottom: 0; background: var(--accent); border-radius: 5px;
      box-shadow: 0 0 12px var(--accent-glow); }
    .tl-prog-row { height: 32px; margin-top: 8px; }
    .tl-prog { position: relative; flex: 1; height: 24px; display: flex; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
    .tl-seg { height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono);
      font-size: 9px; font-weight: 600; color: var(--void); border-right: 2px solid var(--void); background: var(--accent); }
    .tl-seg.alt { background: color-mix(in srgb, #F2A93B 82%, #16130F); }
    .tl-seg:last-child { border-right: none; }

    /* Features */
    .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feature { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
    .feature .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-tint);
      border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
    .feature h3 { font-size: 16px; margin: 0 0 5px; font-weight: 600; }
    .feature p { color: var(--soft); font-size: 14px; margin: 0; }

    /* Pricing */
    .price-card { max-width: 460px; margin: 0 auto; background: var(--panel); border: 1px solid var(--accent);
      border-radius: 18px; padding: 32px; text-align: center; box-shadow: 0 0 40px color-mix(in srgb, #F2A93B 12%, transparent); }
    .price-card .tag { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; }
    .price { font-family: var(--font-display); font-weight: 800; font-size: 52px; letter-spacing: -0.03em; margin: 10px 0 2px; color: var(--paper); }
    .price small { font-family: var(--font-text); font-size: 15px; color: var(--muted); font-weight: 400; }
    .price-card ul { list-style: none; padding: 0; margin: 20px 0 24px; text-align: left; }
    .price-card li { padding: 7px 0; color: var(--soft); font-size: 15px; display: flex; gap: 9px; align-items: flex-start; }
    .price-card li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
    .price-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

    /* FAQ */
    .faq details { border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px; background: var(--panel); }
    .faq summary { cursor: pointer; padding: 14px 0; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: '+'; color: var(--accent); font-size: 20px; }
    .faq details[open] summary::after { content: '\2013'; }
    .faq p { color: var(--soft); font-size: 14px; margin: 0 0 14px; }

    /* Waitlist */
    .waitlist { text-align: center; }
    .waitlist-card { max-width: 560px; margin: 0 auto; background: linear-gradient(180deg, var(--panel), var(--panel-alt));
      border: 1px solid var(--line-strong); border-radius: 18px; padding: 40px 32px; }
    .waitlist h2 { font-family: var(--font-display); font-weight: 800; font-size: 36px; letter-spacing: -0.025em; margin: 8px 0 10px; color: var(--paper); }
    .waitlist p { color: var(--soft); margin: 0 0 24px; }
    .wl-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
    .wl-form input { flex: 1; background: var(--input-bg, #16130F); border: 1px solid var(--line-strong);
      color: var(--ink); border-radius: 10px; padding: 12px 14px; font-family: var(--font-text); font-size: 15px; }
    .wl-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
    .wl-note { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-top: 14px; letter-spacing: .04em; }

    /* Footer */
    footer { border-top: 1px solid var(--line); padding: 36px 0; }
    footer .wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    footer .wordmark { font-size: 17px; }
    footer .f-links { margin-left: auto; display: flex; gap: 22px; }
    footer .f-links a { color: var(--muted); font-size: 13px; }
    footer .f-links a:hover { color: var(--ink); }
    footer .copy { width: 100%; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2);
      letter-spacing: .08em; margin-top: 8px; }

    @media (max-width: 860px) {
      .hero-grid, .steps, .features { grid-template-columns: 1fr; }
      .hero h1 { font-size: 46px; }
      nav .links a:not(.btn):not(.lang-link) { display: none; }
      nav .links .btn-primary { display: none; }   /* el CTA grande esta en el hero */
      nav .links { gap: 16px; }
      .lang-link { font-size: 13px; }
      .hero { padding: 48px 0 32px; }
    }
