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

    :root {
      --primary: #6366F1;
      --primary-dark: #4F46E5;
      --accent-light: #EEF2FF;
      --text-dark: #1E1B4B;
      --text-gray: #6B7280;
      --white: #FFFFFF;
      --lavender: #A5B4FC;
      --success: #10B981;
      --nav-float-top: 20px;
      --nav-bar-height: 60px;
      --nav-float-gap: 28px;
      --nav-total-offset: calc(var(--nav-float-top) + var(--nav-bar-height) + var(--nav-float-gap));
      --layout-max: 1200px;
      --layout-gutter: 40px;
      --section-gray: #F8F8FC;
      --footer-bg: #1E1B4B;
      --font-sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    #features,
    #how-it-works,
    #pricing,
    #cli {
      scroll-margin-top: calc(var(--nav-float-top) + var(--nav-bar-height) + 14px);
    }

    body {
      font-family: var(--font-sans);
      font-size: 17px;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── Navigation (floating morphoglass) ─── */
    .nav {
      position: fixed;
      top: var(--nav-float-top);
      left: 0;
      right: 0;
      z-index: 1000;
      width: 100%;
      display: flex;
      justify-content: center;
      pointer-events: none;
    }

    .nav__inner {
      position: relative;
      width: min(var(--layout-max), calc(100% - 2 * var(--layout-gutter)));
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: var(--nav-bar-height);
      padding: 0 8px;
      border-radius: 9999px;
      pointer-events: auto;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.62);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.85);
      box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.05),
        0 2px 4px rgba(30, 27, 75, 0.02),
        0 8px 32px rgba(99, 102, 241, 0.08),
        0 24px 48px rgba(30, 27, 75, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(99, 102, 241, 0.03);
      transition:
        background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Morphoglass sheen */
    .nav__inner::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.08) 42%,
        transparent 100%
      );
      pointer-events: none;
    }

    .nav__inner::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(
        ellipse 80% 50% at 50% -20%,
        rgba(165, 180, 252, 0.12) 0%,
        transparent 70%
      );
      pointer-events: none;
    }

    .nav.scrolled .nav__inner {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(24px) saturate(200%);
      -webkit-backdrop-filter: blur(24px) saturate(200%);
      border-color: rgba(255, 255, 255, 0.95);
      box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.08),
        0 4px 8px rgba(30, 27, 75, 0.03),
        0 12px 40px rgba(99, 102, 241, 0.12),
        0 32px 64px rgba(30, 27, 75, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(99, 102, 241, 0.04);
      transform: translateY(-1px);
    }

    .nav__logo,
    .nav__links,
    .nav__actions,
    .nav__cta {
      position: relative;
      z-index: 1;
    }

    .nav__actions {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-self: end;
    }

    .nav__cta-short {
      display: none;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      justify-self: start;
    }

    .nav__logo-img {
      display: block;
      height: 28px;
      width: auto;
      transition: opacity 0.3s ease;
    }

    .nav__logo:hover .nav__logo-img {
      opacity: 0.88;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      justify-self: center;
    }

    .nav__links a {
      text-decoration: none;
      color: var(--text-gray);
      font-size: 16px;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .nav__links a:hover {
      color: var(--text-dark);
    }

    .nav__cta {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      background: var(--primary);
      color: var(--white);
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 2px 12px rgba(99, 102, 241, 0.25);
    }

    .nav__cta:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    }

    /* ─── Hero ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      padding: var(--nav-total-offset) var(--layout-gutter) 80px;
      overflow: hidden;
    }

    .hero__grid {
      position: relative;
      z-index: 1;
      max-width: var(--layout-max);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 56px 56px;
      align-items: center;
      min-height: calc(100vh - var(--nav-total-offset) - 80px);
    }

    /* Hero background — white center, soft lavender sides */
    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background: #ffffff;
    }

    .hero__bg::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      background: radial-gradient(
        ellipse 58% 72% at 50% 42%,
        #ffffff 0%,
        rgba(255, 255, 255, 0.97) 38%,
        rgba(255, 255, 255, 0.55) 62%,
        transparent 100%
      );
      pointer-events: none;
    }

    .hero__wash {
      position: absolute;
      top: 0;
      bottom: 0;
      width: min(52%, 520px);
      z-index: 1;
      pointer-events: none;
    }

    .hero__wash--left {
      left: 0;
      background: radial-gradient(
        ellipse 100% 88% at 0% 48%,
        rgba(199, 210, 254, 0.62) 0%,
        rgba(224, 231, 255, 0.38) 42%,
        rgba(248, 250, 255, 0.12) 68%,
        transparent 100%
      );
    }

    .hero__wash--right {
      right: 0;
      background: radial-gradient(
        ellipse 100% 88% at 100% 48%,
        rgba(199, 210, 254, 0.62) 0%,
        rgba(224, 231, 255, 0.38) 42%,
        rgba(248, 250, 255, 0.12) 68%,
        transparent 100%
      );
    }

    .hero__dots {
      position: absolute;
      bottom: 0;
      width: min(46%, 480px);
      height: min(58%, 420px);
      z-index: 2;
      pointer-events: none;
      opacity: 0.55;
      background-image: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.2) 1.25px,
        transparent 1.25px
      );
      background-size: 20px 20px;
    }

    .hero__dots--left {
      left: 0;
      -webkit-mask-image: radial-gradient(
        ellipse 95% 90% at 0% 100%,
        #000 0%,
        rgba(0, 0, 0, 0.45) 48%,
        transparent 78%
      );
      mask-image: radial-gradient(
        ellipse 95% 90% at 0% 100%,
        #000 0%,
        rgba(0, 0, 0, 0.45) 48%,
        transparent 78%
      );
    }

    .hero__dots--right {
      right: 0;
      -webkit-mask-image: radial-gradient(
        ellipse 95% 90% at 100% 100%,
        #000 0%,
        rgba(0, 0, 0, 0.45) 48%,
        transparent 78%
      );
      mask-image: radial-gradient(
        ellipse 95% 90% at 100% 100%,
        #000 0%,
        rgba(0, 0, 0, 0.45) 48%,
        transparent 78%
      );
    }

    .hero__content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      width: 100%;
      max-width: none;
      animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero__badge {
      position: relative;
      display: inline-flex;
      margin-bottom: 28px;
      padding: 2px;
      border-radius: 9999px;
      overflow: hidden;
      isolation: isolate;
      background: transparent;
      box-shadow:
        0 0 20px rgba(99, 102, 241, 0.14),
        0 0 36px rgba(167, 139, 250, 0.1);
    }

    .hero__badge::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 220%;
      aspect-ratio: 1;
      transform: translate(-50%, -50%);
      background: conic-gradient(
        from 0deg,
        transparent 0deg 258deg,
        rgba(99, 102, 241, 0.4) 272deg,
        #6366F1 288deg,
        #C084FC 302deg,
        #A78BFA 316deg,
        #818CF8 330deg,
        transparent 344deg
      );
      animation: heroBadgeBeamSpin 2.6s linear infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes heroBadgeBeamSpin {
      to {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    .hero__badge-inner {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 9999px;
      background: var(--accent-light);
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .hero__badge-icon {
      flex-shrink: 0;
    }

    .hero__badge-text {
      white-space: nowrap;
    }

    .hero__badge-rotate {
      display: inline-block;
      text-align: left;
      vertical-align: baseline;
      transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero__badge-rotate.is-out {
      opacity: 0;
      transform: translateY(0.4em);
    }

    @media (prefers-reduced-motion: reduce) {
      .hero__badge::before {
        animation: none;
        width: 100%;
        height: 100%;
        inset: 0;
        top: 0;
        left: 0;
        transform: none;
        background: linear-gradient(
          135deg,
          rgba(99, 102, 241, 0.5),
          rgba(192, 132, 252, 0.5),
          rgba(129, 140, 248, 0.5)
        );
      }
    }

    .hero__headline {
      font-size: clamp(44px, 4.2vw, 68px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.035em;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .hero__subheadline {
      font-size: 20px;
      line-height: 1.55;
      color: var(--text-gray);
      max-width: 38em;
      margin-bottom: 24px;
      font-weight: 400;
    }

    .btn-short {
      display: none;
    }

    .hero__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: flex-start;
      margin-bottom: 20px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      background: var(--primary);
      color: var(--white);
      font-family: inherit;
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 28px;
      background: var(--white);
      color: var(--text-dark);
      font-family: inherit;
      font-size: 17px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 9999px;
      border: 1px solid rgba(30, 27, 75, 0.12);
      box-shadow: 0 1px 4px rgba(30, 27, 75, 0.04);
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-ghost:hover {
      background: var(--white);
      border-color: rgba(99, 102, 241, 0.25);
      box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
      transform: translateY(-2px);
    }

    .hero__proof {
      font-size: 14px;
      color: var(--text-gray);
      font-weight: 500;
      margin-bottom: 0;
      opacity: 0.85;
    }

    .hero__proof span {
      color: var(--primary);
    }

    /* ─── Browser Mockup ─── */
    .mockup-wrapper {
      position: relative;
      width: 100%;
      max-width: 100%;
      animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
    }

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

    .mockup-card {
      background: var(--white);
      border-radius: 16px;
      box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.06),
        0 4px 6px rgba(30, 27, 75, 0.02),
        0 24px 48px rgba(99, 102, 241, 0.12),
        0 48px 96px rgba(30, 27, 75, 0.06);
      overflow: hidden;
    }

    .mockup-tabs {
      display: flex;
      border-bottom: 1px solid rgba(99, 102, 241, 0.08);
      background: #FAFAFE;
    }

    .mockup-tab {
      flex: 1;
      padding: 14px 20px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-gray);
      background: transparent;
      border: none;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease;
    }

    .mockup-tab--active {
      color: var(--primary);
    }

    .mockup-tab--active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 20%;
      right: 20%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px 2px 0 0;
    }

    .mockup-tab--static {
      color: var(--text-gray);
      opacity: 0.72;
      cursor: default;
      pointer-events: none;
    }

    .mockup-tab--static::after {
      display: none;
    }

    .mockup-body {
      position: relative;
      min-height: 380px;
      padding: 28px 32px 32px;
    }

    .flow-panel {
      position: absolute;
      inset: 28px 32px 32px;
      display: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .flow-panel.active {
      display: block;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      z-index: 2;
    }

    /* ─── ZIP phased flow ─── */
    .zip-stages {
      position: relative;
    }

    .zip-drop-wrapper {
      position: relative;
      margin-bottom: 4px;
      min-height: 152px;
      padding-top: 52px;
    }

    .zip-file-float {
      position: absolute;
      left: 50%;
      top: 0;
      width: 76px;
      height: 76px;
      margin-left: -38px;
      z-index: 3;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      filter: drop-shadow(0 12px 24px rgba(99, 102, 241, 0.35));
      transform-origin: center bottom;
    }

    .zip-file-float svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    @keyframes zipDropIn {
      0% {
        opacity: 0;
        transform: translateY(-92px) scale(0.88) rotate(-5deg);
      }
      55% {
        opacity: 1;
        transform: translateY(8px) scale(1.04) rotate(1deg);
      }
      75% {
        transform: translateY(-4px) scale(0.98) rotate(-0.5deg);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
      }
    }

    #flow-zip[data-stage="drop"] .zip-file-float {
      visibility: visible;
      animation: zipDropIn 0.88s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
    }

    #flow-zip[data-stage="idle"] .zip-file-float {
      opacity: 0;
      visibility: hidden;
      animation: none;
      transform: translateY(-92px);
    }

    #flow-zip[data-stage="deploy"] .zip-file-float,
    #flow-zip[data-stage="live"] .zip-file-float,
    #flow-zip[data-stage="preview"] .zip-file-float {
      opacity: 0;
      visibility: hidden;
      animation: none;
      transform: translateY(0);
      transition: opacity 0.2s ease;
    }

    #flow-zip[data-stage="idle"] #zip-drop-text {
      opacity: 1;
    }

    #flow-zip[data-stage="drop"] #zip-drop-text {
      opacity: 0.28;
      transition: opacity 0.35s ease;
    }

    #flow-zip[data-stage="deploy"] #zip-drop-text,
    #flow-zip[data-stage="live"] #zip-drop-text {
      opacity: 0;
      visibility: hidden;
      height: 0;
      overflow: hidden;
    }

    #flow-zip[data-stage="idle"] #zip-filename,
    #flow-zip[data-stage="drop"] #zip-filename {
      opacity: 0;
      visibility: hidden;
      transform: translateY(4px);
    }

    #flow-zip[data-stage="deploy"] #zip-filename,
    #flow-zip[data-stage="live"] #zip-filename {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
    }

    #flow-zip[data-stage="deploy"] #zip-drop,
    #flow-zip[data-stage="live"] #zip-drop {
      opacity: 0.38;
      transform: scale(0.985);
      border-style: solid;
      border-color: rgba(99, 102, 241, 0.35);
      transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
    }

    #flow-zip[data-stage="drop"] #zip-drop.is-landing {
      border-style: solid;
      border-color: rgba(99, 102, 241, 0.65);
      box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.12),
        0 8px 28px rgba(99, 102, 241, 0.18);
      animation: dropZonePulse 0.55s ease forwards;
    }

    @keyframes dropZonePulse {
      0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.15); }
      100% {
        box-shadow:
          0 0 0 1px rgba(99, 102, 241, 0.06),
          0 4px 16px rgba(99, 102, 241, 0.08);
      }
    }

    #flow-zip[data-stage="deploy"] .zip-drop-wrapper,
    #flow-zip[data-stage="live"] .zip-drop-wrapper {
      display: none;
    }

    #flow-zip:not([data-stage="deploy"]) #zip-deploy {
      display: none !important;
    }

    #flow-zip[data-stage="deploy"] #zip-deploy {
      display: block;
      animation: fadeIn 0.35s ease forwards;
      margin-top: 8px;
    }

    #flow-zip:not([data-stage="live"]) #zip-live-msg {
      display: none !important;
    }

    #flow-zip[data-stage="live"] #zip-live-msg {
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
      padding: 20px 16px;
      animation: liveMsgIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes liveMsgIn {
      from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    #flow-zip[data-stage="preview"] .zip-stages {
      display: none;
    }

    #flow-zip:not([data-stage="preview"]) #zip-browser {
      display: none !important;
    }

    #flow-zip[data-stage="preview"] #zip-browser {
      display: block;
      margin-top: 0;
    }

    /* ZIP Upload Flow */
    .drop-zone {
      border: 2px dashed rgba(99, 102, 241, 0.45);
      border-radius: 12px;
      padding: 36px 24px;
      text-align: center;
      background: var(--accent-light);
      position: relative;
      min-height: 116px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .drop-zone__text {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-gray);
    }

    .drop-zone__filename {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
    }

    /* Deploy steps (ZIP upload phase) */
    .deploy-panel {
      background: var(--white);
      border-radius: 14px;
      border: 1px solid rgba(99, 102, 241, 0.12);
      padding: 22px 20px 20px;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 28px rgba(99, 102, 241, 0.07);
    }

    .deploy-panel__hero {
      text-align: center;
      margin-bottom: 22px;
    }

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

    .deploy-spinner {
      border-radius: 50%;
      border-style: solid;
      border-color: rgba(99, 102, 241, 0.14);
      border-top-color: var(--primary);
      animation: spin 0.82s linear infinite;
    }

    .deploy-spinner--lg {
      width: 46px;
      height: 46px;
      margin: 0 auto 14px;
      border-width: 3px;
    }

    .deploy-panel__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.02em;
    }

    .deploy-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .deploy-step {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-gray);
    }

    .deploy-step__icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .deploy-step__num {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #F3F4F6;
      border: 1px solid rgba(30, 27, 75, 0.07);
      font-size: 11px;
      font-weight: 700;
      color: #9CA3AF;
      display: none;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .deploy-step__check {
      display: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--success);
      align-items: center;
      justify-content: center;
    }

    .deploy-step__check svg {
      width: 11px;
      height: 11px;
    }

    .deploy-step__spin {
      display: none;
      width: 22px;
      height: 22px;
      border: 2px solid rgba(99, 102, 241, 0.16);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin 0.78s linear infinite;
    }

    .deploy-step--pending .deploy-step__spin,
    .deploy-step--pending .deploy-step__check {
      display: none !important;
    }

    .deploy-step--pending .deploy-step__num {
      display: flex;
    }

    .deploy-step--active .deploy-step__num,
    .deploy-step--active .deploy-step__check {
      display: none !important;
    }

    .deploy-step--active .deploy-step__spin {
      display: block;
    }

    .deploy-step--done .deploy-step__num,
    .deploy-step--done .deploy-step__spin {
      display: none !important;
    }

    .deploy-step--done .deploy-step__check {
      display: flex !important;
    }

    .deploy-step--active .deploy-step__label {
      color: var(--primary);
    }

    .deploy-step--done .deploy-step__label {
      color: var(--text-dark);
    }

    .deploy-step--done.deploy-step--muted .deploy-step__label {
      color: var(--text-gray);
      font-weight: 600;
    }

    .zip-live-msg__check {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--success);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    }

    .zip-live-msg__check svg {
      width: 18px;
      height: 18px;
    }

    .zip-live-msg__text {
      font-size: 17px;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.03em;
    }

    /* Browser Preview (shared) */
    .browser-preview {
      margin-top: 20px;
      opacity: 0;
      transform: translateY(10px);
    }

    #flow-zip[data-stage="preview"] #zip-browser.browser-preview.visible {
      opacity: 1;
      transform: translateY(0);
      animation: browserFadeIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes browserFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .browser-chrome {
      background: #F4F4F8;
      border-radius: 10px 10px 0 0;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(30, 27, 75, 0.06);
      border-bottom: none;
    }

    .traffic-lights {
      display: flex;
      gap: 6px;
    }

    .traffic-light {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .traffic-light--red { background: #FF5F57; }
    .traffic-light--yellow { background: #FFBD2E; }
    .traffic-light--green { background: #28CA41; }

    .url-bar {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-gray);
      border: 1px solid rgba(30, 27, 75, 0.06);
    }

    .ssl-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--success);
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .ssl-badge svg {
      width: 12px;
      height: 12px;
    }

    .url-bar__domain {
      color: var(--text-dark);
      font-weight: 600;
    }

    .browser-content {
      border: 1px solid rgba(30, 27, 75, 0.06);
      border-top: none;
      border-radius: 0 0 10px 10px;
      min-height: 148px;
      height: auto;
      padding: 8px 8px 10px;
      background: #FAFBFF;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      position: relative;
      overflow: hidden;
    }

    .browser-content::before,
    .browser-content::after {
      content: '';
      position: absolute;
      border-radius: 4px;
      pointer-events: none;
    }

    .browser-content::before {
      width: 60%;
      height: 12px;
      background: rgba(99, 102, 241, 0.08);
      top: 18px;
      left: 16px;
    }

    .browser-content::after {
      width: 40%;
      height: 8px;
      background: rgba(99, 102, 241, 0.05);
      top: 38px;
      left: 16px;
    }

    .browser-content:has(.site-preview)::before,
    .browser-content:has(.site-preview)::after {
      display: none;
    }

    /* Deployed site miniature (portfolio) */
    .site-preview {
      width: 100%;
      border-radius: 6px;
      background: var(--white);
      border: 1px solid rgba(99, 102, 241, 0.06);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .site-preview__nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 7px 10px;
      background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FC 100%);
      border-bottom: 1px solid rgba(30, 27, 75, 0.06);
      opacity: 0;
      transform: translateY(6px);
    }

    .site-preview__brand {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .site-preview__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--lavender));
      flex-shrink: 0;
    }

    .site-preview__links {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .site-preview__link-dash {
      height: 4px;
      border-radius: 2px;
      background: rgba(30, 27, 75, 0.12);
    }

    .site-preview__link-dash:nth-child(1) { width: 22px; }
    .site-preview__link-dash:nth-child(2) { width: 18px; }
    .site-preview__link-dash:nth-child(3) { width: 28px; }

    .site-preview__cta-mini {
      font-size: 7px;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(99, 102, 241, 0.12);
      color: var(--primary);
      letter-spacing: 0.02em;
    }

    .site-preview__hero {
      padding: 12px 12px 10px;
      text-align: left;
      opacity: 0;
      transform: translateY(8px);
    }

    .site-preview__hero h2 {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 4px;
    }

    .site-preview__hero p {
      font-size: 9px;
      font-weight: 500;
      color: var(--text-gray);
      line-height: 1.35;
      max-width: 95%;
    }

    .site-preview__accent {
      width: 36px;
      height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--primary), var(--lavender));
      margin-bottom: 8px;
    }

    .site-preview__cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 0 12px 12px;
    }

    .site-preview__card {
      border-radius: 7px;
      border: 1px solid rgba(30, 27, 75, 0.06);
      overflow: hidden;
      background: #FAFBFF;
      opacity: 0;
      transform: translateY(10px);
    }

    .site-preview__card-thumb {
      height: 42px;
      background: linear-gradient(145deg, #EEF2FF 0%, #E0E7FF 45%, #DDD6FE 100%);
      position: relative;
    }

    .site-preview__card-thumb::after {
      content: '';
      position: absolute;
      inset: 10px;
      border-radius: 4px;
      border: 1px dashed rgba(99, 102, 241, 0.25);
      opacity: 0.7;
    }

    .site-preview__card:nth-child(2) .site-preview__card-thumb {
      background: linear-gradient(145deg, #F5F3FF 0%, #EDE9FE 50%, #E9D5FF 100%);
    }

    .site-preview__card-body {
      padding: 7px 8px 9px;
    }

    .site-preview__card-title {
      font-size: 8px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.02em;
      margin-bottom: 3px;
    }

    .site-preview__card-meta {
      font-size: 7px;
      font-weight: 500;
      color: var(--text-gray);
    }

    @keyframes siteReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .browser-preview.visible .site-preview__nav {
      animation: siteReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
    }

    .browser-preview.visible .site-preview__hero {
      animation: siteReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
    }

    .browser-preview.visible .site-preview__card:nth-child(1) {
      animation: siteReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.26s forwards;
    }

    .browser-preview.visible .site-preview__card:nth-child(2) {
      animation: siteReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
    }

    .live-pulse {
      position: absolute;
      right: 10px;
      bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      color: var(--success);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      z-index: 2;
    }

    .live-pulse__dot {
      width: 6px;
      height: 6px;
      background: var(--success);
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.85); }
    }

    /* Reset states between cycles */
    .flow-panel.resetting * {
      animation: none !important;
      transition: none !important;
    }

    .nav__burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: 10px;
      position: relative;
      z-index: 2;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .nav__burger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--text-dark);
      border-radius: 1px;
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    .nav.nav--open .nav__burger span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav.nav--open .nav__burger span:nth-child(2) {
      opacity: 0;
    }

    .nav.nav--open .nav__burger span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(30, 27, 75, 0.25);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .nav-overlay.is-visible {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }

    .nav__drawer {
      display: none;
      position: fixed;
      top: calc(var(--nav-float-top) + var(--nav-bar-height) + 10px);
      left: 50%;
      transform: translate(-50%, -8px);
      width: min(1200px, calc(100% - 2 * var(--layout-gutter)));
      background: var(--white);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 16px 48px rgba(30, 27, 75, 0.12);
      border: 1px solid rgba(99, 102, 241, 0.1);
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .nav.nav--open .nav__drawer {
      display: block;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .nav__drawer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .nav__drawer-links a {
      display: block;
      padding: 12px 14px;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 16px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .nav__drawer-links a:hover {
      background: var(--accent-light);
      color: var(--primary);
    }

    .nav__drawer-cta {
      margin-top: 12px;
      display: flex;
      justify-content: center;
    }

    .nav__drawer-cta .nav__cta {
      width: 100%;
      justify-self: stretch;
    }

    /* ─── Shared sections ─── */
    .section {
      padding: 100px var(--layout-gutter);
      transition: all 0.3s ease;
    }

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

    .section__label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      background: var(--accent-light);
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      border-radius: 9999px;
      margin-bottom: 20px;
      letter-spacing: 0.01em;
      border: 1px solid rgba(99, 102, 241, 0.12);
    }

    .section__headline {
      font-size: 48px;
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.1;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .section__sub {
      font-size: 18px;
      color: var(--text-gray);
      line-height: 1.55;
      max-width: 560px;
    }

    .section--gray {
      background: var(--section-gray);
    }

    .section--white {
      background: var(--white);
    }

    /* ─── Logos strip ─── */
    .logos-strip {
      background: var(--white);
      border-top: 1px solid rgba(99, 102, 241, 0.08);
      border-bottom: 1px solid rgba(99, 102, 241, 0.08);
      padding: 48px var(--layout-gutter);
    }

    .logos-strip__inner {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .logos-strip__label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-gray);
      margin-bottom: 28px;
    }

    .logos-strip__marquee {
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }

    .logos-strip__marquee:hover .logos-strip__track {
      animation-play-state: paused;
    }

    .logos-strip__track {
      display: flex;
      align-items: center;
      gap: 14px;
      width: max-content;
      padding: 4px 0;
      animation: logosMarquee 36s linear infinite;
    }

    @keyframes logosMarquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logos-strip__pill {
      flex-shrink: 0;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 9999px;
      background: #F8F9FC;
      border: 1px solid rgba(30, 27, 75, 0.06);
      color: var(--text-dark);
      opacity: 0.5;
      transition: all 0.3s ease;
    }

    .logos-strip__pill:hover {
      opacity: 1;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
      border-color: rgba(99, 102, 241, 0.15);
    }

    .logos-strip__pill--asset {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
    }

    .logos-strip__img {
      display: block;
      height: 26px;
      width: auto;
      max-width: min(180px, 42vw);
      object-fit: contain;
    }

    /* ─── Features ─── */
    .features__header {
      margin-bottom: 48px;
      max-width: 720px;
    }

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

    .feature-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
    }

    .feature-card__visual {
      height: 130px;
      margin-bottom: 22px;
      border-radius: 12px;
      background: linear-gradient(180deg, #FAFBFF 0%, #F3F4F6 100%);
      border: 1px solid rgba(99, 102, 241, 0.06);
      overflow: hidden;
      position: relative;
    }

    .feature-card__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 18px;
      font-weight: 700;
      color: #1E1B4B;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .feature-card__visual--tall {
      height: 160px;
      margin-bottom: 24px;
      background: #F8F8FC;
      border: none;
    }

    .feature-card__visual--editor {
      padding: 0;
      overflow: hidden;
    }

    .feature-card__desc {
      font-size: 15px;
      color: var(--text-gray);
      line-height: 1.5;
    }

    /* Mini UI: deploy */
    .mini-drop {
      padding: 14px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .mini-drop__zone {
      flex: 1;
      border: 2px dashed rgba(99, 102, 241, 0.35);
      border-radius: 8px;
      background: rgba(238, 242, 255, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .mini-drop__zip {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      font-weight: 600;
      padding: 6px 8px;
      background: var(--white);
      border-radius: 6px;
      border: 1px solid rgba(99, 102, 241, 0.2);
      color: var(--primary);
      box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
      transform: translateY(-4px);
    }

    .mini-drop__bar {
      height: 5px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 99px;
      overflow: hidden;
    }

    .mini-drop__bar-fill {
      height: 100%;
      width: 72%;
      background: linear-gradient(90deg, var(--primary), var(--lavender));
      border-radius: 99px;
    }

    /* Mini SSL bar */
    .mini-ssl {
      padding: 18px;
      display: flex;
      align-items: center;
    }

    .mini-ssl__chrome {
      width: 100%;
      background: var(--white);
      border-radius: 8px;
      padding: 8px 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(30, 27, 75, 0.08);
      box-shadow: 0 2px 8px rgba(30, 27, 75, 0.04);
    }

    .mini-ssl__lock {
      color: var(--success);
      flex-shrink: 0;
    }

    .mini-ssl__url {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      color: var(--text-dark);
      font-weight: 600;
    }

    /* Mini analytics */
    .mini-chart {
      padding: 14px 16px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .mini-chart__top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .mini-chart__label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .mini-chart__toggle {
      font-size: 9px;
      font-weight: 600;
      padding: 4px 8px;
      border-radius: 6px;
      background: var(--accent-light);
      color: var(--primary);
    }

    .mini-chart__bars {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 56px;
      margin-top: auto;
    }

    .mini-chart__bar {
      flex: 1;
      border-radius: 4px 4px 0 0;
      background: linear-gradient(180deg, var(--lavender), var(--primary));
      opacity: 0.85;
    }

    .mini-chart__bar:nth-child(1) { height: 40%; }
    .mini-chart__bar:nth-child(2) { height: 65%; }
    .mini-chart__bar:nth-child(3) { height: 45%; }
    .mini-chart__bar:nth-child(4) { height: 90%; }
    .mini-chart__bar:nth-child(5) { height: 55%; }

    /* Mini forms — attribute + inbox */
    .feature-card__visual--forms {
      display: flex;
      align-items: stretch;
    }

    .mini-forms {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
      height: 100%;
      padding: 10px 12px;
      box-sizing: border-box;
    }

    .mini-forms__code {
      flex-shrink: 0;
      padding: 6px 10px;
      border-radius: 8px;
      background: #1E1B4B;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 9px;
      line-height: 1.4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-forms__code-muted {
      color: rgba(238, 242, 255, 0.55);
    }

    .mini-forms__code-attr {
      color: #A5B4FC;
      font-weight: 600;
    }

    .mini-forms__inbox {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 8px 10px;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid rgba(99, 102, 241, 0.1);
      box-shadow: 0 2px 10px rgba(30, 27, 75, 0.05);
    }

    .mini-forms__inbox-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    }

    .mini-forms__inbox-title {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.02em;
    }

    .mini-forms__inbox-badge {
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 3px 7px;
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.12);
      color: var(--success);
    }

    .mini-forms__row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mini-forms__avatar {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--accent-light);
      color: var(--primary);
      font-size: 8px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: -0.03em;
    }

    .mini-forms__meta {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .mini-forms__name {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-forms__email {
      font-size: 9px;
      color: var(--text-gray);
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-forms__check {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mini-forms__check svg {
      display: block;
    }

    /* Mini domain connect */
    .feature-card__visual--domain {
      background: transparent;
      border: none;
      padding: 0;
      overflow: visible;
      display: flex;
      align-items: stretch;
    }

    .mini-domain {
      display: flex;
      align-items: center;
      gap: 6px;
      width: 100%;
      min-height: 100%;
      padding: 10px 12px;
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
      box-sizing: border-box;
    }

    .mini-domain__browser {
      flex-shrink: 0;
      width: 72px;
      background: #F3F4F6;
      border-radius: 8px;
      padding: 6px;
      border: 1px solid rgba(30, 27, 75, 0.06);
    }

    .mini-domain__chrome {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .mini-domain__lights {
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .mini-domain__lights span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
    }

    .mini-domain__lights span:nth-child(1) {
      background: #FCA5A5;
    }

    .mini-domain__lights span:nth-child(2) {
      background: #FCD34D;
    }

    .mini-domain__lights span:nth-child(3) {
      background: #86EFAC;
    }

    .mini-domain__url {
      height: 14px;
      border-radius: 4px;
      background: rgba(30, 27, 75, 0.1);
    }

    .mini-domain__connector {
      flex: 1;
      min-width: 20px;
      display: flex;
      align-items: center;
      padding: 0 2px;
    }

    .mini-domain__line {
      position: relative;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, #A5B4FC 0%, #6366F1 100%);
    }

    .mini-domain__pulse {
      position: absolute;
      top: 50%;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #6366F1;
      box-shadow:
        0 0 8px #6366F1,
        0 0 16px #A5B4FC;
      transform: translate(-50%, -50%);
      animation: domainPulseTravel 1.5s ease-in-out infinite;
    }

    @keyframes domainPulseTravel {
      0% {
        left: 0;
        transform: translate(-50%, -50%);
      }
      100% {
        left: 100%;
        transform: translate(-50%, -50%);
      }
    }

    .mini-domain__pill {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 100px;
      background: #EEF2FF;
      border: 2px solid #6366F1;
      max-width: 46%;
    }

    .mini-domain__status {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10B981;
      flex-shrink: 0;
      box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    }

    .mini-domain__text {
      font-family: var(--font-sans);
      font-size: 10px;
      font-weight: 600;
      color: #1E1B4B;
      letter-spacing: -0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    @media (prefers-reduced-motion: reduce) {
      .mini-domain__pulse {
        animation: none;
        left: 50%;
      }
    }

    /* Mini SEO optimizer */
    .mini-seo {
      position: relative;
      height: 100%;
      padding: 14px 16px;
      box-sizing: border-box;
    }

    .mini-seo__ai-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 1;
      background: #EEF2FF;
      color: #6366F1;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 10px;
      font-weight: 600;
      border-radius: 100px;
      padding: 3px 8px;
      line-height: 1.2;
    }

    .mini-seo__body {
      height: 100%;
      display: flex;
      align-items: center;
    }

    .mini-seo__score {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
    }

    .mini-seo__score-col {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .mini-seo__ring {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: conic-gradient(
        #10B981 0deg 313deg,
        #E5E7EB 313deg 360deg
      );
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mini-seo__ring-inner {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #F8F8FC;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mini-seo__score-num {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 20px;
      font-weight: 700;
      color: #1E1B4B;
      line-height: 1;
    }

    .mini-seo__score-label {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 11px;
      font-weight: 500;
      color: var(--text-gray);
      line-height: 1.2;
      text-align: center;
    }

    .mini-seo__issues {
      list-style: none;
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mini-seo__issue {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 12px;
      line-height: 1.3;
    }

    .mini-seo__issue-icon {
      flex-shrink: 0;
      width: 14px;
      text-align: center;
    }

    .mini-seo__issue--ok .mini-seo__issue-icon {
      color: #10B981;
    }

    .mini-seo__issue--ok .mini-seo__issue-text {
      color: #9CA3AF;
      text-decoration: line-through;
    }

    .mini-seo__issue--warn .mini-seo__issue-icon {
      color: #F59E0B;
    }

    .mini-seo__issue--warn .mini-seo__issue-text {
      color: #1E1B4B;
    }

    /* Mini image hosting */
    .mini-images {
      height: 100%;
      padding: 12px;
      box-sizing: border-box;
    }

    .mini-images__panel {
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid rgba(30, 27, 75, 0.08);
      padding: 10px;
      box-shadow: 0 2px 10px rgba(30, 27, 75, 0.06);
      box-sizing: border-box;
    }

    .mini-images__head {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mini-images__head-icon {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .mini-images__head-title {
      flex: 1;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 11px;
      font-weight: 700;
      color: #1E1B4B;
    }

    .mini-images__count {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 9px;
      font-weight: 600;
      color: var(--primary);
      background: var(--accent-light);
      padding: 2px 7px;
      border-radius: 100px;
    }

    .mini-images__gallery {
      display: flex;
      gap: 5px;
      flex: 1;
      min-height: 0;
      align-items: stretch;
    }

    .mini-images__tile {
      flex: 1;
      min-width: 0;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mini-images__tile-icon {
      display: block;
    }

    .mini-images__tile--purple {
      background: linear-gradient(145deg, #A5B4FC 0%, #6366F1 100%);
    }

    .mini-images__tile--green {
      background: linear-gradient(145deg, #86EFAC 0%, #10B981 100%);
    }

    .mini-images__tile--amber {
      background: linear-gradient(145deg, #FDE68A 0%, #F59E0B 100%);
    }

    .mini-images__tile--upload {
      background: #FAFAFA;
      border: 1.5px dashed #D1D5DB;
    }

    .mini-images__file {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 6px 8px;
      background: #F8F8FC;
      border-radius: 8px;
      border: 1px solid rgba(99, 102, 241, 0.12);
    }

    .mini-images__file-thumb {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 5px;
      background: linear-gradient(145deg, #A5B4FC 0%, #6366F1 100%);
    }

    .mini-images__file-meta {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .mini-images__file-name {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 10px;
      font-weight: 600;
      color: #1E1B4B;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-images__file-url {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 8px;
      color: #9CA3AF;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-images__copy-wrap {
      position: relative;
      flex-shrink: 0;
      cursor: default;
    }

    .mini-images__copy-label {
      display: inline-block;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 9px;
      font-weight: 700;
      color: var(--primary);
      background: var(--white);
      border: 1px solid rgba(99, 102, 241, 0.25);
      border-radius: 6px;
      padding: 4px 7px;
    }

    .mini-images__copied {
      position: absolute;
      bottom: calc(100% + 4px);
      right: 0;
      padding: 3px 7px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 9px;
      font-weight: 600;
      color: var(--white);
      background: #10B981;
      border-radius: 5px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s ease;
    }

    .mini-images__copy-wrap:hover .mini-images__copied {
      opacity: 1;
    }

    /* Mini code editor */
    .mini-editor {
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #0F0E17;
      border-radius: 10px;
      overflow: hidden;
    }

    .mini-editor__bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      flex-shrink: 0;
    }

    .mini-editor__dots {
      display: flex;
      gap: 4px;
    }

    .mini-editor__dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }

    .mini-editor__dots span:nth-child(1) {
      background: #FCA5A5;
    }

    .mini-editor__dots span:nth-child(2) {
      background: #FCD34D;
    }

    .mini-editor__dots span:nth-child(3) {
      background: #86EFAC;
    }

    .mini-editor__filename {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      color: #9CA3AF;
    }

    .mini-editor__code {
      flex: 1;
      margin: 0;
      padding: 10px 12px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      line-height: 1.45;
      color: #E5E7EB;
      overflow: hidden;
      white-space: pre-wrap;
      word-break: break-word;
    }

    .mini-editor__code code {
      font-family: inherit;
    }

    .mini-editor__tag {
      color: #6366F1;
    }

    .mini-editor__attr {
      color: #A5B4FC;
    }

    .mini-editor__val {
      color: #86EFAC;
    }

    .mini-editor__footer {
      display: flex;
      justify-content: flex-end;
      padding: 6px 10px 8px;
      flex-shrink: 0;
    }

    .mini-editor__save {
      border: none;
      background: #6366F1;
      color: var(--white);
      font-family: 'Urbanist', var(--font-sans);
      font-size: 11px;
      font-weight: 600;
      border-radius: 6px;
      padding: 5px 10px;
      cursor: default;
    }

    /* Mini terminal */
    .mini-term {
      margin: 10px;
      height: calc(100% - 20px);
      background: #1a1538;
      border-radius: 8px;
      padding: 12px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 9px;
      line-height: 1.65;
      color: #E0E7FF;
    }

    .mini-term__prompt {
      color: var(--lavender);
    }

    .mini-term__ok {
      color: var(--success);
    }

    /* ─── How it works ─── */
    .how {
      background: linear-gradient(180deg, #F8F8FC 0%, var(--white) 100%);
      overflow-x: clip;
    }

    .how__steps-wrap {
      padding: 100px var(--layout-gutter) 80px;
      overflow-x: clip;
    }

    .how__steps-wrap .section__inner {
      width: 100%;
      max-width: var(--layout-max);
      min-width: 0;
    }

    .how__header {
      margin-bottom: 56px;
      max-width: 720px;
    }

    .how__headline {
      font-size: 56px;
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.08;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .how__subheadline {
      font-size: 18px;
      color: var(--text-gray);
      line-height: 1.55;
      max-width: 520px;
    }

    .how__cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      width: 100%;
      min-width: 0;
      align-items: stretch;
    }

    .how-card {
      position: relative;
      min-width: 0;
      max-width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      background: var(--white);
      border-radius: 20px;
      padding: 36px;
      box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .how-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(99, 102, 241, 0.14);
    }

    .how-card__num {
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: var(--font-sans);
      font-size: 80px;
      font-weight: 900;
      line-height: 1;
      color: #6366F1;
      opacity: 0.06;
      pointer-events: none;
      user-select: none;
    }

    .how-card__visual {
      width: 100%;
      min-width: 0;
      max-width: 100%;
      flex-shrink: 0;
      height: 160px;
      margin-bottom: 24px;
      background: #F8F8FC;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .how-card__title {
      font-family: var(--font-sans);
      font-size: 20px;
      font-weight: 700;
      color: #1E1B4B;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .how-card__desc {
      font-size: 15px;
      color: var(--text-gray);
      line-height: 1.55;
      min-width: 0;
      overflow-wrap: anywhere;
    }

    /* Card 1 — marquee */
    .how-card__marquee {
      width: 100%;
      min-width: 0;
      max-width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .how-card__marquee-track {
      display: flex;
      align-items: center;
      gap: 10px;
      width: max-content;
      animation: howMarquee 28s linear infinite;
    }

    .how-card__marquee:hover .how-card__marquee-track {
      animation-play-state: paused;
    }

    @keyframes howMarquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .how-card__pill {
      flex-shrink: 0;
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 100px;
      padding: 8px 16px;
      font-family: var(--font-sans);
      font-size: 13px;
      font-weight: 600;
      color: #1E1B4B;
      white-space: nowrap;
    }

    .how-card__pill--logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      opacity: 0.75;
    }

    .how-card__pill-img {
      display: block;
      height: 20px;
      width: auto;
      max-width: 96px;
      object-fit: contain;
    }

    @media (min-width: 769px) {
      .logos-strip__marquee {
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
        width: 100%;
      }

      .logos-strip__track {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        align-items: center;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        padding: 4px 0;
        animation: none;
      }

      .logos-strip__track .logos-strip__pill:nth-child(n + 9) {
        display: none;
      }

      .logos-strip__pill--asset {
        padding: 8px 10px;
        width: 100%;
        justify-content: center;
      }

      .logos-strip__img {
        height: 22px;
        max-width: 100%;
      }
    }

    /* Card 2 — deploy */
    .how-deploy {
      width: 100%;
      min-width: 0;
      max-width: 100%;
      height: 100%;
      padding: 14px 16px 12px;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      overflow: hidden;
    }

    .how-deploy__tabs {
      display: flex;
      gap: 16px;
      margin-bottom: 12px;
      border-bottom: 1px solid rgba(30, 27, 75, 0.08);
      padding-bottom: 8px;
    }

    .how-deploy__tab {
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 600;
      color: var(--text-gray);
      background: none;
      border: none;
      padding: 0 2px 6px;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -9px;
      transition: color 0.3s ease, border-color 0.3s ease;
    }

    .how-deploy__tab.is-active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }

    .how-deploy__panel {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 0;
    }

    .how-deploy__panel--github {
      display: none;
    }

    .how-deploy[data-active-tab="github"] .how-deploy__panel--zip {
      display: none;
    }

    .how-deploy[data-active-tab="github"] .how-deploy__panel--github {
      display: flex;
    }

    .how-deploy[data-active-tab="github"] .how-deploy__tab[data-tab="zip"] {
      color: var(--text-gray);
      border-bottom-color: transparent;
    }

    .how-deploy[data-active-tab="github"] .how-deploy__tab[data-tab="github"] {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }

    .how-deploy__file {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      animation: howZipBounce 1.6s ease-in-out infinite;
    }

    @keyframes howZipBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .how-deploy__bar {
      width: min(140px, 80%);
      height: 4px;
      background: rgba(99, 102, 241, 0.12);
      border-radius: 99px;
      overflow: hidden;
    }

    .how-deploy__bar-fill {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #A5B4FC, #6366F1);
      border-radius: 99px;
      animation: howDeployProgress 2s ease-in-out infinite;
    }

    @keyframes howDeployProgress {
      0% { width: 0%; }
      100% { width: 100%; }
    }

    .how-deploy__status {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-gray);
      margin: 0;
    }

    .how-deploy__github {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .how-deploy__repo {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 11px;
      color: var(--text-dark);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 100%;
    }

    .how-deploy__spinner {
      width: 22px;
      height: 22px;
      border: 2px solid rgba(99, 102, 241, 0.15);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: howSpin 0.8s linear infinite;
    }

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

    /* Card 3 — live browser */
    .how-live {
      width: 100%;
      min-width: 0;
      max-width: 100%;
      height: 100%;
      padding: 12px 12px 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }

    .how-live__chrome {
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 0;
      width: 100%;
    }

    .how-live__dots {
      display: flex;
      gap: 4px;
      flex-shrink: 0;
    }

    .how-live__dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }

    .how-live__dots span:nth-child(1) { background: #FF5F57; }
    .how-live__dots span:nth-child(2) { background: #FEBC2E; }
    .how-live__dots span:nth-child(3) { background: #28C840; }

    .how-live__url {
      flex: 1;
      min-width: 0;
      max-width: 100%;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 5px 8px;
      background: var(--white);
      border-radius: 6px;
      border: 1px solid rgba(30, 27, 75, 0.08);
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 9px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .how-live__url span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .how-live__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .how-live__badge {
      font-family: var(--font-sans);
      font-size: 9px;
      font-weight: 700;
      padding: 4px 7px;
      border-radius: 999px;
      white-space: nowrap;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .how-live__badge--ssl {
      background: #D1FAE5;
      color: #047857;
    }

    .how-live__badge--analytics {
      background: #EEF2FF;
      color: var(--primary);
    }

    .how-live__pulse-wrap {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 5px;
      margin-top: auto;
      padding-top: 2px;
      flex-shrink: 0;
    }

    .how-live__pulse-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #10B981;
      animation: howLivePulse 1.5s ease-in-out infinite;
    }

    @keyframes howLivePulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.6; }
    }

    .how-live__pulse-label {
      font-family: var(--font-sans);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: #10B981;
    }

    /* CLI band */
    .how__cli-band {
      background: #1E1B4B;
      padding: 60px var(--layout-gutter);
    }

    .how__cli-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .how__cli-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #A5B4FC;
      margin-bottom: 14px;
    }

    .how__cli-headline {
      font-family: var(--font-sans);
      font-size: 36px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 14px;
    }

    .how__cli-text {
      font-size: 17px;
      color: #A5B4FC;
      line-height: 1.55;
      margin-bottom: 22px;
      max-width: 400px;
    }

    .how__cli-platforms {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .how__cli-platform {
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
    }

    .how__terminal {
      background: #0F0E17;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    }

    .how__terminal-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: #0F0E17;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .how__terminal-dots {
      display: flex;
      gap: 5px;
    }

    .how__terminal-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .how__terminal-dots span:nth-child(1) { background: #FF5F57; }
    .how__terminal-dots span:nth-child(2) { background: #FEBC2E; }
    .how__terminal-dots span:nth-child(3) { background: #28C840; }

    .how__terminal-title {
      flex: 1;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.35);
    }

    .how__terminal-copy {
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .how__terminal-copy:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .how__terminal-body {
      padding: 24px;
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 14px;
      line-height: 1.8;
      color: #EEF2FF;
      min-height: 200px;
    }

    .how__terminal-line {
      opacity: 0;
      transform: translateY(6px);
    }

    .how__terminal.is-visible .how__terminal-line {
      animation: howTerminalLineIn 0.35s ease forwards;
    }

    .how__terminal.is-visible .how__terminal-line[data-line="0"] { animation-delay: 0ms; }
    .how__terminal.is-visible .how__terminal-line[data-line="1"] { animation-delay: 400ms; }
    .how__terminal.is-visible .how__terminal-line[data-line="2"] { animation-delay: 800ms; }
    .how__terminal.is-visible .how__terminal-line[data-line="3"] { animation-delay: 1200ms; }
    .how__terminal.is-visible .how__terminal-line[data-line="4"] { animation-delay: 1600ms; }

    @keyframes howTerminalLineIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .how__terminal-prompt {
      color: #A5B4FC;
    }

    .how__terminal-line--ok {
      color: #86EFAC;
    }

    .how__terminal-cursor {
      display: inline-block;
      color: #A5B4FC;
      animation: howCursorBlink 1s step-end infinite;
      opacity: 0;
    }

    .how__terminal.is-visible .how__terminal-cursor {
      animation: howCursorBlink 1s step-end infinite;
      animation-delay: 2000ms;
      opacity: 1;
    }

    @keyframes howCursorBlink {
      50% { opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      .logos-strip__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
      }

      .logos-strip__track .logos-strip__pill:nth-child(n + 9) {
        display: none;
      }

      .logos-strip__marquee {
        mask-image: none;
        -webkit-mask-image: none;
      }

      .how-card__marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        transform: none;
      }

      .how-card__marquee-track .how-card__pill:nth-child(n + 9) {
        display: none;
      }

      .ez-badge__rotate {
        animation: none;
      }

      .how-deploy__file {
        animation: none;
      }

      .how-deploy__bar-fill {
        animation: none;
        width: 72%;
      }

      .how-deploy__spinner {
        animation: none;
      }

      .how-live__pulse-dot {
        animation: none;
      }

      .how__terminal-line {
        opacity: 1;
        transform: none;
      }

      .how__terminal.is-visible .how__terminal-line {
        animation: none;
      }

      .how__terminal-cursor {
        opacity: 1;
        animation: none;
      }
    }

    /* ─── Pricing ─── */
    .pricing__header {
      text-align: center;
      margin-bottom: 40px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing__header .section__sub {
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }

    .pricing__toggle-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .pricing__toggle {
      display: inline-flex;
      align-items: stretch;
      gap: 4px;
      padding: 6px;
      background: var(--white);
      border-radius: 999px;
      border: 1px solid rgba(99, 102, 241, 0.12);
      box-shadow: 0 2px 12px rgba(30, 27, 75, 0.04);
    }

    .pricing__toggle-btn {
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2;
      padding: 0 18px;
      min-height: 44px;
      border: 2px solid transparent;
      border-radius: 999px;
      background: transparent;
      color: var(--text-gray);
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 1 1 0;
      box-sizing: border-box;
      white-space: nowrap;
    }

    .pricing__toggle-btn.is-active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
      box-shadow: none;
    }

    .pricing__toggle-badge {
      font-size: 9px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1.2;
      padding: 3px 7px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.22);
      flex-shrink: 0;
      opacity: 0;
      max-width: 0;
      overflow: hidden;
      padding-left: 0;
      padding-right: 0;
      margin: 0;
      visibility: hidden;
      transition:
        opacity 0.3s ease,
        max-width 0.3s ease,
        padding-left 0.3s ease,
        padding-right 0.3s ease,
        margin-left 0.3s ease,
        visibility 0.3s ease;
    }

    .pricing__toggle-btn[data-billing="yearly"].is-active .pricing__toggle-badge {
      opacity: 1;
      max-width: 200px;
      padding-left: 7px;
      padding-right: 7px;
      margin-left: 4px;
      visibility: visible;
    }

    .pricing__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: stretch;
    }

    .pricing-card {
      background: var(--white);
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
    }

    .pricing-card--featured {
      border-color: var(--primary);
      box-shadow: 0 12px 40px rgba(99, 102, 241, 0.18);
    }

    .pricing-card__badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 6px 14px;
      border-radius: 999px;
      background: var(--primary);
      color: var(--white);
      white-space: nowrap;
    }

    .pricing-card__name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-gray);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .pricing-card__price {
      font-size: 36px;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }

    .pricing-card__price .js-price-main {
      font-size: inherit;
      font-weight: inherit;
      color: inherit;
      letter-spacing: inherit;
    }

    .pricing-card__price .js-price-sub {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-gray);
    }

    .pricing-card__features {
      flex: 1;
      margin-bottom: 24px;
      border-top: 1px solid rgba(99, 102, 241, 0.08);
      padding-top: 18px;
    }

    .pricing-card__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 1px solid rgba(30, 27, 75, 0.05);
    }

    .pricing-card__row:last-child {
      border-bottom: none;
    }

    .pricing-card__row-label {
      color: var(--text-gray);
      font-weight: 500;
    }

    .pricing-card__row-val {
      font-weight: 700;
      color: var(--text-dark);
      text-align: right;
    }

    .pricing-card__tick {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .pricing-card__tick svg {
      display: block;
      flex-shrink: 0;
    }

    .pricing-card__cta {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 14px 20px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-family: inherit;
      width: 100%;
    }

    .pricing-card__cta--primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    }

    .pricing-card__cta--primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .pricing-card__cta--ghost {
      background: var(--accent-light);
      color: var(--primary);
    }

    .pricing-card__cta--ghost:hover {
      background: #E0E7FF;
    }

    /* ─── Final CTA ─── */
    .cta-final {
      padding: 100px var(--layout-gutter);
      background:
        radial-gradient(ellipse 70% 55% at 20% -8%, rgba(165, 180, 252, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 20%, rgba(165, 180, 252, 0.2) 0%, transparent 55%),
        linear-gradient(180deg,
          rgba(99, 102, 241, 0.92) 0%,
          rgba(124, 131, 245, 0.85) 35%,
          rgba(165, 180, 252, 0.65) 70%,
          rgba(238, 242, 255, 0.35) 100%
        );
      text-align: center;
    }

    .cta-final__inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .cta-final__headline {
      font-size: 52px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.035em;
      line-height: 1.08;
      margin-bottom: 16px;
    }

    .cta-final__sub {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 32px;
      line-height: 1.55;
    }

    .cta-final__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 40px;
      background: var(--white);
      color: var(--primary);
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 9999px;
      box-shadow: 0 8px 32px rgba(30, 27, 75, 0.15);
      transition: all 0.3s ease;
    }

    .cta-final__btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 44px rgba(30, 27, 75, 0.2);
    }

    /* ─── Footer ─── */
    .footer {
      background: var(--footer-bg);
      color: rgba(255, 255, 255, 0.88);
      padding: 72px var(--layout-gutter) 32px;
    }

    .footer__grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 2fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__brand-logo {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      text-decoration: none;
      color: var(--white);
    }

    .footer__logo-img {
      display: block;
      height: 28px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: opacity 0.3s ease;
    }

    .footer__brand-logo:hover .footer__logo-img {
      opacity: 0.92;
    }

    .footer__tagline {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.55;
      max-width: 260px;
    }

    .footer__social {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .footer__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      color: rgba(255, 255, 255, 0.72);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .footer__social-link:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.22);
      transform: translateY(-1px);
    }

    .footer__social-icon {
      width: 18px;
      height: 18px;
      display: block;
    }

    .footer__cols {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px 40px;
      max-width: 520px;
    }

    .footer__col-title {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 16px;
    }

    .footer__col ul {
      list-style: none;
    }

    .footer__col li {
      margin-bottom: 10px;
    }

    .footer__col a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .footer__col a:hover {
      color: var(--white);
    }

    .footer__copy {
      text-align: right;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      align-self: start;
    }

    .footer__bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer__bottom a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer__bottom a:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    @media (max-width: 1024px) {
      :root {
        --layout-gutter: 32px;
      }

      .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px 40px;
      }

      .hero__headline {
        font-size: clamp(40px, 5vw, 56px);
      }

      .features__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .how__cards {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero__wash {
        width: min(68%, 320px);
      }

      .hero__dots {
        width: min(62%, 300px);
        height: min(50%, 280px);
        opacity: 0.4;
      }

      :root {
        --nav-float-top: 14px;
        --nav-bar-height: 56px;
        --layout-gutter: 20px;
      }

      .nav__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        padding: 0 8px;
      }

      .nav__links {
        display: none;
      }

      .nav__actions {
        gap: 6px;
        flex-shrink: 0;
      }

      .nav__burger {
        display: flex;
        width: 36px;
        height: 36px;
        margin-right: 0;
      }

      .nav__logo-img {
        height: 24px;
      }

      .nav__cta {
        font-size: 13px;
        padding: 8px 16px;
        width: auto;
        flex-shrink: 0;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(99, 102, 241, 0.22);
      }

      .nav__cta-short {
        display: inline;
      }

      .nav__cta-full {
        display: none;
      }

      .hero {
        padding: var(--nav-total-offset) var(--layout-gutter) 60px;
      }

      .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
      }

      .hero__content {
        align-items: center;
        text-align: center;
        max-width: 100%;
      }

      .hero__ctas {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 100%;
      }

      .hero__ctas .btn-primary,
      .hero__ctas .btn-ghost {
        flex: 0 1 auto;
        padding: 12px 20px;
        font-size: 15px;
        line-height: 1.2;
        min-height: 44px;
        white-space: nowrap;
      }

      .hero__ctas .btn-short {
        display: inline;
      }

      .hero__ctas .btn-full {
        display: none;
      }

      .hero__proof {
        font-size: 13px;
      }

      .hero__subheadline {
        max-width: 100%;
        margin-bottom: 20px;
      }

      .mockup-wrapper {
        justify-self: center;
        max-width: 560px;
      }

      .hero__headline {
        font-size: 44px;
      }

      .hero__subheadline {
        font-size: 18px;
      }

      .mockup-body {
        min-height: 300px;
        padding: 20px;
      }

      .flow-panel {
        inset: 20px;
      }

      .section__headline {
        font-size: clamp(32px, 8vw, 48px);
      }

      .features__grid {
        grid-template-columns: 1fr;
      }

      .how__steps-wrap {
        padding: 72px var(--layout-gutter) 56px;
      }

      .how__headline {
        font-size: clamp(36px, 8vw, 56px);
      }

      .how__cards {
        grid-template-columns: 1fr;
      }

      .how-card {
        padding: 28px 24px;
      }

      .how-card__visual {
        height: 150px;
      }

      .how-card__num {
        font-size: 64px;
        top: 12px;
        right: 16px;
      }

      .how__cli-band {
        padding: 48px var(--layout-gutter);
      }

      .how__cli-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .how__cli-headline {
        font-size: clamp(28px, 6vw, 36px);
      }

      .pricing__grid {
        grid-template-columns: 1fr;
      }

      .cta-final__headline {
        font-size: clamp(36px, 9vw, 52px);
      }

      .footer {
        padding: 48px var(--layout-gutter) 100px;
      }

      .footer__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding-bottom: 28px;
        border-bottom: none;
        text-align: center;
      }

      .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      .footer__tagline {
        margin-left: auto;
        margin-right: auto;
        max-width: 280px;
        text-align: center;
        font-size: 13px;
      }

      .footer__social {
        justify-content: center;
        margin-top: 16px;
      }

      .footer__cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 300px;
        gap: 20px 36px;
        margin: 0;
        text-align: left;
      }

      .footer__col-title {
        margin-bottom: 10px;
        font-size: 11px;
      }

      .footer__col li {
        margin-bottom: 8px;
      }

      .footer__col li:last-child {
        margin-bottom: 0;
      }

      .footer__col a {
        font-size: 14px;
      }

      .footer__copy {
        width: 100%;
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer__bottom {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding-top: 14px;
        gap: 10px 18px;
        font-size: 12px;
        line-height: 1.4;
      }

      .pricing-card--featured {
        order: -1;
      }
    }

    /* ─── Subpages (legal, status) ─── */
    .page-sub .page-content {
      padding: calc(var(--nav-total-offset) + 48px) var(--layout-gutter) 80px;
    }

    .page-legal__inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .page-legal__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: clamp(32px, 5vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .page-legal__meta {
      font-size: 15px;
      color: var(--text-gray);
      margin-bottom: 24px;
    }

    .page-legal__intro {
      font-size: 17px;
      color: var(--text-gray);
      margin-bottom: 40px;
      line-height: 1.65;
    }

    .page-legal__intro a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .page-legal__intro a:hover {
      color: var(--primary-dark);
    }

    .page-legal__section {
      margin-bottom: 36px;
    }

    .page-legal__section h2 {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .page-legal__section p {
      margin-bottom: 12px;
      color: var(--text-dark);
      line-height: 1.65;
    }

    .page-legal__section p:last-child {
      margin-bottom: 0;
    }

    .page-legal__section ul {
      margin: 12px 0 0;
      padding-left: 1.35em;
      color: var(--text-dark);
    }

    .page-legal__section li {
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .page-legal__section li:last-child {
      margin-bottom: 0;
    }

    .page-legal__section a {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .page-legal__section a:hover {
      color: var(--primary-dark);
    }

    /* ─── Blog ─── */
    .page-blog__main,
    .page-blog-post__main {
      padding: calc(var(--nav-total-offset) + 48px) var(--layout-gutter) 80px;
    }

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

    .page-blog-post__inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .page-blog__header {
      text-align: center;
      margin-bottom: 48px;
    }

    .page-blog__badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      background: var(--accent-light);
      color: var(--primary);
      font-family: 'Urbanist', var(--font-sans);
      font-size: 13px;
      font-weight: 700;
      border-radius: 9999px;
      margin-bottom: 16px;
    }

    .page-blog__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 800;
      color: #1E1B4B;
      letter-spacing: -0.03em;
      margin-bottom: 0;
      white-space: nowrap;
    }

    .page-blog__sub {
      font-size: 18px;
      color: var(--text-gray);
      line-height: 1.55;
      max-width: 520px;
      margin: 0 auto;
    }

    .blog-grid {
      display: grid;
      gap: 28px;
    }

    .blog-card {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid rgba(99, 102, 241, 0.1);
      box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
    }

    .blog-card__link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .blog-card__media {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--section-gray);
    }

    .blog-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .blog-card__body {
      padding: 24px 28px 28px;
    }

    .blog-card__meta {
      font-size: 13px;
      color: var(--text-gray);
      margin-bottom: 10px;
    }

    .blog-card__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 22px;
      font-weight: 700;
      color: #1E1B4B;
      line-height: 1.3;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .blog-card__excerpt {
      font-size: 15px;
      color: var(--text-gray);
      line-height: 1.55;
      margin-bottom: 16px;
    }

    .blog-card__cta {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
    }

    .page-blog-post__back {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      margin-bottom: 24px;
    }

    .page-blog-post__back:hover {
      color: var(--primary-dark);
    }

    .page-blog-post__meta {
      font-size: 14px;
      color: var(--text-gray);
      margin-bottom: 12px;
    }

    .page-blog-post__author {
      color: #1E1B4B;
      font-weight: 600;
    }

    .page-blog-post__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: clamp(30px, 5vw, 40px);
      font-weight: 800;
      line-height: 1.2;
      color: #1E1B4B;
      letter-spacing: -0.03em;
    }

    .page-blog-post__hero {
      margin: 32px 0 36px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(99, 102, 241, 0.1);
      box-shadow: 0 8px 32px rgba(30, 27, 75, 0.08);
    }

    .page-blog-post__hero img {
      display: block;
      width: 100%;
      height: auto;
    }

    .page-blog-post__lead {
      font-size: 18px;
      color: var(--text-dark);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .page-blog-post__content > p {
      font-size: 16px;
      color: var(--text-dark);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .page-blog-post__section {
      margin-top: 36px;
    }

    .page-blog-post__section h2 {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 22px;
      font-weight: 700;
      color: #1E1B4B;
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .page-blog-post__section p {
      font-size: 16px;
      color: var(--text-dark);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .page-blog-post__section p:last-child {
      margin-bottom: 0;
    }

    .page-blog-post__lib-list {
      margin: 16px 0;
      padding-left: 1.35em;
    }

    .page-blog-post__lib-list li {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .page-blog-post__lib-list strong {
      color: #1E1B4B;
    }

    .page-blog-post__cta {
      margin-top: 48px;
      padding: 28px;
      text-align: center;
      background: var(--accent-light);
      border-radius: 16px;
      border: 1px solid rgba(99, 102, 241, 0.15);
    }

    .page-blog-post__cta-text {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 18px;
      font-weight: 700;
      color: #1E1B4B;
      margin-bottom: 16px;
    }

    .page-blog-post .btn-primary {
      display: inline-flex;
    }

    .nav__links a[aria-current="page"] {
      color: var(--primary);
    }

    @media (max-width: 768px) {
      .page-blog__header {
        margin-bottom: 36px;
        text-align: left;
      }

      .page-blog__title {
        white-space: normal;
        font-size: clamp(28px, 7.5vw, 40px);
      }

      .blog-card__body {
        padding: 20px 20px 24px;
      }

      .page-blog-post__hero {
        margin: 24px -4px 28px;
        border-radius: 12px;
      }
    }

    /* Status page */
    .page-status__inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .page-status__title {
      font-size: clamp(28px, 4.5vw, 36px);
      font-weight: 700;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 32px;
    }

    .status-banner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: #D1FAE5;
      color: #065F46;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 32px;
    }

    .status-banner__icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
    }

    .status-banner__text {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.3;
    }

    .status-services {
      background: var(--white);
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .status-service-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 20px;
      background: var(--white);
      border-bottom: 1px solid #E5E7EB;
    }

    .status-service-row:last-child {
      border-bottom: none;
    }

    .status-service-row__name {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #065F46;
      background: #D1FAE5;
      padding: 6px 12px;
      border-radius: 9999px;
      white-space: nowrap;
    }

    .status-badge__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #10B981;
    }

    .status-incidents__title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .status-incidents__empty {
      text-align: center;
      color: var(--text-gray);
      font-size: 15px;
      padding: 24px 0;
    }

    .status-callout {
      margin-top: 32px;
      padding: 16px 20px;
      background: var(--accent-light);
      border: 1px solid rgba(99, 102, 241, 0.15);
      border-radius: 12px;
      font-size: 15px;
      color: var(--text-dark);
      line-height: 1.5;
    }

    .status-callout a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
    }

    .status-callout a:hover {
      text-decoration: underline;
    }

    .status-meta {
      margin-top: 32px;
      text-align: center;
      font-size: 13px;
      color: var(--text-gray);
    }

    /* ─── Contact page ─── */
    .page-contact__main {
      padding: calc(var(--nav-total-offset) + 48px) 24px 80px;
    }

    .page-contact__inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .page-contact__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-contact__badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      background: var(--accent-light);
      color: var(--primary);
      font-family: 'Urbanist', var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      border-radius: 9999px;
      margin-bottom: 20px;
      letter-spacing: 0.01em;
      border: 1px solid rgba(99, 102, 241, 0.12);
    }

    .page-contact__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      color: #1E1B4B;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .page-contact__sub {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 18px;
      line-height: 1.55;
      color: var(--text-gray);
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-field {
      border: none;
      margin: 0;
      padding: 0;
      min-width: 0;
    }

    .contact-field--pills .contact-label {
      margin-bottom: 12px;
    }

    .contact-label {
      display: block;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: #1E1B4B;
      margin-bottom: 8px;
    }

    .contact-input {
      display: block;
      width: 100%;
      border: 1.5px solid #E5E7EB;
      border-radius: 10px;
      padding: 12px 16px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 16px;
      color: var(--text-dark);
      background: var(--white);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-input::placeholder {
      color: #9CA3AF;
    }

    .contact-input:focus {
      outline: none;
      border-color: #6366F1;
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .contact-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }

    .contact-textarea {
      resize: vertical;
      min-height: 140px;
    }

    .contact-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .contact-pill-wrap {
      position: relative;
    }

    .contact-pill-input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      pointer-events: none;
    }

    .contact-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border: 1.5px solid #E5E7EB;
      border-radius: 100px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      background: var(--white);
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      user-select: none;
    }

    .contact-pill-input:checked + .contact-pill,
    .contact-pill-input:focus-visible + .contact-pill {
      background: #EEF2FF;
      border-color: #6366F1;
      color: #6366F1;
    }

    .contact-pill-input:focus-visible + .contact-pill {
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    .contact-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 12px;
      background: #6366F1;
      color: var(--white);
      font-family: 'Urbanist', var(--font-sans);
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s ease, opacity 0.2s ease;
    }

    .contact-submit:hover:not(:disabled) {
      background: #4F46E5;
    }

    .contact-submit:disabled {
      opacity: 0.75;
      cursor: not-allowed;
    }

    .contact-submit--secondary {
      margin-top: 8px;
      background: var(--white);
      color: var(--primary);
      border: 1.5px solid rgba(99, 102, 241, 0.35);
    }

    .contact-submit--secondary:hover:not(:disabled) {
      background: var(--accent-light);
    }

    .contact-form__error {
      margin: 0 0 16px;
      font-size: 15px;
      line-height: 1.45;
      color: #B91C1C;
    }

    .contact-success {
      text-align: center;
      padding: 24px 0;
    }

    .contact-success__icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
    }

    .contact-success__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 32px;
      font-weight: 800;
      color: #1E1B4B;
      margin-bottom: 12px;
    }

    .contact-success__text {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 17px;
      line-height: 1.55;
      color: var(--text-gray);
      margin-bottom: 28px;
    }

    @media (max-width: 768px) {
      .page-contact__main {
        padding: calc(var(--nav-total-offset) + 32px) 24px 64px;
      }

      .page-contact__title {
        font-size: clamp(36px, 9vw, 48px);
      }

      .page-contact__sub {
        font-size: 17px;
      }
    }

    /* ─── Prompt Library ─── */
    .page-prompts__main {
      padding: calc(var(--nav-total-offset) + 48px) var(--layout-gutter) 80px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .page-prompts__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-prompts__badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      background: var(--accent-light);
      color: var(--primary);
      font-family: 'Urbanist', var(--font-sans);
      font-size: 13px;
      font-weight: 700;
      border-radius: 9999px;
      margin-bottom: 16px;
    }

    .page-prompts__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: clamp(36px, 6vw, 52px);
      font-weight: 800;
      color: #1E1B4B;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }

    .page-prompts__sub {
      font-size: 18px;
      color: var(--text-gray);
      line-height: 1.55;
      max-width: 560px;
      margin: 0 auto;
    }

    .prompt-gate {
      display: flex;
      justify-content: center;
      margin-bottom: 32px;
    }

    .page-prompts--unlocked .prompt-gate {
      display: none;
    }

    .prompt-gate__card {
      width: 100%;
      max-width: 480px;
      padding: 40px 36px 36px;
      background: var(--white);
      border-radius: 20px;
      border: 1px solid rgba(99, 102, 241, 0.14);
      box-shadow: 0 20px 50px rgba(30, 27, 75, 0.08);
      text-align: center;
    }

    .prompt-gate__icon {
      margin-bottom: 20px;
    }

    .prompt-gate__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 24px;
      font-weight: 800;
      color: #1E1B4B;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .prompt-gate__text {
      font-size: 15px;
      color: var(--text-gray);
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .prompt-gate__form {
      text-align: left;
    }

    .prompt-gate__label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #1E1B4B;
      margin-bottom: 8px;
    }

    .prompt-gate__row {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .prompt-gate__input {
      width: 100%;
      padding: 14px 16px;
      font-size: 16px;
      border: 1.5px solid rgba(99, 102, 241, 0.25);
      border-radius: 12px;
      background: var(--white);
      color: #1E1B4B;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .prompt-gate__input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }

    .prompt-gate__submit {
      width: 100%;
      padding: 14px 20px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      background: var(--primary);
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .prompt-gate__submit:hover {
      background: #4F46E5;
    }

    .prompt-gate__fine {
      margin-top: 20px;
      font-size: 12px;
      color: var(--text-gray);
      line-height: 1.45;
    }

    .prompt-gate__fine a {
      color: var(--primary);
      text-decoration: underline;
    }

    .prompt-welcome {
      font-size: 14px;
      color: var(--text-gray);
      margin-bottom: 20px;
      text-align: center;
    }

    .prompt-welcome strong {
      color: #1E1B4B;
    }

    .prompt-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 32px;
    }

    .prompt-filter {
      padding: 8px 16px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 13px;
      font-weight: 700;
      color: var(--text-gray);
      background: var(--white);
      border: 1.5px solid rgba(99, 102, 241, 0.2);
      border-radius: 9999px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .prompt-filter:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .prompt-filter--active {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
    }

    .prompt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }

    .prompt-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border-radius: 16px;
      border: 1px solid rgba(99, 102, 241, 0.1);
      box-shadow: 0 4px 20px rgba(30, 27, 75, 0.05);
      overflow: hidden;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }

    .prompt-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
    }

    .prompt-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px 0;
      gap: 12px;
    }

    .prompt-card__category {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--accent-light);
      padding: 5px 10px;
      border-radius: 6px;
    }

    .prompt-card__copy {
      flex-shrink: 0;
      padding: 8px 14px;
      font-family: 'Urbanist', var(--font-sans);
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      background: transparent;
      border: 1.5px solid rgba(99, 102, 241, 0.35);
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .prompt-card__copy:hover {
      background: var(--accent-light);
    }

    .prompt-card__copy--done {
      background: #10B981;
      border-color: #10B981;
      color: var(--white);
    }

    .prompt-card__title {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 18px;
      font-weight: 700;
      color: #1E1B4B;
      line-height: 1.3;
      padding: 12px 20px 6px;
      letter-spacing: -0.02em;
    }

    .prompt-card__desc {
      font-size: 14px;
      color: var(--text-gray);
      line-height: 1.5;
      padding: 0 20px 14px;
    }

    .prompt-card__body {
      flex: 1;
      margin-top: auto;
      padding: 0 20px 20px;
    }

    .prompt-card__text {
      margin: 0;
      padding: 14px 16px;
      font-family: 'DM Sans', var(--font-sans);
      font-size: 13px;
      line-height: 1.55;
      color: #334155;
      background: #F8FAFC;
      border: 1px solid rgba(99, 102, 241, 0.08);
      border-radius: 10px;
      white-space: pre-wrap;
      word-break: break-word;
      max-height: 200px;
      overflow-y: auto;
    }

    @media (min-width: 560px) {
      .prompt-gate__row {
        flex-direction: row;
        align-items: stretch;
      }

      .prompt-gate__input {
        flex: 1;
      }

      .prompt-gate__submit {
        width: auto;
        white-space: nowrap;
      }
    }

    @media (max-width: 768px) {
      .page-prompts__main {
        padding: calc(var(--nav-total-offset) + 32px) 24px 64px;
      }

      .prompt-gate__card {
        padding: 32px 24px 28px;
      }

      .prompt-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ─── Hosted on EZLaunch floating badge ─── */
    .ez-badge {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
      box-shadow:
        0 4px 20px rgba(99, 102, 241, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .ez-badge:hover {
      transform: scale(1.06);
      box-shadow:
        0 8px 28px rgba(99, 102, 241, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    }

    .ez-badge__ring {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .ez-badge__rotate {
      transform-origin: 50px 50px;
      animation: ezBadgeSpin 18s linear infinite;
    }

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

    .ez-badge__text {
      font-family: 'Urbanist', var(--font-sans);
      font-size: 8.25px;
      font-weight: 700;
      letter-spacing: 0.14em;
      fill: rgba(255, 255, 255, 0.95);
      text-transform: uppercase;
    }

    .ez-badge__icon {
      position: relative;
      z-index: 1;
      width: 30px;
      height: 30px;
      object-fit: contain;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .ez-badge {
        bottom: 20px;
        right: 20px;
        width: 72px;
        height: 72px;
      }

      .ez-badge__icon {
        width: 20px;
        height: 20px;
      }

      .ez-badge__text {
        font-size: 9px;
        letter-spacing: 0.1em;
      }
    }
