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

    :root {
      --bg:       #000;
      --bg2:      #0e0e0e;
      --bg3:      #161616;
      --border:   rgba(255,255,255,0.08);
      --border2:  rgba(255,255,255,0.13);
      --accent:   #FF6B35;
      --accent-bg: rgba(255,107,53,0.12);
      --accent-bg2: rgba(255,107,53,0.22);
      --text:     #fff;
      --muted:    rgba(255,255,255,0.55);
      --muted2:   rgba(255,255,255,0.35);
      --muted3:   rgba(255,255,255,0.18);
      --r:        6px;
      --r2:       10px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── CLICK-TO-PLAY OVERLAY ── */
    #demo-click-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      pointer-events: none;
      opacity: 0;
    }
    #demo-click-overlay.show {
      opacity: 1;
      transition: none;
    }
    #demo-click-overlay.show.fade {
      opacity: 0;
      transition: opacity 0.45s ease;
    }
    #demo-click-overlay svg {
      width: 52px; height: 52px;
      fill: #fff;
      filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7));
      background: rgba(0,0,0,0.45);
      border-radius: 50%;
      padding: 10px;
    }

    /* cursor pointer al fer hover sobre el cos del vídeo */
    .demo-body { cursor: pointer; }

    /* ── ACCESSIBILITY ── */
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      padding: 8px 16px;
      background: var(--accent);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      border-radius: var(--r);
      text-decoration: none;
      z-index: 9999;
      transition: top 0.15s;
    }
    .skip-link:focus { top: 8px; }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 56px;
      border-bottom: 1px solid var(--border);
      background: rgba(0,0,0,0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.3px;
      color: var(--text);
      text-decoration: none;
    }

    .live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      animation: livepulse 1.6s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes livepulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--text); }

    .btn-nav {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 14px;
      border-radius: var(--r);
      font-size: 13px;
      font-weight: 500;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      background: var(--accent);
      color: #fff;
      border: none;
      transition: opacity 0.15s;
    }
    .btn-nav:hover { opacity: 0.88; }

    /* ── NAV RIGHT + MOBILE MENU ── */
    .nav-right { display: flex; align-items: center; gap: 10px; }

    .nav-burger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 38px; height: 34px;
      padding: 0;
      background: transparent;
      border: 1px solid var(--border2);
      border-radius: var(--r);
      color: var(--text);
      cursor: pointer;
    }
    .nav-burger:hover { background: rgba(255,255,255,0.06); }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      flex-direction: column;
      background: var(--bg);
      transform: translateX(100%);
      visibility: hidden;
      transition: transform 0.3s ease, visibility 0s linear 0.3s;
    }
    .mobile-menu.open {
      transform: translateX(0);
      visibility: visible;
      transition: transform 0.3s ease;
    }
    .mm-top {
      flex: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 56px;
      padding: 0 20px;
      border-bottom: 1px solid var(--border);
    }
    .mm-close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px; height: 34px;
      padding: 0;
      background: transparent;
      border: 1px solid var(--border2);
      border-radius: var(--r);
      color: var(--text);
      cursor: pointer;
    }
    .mm-close:hover { background: rgba(255,255,255,0.06); }
    .mm-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      padding: 0 26px;
    }
    .mm-links a {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      text-decoration: none;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.15s;
    }
    .mm-links a:hover { color: var(--accent); }
    .mm-foot { flex: none; padding: 26px; }
    .mm-cta {
      display: block;
      width: 100%;
      text-align: center;
      padding: 14px;
      font-size: 15px;
    }
    body.menu-open { overflow: hidden; }

    /* ── HERO ── */
    .hero {
      min-height: 88vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 40px 60px;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 10px 3px 8px;
      border-radius: 4px;
      background: var(--accent-bg2);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: var(--text);
      margin-bottom: 28px;
    }

    h1 {
      font-size: clamp(32px, 5.5vw, 62px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.08;
      max-width: 780px;
      margin-bottom: 20px;
    }

    h1 .hi {
      color: var(--accent);
    }

    .hero-sub {
      font-size: clamp(14px, 1.6vw, 17px);
      color: var(--muted);
      max-width: 500px;
      margin-bottom: 32px;
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: var(--r);
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      background: var(--accent);
      color: #fff;
      border: none;
      transition: opacity 0.15s, transform 0.15s;
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn-primary:active { transform: scale(0.98); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: var(--r);
      font-size: 14px;
      font-weight: 500;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border2);
      transition: border-color 0.15s, color 0.15s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.28); color: var(--text); }

    /* Player mockup demo */
    .demo-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
    }

    .demo-dots {
      display: flex;
      gap: 6px;
    }

    .demo-dots span {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--border2);
    }

    .demo-url {
      font-size: 11px;
      color: var(--muted2);
      letter-spacing: 0.2px;
    }

    .demo-body {
      position: relative;
      background: #000;
      aspect-ratio: 16/7;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .demo-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .demo-center {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .demo-spinner {
      width: 30px; height: 30px;
      border: 2.5px solid rgba(255,255,255,0.12);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 0.85s linear infinite;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    .demo-wait-txt {
      font-size: 12px;
      color: var(--muted2);
    }

    .demo-subtitle-area {
      position: absolute;
      bottom: 18px;
      left: 0; right: 0;
      text-align: center;
      padding: 0 10%;
      z-index: 3;
    }

    .demo-subtitle-pill {
      display: inline-block;
      background: rgba(0,0,0,0.78);
      color: #fff;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.5;
      padding: 3px 10px 5px;
      border-radius: 3px;
      text-align: center;
      min-height: 24px;
      user-select: none;
      -webkit-user-select: none;
    }

    .sub-cursor {
      display: inline-block;
      width: 2px;
      height: 0.9em;
      background: var(--accent);
      vertical-align: text-bottom;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    .demo-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 14px;
      border-top: 1px solid var(--border);
    }

    .demo-ctrl-l, .demo-ctrl-r {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .demo-prog {
      height: 3px;
      background: rgba(255,255,255,0.15);
      border-radius: 2px;
      margin: 0 14px 0;
      position: relative;
      overflow: visible;
    }

    .demo-prog-fill {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      background: var(--accent);
      border-radius: 2px;
      animation: progaim 14s linear infinite;
    }

    @keyframes progaim {
      0%   { width: 87%; }
      100% { width: 100%; }
    }

    .demo-icon {
      width: 20px; height: 20px;
      opacity: 0.7;
      fill: #fff;
    }

    .demo-live-badge {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #fff;
      padding: 2px 7px 2px 5px;
      border-radius: 4px;
      background: var(--accent-bg2);
    }

    .demo-lang-pills {
      display: flex;
      gap: 4px;
    }

    .demo-lang-pill {
      font-size: 10px;
      font-weight: 600;
      padding: 1px 7px;
      border-radius: 4px;
    }

    .demo-lang-pill.on {
      background: var(--accent-bg);
      color: var(--accent);
      border: 1px solid rgba(255,107,53,0.3);
    }

    .demo-lang-pill.off {
      background: var(--bg3);
      color: var(--muted2);
      border: 1px solid var(--border);
    }

    /* ── CC PANEL (player-identical) ── */
    .demo-wrap {
      position: relative;
      width: 100%;
      max-width: 860px;
      margin-top: 52px;
    }

    .hero-demo {
      width: 100%;
      background: #0e0e0e;
      border: 1px solid var(--border);
      border-radius: var(--r2);
      overflow: hidden;
    }

    #demo-cc-panel {
      position: absolute;
      bottom: 46px;
      right: 14px;
      width: 220px;
      background: rgba(14,14,14,0.97);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 14px 12px;
      z-index: 20;
      display: none;
      box-shadow: 0 8px 32px rgba(0,0,0,0.65);
      color: #fff;
    }

    #demo-cc-panel.open { display: block; }

    .cc-pt {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.9px;
      color: rgba(255,255,255,0.4);
      margin-bottom: 7px;
    }

    .cc-pt + .cc-pt, .cc-pdiv + .cc-pt { margin-top: 0; }

    .cc-pdiv {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin: 10px 0;
    }

    .cc-lo {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 8px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
      color: #fff;
      transition: background 0.12s;
      user-select: none;
    }

    .cc-lo:hover { background: rgba(255,255,255,0.07); }
    .cc-lo.active { background: rgba(255,107,53,0.16); }
    .cc-lo .chk { color: var(--accent); font-size: 15px; line-height: 1; }

    .cc-szg, .cc-bgg { display: flex; gap: 6px; }

    .cc-szbtn {
      flex: 1;
      background: rgba(255,255,255,0.07);
      border: 1px solid transparent;
      color: #fff;
      border-radius: 6px;
      padding: 5px 0;
      cursor: pointer;
      transition: background 0.12s;
      font-family: inherit;
    }
    .cc-szbtn:hover { background: rgba(255,255,255,0.13); }
    .cc-szbtn.active { border-color: var(--accent); color: var(--accent); }

    .cc-bgbtn {
      flex: 1;
      background: rgba(255,255,255,0.07);
      border: 1px solid transparent;
      color: #fff;
      border-radius: 6px;
      padding: 5px 0;
      font-size: 11px;
      cursor: pointer;
      transition: background 0.12s;
      font-family: inherit;
    }
    .cc-bgbtn:hover { background: rgba(255,255,255,0.13); }
    .cc-bgbtn.active { border-color: var(--accent); color: var(--accent); }

    .demo-icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.75;
      transition: opacity 0.13s;
    }
    .demo-icon-btn:hover { opacity: 1; }

    #btn-cc-demo {
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 5px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.75;
      transition: opacity 0.13s;
    }
    #btn-cc-demo:hover { opacity: 1; }
    #btn-cc-demo.cc-on { color: var(--accent); opacity: 1; }
    #btn-cc-demo svg { width: 22px; height: 22px; fill: currentColor; }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid var(--border);
    }

    .stat-item {
      padding: 36px 40px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--accent);
    }

    .stat-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
      max-width: 200px;
    }

    /* ── BUSINESS CASE ── */
    .biz-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 48px;
    }

    .biz-left h2 { margin-bottom: 14px; }
    .biz-left p { font-size: 14px; color: var(--muted); line-height: 1.75; }

    .biz-right {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--r2);
      overflow: hidden;
    }

    .biz-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
      transition: background 0.15s;
    }

    .biz-row:last-child { border-bottom: none; }
    .biz-row:hover { background: var(--bg3); }

    .biz-icon {
      width: 32px; height: 32px;
      border-radius: var(--r);
      background: var(--accent-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .biz-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .biz-row-text strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 3px; }
    .biz-row-text span { font-size: 12px; color: var(--muted); line-height: 1.5; }

    /* ── VALUE PROPS ── */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      overflow: hidden;
      margin-top: 48px;
    }

    .value-card {
      background: var(--bg2);
      padding: 32px 28px;
      transition: background 0.15s;
    }

    .value-card:hover { background: var(--bg3); }

    .value-num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }

    .value-card h3 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .value-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

    /* ── DEEPL ── */
    /* ── TRUST / WHY TRUST US ── */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 920px;
      margin: 48px auto 0;
    }
    .trust-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 26px 24px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .trust-icon {
      width: 38px; height: 38px;
      border-radius: 9px;
      background: var(--accent-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
    }
    .trust-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .trust-card strong { font-size: 15px; font-weight: 700; }
    .trust-card span { font-size: 13px; color: var(--muted); line-height: 1.6; }

    .builton {
      max-width: 720px;
      margin: 36px auto 0;
      text-align: center;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
    }
    .builton-label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.9px;
      text-transform: uppercase; color: var(--muted2);
    }
    .builton-logos {
      display: flex; align-items: center; justify-content: center; gap: 18px;
      margin: 14px 0 16px;
    }
    .builton-item {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 18px; font-weight: 700; color: var(--text);
    }
    .bo-mark {
      width: 30px; height: 30px; border-radius: 7px;
      background: #0F2B46; color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800;
    }
    .bo-aws { background: #232F3E; font-size: 10px; text-transform: lowercase; letter-spacing: 0.3px; }
    .builton-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border2); }
    .builton-text { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0 auto; }
    .builton-text strong { color: var(--text); font-weight: 600; }

    /* latent styles for the founder note / first testimonial (commented in HTML until real) */
    .founder, .testimonial { max-width: 640px; margin: 40px auto 0; text-align: center; }
    .founder-photo {
      width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
      border: 1px solid var(--border2); margin-bottom: 16px;
    }
    .founder-quote, .testimonial blockquote {
      font-size: 18px; line-height: 1.6; color: var(--text);
      font-weight: 500; margin: 0 0 14px; letter-spacing: -0.01em;
    }
    .founder-name, .testimonial-by { font-size: 13px; color: var(--muted2); }

    /* ── SETUP (non-technical) ── */
    .setup-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      overflow: hidden;
      margin-top: 48px;
    }

    .setup-step {
      background: var(--bg);
      padding: 28px 24px;
      position: relative;
    }

    .setup-n {
      font-size: 42px;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: rgba(255,107,53,0.35);
      line-height: 1;
      margin-bottom: 16px;
    }

    .setup-step h3 { font-size: 14px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
    .setup-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

    /* ── RESPONSIVE additions ── */
    @media (max-width: 768px) {
      .stats-bar { grid-template-columns: 1fr; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 20px; }
      .stat-item:last-child { border-bottom: none; }
      .biz-grid { grid-template-columns: 1fr; gap: 32px; }
      .value-grid { grid-template-columns: 1fr; }
      .setup-steps { grid-template-columns: 1fr; }

    }

    /* ── SECTIONS ── */
    .section { padding: 80px 40px; border-bottom: 1px solid var(--border); }
    .section-alt { background: var(--bg2); }

    .label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .section-sub {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 480px;
    }

    .center { text-align: center; }
    .center .section-sub { margin: 0 auto; }

    /* ── HOW IT WORKS ── */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      overflow: hidden;
      margin-top: 48px;
    }

    .step {
      background: var(--bg);
      padding: 28px 24px;
    }

    .step-n {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      color: var(--accent);
      margin-bottom: 14px;
      text-transform: uppercase;
    }

    .step-icon {
      width: 36px; height: 36px;
      border-radius: var(--r);
      background: var(--accent-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .step-icon svg {
      width: 18px; height: 18px;
      fill: var(--accent);
    }

    .step h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }

    .step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ── FEATURES ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      overflow: hidden;
      margin-top: 48px;
    }

    .feat {
      background: var(--bg2);
      padding: 28px 24px;
      transition: background 0.15s;
    }

    .feat:hover { background: var(--bg3); }

    .feat-icon {
      width: 36px; height: 36px;
      border-radius: var(--r);
      background: var(--accent-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .feat-icon svg { width: 18px; height: 18px; fill: var(--accent); }

    .feat h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }

    .feat p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ── PRICING ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 12px;
      margin-top: 48px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .plan {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--r2);
      padding: 24px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .plan.pop {
      border-color: var(--accent);
      background: rgba(255,107,53,0.04);
    }

    .pop-tag {
      position: absolute;
      top: -11px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      padding: 2px 10px;
      border-radius: 4px;
      white-space: nowrap;
    }

    .plan-name {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: var(--muted2);
      margin-bottom: 10px;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 3px;
      margin-bottom: 4px;
    }

    .plan-price .eur { font-size: 16px; color: var(--muted); }
    .plan-price .amt { font-size: 40px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
    .plan-price .per { font-size: 13px; color: var(--muted); }

    .plan-hours {
      font-size: 12px;
      color: var(--muted2);
      margin-bottom: 20px;
    }

    .plan-div {
      height: 1px;
      background: var(--border);
      margin-bottom: 16px;
    }

    .plan-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      flex: 1;
      margin-bottom: 20px;
    }

    .plan-feats li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .plan-feats li::before {
      content: '';
      display: block;
      width: 14px; height: 14px;
      flex-shrink: 0;
      margin-top: 1px;
      background: var(--accent);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
      -webkit-mask-size: contain;
      mask-size: contain;
    }

    .plan-feats li span { color: var(--text); }

    .btn-plan {
      display: block;
      text-align: center;
      padding: 9px;
      border-radius: var(--r);
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.15s;
    }

    .btn-plan-fill { background: var(--accent); color: #fff; border: none; }
    .btn-plan-fill:hover { opacity: 0.88; }
    .btn-plan-out { background: transparent; color: var(--muted); border: 1px solid var(--border2); }
    .btn-plan-out:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

    /* ── FAQ ── */
    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      color: var(--text);
      font-family: inherit;
      font-size: 14px;
      font-weight: 500;
      text-align: left;
      padding: 16px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: color 0.15s;
    }

    .faq-q:hover { color: var(--accent); }

    .faq-arrow {
      width: 16px; height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-q.open .faq-arrow { transform: rotate(180deg); }
    .faq-q.open { color: var(--accent); }

    .faq-a {
      display: none;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      padding-bottom: 16px;
    }

    /* ── WAITLIST ── */
    .waitlist-wrap {
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
    }

    .waitlist-wrap h2 { margin-bottom: 8px; }
    .waitlist-wrap .section-sub { margin: 0 auto 28px; }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 8px;
    }

    .form-row { display: flex; gap: 8px; }

    .finput {
      flex: 1;
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 9px 12px;
      font-family: inherit;
      font-size: 13px;
      color: var(--text);
      outline: none;
      transition: border-color 0.15s;
    }
    .finput::placeholder { color: var(--muted2); }
    .finput:focus { border-color: rgba(255,107,53,0.45); }
    .finput.err { border-color: rgba(255,107,53,0.7); }

    .fselect {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 9px 30px 9px 12px;
      font-family: inherit;
      font-size: 13px;
      color: var(--text);
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      transition: border-color 0.15s;
    }
    .fselect option { background: #1a1a1a; }
    .fselect:focus { border-color: rgba(255,107,53,0.45); }

    .btn-submit {
      width: 100%;
      padding: 10px;
      border-radius: var(--r);
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      background: var(--accent);
      color: #fff;
      border: none;
      transition: opacity 0.15s, transform 0.15s;
    }
    .btn-submit:hover { opacity: 0.88; }
    .btn-submit:active { transform: scale(0.98); }
    .btn-submit:disabled { opacity: 0.5; cursor: default; transform: none; }

    .form-note {
      font-size: 11px;
      color: var(--muted2);
      margin-top: 4px;
    }

    .success-msg {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      background: var(--accent-bg);
      border: 1px solid rgba(255,107,53,0.25);
      border-radius: var(--r);
      font-size: 13px;
      color: var(--accent);
      margin-top: 8px;
    }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(0);
      width: calc(100% - 40px);
      max-width: 720px;
      background: #111;
      border: 1px solid var(--border2);
      border-radius: var(--r2);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      z-index: 9000;
      box-shadow: 0 8px 40px rgba(0,0,0,0.7);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #cookie-banner.cb-hidden {
      opacity: 0;
      transform: translateX(-50%) translateY(16px);
      pointer-events: none;
    }

    .cb-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      flex: 1;
      min-width: 0;
    }

    .cb-text strong {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    .cb-text span {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .cb-text a {
      color: var(--accent);
      text-decoration: none;
      margin-left: 4px;
    }
    .cb-text a:hover { text-decoration: underline; }

    .cb-actions {
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .cb-btn {
      padding: 7px 14px;
      border-radius: var(--r);
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.15s;
      white-space: nowrap;
    }

    .cb-decline {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border2);
    }
    .cb-decline:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

    .cb-accept {
      background: var(--accent);
      color: #fff;
      border: 1px solid transparent;
    }
    .cb-accept:hover { opacity: 0.88; }

    @media (max-width: 600px) {
      #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 10px;
        width: calc(100% - 24px);
        gap: 12px;
      }
      .cb-actions { width: 100%; }
      .cb-btn { flex: 1; text-align: center; }
    }

    /* ── FOOTER ── */
    footer {
      padding: 24px 40px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      position: relative;
    }

    footer p {
      font-size: 12px;
      color: var(--muted2);
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
    }

    footer nav {
      display: flex;
      gap: 20px;
      position: static;
      background: none;
      border: none;
      height: auto;
      padding: 0;
      backdrop-filter: none;
    }

    footer nav a {
      font-size: 12px;
      color: var(--muted2);
      text-decoration: none;
      transition: color 0.15s;
    }
    footer nav a:hover { color: var(--text); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 0 16px; }
      .nav-links { display: none; }
      .nav-burger { display: inline-flex; }
      .btn-nav { padding: 6px 12px; font-size: 12px; }
      .trust-grid { grid-template-columns: 1fr; max-width: 420px; }

      .hero { padding: 48px 16px 36px; min-height: auto; }
      .live-badge { font-size: 10px; }
      .hero-sub { font-size: 14px; }
      .hero-actions { gap: 8px; }
      .btn-primary, .btn-ghost { padding: 9px 18px; font-size: 13px; }

      .demo-wrap { margin-top: 36px; }
      .demo-topbar { padding: 8px 10px; flex-wrap: wrap; gap: 6px; }
      .demo-url { display: none; }
      .demo-lang-pills { gap: 3px; }
      .demo-lang-pill { font-size: 9px; padding: 1px 5px; }
      .demo-body { aspect-ratio: 16/8; }
      .demo-subtitle-pill { font-size: 11px; }
      .demo-controls { padding: 6px 10px; }
      #demo-cc-panel { bottom: 40px; right: 10px; width: 190px; }

      .section { padding: 52px 16px; }

      .steps { grid-template-columns: 1fr; }
      .step { padding: 22px 18px; }

      .features-grid { grid-template-columns: 1fr; }
      .feat { padding: 22px 18px; }

      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
      .plan { padding: 20px; }
      .plan-price .amt { font-size: 34px; }

      .form-row { flex-direction: column; }
      .fselect { padding-right: 28px; }

      footer { flex-direction: column; text-align: center; padding: 20px 16px; gap: 8px; }
      footer p { position: static; transform: none; white-space: normal; }
      footer nav { justify-content: center; }
    }

    @media (max-width: 400px) {
      h1 { font-size: 28px; }
      h2 { font-size: 22px; }
      .demo-lang-pills { display: none; }
    }