    @font-face {
      font-family: 'AfialtSerif';
      src: url('assets/title-font.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Manrope';
      src: url('assets/manrope-400.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Stolzl';
      src: url('assets/Stolzl-Book.woff2') format('woff2'),
           url('assets/Stolzl-Book.woff') format('woff');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Stolzl';
      src: url('assets/Stolzl-Regular.woff2') format('woff2'),
           url('assets/Stolzl-Regular.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'NormalidadExtended';
      src: url('assets/NormalidadExtended-ExtReg.woff2') format('woff2'),
           url('assets/NormalidadExtended-ExtReg.woff') format('woff');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

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

    :root {
      --black: #282828;
      --white: #FCFCFC;
      --gray: #979797;
      --text: #333;
      --text-light: #888;
      --serif: 'AfialtSerif', Georgia, serif;
      --sans: 'Manrope', sans-serif;
      --stolzl: 'Stolzl', 'Manrope', sans-serif;
      --glorax-primary-500: #3200F0;
      --glorax-primary-400: #3625F5;
      --glorax-primary-600: #1100CC;
      --glorax-primary-100: #96A7FA;
      --glorax-base-900: #1A1A1A;
      --glorax-base-0: #FFFFFF;
      --glorax-secondary-200: #D1DBE4;
      --glorax-secondary-50: #F1F3F6;
      --glorax-base-400: #999999;
      --normalidad-ext: 'NormalidadExtended', 'Manrope', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      font-weight: 400;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      position: relative;
    }

    /* ===== PRIMITIVES: v-button ===== */
    .v-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      font-family: var(--stolzl);
      color: var(--glorax-base-0);
      border: none;
      cursor: pointer;
      text-decoration: none;
      isolation: isolate;
    }

    .v-button--s {
      height: 40px;
      font-size: 12px;
      padding: 14px 24px;
      border-radius: 6px;
    }

    .v-button__bg {
      position: absolute;
      inset: 0;
      background: var(--glorax-primary-500);
      border-radius: 6px;
      transition: inset 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
      z-index: 1;
    }

    .v-button__content {
      position: relative;
      z-index: 3;
      white-space: nowrap;
    }

    .v-button:hover .v-button__bg {
      background: var(--glorax-primary-400);
      inset: -2px;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25));
    }

    .v-button:active .v-button__bg {
      background: var(--glorax-primary-600);
      inset: 0;
      filter: none;
    }

    /* ===== PRIMITIVES: v-link ===== */
    .v-link {
      display: inline-flex;
      align-items: center;
      font-family: var(--stolzl);
      font-size: 12px;
      line-height: 1.32;
      color: var(--glorax-primary-500);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .v-link:hover { color: var(--glorax-primary-400); }
    .v-link:active { color: var(--glorax-primary-600); }

    .v-link__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      margin-right: 4px;
      flex-shrink: 0;
    }

    .v-link__icon svg {
      width: 12px;
      height: 12px;
    }

    .v-link--header {
      color: var(--glorax-base-900);
    }

    .v-link--header .v-link__icon { color: var(--glorax-primary-500); }
    .v-link--header:hover { color: var(--glorax-primary-400); }
    .v-link--header:active { color: var(--glorax-primary-600); }

    .v-link--geo {
      color: var(--glorax-base-900);
      cursor: default;
    }

    .v-link--geo .v-link__icon { color: var(--glorax-primary-500); }
    .v-link--geo .v-link__icon svg { width: 16px; height: 16px; }

    /* ===== PRIMITIVES: v-circle-button ===== */
    .v-circle-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 40px;
      height: 40px;
      padding: 12px;
      cursor: pointer;
      text-decoration: none;
      isolation: isolate;
      flex-shrink: 0;
    }

    .v-circle-button__bg {
      position: absolute;
      inset: 0;
      border: 1px solid var(--glorax-secondary-200);
      border-radius: 40px;
      background: transparent;
      transition: inset 0.2s ease, border-color 0.2s ease, border-radius 0.2s ease;
      z-index: 1;
    }

    .v-circle-button__icon {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
    }

    .v-circle-button__icon svg {
      width: 12px;
      height: 12px;
    }

    .v-circle-button:hover .v-circle-button__bg {
      border-color: var(--glorax-primary-400);
      inset: -2px;
      border-radius: 44px;
    }

    .v-circle-button:active .v-circle-button__bg {
      border-color: var(--glorax-primary-600);
      inset: 0;
      border-radius: 40px;
    }

    /* ===== HEADER (old) ===== */
    .header {
      position: relative;
      z-index: 100;
      background: var(--black);
      height: 74px;
    }

    .header__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 16px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header__logo {
      display: block;
      text-decoration: none;
    }

    .header__logo img {
      height: 42px;
      width: auto;
      display: block;
    }

    .header__right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .header__phone {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 400;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: opacity 0.3s;
    }

    .header__phone:hover { opacity: 0.7; }

    .btn {
      display: inline-block;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-decoration: none;
      padding: 11px 32px;
      border: 1px solid var(--gray);
      border-radius: 58px;
      color: var(--white);
      background: var(--gray);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: #b0b7c0;
    }

    .btn--dark {
      border-color: var(--black);
      color: var(--black);
      background: transparent;
      font-size: 0.75rem;
      padding: 14px 32px;
      letter-spacing: 0.05em;
    }

    .btn--dark:hover {
      background: var(--black);
      color: var(--white);
    }

    /* ===== BURGER MENU ===== */
    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 200;
      flex-direction: column;
      gap: 5px;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }

    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 74px;
      left: 0;
      right: 0;
      background: var(--black);
      z-index: 99;
      padding: 24px 20px;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu__phone {
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 400;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.02em;
    }

    .mobile-menu .btn {
      text-align: center;
      width: 100%;
      max-width: 280px;
    }

    /* ===== HEADER GLORAX ===== */
    .header-glorax {
      position: relative;
      z-index: 100;
      background: var(--glorax-base-0);
    }

    .header-glorax__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 100px;
      min-height: 64px;
    }

    .header-glorax__logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      color: var(--glorax-primary-500);
    }

    .header-glorax__logo svg,
    .header-glorax__logo-img {
      height: 24px;
      width: auto;
      display: block;
    }

    .header-glorax__right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .header-glorax__phone-circle {
      display: none;
    }

    @media (max-width: 768px) {
      .header-glorax {
        border-radius: 0 0 12px 12px;
        overflow: hidden;
      }

      .header-glorax__inner {
        padding: 12px 16px;
        min-height: auto;
      }

      .header-glorax__logo svg,
      .header-glorax__logo-img {
        height: 36px;
        width: auto;
      }

      .header-glorax__right {
        gap: 12px;
      }

      .header-glorax__right .v-link--header {
        display: none;
      }

      .header-glorax__right .v-button {
        display: none;
      }

      .header-glorax__phone-circle {
        display: inline-flex;
      }
    }

    /* ===== MODAL GLORAX ===== */
    .modal-glorax {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.3s, opacity 0.3s ease;
    }

    .modal-glorax.is-open {
      visibility: visible;
      opacity: 1;
    }

    .modal-glorax__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .modal-glorax__panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 576px;
      background: var(--glorax-base-0);
      border-radius: 24px 0 0 24px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modal-glorax.is-open .modal-glorax__panel {
      transform: translateX(0);
    }

    .modal-glorax__header {
      position: relative;
      padding: 48px 48px 0;
      flex-shrink: 0;
    }

    .modal-glorax__title {
      font-family: var(--stolzl);
      font-weight: 400;
      font-size: 32px;
      line-height: 1.2;
      letter-spacing: -0.64px;
      color: var(--glorax-base-900);
      margin: 0;
      padding-right: 64px;
    }

    .modal-glorax__close {
      position: absolute;
      top: 48px;
      right: 48px;
      width: 48px;
      height: 48px;
      border-radius: 48px;
      border: 1px solid var(--glorax-secondary-200);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transition: border-color 0.2s ease;
    }

    .modal-glorax__close:hover {
      border-color: var(--glorax-base-900);
    }

    .modal-glorax__close svg {
      width: 20px;
      height: 20px;
      color: var(--glorax-base-900);
    }

    .modal-glorax__content {
      flex: 1;
      overflow-y: auto;
      padding: 48px;
    }

    .modal-glorax__fields {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .modal-glorax__input-wrapper {
      position: relative;
    }

    .modal-glorax__input-field {
      position: relative;
      height: 56px;
      background: var(--glorax-secondary-50);
      border: 1px solid transparent;
      border-radius: 8px;
      transition: border-color 0.2s ease;
    }

    .modal-glorax__input-field--focused {
      border-color: var(--glorax-secondary-100);
    }

    .modal-glorax__input-field--error {
      border-color: #E52222;
    }

    .modal-glorax__input {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      padding: 24px 20px 8px;
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      color: var(--glorax-base-900);
      background: transparent;
      border: none;
      outline: none;
      box-sizing: border-box;
    }

    .modal-glorax__label {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 300;
      color: var(--glorax-base-500);
      pointer-events: none;
      transition: transform 0.2s ease, font-size 0.2s ease;
    }

    .modal-glorax__input:focus ~ .modal-glorax__label,
    .modal-glorax__input:not(:placeholder-shown) ~ .modal-glorax__label {
      transform: translateY(-130%);
      font-size: 12px;
    }

    .modal-glorax__error {
      display: none;
      font-family: var(--stolzl);
      font-size: 12px;
      color: #E52222;
      margin-top: 4px;
      padding-left: 20px;
    }

    .modal-glorax__footer {
      flex-shrink: 0;
      padding: 0 48px 40px;
    }

    .modal-glorax__submit {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 20px 40px;
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      color: var(--glorax-base-0);
      background: var(--glorax-primary-500);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .modal-glorax__submit:hover {
      background: var(--glorax-primary-400);
    }

    .modal-glorax__submit:active {
      background: var(--glorax-primary-600);
    }

    .modal-glorax__privacy {
      font-family: var(--stolzl);
      font-size: 12px;
      font-weight: 300;
      line-height: 1.32;
      color: var(--glorax-base-500);
      margin-top: 16px;
    }

    .modal-glorax__privacy a {
      color: var(--glorax-primary-500);
      text-decoration: none;
    }

    .modal-glorax__state {
      display: none;
      flex-direction: column;
      padding: 48px;
      flex: 1;
    }


    .modal-glorax__state-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 16px;
    }

    .modal-glorax__state-icon--success { color: var(--glorax-primary-500); }
    .modal-glorax__state-icon--error { color: #E52222; }

    .modal-glorax__state-title {
      font-family: var(--stolzl);
      font-weight: 400;
      font-size: 32px;
      line-height: 1.2;
      letter-spacing: -0.64px;
      color: var(--glorax-base-900);
      margin: 0 0 12px;
      padding-right: 64px;
    }

    .modal-glorax__state-text {
      font-family: var(--stolzl);
      font-weight: 300;
      font-size: 16px;
      line-height: 1.32;
      color: var(--glorax-base-500);
      margin: 0;
    }

    .modal-glorax__state-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 20px 40px;
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      color: var(--glorax-base-0);
      background: var(--glorax-primary-500);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: auto;
      transition: background 0.2s ease;
    }

    .modal-glorax__state-btn:hover { background: var(--glorax-primary-400); }
    .modal-glorax__state-btn:active { background: var(--glorax-primary-600); }

    .modal-glorax[data-state="success"] .modal-glorax__title,
    .modal-glorax[data-state="error"] .modal-glorax__title,
    .modal-glorax[data-state="success"] .modal-glorax__content,
    .modal-glorax[data-state="success"] .modal-glorax__footer,
    .modal-glorax[data-state="error"] .modal-glorax__content,
    .modal-glorax[data-state="error"] .modal-glorax__footer {
      display: none;
    }

    .modal-glorax[data-state="success"] .modal-glorax__header,
    .modal-glorax[data-state="error"] .modal-glorax__header {
      position: absolute;
      top: 0;
      right: 0;
      padding: 0;
      z-index: 1;
    }

    .modal-glorax[data-state="success"] .modal-glorax__state--success,
    .modal-glorax[data-state="error"] .modal-glorax__state--error {
      display: flex;
    }

    .modal-glorax__progress {
      height: 2px;
      background: var(--glorax-secondary-100);
      margin-top: 24px;
    }

    .modal-glorax__progress-bar {
      height: 100%;
      width: 100%;
      background: var(--glorax-primary-500);
      border-radius: 0 2px 2px 0;
    }

    .modal-glorax__spinner {
      display: none;
      align-items: center;
      justify-content: center;
      padding: 48px;
      flex: 1;
    }

    .modal-glorax__spinner svg {
      width: 48px;
      height: 48px;
      color: var(--glorax-primary-500);
      animation: form-glorax-spin 900ms linear infinite;
    }

    .modal-glorax[data-state="loading"] .modal-glorax__content,
    .modal-glorax[data-state="loading"] .modal-glorax__footer {
      display: none;
    }

    .modal-glorax[data-state="loading"] .modal-glorax__spinner {
      display: flex;
    }

    @media (max-width: 768px) {
      .modal-glorax__panel {
        width: 100%;
        border-radius: 0;
        transform: translateY(100%);
      }

      .modal-glorax.is-open .modal-glorax__panel {
        transform: translateY(0);
      }

      .modal-glorax__overlay {
        display: none;
      }

      .modal-glorax__header {
        padding: 20px 16px 0;
      }

      .modal-glorax__title {
        font-size: 24px;
        letter-spacing: -0.48px;
        padding-right: 56px;
      }

      .modal-glorax__close {
        top: 20px;
        right: 16px;
      }

      .modal-glorax__content {
        padding: 32px 16px 24px;
      }

      .modal-glorax__fields {
        gap: 12px;
      }

      .modal-glorax__footer {
        padding: 16px 16px 24px;
      }

      .modal-glorax__submit {
        padding: 17px 32px;
        border-radius: 6px;
      }

      .modal-glorax__state {
        padding: 20px 16px;
      }

      .modal-glorax__state-title {
        font-size: 24px;
        letter-spacing: -0.48px;
        padding-right: 56px;
      }

      .modal-glorax__state-btn {
        padding: 17px 32px;
        border-radius: 6px;
      }

      .modal-glorax__spinner {
        padding: 32px 16px;
      }
    }

    /* ===== HERO GLORAX ===== */
    .hero-glorax {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 720px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 0 0 24px 24px;
    }

    .hero-glorax__bg {
      position: absolute;
      inset: 0;
    }

    .hero-glorax__bg picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-glorax__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-glorax__gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(26,26,69,0) 45%, rgba(26,26,69,0.3) 90%);
      border-radius: 0 0 24px 24px;
    }

    .hero-glorax__content {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 64px 100px;
    }

    .hero-glorax__title {
      font-family: var(--normalidad-ext);
      font-size: 48px;
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.96px;
      text-transform: uppercase;
      color: var(--glorax-base-0);
      margin: 0;
      max-width: 701px;
    }

    .hero-glorax__subtitle {
      font-family: var(--stolzl);
      font-size: 16px;
      font-weight: 300;
      line-height: 1.48;
      color: var(--glorax-base-0);
      margin: 20px 0 0;
      max-width: 701px;
    }

    .hero-glorax--top .hero-glorax__content {
      justify-content: flex-start;
    }

    .hero-glorax--top .hero-glorax__gradient {
      background: none;
    }

    .hero-glorax--top .hero-glorax__title,
    .hero-glorax--top .hero-glorax__subtitle {
      max-width: 52%;
    }

    @media (min-width: 1441px) {
      .hero-glorax__title,
      .hero-glorax__subtitle {
        max-width: 961px;
      }

      .hero-glorax--top .hero-glorax__title,
      .hero-glorax--top .hero-glorax__subtitle {
        max-width: 52%;
      }
    }

    @media (max-width: 1200px) and (min-width: 769px) {
      .hero-glorax__content {
        padding: 40px;
      }

      .hero-glorax__title {
        font-size: 36px;
        letter-spacing: -0.72px;
        max-width: 55%;
      }

      .hero-glorax__subtitle {
        font-size: 14px;
        max-width: 55%;
      }
    }

    @media (max-width: 768px) {
      .hero-glorax {
        height: 646px;
        border-radius: 0 0 16px 16px;
      }

      .hero-glorax__gradient {
        border-radius: 0 0 16px 16px;
      }

      .hero-glorax__content {
        padding: 20px 16px;
      }

      .hero-glorax__title {
        font-size: 24px;
        letter-spacing: -0.48px;
        max-width: none;
      }

      .hero-glorax__title br {
        display: none;
      }

      .hero-glorax__subtitle {
        font-size: 14px;
        margin-top: 16px;
        max-width: none;
      }

      .hero-glorax--top .hero-glorax__title,
      .hero-glorax--top .hero-glorax__subtitle {
        max-width: none;
      }
    }

    /* ===== FOOTER GLORAX ===== */
    .footer-glorax {
      background: var(--glorax-secondary-50);
      padding: 32px 100px;
      overflow: clip;
    }

    .footer-glorax__inner {
      display: flex;
      align-items: flex-start;
      gap: 48px;
    }

    .footer-glorax__left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: 0;
    }

    .footer-glorax__logo {
      flex-shrink: 0;
      color: var(--glorax-primary-500);
    }

    .footer-glorax__logo svg {
      width: 132px;
      height: 24px;
      display: block;
    }

    .footer-glorax__disclaimer {
      font-family: var(--stolzl);
      font-size: 12px;
      font-weight: 300;
      line-height: 1.48;
      color: #B3B3B3;
      max-width: 852px;
    }

    .footer-glorax__right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .footer-glorax__copyright {
      font-family: var(--stolzl);
      font-size: 12px;
      font-weight: 400;
      line-height: 1;
      color: var(--glorax-base-900);
      white-space: nowrap;
    }

    .footer-glorax__privacy {
      font-family: var(--stolzl);
      font-size: 12px;
      font-weight: 400;
      line-height: 1.32;
      color: var(--glorax-base-400);
      text-decoration: none;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .footer-glorax {
        padding: 24px 16px;
      }

      .footer-glorax__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }

      .footer-glorax__left {
        align-self: stretch;
      }

      .footer-glorax__right {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-glorax__copyright {
        line-height: 1.32;
      }
    }

    /* ===== FORM GLORAX ===== */
    .form-glorax {
      position: relative;
      z-index: 1;
      padding: 64px 100px 48px;
      background: var(--glorax-base-0);
    }

    .form-glorax__card {
      position: relative;
    }

    .form-glorax__body {
      position: relative;
      background: var(--glorax-secondary-50);
      border-radius: 24px;
      overflow: hidden;
    }

    /* X Watermark */
    .form-glorax__watermark {
      position: absolute;
      width: 220%;
      height: 550%;
      left: -40%;
      top: -190%;
      pointer-events: none;
      z-index: 0;
    }

    .form-glorax__watermark svg {
      width: 100%;
      height: 100%;
    }

    /* Form (default state) */
    .form-glorax__form {
      position: relative;
      z-index: 1;
      padding: 40px 140px 40px 40px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: calc(100% - 560px);
    }

    .form-glorax__header {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .form-glorax__title {
      font-family: var(--stolzl);
      font-size: 32px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.64px;
      color: var(--glorax-base-900);
      margin: 0;
    }

    .form-glorax__title .form-mob-br {
      display: none;
    }

    .form-glorax__subtitle {
      font-family: var(--stolzl);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.48;
      color: #808080;
      margin: 0;
    }

    .form-glorax__fields {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 700px;
    }

    .form-glorax__inputs {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

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

    .form-glorax__input-row .form-glorax__input-wrapper {
      flex: 1 1 0;
    }

    .form-glorax__input-field {
      position: relative;
      height: 56px;
      border-radius: 8px;
      background: var(--glorax-base-0);
      border: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .form-glorax__input-field:hover {
      border-color: #E6EBF0;
    }

    .form-glorax__input-field--focused {
      border-color: var(--glorax-primary-100);
      background: var(--glorax-base-0);
    }

    .form-glorax__input-field--error {
      border-color: #E53935;
    }

    .form-glorax__input-field--error:hover {
      border-color: #C62828;
    }

    .form-glorax__input {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      padding: 24px 20px 8px;
      border: none;
      background: transparent;
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      line-height: 14px;
      color: var(--glorax-base-900);
      outline: none;
      border-radius: 8px;
    }

    .form-glorax__label {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      line-height: 14px;
      color: #808080;
      pointer-events: none;
      transition: top 0.2s ease, font-size 0.2s ease, transform 0.2s ease;
    }

    /* Floating label: focused or filled */
    .form-glorax__input:focus ~ .form-glorax__label,
    .form-glorax__input:not(:placeholder-shown) ~ .form-glorax__label {
      top: 12px;
      transform: translateY(0);
      font-size: 11px;
    }

    .form-glorax__error {
      display: none;
      font-family: var(--stolzl);
      font-size: 12px;
      line-height: 1.32;
      color: #E53935;
      margin-top: 4px;
      padding-left: 20px;
    }

    /* Button wrapper */
    .form-glorax__actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 8px;
    }

    .form-glorax__button {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 56px;
      padding: 20px 40px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      background: transparent;
      overflow: hidden;
      isolation: isolate;
    }

    .form-glorax__button-bg {
      position: absolute;
      inset: 0;
      background: var(--glorax-primary-500);
      border-radius: 8px;
      transition: inset 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
      z-index: 1;
    }

    .form-glorax__button:hover .form-glorax__button-bg {
      background: var(--glorax-primary-400);
      inset: -2px;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25));
    }

    .form-glorax__button:active .form-glorax__button-bg {
      background: var(--glorax-primary-600);
      inset: 0;
      filter: none;
    }

    .form-glorax__button-text {
      position: relative;
      z-index: 2;
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      line-height: 14px;
      color: var(--glorax-base-0);
      white-space: nowrap;
    }

    .form-glorax__privacy {
      font-family: var(--stolzl);
      font-size: 12px;
      font-weight: 400;
      line-height: 1.32;
      color: #808080;
    }

    .form-glorax__privacy a {
      color: var(--glorax-primary-500);
      text-decoration: none;
    }

    .form-glorax__privacy a:hover {
      color: var(--glorax-primary-400);
    }
/* Honeypot: invisible to humans */
    .form-glorax__hp {
      position: absolute;
      left: -9999px;
      height: 0;
      overflow: hidden;
    }

    /* Phone mockup (desktop) */
    .form-glorax__phone {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 560px;
      height: 456px;
      overflow: hidden;
      border-top-right-radius: 24px;
      border-bottom-right-radius: 24px;
      z-index: 1;
    }

    .form-glorax__phone img {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* State containers — fade transitions */
    .form-glorax__form,
    .form-glorax__state {
      transition: opacity 300ms ease;
    }

    .form-glorax__form.is-hidden,
    .form-glorax__state.is-hidden {
      opacity: 0;
    }

    .form-glorax__form.is-visible,
    .form-glorax__state.is-visible {
      opacity: 1;
    }

    .form-glorax__state {
      display: none;
      position: relative;
      z-index: 1;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 40px;
      min-height: 400px;
      max-width: calc(100% - 560px);
    }

    .form-glorax__state--loading {
      gap: 16px;
    }

    .form-glorax__state--success {
      gap: 12px;
    }

    /* Spinner rotation */
    @keyframes form-glorax-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .form-glorax__spinner {
      width: 48px;
      height: 48px;
      color: var(--glorax-primary-500);
    }

    .form-glorax__spinner svg {
      width: 100%;
      height: 100%;
      animation: form-glorax-spin 900ms linear infinite;
    }

    /* Checkmark stroke draw */
    @keyframes form-glorax-check {
      from { stroke-dashoffset: 40; }
      to { stroke-dashoffset: 0; }
    }

    .form-glorax__checkmark {
      width: 56px;
      height: 56px;
      color: var(--glorax-primary-500);
    }

    .form-glorax__checkmark svg {
      width: 100%;
      height: 100%;
    }

    .form-glorax__checkmark path {
      stroke-dasharray: 40;
      stroke-dashoffset: 40;
      animation: form-glorax-check 400ms ease 200ms forwards;
    }

    /* Success enter — scale + fade */
    @keyframes form-glorax-success-enter {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    .form-glorax__state--success.is-entering {
      animation: form-glorax-success-enter 350ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    /* Loading text pulse */
    @keyframes form-glorax-pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .form-glorax__state--loading .form-glorax__state-text {
      animation: form-glorax-pulse 1.5s ease-in-out infinite;
    }

    .form-glorax__state-title {
      font-family: var(--stolzl);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: -0.48px;
      color: var(--glorax-base-900);
      margin: 0;
    }

    .form-glorax__state-text {
      font-family: var(--stolzl);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.48;
      color: #808080;
      margin: 0;
      max-width: 360px;
    }

    /* Tablet: proportional zoom scaling */
    @media (max-width: 1439px) and (min-width: 769px) {
      .form-glorax {
        padding: 48px 40px;
        overflow: hidden;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .form-glorax {
        padding: 48px 16px;
      }

      .form-glorax__body {
        border-radius: 16px;
      }

      .form-glorax__watermark {
        left: -50%;
        top: -60%;
        width: 250%;
        height: 300%;
      }

      .form-glorax__form {
        padding: 24px 20px 20px;
        gap: 24px;
        max-width: none;
      }

      .form-glorax__title {
        font-size: 24px;
        letter-spacing: -0.48px;
      }

      .form-glorax__header {
        gap: 16px;
      }

      .form-glorax__subtitle {
        font-size: 14px;
      }

      .form-glorax__input-row {
        flex-direction: column;
      }

      .form-glorax__phone {
        display: none;
      }

      .form-glorax__state {
        max-width: none;
        padding: 60px 20px;
        min-height: 300px;
      }
    }

    @media (max-width: 420px) {
      .form-glorax__title .form-mob-br {
        display: inline;
      }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--black);
    }

    .hero__bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
    }

    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 0%;
      display: block;
    }

    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 0;
      width: 100%;
      text-align: center;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    }

    .hero__title {
      font-family: var(--serif);
      font-size: 65px;
      font-weight: 400;
      line-height: 65px;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: normal;
      margin-bottom: 16px;
      text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.6);
    }

    .hero__subtitle {
      font-family: var(--sans);
      font-size: clamp(0.85rem, 1.2vw, 1rem);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      line-height: 1.7;
      text-shadow: 0 3px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
    }

    /* ===== FEATURES ===== */
    .features {
      padding: 72px 40px;
      background: var(--white);
      text-align: center;
    }

    .features__inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .features__title {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 400;
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 48px;
    }

    .features__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: left;
    }

    .features__item h3 {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 400;
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }

    .features__item p {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ===== FORM SECTION ===== */
    .form-section {
      padding: 72px 40px;
      background: var(--white);
      text-align: center;
    }

    .form-section__inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .form-section__title {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 400;
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .form-section__subtitle {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--text-light);
      margin-bottom: 36px;
    }

    .form {
      display: flex;
      gap: 12px;
      align-items: stretch;
      margin-bottom: 20px;
    }

    .form__input {
      flex: 1;
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 400;
      padding: 14px 32px;
      border: 1px solid #ddd;
      border-radius: 100px;
      background: var(--white);
      color: var(--text);
      outline: none;
      transition: border-color 0.3s;
    }

    .form__input::placeholder { color: #bbb; }
    .form__input:focus { border-color: var(--black); }

    .form__submit {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 14px 28px;
      border: none;
      border-radius: 100px;
      background: var(--gray);
      color: var(--white);
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .form__submit:hover {
      background: var(--black);
      color: var(--white);
    }

    .form__checkboxes {
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: left;
    }

    .form__checkbox {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      cursor: pointer;
    }

    .form__checkbox input[type="checkbox"] {
      margin-top: 3px;
      accent-color: var(--black);
      flex-shrink: 0;
    }

    .form__checkbox span {
      font-size: 0.7rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.5;
    }

    .form__checkbox a {
      color: var(--text-light);
      text-decoration: underline;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--black);
      padding: 40px 40px 32px;
    }

    .footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .footer__logo {
      font-family: var(--serif);
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--white);
      letter-spacing: 0.5em;
      text-transform: uppercase;
      text-decoration: none;
    }

    .footer__info {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    .footer__phone {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
    }

    .footer__address {
      font-size: 0.75rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ===== DISCLAIMER ===== */
    .disclaimer {
      padding: 24px 40px;
      background: var(--black);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .disclaimer__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .disclaimer__links {
      display: flex;
      gap: 24px;
    }

    .disclaimer__links a {
      font-size: 0.7rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: underline;
    }

    .disclaimer__text {
      font-size: 0.65rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.3);
      line-height: 1.7;
      max-width: 900px;
    }

    .disclaimer__bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
      padding-top: 8px;
    }

    .disclaimer__bottom span {
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.3);
    }

    /* ===== COOKIE BANNER ===== */
    .cookie-banner {
      display: none;
      position: fixed;
      bottom: 40px;
      left: 40px;
      z-index: 1000;
      background: var(--black);
      border-radius: 0;
      padding: 20px;
      width: 380px;
      box-shadow: none;
      font-family: var(--sans);
    }

    .cookie-banner.visible {
      display: block;
    }

    .cookie-banner.hidden {
      display: none;
    }

    .cookie-banner__text {
      font-size: 0.82rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .cookie-banner__text a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: underline;
    }

    .cookie-banner__btn {
      display: inline-block;
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      padding: 10px 26px;
      border: none;
      border-radius: 100px;
      background: var(--gray);
      color: #fff;
      cursor: pointer;
      transition: all 0.3s;
    }

    .cookie-banner__btn:hover {
      background: #b0b7c0;
    }

    /* ===== RESPONSIVE ===== */

    @media (min-width: 1921px) {
      .header__inner { max-width: 1440px; padding: 16px 48px; }
      .hero__content { max-width: 1440px; padding: 40px 48px; }
      .features { padding: 72px 48px; }
      .form-section { padding: 72px 48px; }
      .footer { padding: 40px 48px 32px; }
      .footer__inner { max-width: 1440px; }
      .disclaimer { padding: 24px 48px; }
      .disclaimer__inner { max-width: 1440px; }
    }

    @media (max-width: 1024px) {
      .header__inner { padding: 16px 32px; }
      .hero { min-height: 75vh; }
      .hero__content { padding: 40px 40px; }
      .hero__title { font-size: 50px; line-height: 54px; }
      .hero__subtitle { font-size: 0.9rem; }
      .features { padding: 56px 32px; }
      .features__grid { grid-template-columns: 1fr; gap: 24px; }
      .form-section { padding: 56px 32px; }
      .form-section__inner { max-width: 480px; }
      .form { flex-direction: column; gap: 16px; }
      .form__submit { width: 100%; }
      .footer { padding: 36px 32px; }
      .disclaimer { padding: 24px 32px; }
      .disclaimer__text { font-size: 0.7rem; }
      .cookie-banner { display: none; }
    }

    @media (max-width: 768px) {
      .header__inner { padding: 16px 20px; }
      .header__phone { display: none; }
      .header .btn { display: none; }
      .burger { display: flex; }
      .hero { min-height: 80vh; }
      .hero__content { padding: 40px 20px; }
      .hero__title { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.05; max-width: 300px; margin-left: auto; margin-right: auto; }
      .hero__subtitle { font-size: 0.75rem; }
      .features { padding: 40px 20px; }
      .form-section { padding: 40px 20px; }
      .form-section__inner { max-width: 400px; }
      .form { flex-direction: column; gap: 16px; margin-bottom: 24px; }
      .form__submit { width: 100%; }
      .form__checkbox { gap: 10px; }
      .form__checkbox input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 1px; }
      .footer { padding: 32px 20px; }
      .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
      .footer__info { align-items: flex-start; }
      .disclaimer { padding: 20px 20px; }
      .disclaimer__links { flex-direction: column; gap: 12px; }
      .disclaimer__text { font-size: 0.72rem; }
    }

    @media (max-width: 480px) {
      .header__inner { padding: 16px 16px; }
      .header__logo img { height: 36px; }
      .hero__content { padding: 40px 16px; }
      .hero__title { font-size: 2rem; line-height: 1.1; max-width: 260px; margin-bottom: 24px; }
      .form-section { padding: 32px 16px; }
      .form__input { padding: 12px 20px; }
      .form__submit { padding: 12px 20px; }
      .footer { padding: 24px 16px; }
      .disclaimer { padding: 16px 16px; }
    }    }
  }
}

/* ── Component Type Classification UI ── */

/* Type badges on blocks in editor */
.block-type-badge {
  display: inline-block;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Consolas', monospace;
  margin-left: 8px;
  vertical-align: middle;
}
.type-script {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
.type-integration {
  background: #ede9fe;
  color: #3200F0;
  border: 1px solid #c4b5fd;
}

/* Library filter buttons */
.library-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 6px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #555;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover {
  border-color: #999;
  color: #333;
}
.filter-btn.active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

/* Component type badges on library cards */
.comp-type-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}
.comp-type-script {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
.comp-type-integration {
  background: #ede9fe;
  color: #3200F0;
  border: 1px solid #c4b5fd;
}
.comp-type-visual {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

/* Integration settings in editor */
.integration-status-ok {
  color: #16a34a;
  font-size: 12px;
  font-weight: 500;
}
.integration-status-warn {
  color: #ea580c;
  font-size: 12px;
  font-weight: 500;
}

/* Playground: no-preview notice */
.no-preview-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 48px 32px;
  text-align: center;
  color: #6b7280;
}
.no-preview-notice strong {
  display: block;
  font-size: 1rem;
  color: #374151;
  margin-bottom: 8px;
}
.no-preview-notice p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

/* Integration notice in playground */
.integration-notice {
  padding: 10px 16px;
  background: #ede9fe;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #3200F0;
  flex-shrink: 0;
}
