/* ── Hero section ── */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: clamp(440px, 54vh, 620px);
      padding: clamp(32px, 3.6vw, 50px) 0 clamp(24px, 3vw, 38px);
      background:
        radial-gradient(circle at top left, rgba(39,62,87,0.08) 0%, transparent 34%),
        radial-gradient(circle at bottom right, rgba(198,163,84,0.10) 0%, transparent 32%),
        linear-gradient(180deg, #f7f6f2 0%, #fbfaf6 48%, #ffffff 100%);
      border-bottom: 1px solid rgba(39,62,87,0.08);
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(39,62,87,0.10) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
      opacity: 0.6;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: -92px;
      left: -88px;
      width: clamp(260px, 32vw, 420px);
      height: clamp(260px, 32vw, 420px);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(39,62,87,0.08) 0%, transparent 72%);
      pointer-events: none;
    }

    @keyframes hero-reveal {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes hero-underline {
      to { transform: scaleX(1); }
    }

    .hero-shell {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: clamp(28px, 4vw, 56px);
      text-align: left;
    }

    .hero-copy {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
    }

    .hero-accent {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 2px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #273e57;
      opacity: 0;
      transform: translateY(12px);
      animation: hero-reveal 0.45s ease forwards 0.05s;
    }

    .hero-stars-row {
      display: inline-flex;
      gap: 3px;
      color: #c6a354;
      font-size: 10px;
    }

    .hero-accent-sep {
      width: 1px;
      height: 12px;
      background: rgba(39,62,87,0.2);
      margin: 0 4px;
    }

    .hero-h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.25rem, 4.05vw, 3.82rem) !important;
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.05em;
      color: #273e57;
      text-wrap: balance;
      text-align: center;
      opacity: 0;
      transform: translateY(18px);
      animation: hero-reveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.20s;
    }

    .hero-h1 em {
      position: relative;
      color: #c6a354;
      font-style: normal;
      white-space: nowrap;
    }

    .hero-h1 em::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 3px;
      border-radius: 999px;
      background: #c6a354;
      transform: scaleX(0);
      transform-origin: left;
      animation: hero-underline 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.95s;
    }

    .hero-ctas {
      margin-top: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(12px);
      animation: hero-reveal 0.5s ease forwards 0.62s;
    }

    .hero-ctas .btn-primary {
      background: #c6a354 !important;
      color: #273e57 !important;
      border-color: #c6a354 !important;
      box-shadow: 0 4px 16px rgba(198,163,84,0.38), 0 1px 3px rgba(198,163,84,0.2) !important;
      font-weight: 700;
    }

    .hero-ctas .btn-primary:hover {
      background: #d4b570 !important;
      border-color: #d4b570 !important;
      box-shadow: 0 8px 24px rgba(198,163,84,0.44), 0 2px 6px rgba(198,163,84,0.18) !important;
      transform: translateY(-2px);
    }

    /* ── CTA micro-note ── */
    /* ── Hero trust bar — barra horizontal entre hero y sim-cards ── */
    .hero-trust-bar {
      position: relative;
      z-index: 1;
      padding: clamp(16px, 2.2vw, 26px) 0 0;
      opacity: 0;
      animation: hero-reveal 0.55s ease forwards 0.78s;
    }

    .htb-inner {
      display: flex;
      align-items: stretch;
      background: rgba(255,255,255,0.62);
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .htb-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      border: 1px solid rgba(39,62,87,0.09);
      -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
      mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
      pointer-events: none;
      z-index: 1;
    }

    .htb-group {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 18px;
      flex-wrap: wrap;
    }

    .htb-divider {
      width: 1px;
      background: rgba(39,62,87,0.08);
      flex-shrink: 0;
      align-self: stretch;
    }

    .hero-legal {
      margin: 10px 0 0;
      padding-top: 6px;
      text-align: center;
      font-size: 11px;
      font-style: italic;
      color: rgba(39,62,87,0.34);
      line-height: 1.5;
      max-width: 360px;
      opacity: 0;
      animation: hero-reveal 0.5s ease forwards 0.76s;
    }

    .hero-legal strong {
      font-style: normal;
      font-weight: 600;
      color: rgba(39,62,87,0.44);
    }

    /* Items del grupo 1 — acceso */
    .hm-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(39,62,87,0.65);
    }

    .hm-item svg { flex-shrink: 0; }

    .hm-sep {
      color: rgba(39,62,87,0.2);
      font-size: 11px;
    }

    /* Grupo central más ancho */
    .htb-group--main {
      flex: 2;
      justify-content: center;
    }

    /* Exam authenticity badge — grupo 2 */
    .hm-auth-badge {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      width: min(100%, 430px);
      padding: 9px 12px;
      border-radius: 14px;
      color: #273e57;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,250,239,0.78)),
        rgba(255,255,255,0.86);
      border: 1px solid rgba(198,163,84,0.34);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.72),
        0 8px 24px rgba(39,62,87,0.08);
    }

    .hm-auth-seal {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #c6a354;
      background:
        radial-gradient(circle at 50% 50%, rgba(198,163,84,0.12), rgba(198,163,84,0.02) 62%),
        #fff;
      border: 1px solid rgba(198,163,84,0.42);
      box-shadow: inset 0 0 0 4px rgba(198,163,84,0.08);
      flex-shrink: 0;
    }

    .hm-auth-copy {
      display: grid;
      gap: 3px;
      min-width: 0;
    }

    .hm-auth-title {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.08;
      color: #20344c;
      letter-spacing: -0.005em;
    }

    .hm-auth-detail {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.01em;
      color: rgba(39,62,87,0.58);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hm-auth-tools {
      display: grid;
      grid-template-columns: repeat(2, 18px);
      gap: 4px;
      flex-shrink: 0;
    }

    .hm-auth-tool {
      width: 18px;
      height: 18px;
      border-radius: 5px;
      display: grid;
      place-items: center;
      color: #273e57;
      background: rgba(39,62,87,0.06);
      border: 1px solid rgba(39,62,87,0.09);
    }

    .hm-auth-tool svg {
      width: 12px;
      height: 12px;
      display: block;
    }

    /* Grupo urgencia */
    .htb-group--urgency {
      flex: 2;
      flex-wrap: wrap;
      gap: 8px 11px;
      background: rgba(192,57,43,0.04);
      border-radius: 0 13px 13px 0;
    }

    /* Badge LIVE — sin caja, solo dot + texto */
    .hm-live {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #c0392b;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .hm-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #c0392b;
      box-shadow: 0 0 0 2.5px rgba(192,57,43,0.18);
      flex-shrink: 0;
      animation: live-pulse 1.8s ease-in-out infinite;
    }

    .hm-live-sep {
      color: rgba(192,57,43,0.3);
      font-size: 15px;
      font-weight: 200;
      flex-shrink: 0;
    }

    /* Texto urgencia en dos partes */
    .hm-urgency {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      flex-wrap: wrap;
    }

    .hm-urgency-main {
      font-size: 12px;
      font-weight: 500;
      color: rgba(39,62,87,0.50);
    }

    .hm-urgency-closer {
      font-size: 12.5px;
      font-weight: 700;
      color: rgba(39,62,87,0.85);
    }

    .hm-live-countdown {
      display: inline-grid;
      grid-template-columns: auto auto;
      align-items: center;
      gap: 5px 10px;
      min-width: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      color: rgba(39,62,87,0.92);
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }

    .hm-live-countdown::before {
      content: none;
    }

    .hm-live-countdown-top {
      display: flex;
      align-items: center;
      gap: 10px;
      grid-column: 1 / -1;
    }

    .hm-live-countdown-label {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #a93226;
    }

    .hm-live-countdown-time {
      font-family: "JetBrains Mono", monospace;
      font-size: 21px;
      font-weight: 700;
      letter-spacing: -0.06em;
      line-height: 1;
      color: #273e57;
      white-space: nowrap;
    }

    .hm-live-countdown-meta {
      font-size: 10px;
      font-weight: 700;
      color: rgba(39,62,87,0.54);
      line-height: 1.1;
      white-space: nowrap;
    }

    .hm-live-countdown.is-soon .hm-live-countdown-time {
      color: #a93226;
    }

    .hm-live-countdown.is-imminent {
      animation: hm-live-urgency 1.6s ease-in-out infinite;
    }

    .hm-live-countdown.is-imminent .hm-live-countdown-time {
      color: #9f2d22;
    }

    @keyframes hm-live-urgency {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-1px); }
    }

    @media (max-width: 640px) {
      .htb-inner {
        flex-direction: column;
      }
      .htb-inner::before {
        -webkit-mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
        mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
      }
      .htb-divider {
        width: auto;
        height: 1px;
      }
      .htb-group {
        justify-content: center;
        padding: 10px 14px;
      }
      .hm-auth-badge {
        width: 100%;
        grid-template-columns: auto minmax(0, 1fr);
      }
      .hm-auth-tools {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, 22px);
        justify-content: center;
      }
      .hm-auth-tool {
        width: 22px;
        height: 22px;
      }
      .htb-group--urgency {
        border-radius: 0 0 13px 13px;
        flex-wrap: wrap;
        align-items: center;
        gap: 11px;
      }
      .hm-live {
        flex-shrink: 0;
      }
      .hm-live-sep {
        flex-shrink: 0;
      }
      .hm-urgency {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        flex-wrap: nowrap;
      }
      .hm-urgency-closer {
        white-space: normal;
      }
      .hm-live-countdown {
        width: auto;
        max-width: 100%;
      }
      .hm-live-countdown-time {
        font-size: 19px;
      }
      .hm-live-countdown-meta {
        white-space: normal;
      }
    }

    @media (max-width: 400px) {
      .hm-live-countdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        width: 100%;
      }
      .hm-live-countdown-top {
        width: 100%;
      }
      .hm-live-countdown-label {
        white-space: normal;
      }
      .htb-group--urgency {
        justify-content: flex-start;
      }
    }

    .hero-preview-panel {
      position: relative;
      flex: 0 0 44%;
      max-width: 560px;
      min-width: 0;
      opacity: 0;
      transform: translateY(16px);
      animation: hero-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.42s;
    }
    .hero-img-tagline {
      position: absolute;
      bottom: 13%;
      left: 10%;
      max-width: 44%;
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.45rem, 2.4vw, 1.95rem);
      font-weight: 700;
      font-style: italic;
      line-height: 1.12;
      color: #1a2940;
      letter-spacing: -0.03em;
      pointer-events: none;
    }
    .hero-img-tagline::after {
      content: '';
      display: block;
      margin-top: 8px;
      width: 32px;
      height: 2.5px;
      background: #c6a354;
      border-radius: 2px;
    }

    /* ── Stars rating — image column, desktop only ── */
    .hero-stars {
      display: none; /* hidden on mobile */
    }

    .hero-stars-cluster {
      font-size: 11px;
      letter-spacing: 2.5px;
      color: #c6a354;
      line-height: 1;
      white-space: nowrap;
    }

    .hero-stars-label {
      font-family: "Manrope", var(--font-body, sans-serif);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(39, 62, 87, 0.42);
      line-height: 1;
      white-space: nowrap;
    }

    .hero-preview-frame {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .hero-preview-frame img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 1528 / 1144;
      object-fit: cover;
    }

    /* ── Mobile nav fix ── */
    @media (max-width: 768px) {
      .nav-inner { gap: 8px; }
      .nav-locale-wrap { display: none; }
      .nav { overflow: visible; }
    }

    /* ── Responsive ── */
    @media (max-width: 860px) {
      .hero {
        min-height: auto;
        padding-top: 32px;
      }

      .hero-shell {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
      }

      .hero-copy {
        align-items: center;
        max-width: 600px;
      }

      .hero-ctas {
        justify-content: center;
      }

      .hero-audit {
        gap: 10px;
        max-width: 480px;
      }

      .hero-preview-panel {
        flex: none;
        width: min(100%, 600px);
        max-width: none;
      }
      .hero-img-tagline {
        bottom: 10%;
        left: 11%;
        max-width: 52%;
      }
    }

    @media (max-width: 480px) {
      .hero-img-tagline {
        position: static;
        max-width: 100%;
        padding: 10px 16px 0;
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        text-align: left;
      }
      .hero-img-tagline::after {
        margin-top: 6px;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding-top: 38px;
        padding-bottom: 32px;
      }

      .hero-accent {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
      }

      .hero-h1 {
        font-size: clamp(1.7rem, 6.5vw, 2.2rem) !important;
        letter-spacing: -0.04em;
      }

      .hero-ctas {
        width: 100%;
        flex-direction: column;
      }

      .hero-ctas .btn {
        width: min(320px, 100%);
      }

      .hero-audit {
        width: 100%;
        gap: 8px;
      }

      .hero-audit-line {
        display: none;
      }

    }

    /* ── Runner stage — less round corners ── */
    .runner-stage {
      border-radius: 10px !important;
    }

    .runner-stage--exam {
      --runner-exam-top-radius: 20.8px;
      border-radius: var(--runner-exam-top-radius) !important;
      overflow: hidden;
    }

    .runner-stage-frame {
      border-radius: inherit;
    }

    .runner-input-proxy {
      position: absolute;
      inset: 0;
      z-index: 3;
      background: transparent;
      touch-action: none;
      display: block;
      pointer-events: auto;
    }

    /* ── Runner section — reduce top space ── */
    #runner {
      position: relative;
      overflow: hidden;
      scroll-margin-top: calc(var(--nav-height, 64px) + 20px);
      padding-top: clamp(12px, 1.5vw, 20px) !important;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%, transparent 76%, rgba(0, 0, 0, 0.42)),
        linear-gradient(112deg, #01030a 0%, #050915 38%, #0a0a12 64%, #010205 100%);
      color: rgba(237, 241, 247, 0.88);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
      isolation: isolate;
    }
    #runner::before,
    #runner::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }
    #runner::before {
      inset: 0;
      background:
        linear-gradient(103deg, transparent 0 11%, rgba(81, 112, 198, 0.22) 24%, transparent 42%),
        linear-gradient(76deg, transparent 0 38%, rgba(212, 184, 120, 0.16) 52%, transparent 69%),
        linear-gradient(132deg, transparent 0 56%, rgba(237, 241, 247, 0.08) 64%, transparent 73%);
      opacity: 0.86;
    }
    #runner::after {
      inset: 0;
      background:
        linear-gradient(92deg, transparent 0 43%, rgba(255, 255, 255, 0.09) 48%, transparent 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%, transparent 74%, rgba(0, 0, 0, 0.5)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
      opacity: 0.46;
      mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
      mix-blend-mode: screen;
    }
    #runner > .container {
      position: relative;
      z-index: 1;
    }

    /* ── Runner section head ── */
    .runner-head {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .runner-head .eyebrow {
      justify-content: center;
      color: color-mix(in srgb, var(--clr-gold-light) 86%, var(--clr-white));
      text-shadow: 0 0 22px rgba(212, 184, 120, 0.24);
    }
    .runner-head .eyebrow::before {
      box-shadow: 0 0 16px rgba(212, 184, 120, 0.38);
    }
    .runner-head h2 {
      font-size: clamp(2.0rem, 3.6vw, 3.2rem);
      color: var(--clr-white);
      text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    }
    .runner-head h2 em {
      color: var(--clr-gold-light);
      font-style: normal;
    }
    .runner-head .runner-head-sub {
      margin: 10px auto 0;
      max-width: 72ch;
      font-size: 1.02rem;
      line-height: 1.6;
      color: rgba(232, 237, 244, 0.78);
    }

    .exam-abstract-preview {
      display: grid;
      grid-template-columns: repeat(6, minmax(34px, 1fr));
      gap: 8px;
      margin-top: 10px;
    }

    .exam-abstract-preview span {
      aspect-ratio: 1 / 1;
      display: grid;
      place-items: center;
      border: 2px solid rgba(13, 34, 55, 0.82);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(238,242,247,0.92));
      color: #273e57;
      font-weight: 900;
      min-width: 0;
    }

    .exam-abstract-preview span::before {
      content: "";
      width: 42%;
      height: 42%;
      border: 2px solid currentColor;
      transform: rotate(45deg);
    }

    .exam-abstract-preview span:nth-child(2n)::before {
      border-radius: 50%;
      transform: none;
    }

    .exam-abstract-preview .is-missing::before {
      display: none;
    }

    .runner-claims {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(212, 184, 120, 0.28);
      gap: 0;
    }
    .runner-claims span {
      font-size: 0.9375rem;
      font-weight: 500;
      color: rgba(232, 237, 244, 0.78);
      letter-spacing: 0.015em;
      padding: 0 24px;
      line-height: 1.4;
    }
    .runner-claims span + span {
      border-left: 1px solid rgba(232, 237, 244, 0.18);
    }

    @keyframes rc-shine {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
    .runner-claims span:last-child {
      background: linear-gradient(
        90deg,
        rgba(232, 237, 244, 0.78) 30%,
        var(--clr-gold-light) 50%,
        rgba(232, 237, 244, 0.78) 70%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: rc-shine 3s linear infinite;
    }
    @media (max-width: 600px) {
      .runner-claims {
        padding-top: 16px;
        margin-top: 18px;
        gap: 0;
      }
      .runner-claims span {
        font-size: 0.78rem;
        padding: 0 14px;
      }
      .runner-claims span:last-child {
        border-left: none;
      }
    }

    /* ══════════════════════════════════════════════════════════
       HERO-SIM — minimalist icon + text cards
       ══════════════════════════════════════════════════════════ */

    .hero-sim {
      position: relative;
      z-index: 1;
      padding: clamp(20px, 2.8vw, 36px) 0 0;
    }

    .hero-sim .hs-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    /* ── Card base ── */
    .hero-sim .hs-col {
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(145deg, #1a2940 0%, #273e57 60%, #2e4668 100%);
      padding: 16px 18px;
      display: grid;
      grid-template-columns: 44px 1fr;
      align-items: center;
      gap: 14px;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .hero-sim .hs-col:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(20, 38, 63, 0.22);
    }

    /* ── Icon ── */
    .hero-sim .hs-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 44px;
      height: 44px;
    }

    .hero-sim .hs-icon svg {
      width: 40px;
      height: 40px;
      display: block;
    }

    /* ── Icon keyframes ── */
    @keyframes hs-clock-sec {
      to { transform: rotate(360deg); }
    }
    @keyframes hs-clock-min {
      to { transform: rotate(360deg); }
    }
    @keyframes hs-bar-a {
      0%, 100% { transform: scaleY(.42); }
      50%      { transform: scaleY(1); }
    }
    @keyframes hs-bar-b {
      0%, 100% { transform: scaleY(.88); }
      45%      { transform: scaleY(.22); }
    }
    @keyframes hs-bar-c {
      0%, 100% { transform: scaleY(.55); }
      30%      { transform: scaleY(.95); }
      70%      { transform: scaleY(.28); }
    }
    @keyframes hs-seal-stamp {
      0%          { transform: scale(0.68) rotate(-8deg); opacity: 0.2; }
      14%         { transform: scale(1.1)  rotate(2deg);  opacity: 1;   }
      22%         { transform: scale(0.97) rotate(0deg);  opacity: 1;   }
      30%, 78%    { transform: scale(1)    rotate(0deg);  opacity: 1;   }
      93%, 100%   { transform: scale(0.68) rotate(-8deg); opacity: 0.2; }
    }
    @keyframes hs-seal-ring {
      to { transform: rotate(360deg); }
    }
    @keyframes hs-seal-check {
      0%, 25%   { stroke-dashoffset: 20; opacity: 0; }
      48%, 72%  { stroke-dashoffset:  0; opacity: 1; }
      90%, 100% { stroke-dashoffset: 20; opacity: 0; }
    }
    @keyframes hs-shield-breathe {
      0%, 100% { opacity: .7; }
      50%      { opacity: 1;  }
    }

    /* ── Text ── */
    .hero-sim .hs-text-head {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin: 0 0 3px;
    }

    .hero-sim .hs-text-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.48);
      line-height: 1.4;
      margin: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero-sim .hs-section {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 600px) {
      .hero-sim .hs-section {
        max-width: none;
        gap: 7px;
        grid-template-columns: 1fr 1fr;
      }
      .hero-sim .hs-col {
        padding: 12px 12px;
        gap: 8px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        border-radius: 14px;
      }
      .hero-sim .hs-col:last-child {
        grid-column: 1 / -1;
        grid-template-columns: 36px 1fr;
        justify-items: start;
        text-align: left;
        gap: 10px;
      }
      .hero-sim .hs-icon {
        width: 36px;
        height: 36px;
      }
      .hero-sim .hs-icon svg {
        width: 34px;
        height: 34px;
      }
      .hero-sim .hs-text-head {
        font-size: 13px;
        margin-bottom: 3px;
      }
      .hero-sim .hs-text-sub {
        font-size: 11px;
        line-height: 1.45;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-accent,
      .hero-h1,
      .hero-ctas,
      .hero-audit,
      .hero-preview-panel,
      .hero-h1 em::after {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }
