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

    :root {
      --px: 40px;
      --dark: #0f0f0f;
      --dark-surface: #0f0f0f;
      --text-primary: #0f0f0f;
      --text-secondary: #525252;
      --text-tertiary: rgba(15, 15, 15, 0.5);
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    [id^="sec-"] {
      scroll-margin-top: 80px;
    }

    body {
      font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
      background: #fff;
      color: #0f0f0f;
      overflow-x: hidden;
      font-weight: 300;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: 400;
    }

    /* ─── Hero v3 ────────────────────────────────────────── */
    .mkt-hero {
      height: 100vh;
      min-height: 750px;
      background: var(--dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      padding: 56px 64px;
      overflow: hidden;
      position: relative;
    }

    /* Dot grid base */
    .mkt-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* Mouse-tracked highlight dot grid */
    .mkt-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
      background-size: 28px 28px;
      -webkit-mask-image: radial-gradient(circle 260px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
      mask-image: radial-gradient(circle 260px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
    }

    /* Teal glow */
    .hero-glow {
      position: absolute;
      top: -420px;
      left: 50%;
      transform: translateX(-50%);
      width: 1100px;
      height: 860px;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(circle, rgba(0, 140, 108, 0.72) 0%, rgba(0, 100, 78, 0.32) 38%, rgba(0, 70, 54, 0.1) 60%, transparent 75%);
      filter: blur(56px);
    }

    /* Top content, logo + heading + sub */
    .hero-top {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .hero-logo {
      height: 20px;
      width: auto;
    }

    .hero-ads-logo {
      display: block !important;
      width: 360px !important;
      max-width: 90% !important;
      height: auto !important;
      margin: 0 auto 20px !important;
    }

    .hero-studio-logo {
      font-family: 'Monomaniac One', sans-serif;
      font-size: clamp(28px, 5vw, 72px);
      font-weight: 400;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1;
      text-align: center;
      margin: 0;
    }

    .hero-studio-logo img {
      display: block;
      height: clamp(36px, 6.5vw, 88px);
      width: auto;
      margin: 0 auto;
    }

    .hero-sub {
      font-size: clamp(14px, 1.2vw, 16px);
      color: rgba(255, 255, 255, 0.75);
      text-align: center;
      line-height: 1.6;
      max-width: 560px;
    }

    /* 4-card row */
    .hero-cards-wrap {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1120px;
    }

    .hero-cards {
      display: flex;
      gap: 6px;
      width: 100%;
      height: 300px;
    }

    .hi {
      flex: 1;
      min-width: 0;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: rgba(255, 255, 255, 0.08);
    }

    .hi video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hi-label {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.82);
      font-size: 9.5px;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      z-index: 2;
    }

    /* ── HeroPromptBox, exact reference port ───────────────── */
    .hero-bottom {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 10;
      padding: 0 40px;
    }

    .hpb-form {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      transition: max-width 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hpb-form.hpb-expanded {
      max-width: 760px;
    }

    .hpb-wrap {
      position: relative;
      border-radius: 18px;
      background: rgba(28, 28, 28, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 14px rgba(0, 0, 0, 0.3);
      transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

    .hpb-wrap:hover {
      border-color: rgba(255, 255, 255, 0.16);
      background: rgba(32, 32, 32, 0.92);
    }

    .hpb-wrap[data-focused="true"] {
      border-color: rgba(255, 255, 255, 0.20);
      background: rgba(32, 32, 32, 0.94);
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.55), 0 4px 14px rgba(0, 0, 0, 0.3);
    }

    .hpb-input {
      width: 100%;
      padding: 10px 20px 50px;
      background: transparent;
      border: none;
      outline: none;
      color: rgba(255, 255, 255, 0.88);
      font-family: inherit;
      font-size: 15px;
      line-height: 1.5;
      letter-spacing: -0.01em;
      caret-color: rgba(255, 255, 255, 0.85);
      resize: none;
      display: block;
      box-sizing: border-box;
      max-height: 220px;
      overflow: auto;
    }

    .hpb-input::placeholder {
      color: transparent;
    }

    .hpb-placeholder {
      position: absolute;
      top: 10px;
      left: 20px;
      right: 20px;
      pointer-events: none;
      font-family: inherit;
      font-size: 15px;
      line-height: 1.5;
      letter-spacing: -0.01em;
      color: rgba(255, 255, 255, 0.50);
      transition: opacity 320ms ease;
    }

    .hpb-submit {
      position: absolute;
      right: 10px;
      bottom: 14px;
      height: 34px;
      padding: 0 20px;
      border-radius: 14px;
      border: none;
      background: #8A3FFC;
      color: #fff;
      font-family: inherit;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.2px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      box-shadow: 0 5px 0 0 #5323a2, 0 8px 18px rgba(28, 6, 64, 0.70);
      transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .hpb-submit:hover {
      background: #9a52fd;
      box-shadow: 0 5px 0 0 #5323a2, 0 10px 24px rgba(28, 6, 64, 0.75);
    }

    .hpb-submit:active {
      transform: translateY(3px);
      box-shadow: 0 2px 0 0 #5323a2, 0 4px 10px rgba(28, 6, 64, 0.50);
    }

    .hpb-chips-row {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    @media (max-width: 768px) {
      .hpb-chips-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 2px 4px;
        margin-left: -4px;
        margin-right: -4px;
      }

      .hpb-chips-row::-webkit-scrollbar {
        display: none;
      }

      .hpb-chip {
        flex-shrink: 0;
      }

      .hpb-chip-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        min-width: 36px;
      }
    }

    .hpb-chip {
      font-size: 13px;
      font-weight: 300;
      font-family: inherit;
      color: rgba(255, 255, 255, 0.85);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      padding: 8px 16px;
      cursor: pointer;
      letter-spacing: -0.01em;
      white-space: nowrap;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 180ms ease;
    }

    .hpb-chip:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.24);
      color: #fff;
    }

    .hpb-chip:active {
      transform: scale(0.97);
    }

    .hpb-chip-icon {
      width: 36px;
      height: 36px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .hpb-chip-icon svg {
      transition: transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .hpb-chip-icon:hover svg {
      transform: rotate(-220deg);
    }

    .hpb-microcopy {
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: -0.005em;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
    }

    .hpb-microcopy kbd {
      font-size: 10px;
      font-weight: 600;
      font-family: inherit;
      padding: 2px 6px;
      border-radius: 5px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .hpb-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      display: inline-block;
    }

    .hpb-microcopy a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 180ms ease;
    }

    .hpb-microcopy a:hover {
      color: #fff;
    }

    /* Trusted-by logos */
    .trusted-by {
      padding: 64px 24px 80px;
      background: #ffffff;
    }

    .trusted-by-inner {
      max-width: 1180px;
      margin: 0 auto;
    }

    .trusted-by-eyebrow {
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin: 0 0 40px;
    }

    .trusted-by-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      column-gap: 24px;
      row-gap: 48px;
      align-items: center;
      justify-items: center;
    }

    .trusted-by-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      width: 100%;
    }

    .trusted-by-cell img {
      max-width: 140px;
      width: auto;
      object-fit: contain;
      opacity: 1;
      transition: transform 480ms ease;
    }

    .trusted-by-cell:hover img {
      transform: scale(1.06);
    }

    @media (max-width: 1023px) and (min-width: 768px) {
      .trusted-by-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 767px) {
      .trusted-by {
        padding: 48px 0 56px;
      }

      .trusted-by-inner {
        max-width: none;
        padding: 0;
      }

      .trusted-by-inner>h2 {
        font-size: clamp(20px, 5vw, 32px) !important;
        letter-spacing: -0.5px !important;
        padding: 0 20px;
        margin-bottom: 32px !important;
      }

      .trusted-by-grid {
        display: block;
        grid-template-columns: none;
        column-gap: 0;
        row-gap: 0;
        overflow: hidden;
        position: relative;
        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
      }

      .trusted-by-track {
        display: flex;
        align-items: center;
        gap: 48px;
        width: max-content;
        animation: trustedMarquee 38s linear infinite;
      }

      .trusted-by-track:hover {
        animation-play-state: paused;
      }

      .trusted-by-cell {
        flex: 0 0 auto;
        width: auto;
        min-width: 120px;
        height: 48px;
        padding: 0 6px;
      }

      .trusted-by-cell img {
        max-width: 160px;
      }

      @keyframes trustedMarquee {
        from {
          transform: translateX(0);
        }

        to {
          transform: translateX(-50%);
        }
      }
    }

    /* Preloader */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9990;
      background: var(--dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #preloader.out {
      opacity: 0;
      transform: scale(1.06);
      pointer-events: none;
    }

    #preloader-logo {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    #preloader-logo.in {
      opacity: 1;
      transform: none;
    }

    #preloader-track {
      width: 160px;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 1px;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.4s 0.2s;
    }

    #preloader-track.in {
      opacity: 1;
    }

    #preloader-fill {
      height: 100%;
      width: 0%;
      background: rgba(255, 255, 255, 0.5);
      transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    @keyframes charReveal {
      from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .char-anim {
      display: inline-block;
      opacity: 0;
      animation: charReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .reveal-d1 {
      transition-delay: 0.1s;
    }

    .reveal-d2 {
      transition-delay: 0.22s;
    }

    .reveal-d3 {
      transition-delay: 0.34s;
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-72px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-left.in {
      opacity: 1;
      transform: none;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(72px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-right.in {
      opacity: 1;
      transform: none;
    }

    /* ─── Shared section chrome ─────────────────────────── */
    .mkt-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
    }

    .sec-label.dark {
      color: rgba(15, 15, 15, 0.4);
      border-color: rgba(15, 15, 15, 0.12);
    }

    .sec-h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 400;
      letter-spacing: -1.8px;
      line-height: 1.08;
      color: #fff;
    }

    .sec-h2.dark {
      color: #0f0f0f;
    }

    .sec-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
      max-width: 520px;
      margin-top: 16px;
    }

    .sec-sub.dark {
      color: #0f0f0f;
    }

    /* ─── Templates (shared with ecommerce) ─────────────── */
    .reveal-blur {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(16px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s, transform 0.9s;
    }

    .reveal-blur.in {
      opacity: 1;
      filter: blur(0);
      transform: none;
    }

    .templates {
      background: var(--dark);
      padding: 120px 0;
      position: relative;
    }

    .templates::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .templates::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
      background-size: 28px 28px;
      -webkit-mask-image: radial-gradient(circle 220px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
      mask-image: radial-gradient(circle 220px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
    }

    .templates-inner {
      position: relative;
      z-index: 1;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      flex-direction: column;
      gap: 52px;
    }

    .templates-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
    }

    .templates-head-left {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .tmpl-label {
      font-size: 10.5px;
      font-weight: 300;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 5px 12px;
      border-radius: 100px;
      width: fit-content;
      display: inline-flex;
    }

    .templates-head h2 {
      font-size: clamp(24px, 2.5vw, 36px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -1px;
      color: #fff;
      margin: 0;
    }

    .templates-head p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.65;
      max-width: 260px;
      text-align: right;
      margin: 0;
    }

    .styles-bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 10px;
    }

    .s-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      background: #1a1a1a;
      transform: translateZ(0);
      transition: box-shadow 0.4s;
    }

    .s-card:hover {
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    }

    .s-card img,
    .s-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .s-card:hover img,
    .s-card:hover video {
      transform: scale(1.07);
    }

    .s-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 40%, transparent 65%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .s-card:hover .s-card-overlay {
      opacity: 1;
    }

    .s-card-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.82);
      font-size: 9.5px;
      font-weight: 300;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
    }

    .s-card-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 20px 20px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .s-card:hover .s-card-body {
      opacity: 1;
      transform: translateY(0);
    }

    .s-card-name {
      font-size: 14px;
      font-weight: 400;
      color: #fff;
      letter-spacing: -0.3px;
      line-height: 1.2;
    }

    .s-card-prompt {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
      max-height: 0;
      overflow: hidden;
      margin-top: 0;
      transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s;
      opacity: 0;
    }

    .s-card:hover .s-card-prompt {
      max-height: 72px;
      margin-top: 8px;
      opacity: 1;
    }

    .s-card-arrow {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.8) rotate(-45deg);
      transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .s-card:hover .s-card-arrow {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .s-card:nth-child(1) {
      grid-column: span 5;
      height: 400px;
    }

    .s-card:nth-child(2) {
      grid-column: span 4;
      height: 400px;
    }

    .s-card:nth-child(3) {
      grid-column: span 3;
      height: 400px;
    }

    .s-card:nth-child(4) {
      grid-column: span 3;
      height: 330px;
    }

    .s-card:nth-child(5) {
      grid-column: span 5;
      height: 330px;
    }

    .s-card:nth-child(6) {
      grid-column: span 4;
      height: 330px;
    }

    .s-card:nth-child(7) {
      grid-column: span 4;
      height: 220px;
    }

    .s-card:nth-child(8) {
      grid-column: span 4;
      height: 220px;
    }

    .s-card:nth-child(9) {
      grid-column: span 4;
      height: 220px;
    }

    .styles-bento .s-card {
      opacity: 0;
      transform: translateY(32px) scale(0.97);
      transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    }

    .styles-bento.in .s-card {
      opacity: 1;
      transform: none;
    }

    .styles-bento.in .s-card:nth-child(1) {
      transition-delay: 0.04s;
    }

    .styles-bento.in .s-card:nth-child(2) {
      transition-delay: 0.09s;
    }

    .styles-bento.in .s-card:nth-child(3) {
      transition-delay: 0.14s;
    }

    .styles-bento.in .s-card:nth-child(4) {
      transition-delay: 0.19s;
    }

    .styles-bento.in .s-card:nth-child(5) {
      transition-delay: 0.24s;
    }

    .styles-bento.in .s-card:nth-child(6) {
      transition-delay: 0.29s;
    }

    .styles-bento.in .s-card:nth-child(7) {
      transition-delay: 0.34s;
    }

    .styles-bento.in .s-card:nth-child(8) {
      transition-delay: 0.39s;
    }

    .styles-bento.in .s-card:nth-child(9) {
      transition-delay: 0.44s;
    }

    .tmpl-cta {
      display: flex;
      justify-content: center;
    }

    .btn-outline-light {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 30px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      font-weight: 300;
      text-decoration: none;
      letter-spacing: 0.2px;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    /* ─── Gallery (pinch zoom-out on scroll) ────────────── */
    /* ─── Ads Section ───────────────────────────────────── */
    /* ── How it works ── */
    .mkt-hiw {
      position: relative;
      height: 920px;
      min-height: 0;
      overflow: hidden;
      background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(80, 130, 255, 0.07), transparent 70%),
        linear-gradient(180deg, #f6f9ff 0%, #eef3fb 100%);
    }

    .mkt-hiw-sticky {
      position: relative;
      height: 920px;
      min-height: 0;
      overflow: hidden;
    }

    /* Canvas, full viewport */
    .mkt-hiw-canvas {
      position: absolute;
      inset: 0;
    }

    /* Heading, absolute, top-center */
    .mkt-hiw-head {
      position: absolute;
      top: 96px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      text-align: center;
      width: min(600px, calc(100vw - 40px));
    }

    .mkt-hiw-head h2 {
      font-size: clamp(28px, 3.2vw, 48px);
      font-weight: 400;
      letter-spacing: -1.6px;
      color: #0f0f0f;
      line-height: 1.18;
      margin: 0 0 10px;
    }

    .mkt-hiw-pill {
      display: inline-block;
      width: 48px;
      height: 34px;
      border-radius: 8px;
      overflow: hidden;
      vertical-align: middle;
      margin: 0 4px;
      position: relative;
      top: -2px;
    }

    .mkt-hiw-pill img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .mkt-hiw-head p {
      font-size: clamp(13px, 1.6vw, 16px);
      color: #0f0f0f;
      max-width: 440px;
      line-height: 1.7;
      margin: 0 auto;
    }

    /* Surrounding input cards */
    .hiw-card {
      position: absolute;
      border-radius: 18px;
      overflow: hidden;
      background: var(--dark);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30), 0 2px 8px rgba(0, 0, 0, 0.20);
      will-change: transform, opacity;
      transform-origin: center center;
      z-index: 3;
    }

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

    .hiw-card-label {
      position: absolute;
      bottom: 9px;
      left: 10px;
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: #0f0f0f;
      background: rgba(255, 255, 255, 0.9);
      padding: 4px 9px;
      border-radius: 100px;
      backdrop-filter: blur(6px);
      white-space: nowrap;
    }

    /* Center card, always visible, always on top */
    .hiw-center {
      position: absolute;
      left: 50%;
      top: min(calc(100vh - 260px), 630px);
      transform: translate(-50%, -50%);
      width: min(380px, 84vw);
      height: min(480px, 106vw);
      border-radius: clamp(18px, 4vw, 28px);
      overflow: hidden;
      background: linear-gradient(160deg, #1c1c1e 0%, #0f0f0f 100%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.45),
        0 16px 40px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 80px rgba(100, 60, 255, 0.10);
      z-index: 10;
      will-change: transform, opacity;
      opacity: 1;
    }

    .hiw-center img,
    .hiw-center video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    #hiw-poster {
      opacity: 1;
      will-change: opacity;
      z-index: 1;
    }

    #hiw-video {
      opacity: 0;
      will-change: opacity;
      z-index: 2;
    }

    .hiw-center-label {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 6px 16px;
      border-radius: 100px;
      backdrop-filter: blur(12px);
      white-space: nowrap;
    }

    /* ── Mobile (≤599px) ─────────────────────────────────── */
    @media (max-width: 599px) {
      .mkt-hiw {
        height: 580px;
        min-height: 0;
      }

      .mkt-hiw-sticky {
        height: 580px;
        min-height: 0;
      }

      .mkt-hiw-head {
        top: 32px;
      }

      .mkt-hiw-head h2 {
        font-size: 22px;
        letter-spacing: -0.6px;
        line-height: 1.2;
      }

      .mkt-hiw-head p {
        font-size: 13px;
      }

      .mkt-hiw-pill {
        width: 38px;
        height: 26px;
      }

      .hiw-center {
        opacity: 1;
        top: 370px !important;
        width: min(320px, 78vw) !important;
        height: min(400px, 100vw) !important;
      }

      #hiw-c0,
      #hiw-c1 {
        top: 370px !important;
      }

      .hiw-result {
        width: 210px;
        height: 260px;
      }
    }

    /* ── Tablet (600–1023px) ─────────────────────────────── */
    @media (min-width: 600px) and (max-width: 1023px) {
      .mkt-hiw {
        height: 700px;
        min-height: 0;
      }

      .mkt-hiw-sticky {
        height: 700px;
        min-height: 0;
      }

      .mkt-hiw-head {
        top: 48px;
      }

      .mkt-hiw-head h2 {
        font-size: 32px;
        letter-spacing: -1px;
      }

      .hiw-center {
        top: 450px !important;
      }

      #hiw-c0,
      #hiw-c1 {
        top: 450px !important;
      }

      .hiw-result {
        width: 240px;
        height: 300px;
      }
    }

    /* ── Desktop (≥1024px): align cards with center video ── */
    @media (min-width: 1024px) {

      #hiw-c0,
      #hiw-c1 {
        top: 560px !important;
      }
    }

    /* ── iPad Pro / small desktop (1024–1280px) ──────────── */
    @media (min-width: 1024px) and (max-width: 1280px) {
      .mkt-hiw {
        height: 740px;
        min-height: 0;
      }

      .mkt-hiw-sticky {
        height: 740px;
        min-height: 0;
      }

      .mkt-hiw-head {
        top: 72px;
      }

      .hiw-center {
        top: 500px !important;
      }

      #hiw-c0,
      #hiw-c1 {
        top: 500px !important;
      }
    }

    /* ── Large desktop (≥1281px) ─────────────────────────── */
    @media (min-width: 1281px) {
      .mkt-hiw {
        height: 820px;
        min-height: 0;
      }

      .mkt-hiw-sticky {
        height: 820px;
        min-height: 0;
      }

      .hiw-center {
        top: 560px !important;
      }

      #hiw-c0,
      #hiw-c1 {
        top: 560px !important;
      }
    }

    @media (max-width: 820px) {
      .mkt-hiw-head h2 {
        letter-spacing: -0.8px;
      }
    }

    /* Keep flanking cards aligned with center card on short viewports — desktop only */
    @media (min-width: 1024px) and (max-height: 860px) {

      #hiw-c0,
      #hiw-c1 {
        top: min(calc(100vh - 260px), 630px) !important;
      }
    }

    /* ─── Capabilities (4-card full-bleed grid) ─────────── */
    .mkt-caps {
      background: var(--dark);
      padding: 120px 0 0;
      overflow: hidden;
    }

    .mkt-caps-header {
      text-align: center;
      padding: 0 var(--px) 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .mkt-caps-label {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
    }

    .mkt-caps-h2 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: -1.5px;
      color: #fff;
      max-width: 680px;
    }

    .mkt-caps-p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.62);
      max-width: 480px;
      line-height: 1.65;
    }

    .mkt-caps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .mkt-caps-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }

    .mkt-caps-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mkt-caps-card:hover img {
      transform: scale(1.06);
    }

    .mkt-caps-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.12) 55%, transparent 100%);
      transition: background 0.4s;
    }

    .mkt-caps-card:hover::after {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.08) 100%);
    }

    .mkt-caps-card+.mkt-caps-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 1px;
      background: rgba(255, 255, 255, 0.08);
      z-index: 3;
    }

    .mkt-caps-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px 28px;
      z-index: 2;
    }

    .mkt-caps-num {
      font-size: 9px;
      font-weight: 300;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.42);
      margin-bottom: 9px;
    }

    .mkt-caps-title {
      font-size: 28px;
      font-weight: 400;
      color: #fff;
      letter-spacing: -0.5px;
      line-height: 1.15;
    }

    .mkt-caps-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.52);
      line-height: 1.6;
      margin-top: 10px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s 0.05s;
    }

    .mkt-caps-card:hover .mkt-caps-desc {
      max-height: 80px;
      opacity: 1;
    }

    @media (max-width: 1024px) {
      .mkt-caps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .mkt-caps {
        padding: 80px 0 0;
      }

      .mkt-caps-header {
        padding: 0 24px 52px;
      }

      .mkt-caps-card {
        aspect-ratio: 2/3;
      }

      .mkt-caps-title {
        font-size: 20px;
      }
    }

    .mkt-ads {
      background: #fff;
      padding: 120px 0;
    }

    .mkt-ads-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      flex-direction: column;
      gap: 56px;
    }

    .mkt-ads .tmpl-label {
      color: rgba(0, 0, 0, 0.4);
      border-color: rgba(0, 0, 0, 0.12);
    }

    .ads-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }

    .ads-head h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 400;
      letter-spacing: -2px;
      line-height: 1.06;
      color: #0f0f0f;
      margin: 0;
    }

    .ads-head h2 em {
      font-style: normal;
      color: rgba(0, 0, 0, 0.22);
    }

    .ads-head p {
      font-size: 18px;
      color: #0f0f0f;
      line-height: 1.65;
      max-width: 480px;
      margin: 0;
    }

    .ads-grid {
      display: grid;
      grid-template-columns: 1.35fr 1fr;
      gap: 12px;
    }

    .ads-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #f0f0f0;
      border: 1px solid rgba(0, 0, 0, 0.07);
    }

    .ads-card video,
    .ads-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ads-card-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    }

    .ads-card-main {
      height: 540px;
    }

    .ads-card-main-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px 28px 28px;
    }

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

    .ads-plat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      font-size: 11px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.2px;
    }

    .ads-plat-badge svg {
      width: 12px;
      height: 12px;
      opacity: 0.8;
    }

    .ads-main-text {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ads-main-text h3 {
      font-size: clamp(20px, 2vw, 32px);
      font-weight: 400;
      color: #fff;
      letter-spacing: -0.8px;
      line-height: 1.15;
      margin: 0;
    }

    .ads-main-text p {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.6;
      margin: 0;
      max-width: 320px;
    }

    .ads-card-stack {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ads-card-stat {
      height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      background: #f5f5f5;
      border: 1px solid rgba(0, 0, 0, 0.07);
    }

    .ads-stat-number {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 400;
      color: #0f0f0f;
      letter-spacing: -3px;
      line-height: 1;
    }

    .ads-stat-label {
      font-size: 13px;
      color: #525252;
      line-height: 1.5;
      max-width: 200px;
      margin-top: 10px;
    }

    .ads-stat-accent {
      display: inline-block;
      width: 32px;
      height: 3px;
      background: #7c5cfc;
      border-radius: 2px;
      margin-bottom: 20px;
    }

    .ads-card-secondary {
      height: 320px;
    }

    .ads-card-secondary-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px 26px;
    }

    .ads-card-secondary-content h3 {
      font-size: 20px;
      font-weight: 400;
      color: #fff;
      letter-spacing: -0.5px;
      margin: 0 0 6px;
    }

    .ads-card-secondary-content p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.55;
      margin: 0;
    }

    .ads-features-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      overflow: hidden;
    }

    .ads-feat {
      background: #fff;
      padding: 36px 32px 34px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: background 0.2s;
    }

    .ads-feat:hover {
      background: #fafafa;
    }

    .ads-feat-number {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(15, 15, 15, 0.5);
      margin-bottom: 28px;
    }

    .ads-feat h4 {
      font-size: clamp(16px, 1.5vw, 20px);
      font-weight: 400;
      color: #0f0f0f;
      letter-spacing: -0.6px;
      line-height: 1.2;
      margin: 0 0 14px;
    }

    .ads-feat p {
      font-size: 13.5px;
      color: #0f0f0f;
      line-height: 1.65;
      margin: 0;
    }

    .ads-feat-inline-link {
      color: #4A6CF7 !important;
      text-decoration: none !important;
      cursor: pointer !important;
    }

    .ads-feat-inline-link:hover {
      text-decoration: underline !important;
      text-underline-offset: 3px;
    }

    .ads-feat-arrow {
      margin-top: 28px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(15, 15, 15, 0.5);
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
      text-decoration: none;
      flex-shrink: 0;
    }

    .ads-feat:hover .ads-feat-arrow {
      border-color: rgba(0, 0, 0, 0.3);
      color: #0f0f0f;
      transform: translate(2px, -2px);
    }

    .mkt-gallery {
      background: var(--dark);
    }

    .gallery-header {
      text-align: center;
      padding: 100px 40px 52px;
    }

    .gallery-header .sec-label {
      justify-content: center;
    }

    .gallery-header .sec-h2 {
      margin: 0 auto;
    }

    .gallery-header .sec-sub {
      margin: 12px auto 24px;
      text-align: center;
    }

    .gallery-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .gallery-link:hover {
      color: #fff;
    }

    /* Scroll-pinned zoom effect removed — it read as a wall of dead black
       scroll space before reaching the gallery content and FAQs. The
       gallery now just lays out normally, like every other section. */
    .gallery-pin-wrap {
      height: auto;
    }

    .gallery-pin {
      position: relative;
      height: auto;
      display: block;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 4px;
      width: 100%;
    }

    .gallery-item {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: filter 0.55s ease;
      filter: brightness(0.8) saturate(0.9);
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
      filter: brightness(1) saturate(1.1);
    }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-item-overlay {
      opacity: 1;
    }

    .gallery-item-label {
      position: absolute;
      bottom: 12px;
      left: 14px;
      font-size: 10px;
      font-weight: 300;
      color: #fff;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .gallery-item:hover .gallery-item-label {
      opacity: 1;
      transform: none;
    }

    /* ─── Final CTA ─────────────────────────────────────── */
    /* ─── Final CTA ──────────────────────────────────────── */
    .mkt-final {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: #070707;
      padding: 120px 40px 100px;
    }

    .mkt-final-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.22;
      pointer-events: none;
    }

    .mkt-final-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(to bottom, #070707 0%, transparent 25%, transparent 75%, #070707 100%),
        radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, #070707 100%);
    }

    .mkt-final-noise {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    .mkt-final-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      max-width: 860px;
      margin: 0 auto;
    }

    .final-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 100px;
      padding: 6px 14px 6px 8px;
      margin-bottom: 40px;
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.3px;
      color: rgba(255, 255, 255, 0.55);
    }

    .final-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #7c5cfc;
      box-shadow: 0 0 8px rgba(124, 92, 252, 0.8);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.75);
      }
    }

    .final-h2 {
      font-size: clamp(32px, 3.6vw, 48px);
      font-weight: 400;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1.1;
      margin: 0 0 28px;
    }

    .final-h2 em {
      font-style: normal;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 400;
    }

    .final-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.65;
      max-width: 440px;
      margin: 0 0 52px;
    }

    .final-btns {
      display: flex;
      gap: 14px;
      align-items: center;
      justify-content: center;
      margin-bottom: 72px;
    }

    .btn-final-white {
      height: 54px;
      padding: 0 30px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 300;
      letter-spacing: 0.1px;
      background: #fff;
      color: #0f0f0f;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: transform 0.18s, box-shadow 0.18s;
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }

    .btn-final-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 255, 255, 0.18);
    }

    .btn-final-ghost {
      height: 54px;
      padding: 0 30px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 300;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.75);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background 0.18s, border-color 0.18s, transform 0.18s;
    }

    .btn-final-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
    }

    .final-stats {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .fstat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 22px 44px;
    }

    .fstat+.fstat {
      border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .fstat-n {
      font-size: 28px;
      font-weight: 400;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1;
    }

    .fstat-l {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.2px;
      white-space: nowrap;
    }

    /* ─── Skeleton loaders ───────────────────────────────── */
    .skeleton {
      position: absolute;
      inset: 0;
      z-index: 3;
      background: #1c1c1c;
      border-radius: inherit;
      overflow: hidden;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .skeleton::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.055) 40%,
          rgba(255, 255, 255, 0.09) 50%,
          rgba(255, 255, 255, 0.055) 60%,
          transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 1.6s infinite;
    }

    .skeleton.hidden {
      opacity: 0;
      pointer-events: none;
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }

    /* ─── Scroll progress bar ────────────────────────────── */
    #mkt-prog {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, #a855f7, #7c3aed);
      transition: width 0.1s linear;
      pointer-events: none;
    }

    /* ─── Steps section ─────────────────────────────────── */
    .mkt-steps {
      position: relative;
      background: var(--dark);
      padding: 120px var(--px) 110px;
      overflow: hidden;
    }

    .mkt-steps::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .mkt-steps::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
      background-size: 28px 28px;
      -webkit-mask-image: radial-gradient(circle 220px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
      mask-image: radial-gradient(circle 220px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
    }

    .mkt-steps-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }

    .mkt-steps-header {
      margin-bottom: 72px;
    }

    .mkt-steps-h2 {
      font-size: clamp(32px, 4.2vw, 60px);
      font-weight: 400;
      letter-spacing: -2px;
      line-height: 1.05;
      color: #fff;
      margin: 0 0 20px;
      max-width: 860px;
    }

    .mkt-steps-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.7;
      max-width: 480px;
      margin: 0;
    }

    /* 4-column cards grid */
    .mkt-steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      overflow: hidden;
    }

    .mkt-step-card {
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mkt-step-card:last-child {
      border-right: none;
    }

    .mkt-step-num {
      font-size: 52px;
      font-weight: 600;
      letter-spacing: -3px;
      color: rgba(255, 255, 255, 0.07);
      line-height: 1;
      margin-bottom: 40px;
      user-select: none;
    }

    .mkt-step-title {
      font-size: 16px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.88);
      letter-spacing: -0.2px;
      line-height: 1.3;
      margin: 0 0 12px;
    }

    .mkt-step-body {
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.72;
      color: rgba(255, 255, 255, 0.42);
      margin: 0;
      flex: 1;
    }

    .mkt-step-time {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 28px;
      font-size: 11.5px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.2px;
    }

    .mkt-step-time svg {
      flex-shrink: 0;
      opacity: 0.5;
    }

    /* ─── FAQ ───────────────────────────────────────────── */
    .mkt-faq {
      background: #fff;
      padding: 120px var(--px) 110px;
      border-top: 1px solid rgba(15, 15, 15, 0.06);
    }

    .mkt-faq-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      gap: 80px;
      align-items: flex-start;
    }

    .mkt-faq-left {
      flex-shrink: 0;
      max-width: 360px;
      position: sticky;
      top: 100px;
    }

    .mkt-faq-h2 {
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 400;
      letter-spacing: -1.2px;
      line-height: 1.1;
      color: #0f0f0f;
      margin: 0 0 16px;
    }

    .mkt-faq-sub {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: #525252;
      margin: 0;
    }

    .mkt-faq-list {
      flex: 1;
      min-width: 0;
    }

    .mkt-faq-item {
      border-top: 1px solid rgba(15, 15, 15, 0.08);
    }

    .mkt-faq-item:last-child {
      border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    }

    .mkt-faq-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      padding: 26px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.5;
      color: #0f0f0f;
      letter-spacing: -0.1px;
      transition: color 0.2s ease;
    }

    .mkt-faq-trigger[aria-expanded="true"] {
      color: #8A3FFC;
    }

    .mkt-faq-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid rgba(15, 15, 15, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 300;
      color: rgba(15, 15, 15, 0.5);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .mkt-faq-trigger[aria-expanded="true"] .mkt-faq-icon {
      border-color: #8A3FFC;
      color: #8A3FFC;
      background: rgba(138, 63, 252, 0.06);
    }

    .mkt-faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.34s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mkt-faq-answer[data-open="true"] {
      grid-template-rows: 1fr;
    }

    .mkt-faq-answer-inner {
      overflow: hidden;
      min-height: 0;
    }

    .mkt-faq-answer-text {
      padding: 0 40px 26px 0;
      font-size: 14.5px;
      font-weight: 300;
      line-height: 1.75;
      color: #0f0f0f;
      margin: 0;
    }

    /* ─── Comparison table ───────────────────────────────── */
    .mkt-compare {
      background: var(--dark);
      padding: 120px var(--px) 110px;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .mkt-compare-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .mkt-compare-header {
      margin-bottom: 64px;
    }

    .mkt-compare-h2 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      letter-spacing: -2px;
      line-height: 1.04;
      color: #fff;
      margin: 0 0 16px;
      max-width: 700px;
    }

    .mkt-compare-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      max-width: 480px;
      margin: 0;
    }

    /* Table */
    .mkt-compare-table {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
    }

    .mkt-compare-row {
      display: grid;
      grid-template-columns: 158px 1fr 1fr 1fr 1fr;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mkt-compare-row:last-child {
      border-bottom: none;
    }

    .mkt-compare-row.mkt-compare-head {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mkt-compare-cell {
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mkt-compare-cell:last-child {
      border-right: none;
    }

    /* Header row cells: consistent top padding */
    .mkt-compare-head .mkt-compare-cell {
      padding-top: 18px;
      padding-bottom: 18px;
      justify-content: flex-start;
    }

    /* ImagineArt column highlight */
    .mkt-compare-row .mkt-compare-cell:nth-child(2) {
      background: rgba(61, 186, 128, 0.05);
    }

    .mkt-compare-head .mkt-compare-cell:nth-child(2) {
      box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5);
      background: rgba(61, 186, 128, 0.07);
    }

    /* Alternating row tints */
    .mkt-compare-row:not(.mkt-compare-head):nth-child(even) {
      background: rgba(255, 255, 255, 0.015);
    }

    .mkt-compare-row:not(.mkt-compare-head):nth-child(even) .mkt-compare-cell:nth-child(2) {
      background: rgba(61, 186, 128, 0.07);
    }

    /* Head labels */
    .mkt-col-name {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin: 0;
    }

    .mkt-compare-head .mkt-compare-cell:nth-child(2) .mkt-col-name {
      color: #fff;
      letter-spacing: 0.7px;
    }

    .mkt-col-sub {
      font-size: 10px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.22);
      margin: 0;
      margin-top: 3px;
      line-height: 1.45;
    }

    .mkt-compare-head .mkt-compare-cell:nth-child(2) .mkt-col-sub {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Row label */
    .mkt-row-label {
      font-size: 11.5px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.45);
      margin: 0;
      line-height: 1.4;
    }

    /* Cell values */
    .mkt-cell-val {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.28);
      line-height: 1.6;
    }

    .mkt-compare-row .mkt-compare-cell:nth-child(2) .mkt-cell-val {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      font-size: 12.5px;
    }

    .mkt-cell-val.mkt-partial {
      color: rgba(255, 255, 255, 0.5);
    }

    .mkt-cell-val.mkt-positive-comp {
      color: rgba(255, 255, 255, 0.75);
    }

    /* Icons */
    .mkt-icon-check {
      flex-shrink: 0;
      color: rgba(255, 255, 255, 0.85);
      display: flex;
      align-items: center;
    }

    .mkt-icon-minus {
      flex-shrink: 0;
      color: rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
    }

    /* ─── How It Works Z-fold ────────────────────────────── */
    .hiw-zfold {
      background: #F7F7F7;
      padding: 88px var(--px) 80px;
    }

    .hiw-zfold-inner {
      max-width: 1140px;
      margin: 0 auto;
    }

    .hiw-zfold-header {
      margin-bottom: 56px;
    }

    .hiw-zfold-list {
      display: flex;
      flex-direction: column;
      gap: clamp(64px, 9vw, 120px);
    }

    .hiw-zfold-item {
      display: flex;
      align-items: center;
      gap: clamp(40px, 6vw, 96px);
    }

    .hiw-zfold-item.hiw-zfold-reverse {
      flex-direction: row-reverse;
    }

    .hiw-zfold-media {
      flex: 0 0 clamp(260px, 44%, 540px);
      height: clamp(260px, 36vw, 500px);
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #ebebeb;
    }

    .hiw-zfold-media img,
    .hiw-zfold-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hiw-zfold-play {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      border: none;
      cursor: pointer;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      transition: background 0.15s;
    }

    .hiw-zfold-play:hover {
      background: rgba(0, 0, 0, 0.78);
    }

    .hiw-zfold-text {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hiw-zfold-step {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #525252;
      margin: 0;
    }

    .hiw-zfold-title {
      font-size: clamp(22px, 2.6vw, 34px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.5px;
      color: #0f0f0f;
      margin: 0;
    }

    .hiw-zfold-body {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.7;
      color: #0f0f0f;
      margin: 0 0 16px;
      max-width: 460px;
    }

    .hiw-zfold-cta {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      height: 46px;
      padding: 0 22px;
      border-radius: 10px;
      background: #f0f0f0;
      color: #0f0f0f;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.18s;
    }

    .hiw-zfold-cta:hover {
      background: #e0e0e0;
    }

    /* Z-fold extras */
    .hiw-zfold-callout {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 12px;
      background: rgba(15, 15, 15, 0.04);
      border: 1px solid rgba(15, 15, 15, 0.07);
      margin-bottom: 20px;
    }

    .hiw-zfold-callout-icon {
      flex-shrink: 0;
      margin-top: 2px;
      color: rgba(15, 15, 15, 0.5);
    }

    .hiw-zfold-callout p {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: #525252;
      margin: 0;
    }

    .hiw-zfold-ministeps {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .hiw-zfold-ministep {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid rgba(15, 15, 15, 0.07);
      background: #fff;
    }

    .hiw-zfold-ministep-n {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 15, 15, 0.5);
      flex-shrink: 0;
      min-width: 12px;
      line-height: 1;
    }

    .hiw-zfold-ministep-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .hiw-zfold-ministep-title {
      font-size: 13.5px;
      font-weight: 500;
      color: #0f0f0f;
      line-height: 1.3;
    }

    .hiw-zfold-ministep-sub {
      font-size: 12px;
      font-weight: 300;
      color: #525252;
      line-height: 1.4;
    }

    .hiw-zfold-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 16px;
      border-radius: 100px;
      border: 1px solid rgba(15, 15, 15, 0.1);
      background: rgba(15, 15, 15, 0.03);
      font-size: 12px;
      font-weight: 400;
      color: rgba(15, 15, 15, 0.5);
      letter-spacing: 0.1px;
      margin-top: 4px;
    }

    .hiw-zfold-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #3dba80;
      flex-shrink: 0;
    }

    .hiw-zfold-steps-list {
      list-style: none;
      margin: 0 0 16px;
      padding: 0;
      border-top: 1px solid rgba(15, 15, 15, 0.08);
      counter-reset: steps;
    }

    .hiw-zfold-steps-list li {
      counter-increment: steps;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    }

    .hiw-zfold-steps-list li::before {
      content: counter(steps);
      font-size: 11px;
      font-weight: 400;
      color: rgba(15, 15, 15, 0.5);
      flex-shrink: 0;
      width: 16px;
      line-height: 1.6;
    }

    .hiw-zfold-steps-list li>span {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .hiw-zfold-steps-title {
      font-size: 13.5px;
      font-weight: 500;
      color: #0f0f0f;
      line-height: 1.3;
    }

    .hiw-zfold-steps-sub {
      font-size: 12px;
      font-weight: 300;
      color: #525252;
      line-height: 1.4;
    }

    .hiw-zfold-quote {
      margin: 0 0 16px;
      padding: 0 0 0 14px;
      border-left: 2px solid rgba(15, 15, 15, 0.12);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: #525252;
    }

    .hiw-zfold-check {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 400;
      color: rgba(15, 15, 15, 0.5);
      margin: 0;
    }

    .hiw-zfold-stats {
      display: flex;
      align-items: stretch;
      gap: 0;
      border: 1px solid rgba(15, 15, 15, 0.08);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .hiw-zfold-stat {
      flex: 1;
      padding: 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hiw-zfold-stat-divider {
      width: 1px;
      background: rgba(15, 15, 15, 0.08);
      flex-shrink: 0;
    }

    .hiw-zfold-stat-num {
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 400;
      letter-spacing: -1.5px;
      line-height: 1;
      color: #0f0f0f;
    }

    .hiw-zfold-stat-desc {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.5;
      color: #525252;
    }

    .hiw-zfold-controls {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 28px;
    }

    .hiw-zfold-control {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid rgba(15, 15, 15, 0.07);
      background: #fff;
    }

    .hiw-zfold-control-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: rgba(15, 15, 15, 0.5);
    }

    .hiw-zfold-control-val {
      font-size: 13px;
      font-weight: 400;
      color: #0f0f0f;
      line-height: 1.4;
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE - tablet ≤ 1024px
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {

      /* Hero v3 tablet */
      .hero-top {
        padding: 0 40px;
        margin-bottom: 20px;
      }

      .hero-prompt-wrap,
      .hero-chips {
        width: calc(100% - 80px);
      }

      /* Reduce card height slightly on tablet */
      .hero-cards {
        height: 240px;
      }

      .styles-bento {
        grid-template-columns: repeat(6, 1fr);
      }

      .s-card:nth-child(1) {
        grid-column: span 3;
        height: 320px;
      }

      .s-card:nth-child(2) {
        grid-column: span 3;
        height: 320px;
      }

      .s-card:nth-child(3) {
        grid-column: span 3;
        height: 320px;
      }

      .s-card:nth-child(4) {
        grid-column: span 3;
        height: 280px;
      }

      .s-card:nth-child(5) {
        grid-column: span 3;
        height: 280px;
      }

      .s-card:nth-child(6) {
        grid-column: span 3;
        height: 280px;
      }

      .s-card:nth-child(7) {
        grid-column: span 4;
        height: 200px;
      }

      .s-card:nth-child(8) {
        grid-column: span 2;
        height: 200px;
      }

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

      .ads-card-stack {
        flex-direction: row;
        gap: 12px;
      }

      .ads-card-stat {
        flex: 1;
        height: 160px;
      }

      .ads-card-secondary {
        height: 260px;
      }
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE - mobile ≤ 768px
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* ── Hero v3 mobile ──────────────────────────────── */
      .mkt-hero {
        padding-top: 44px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 160px;
      }

      .hero-top {
        padding: 0 24px;
        margin-bottom: 18px;
        gap: 8px;
      }

      .hero-studio-title {
        font-size: clamp(30px, 9vw, 48px);
        letter-spacing: 3px;
      }

      .hero-sub {
        font-size: 15px;
      }

      /* ── Hero cards, expanding accordion ─────────────── */
      .hero-cards-wrap {
        max-width: none;
      }

      .hero-cards {
        height: 180px;
        overflow: hidden;
        padding: 0 20px;
        gap: 6px;
      }

      .hi {
        flex: 1;
        width: auto;
        transition: flex 0.52s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .hi.active {
        flex: 5;
      }

      .hi-label {
        opacity: 0;
        transform: translateY(3px);
        transition: opacity 280ms ease 180ms, transform 280ms ease 180ms;
      }

      .hi.active .hi-label {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── Shared ───────────────────────────────────────── */
      .mkt-inner {
        padding: 0 20px;
      }

      .sec-h2 {
        letter-spacing: -1px;
      }

      /* ── Ads ──────────────────────────────────────────── */
      .mkt-ads {
        padding: 72px 0;
      }

      .mkt-ads-inner {
        padding: 0 20px;
        gap: 32px;
      }

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

      .ads-card-main {
        height: 420px;
      }

      .ads-card-stack {
        flex-direction: column;
        gap: 10px;
      }

      .ads-card-stat {
        height: 160px;
        padding: 22px;
      }

      .ads-card-secondary {
        height: 260px;
      }

      .ads-features-row {
        grid-template-columns: 1fr;
        border-radius: 16px;
      }


      /* ── Templates ────────────────────────────────────── */
      .templates {
        padding: 72px 0;
      }

      .templates-inner {
        padding: 0 20px;
        gap: 32px;
      }

      .templates-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .templates-head p {
        text-align: left;
        max-width: 100%;
      }

      .styles-bento {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .s-card:nth-child(n) {
        grid-column: span 1 !important;
        height: 180px !important;
      }

      .s-card:nth-child(1),
      .s-card:nth-child(2) {
        height: 240px !important;
      }

      /* ── Gallery ──────────────────────────────────────── */
      .gallery-header {
        padding: 64px 24px 36px;
      }

      .gallery-pin-wrap {
        height: auto;
      }

      .gallery-pin {
        position: relative;
        height: auto;
        display: block;
      }

      .gallery-grid {
        transform: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
      }

      .gallery-item {
        aspect-ratio: 1/1;
      }

      /* ── Hero tabs (mobile) ──────────────────────────── */
      .hero-tab {
        padding: 6px 10px;
        font-size: 10px;
      }

      /* ── HIW card labels (mobile) ─────────────────────── */
      .hiw-card-label {
        font-size: 8px;
        padding: 3px 7px;
      }

      /* ── FAQ ─────────────────────────────────────────────── */
      .mkt-faq {
        padding: 80px 20px 72px;
      }

      .mkt-faq-inner {
        flex-direction: column;
        gap: 40px;
      }

      .mkt-faq-left {
        max-width: 100%;
        position: static;
      }

      /* ── Comparison table ────────────────────────────────── */
      .mkt-compare {
        padding: 80px 20px 72px;
      }

      .mkt-compare-header {
        margin-bottom: 48px;
      }

      .mkt-compare-table {
        border-radius: 12px;
      }

      .mkt-compare-row {
        grid-template-columns: 1fr;
      }

      .mkt-compare-row.mkt-compare-head {
        display: none;
      }

      .mkt-compare-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 16px 20px;
      }

      .mkt-compare-cell:last-child {
        border-bottom: none;
      }

      .mkt-compare-row .mkt-compare-cell:nth-child(2) {
        border-right: none;
        border-top: none;
      }

      .mkt-compare-row:last-child .mkt-compare-cell:last-child {
        border-bottom: none;
      }

      .mkt-compare-cell::before {
        content: attr(data-col);
        display: block;
        font-size: 9.5px;
        font-weight: 500;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        margin-bottom: 6px;
      }

      .mkt-compare-cell:first-child::before {
        display: none;
      }

      /* ── Steps section ───────────────────────────────────── */
      .mkt-steps {
        padding: 80px 20px 72px;
      }

      .mkt-steps-h2 {
        letter-spacing: -1.5px;
      }

      .mkt-steps-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
      }

      .mkt-step-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 28px 24px;
      }

      .mkt-step-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
      }

      .mkt-step-card:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .mkt-step-num {
        font-size: 40px;
        margin-bottom: 28px;
      }

      /* ── How It Works Z-fold ─────────────────────────────── */
      .hiw-zfold {
        padding: 72px 20px 60px;
      }

      .hiw-zfold-header {
        margin-bottom: 48px;
      }

      .hiw-zfold-item,
      .hiw-zfold-item.hiw-zfold-reverse {
        flex-direction: column;
        gap: 24px;
      }

      .hiw-zfold-media {
        flex: none;
        width: 100%;
        height: clamp(200px, 55vw, 320px);
      }

      .hiw-zfold-body {
        max-width: 100%;
      }

      /* ── Final CTA ────────────────────────────────────── */
      .mkt-final {
        padding: 80px 24px 64px;
      }

      .final-h2 {
        font-size: clamp(36px, 4.5vw, 56px);
        letter-spacing: -2px;
      }

      .final-sub {
        font-size: 15px;
      }

      .final-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .btn-final-white,
      .btn-final-ghost {
        justify-content: center;
      }

      .final-stats {
        flex-wrap: wrap;
        border-radius: 16px;
      }

      .fstat {
        flex: 1 0 40%;
        padding: 18px 20px;
      }

      .fstat+.fstat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE - short viewports (MacBook 800px height)
       ═══════════════════════════════════════════════════════ */
    @media (max-height: 860px) {
      .mkt-hero {
        justify-content: center;
        padding-top: 96px;
        padding-bottom: 120px;
      }

      .hero-top {
        margin-bottom: 36px;
      }

      .hero-cards {
        height: 280px;
      }

      .hero-bottom {
        bottom: 24px;
        gap: 10px;
      }
    }

    /* Even shorter viewports (small laptops, ~700px tall) still overflowed the
       hero's centered content up past the fixed header — trim further.
       !important because this stylesheet has duplicate/scattered .mkt-hero
       rules elsewhere at equal specificity that would otherwise win on
       source order alone. */
    @media (max-height: 860px) {

      /* Below this height the hero's centered flex content doesn't fit its
         100vh box, and overflow+centering pushes it up past the fixed
         header. Instead of shrinking every child to force a fit (fragile,
         breaks again at the next shorter device), let the section grow to
         fit its own content: height:auto + min-height keeps it at least a
         full screen tall but never shorter than what it actually contains,
         so nothing overflows or centers into the header. Anything below
         the fold just requires a normal page scroll, same as any tall page. */
      .mkt-hero {
        height: auto !important;
        min-height: 100vh !important;
        justify-content: flex-start !important;
        overflow: visible !important;
        gap: 24px !important;
        padding-top: 96px !important;
        padding-bottom: 56px !important;
      }
    }

    /* === Unified Header/Footer === */
    .site-footer {
      background: #0D0D1A;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 72px 0 36px;
      color: rgba(255, 255, 255, 0.85);
      font-family: inherit;
    }

    .footer-container {
      width: 100%;
      max-width: 1248px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 60px;
      margin-bottom: 64px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 14px;
    }

    .footer-logo-img {
      display: block;
      width: 158px;
      height: 39px;
    }

    .footer-tagline {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.6;
      max-width: 200px;
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .footer-subsection {
      margin-top: 32px;
    }

    .footer-heading {
      font-size: 0.8125rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.38);
      text-decoration: none;
      transition: color 0.22s;
    }

    .footer-col a:hover {
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copyright {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.28);
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .footer-social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      color: rgba(255, 255, 255, 0.38);
      text-decoration: none;
      transition: color 0.22s, background 0.22s;
    }

    .footer-social-btn:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 1024px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

    @media (max-width: 640px) {
      .footer-columns {
        grid-template-columns: 1fr 1fr;
      }

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

    /* ─── Steps section ─────────────────────────────────── */
    .mkt-steps {
      position: relative;
      background: var(--dark);
      padding: 120px var(--px) 110px;
      overflow: hidden;
    }

    .mkt-steps::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .mkt-steps::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
      background-size: 28px 28px;
      -webkit-mask-image: radial-gradient(circle 220px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
      mask-image: radial-gradient(circle 220px at var(--mx, -9999px) var(--my, -9999px), black 0%, transparent 100%);
    }

    .mkt-steps-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }

    .mkt-steps-header {
      margin-bottom: 72px;
    }

    .mkt-steps-h2 {
      font-size: clamp(32px, 4.2vw, 60px);
      font-weight: 400;
      letter-spacing: -2px;
      line-height: 1.05;
      color: #fff;
      margin: 0 0 20px;
      max-width: 860px;
    }

    .mkt-steps-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.7;
      max-width: 480px;
      margin: 0;
    }

    /* 4-column cards grid */
    .mkt-steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      overflow: hidden;
    }

    .mkt-step-card {
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mkt-step-card:last-child {
      border-right: none;
    }

    .mkt-step-num {
      font-size: 52px;
      font-weight: 600;
      letter-spacing: -3px;
      color: rgba(255, 255, 255, 0.07);
      line-height: 1;
      margin-bottom: 40px;
      user-select: none;
    }

    .mkt-step-title {
      font-size: 16px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.88);
      letter-spacing: -0.2px;
      line-height: 1.3;
      margin: 0 0 12px;
    }

    .mkt-step-body {
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.72;
      color: rgba(255, 255, 255, 0.42);
      margin: 0;
      flex: 1;
    }

    .mkt-step-time {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 28px;
      font-size: 11.5px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.2px;
    }

    .mkt-step-time svg {
      flex-shrink: 0;
      opacity: 0.5;
    }

    /* ─── FAQ ───────────────────────────────────────────── */
    .mkt-faq {
      background: #fff;
      padding: 120px var(--px) 110px;
      border-top: 1px solid rgba(15, 15, 15, 0.06);
    }

    .mkt-faq-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      gap: 80px;
      align-items: flex-start;
    }

    .mkt-faq-left {
      flex-shrink: 0;
      max-width: 360px;
      position: sticky;
      top: 100px;
    }

    .mkt-faq-h2 {
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 400;
      letter-spacing: -1.2px;
      line-height: 1.1;
      color: #0f0f0f;
      margin: 0 0 16px;
    }

    .mkt-faq-sub {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: #525252;
      margin: 0;
    }

    .mkt-faq-list {
      flex: 1;
      min-width: 0;
    }

    .mkt-faq-item {
      border-top: 1px solid rgba(15, 15, 15, 0.08);
    }

    .mkt-faq-item:last-child {
      border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    }

    .mkt-faq-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: 100%;
      padding: 26px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.5;
      color: #0f0f0f;
      letter-spacing: -0.1px;
      transition: color 0.2s ease;
    }

    .mkt-faq-trigger[aria-expanded="true"] {
      color: #8A3FFC;
    }

    .mkt-faq-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid rgba(15, 15, 15, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 300;
      color: rgba(15, 15, 15, 0.5);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .mkt-faq-trigger[aria-expanded="true"] .mkt-faq-icon {
      border-color: #8A3FFC;
      color: #8A3FFC;
      background: rgba(138, 63, 252, 0.06);
    }

    .mkt-faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.34s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mkt-faq-answer[data-open="true"] {
      grid-template-rows: 1fr;
    }

    .mkt-faq-answer-inner {
      overflow: hidden;
      min-height: 0;
    }

    .mkt-faq-answer-text {
      padding: 0 40px 26px 0;
      font-size: 14.5px;
      font-weight: 300;
      line-height: 1.75;
      color: #0f0f0f;
      margin: 0;
    }

    /* ─── Comparison table ───────────────────────────────── */
    .mkt-compare {
      background: var(--dark);
      padding: 120px var(--px) 110px;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .mkt-compare-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .mkt-compare-header {
      margin-bottom: 64px;
    }

    .mkt-compare-h2 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 400;
      letter-spacing: -2px;
      line-height: 1.04;
      color: #fff;
      margin: 0 0 16px;
      max-width: 700px;
    }

    .mkt-compare-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      max-width: 480px;
      margin: 0;
    }

    /* Table */
    .mkt-compare-table {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
    }

    .mkt-compare-row {
      display: grid;
      grid-template-columns: 158px 1fr 1fr 1fr 1fr;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mkt-compare-row:last-child {
      border-bottom: none;
    }

    .mkt-compare-row.mkt-compare-head {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mkt-compare-cell {
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mkt-compare-cell:last-child {
      border-right: none;
    }

    /* Header row cells: consistent top padding */
    .mkt-compare-head .mkt-compare-cell {
      padding-top: 18px;
      padding-bottom: 18px;
      justify-content: flex-start;
    }

    /* ImagineArt column highlight */
    .mkt-compare-row .mkt-compare-cell:nth-child(2) {
      background: rgba(61, 186, 128, 0.05);
    }

    .mkt-compare-head .mkt-compare-cell:nth-child(2) {
      box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5);
      background: rgba(61, 186, 128, 0.07);
    }

    /* Alternating row tints */
    .mkt-compare-row:not(.mkt-compare-head):nth-child(even) {
      background: rgba(255, 255, 255, 0.015);
    }

    .mkt-compare-row:not(.mkt-compare-head):nth-child(even) .mkt-compare-cell:nth-child(2) {
      background: rgba(61, 186, 128, 0.07);
    }

    /* Head labels */
    .mkt-col-name {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin: 0;
    }

    .mkt-compare-head .mkt-compare-cell:nth-child(2) .mkt-col-name {
      color: #fff;
      letter-spacing: 0.7px;
    }

    .mkt-col-sub {
      font-size: 10px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.22);
      margin: 0;
      margin-top: 3px;
      line-height: 1.45;
    }

    .mkt-compare-head .mkt-compare-cell:nth-child(2) .mkt-col-sub {
      color: rgba(255, 255, 255, 0.5);
    }

    /* Row label */
    .mkt-row-label {
      font-size: 11.5px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.45);
      margin: 0;
      line-height: 1.4;
    }

    /* Cell values */
    .mkt-cell-val {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.28);
      line-height: 1.6;
    }

    .mkt-compare-row .mkt-compare-cell:nth-child(2) .mkt-cell-val {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      font-size: 12.5px;
    }

    .mkt-cell-val.mkt-partial {
      color: rgba(255, 255, 255, 0.5);
    }

    .mkt-cell-val.mkt-positive-comp {
      color: rgba(255, 255, 255, 0.75);
    }

    /* Icons */
    .mkt-icon-check {
      flex-shrink: 0;
      color: rgba(255, 255, 255, 0.85);
      display: flex;
      align-items: center;
    }

    .mkt-icon-minus {
      flex-shrink: 0;
      color: rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
    }

    /* ─── How It Works Z-fold ────────────────────────────── */
    .hiw-zfold {
      background: #F7F7F7;
      padding: 88px var(--px) 80px;
    }

    .hiw-zfold-inner {
      max-width: 1140px;
      margin: 0 auto;
    }

    .hiw-zfold-header {
      margin-bottom: 56px;
    }

    .hiw-zfold-list {
      display: flex;
      flex-direction: column;
      gap: clamp(64px, 9vw, 120px);
    }

    .hiw-zfold-item {
      display: flex;
      align-items: center;
      gap: clamp(40px, 6vw, 96px);
    }

    .hiw-zfold-item.hiw-zfold-reverse {
      flex-direction: row-reverse;
    }

    .hiw-zfold-media {
      flex: 0 0 clamp(260px, 44%, 540px);
      height: clamp(260px, 36vw, 500px);
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #ebebeb;
    }

    .hiw-zfold-media img,
    .hiw-zfold-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hiw-zfold-play {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.55);
      border: none;
      cursor: pointer;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      transition: background 0.15s;
    }

    .hiw-zfold-play:hover {
      background: rgba(0, 0, 0, 0.78);
    }

    .hiw-zfold-text {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hiw-zfold-step {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #525252;
      margin: 0;
    }

    .hiw-zfold-title {
      font-size: clamp(22px, 2.6vw, 34px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.5px;
      color: #0f0f0f;
      margin: 0;
    }

    .hiw-zfold-body {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.7;
      color: #0f0f0f;
      margin: 0 0 16px;
      max-width: 460px;
    }

    .hiw-zfold-cta {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      height: 46px;
      padding: 0 22px;
      border-radius: 10px;
      background: #0f0f0f;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.18s;
    }

    .hiw-zfold-cta:hover {
      background: #2a2a2a;
    }

    /* Z-fold extras */
    .hiw-zfold-callout {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 12px;
      background: rgba(15, 15, 15, 0.04);
      border: 1px solid rgba(15, 15, 15, 0.07);
      margin-bottom: 20px;
    }

    .hiw-zfold-callout-icon {
      flex-shrink: 0;
      margin-top: 2px;
      color: rgba(15, 15, 15, 0.5);
    }

    .hiw-zfold-callout p {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: #525252;
      margin: 0;
    }

    .hiw-zfold-ministeps {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .hiw-zfold-ministep {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid rgba(15, 15, 15, 0.07);
      background: #fff;
    }

    .hiw-zfold-ministep-n {
      font-size: 13px;
      font-weight: 300;
      color: rgba(15, 15, 15, 0.5);
      flex-shrink: 0;
      min-width: 12px;
      line-height: 1;
    }

    .hiw-zfold-ministep-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .hiw-zfold-ministep-title {
      font-size: 13.5px;
      font-weight: 500;
      color: #0f0f0f;
      line-height: 1.3;
    }

    .hiw-zfold-ministep-sub {
      font-size: 12px;
      font-weight: 300;
      color: #525252;
      line-height: 1.4;
    }

    .hiw-zfold-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 16px;
      border-radius: 100px;
      border: 1px solid rgba(15, 15, 15, 0.1);
      background: rgba(15, 15, 15, 0.03);
      font-size: 12px;
      font-weight: 400;
      color: rgba(15, 15, 15, 0.5);
      letter-spacing: 0.1px;
      margin-top: 4px;
    }

    .hiw-zfold-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #3dba80;
      flex-shrink: 0;
    }

    .hiw-zfold-steps-list {
      list-style: none;
      margin: 0 0 16px;
      padding: 0;
      border-top: 1px solid rgba(15, 15, 15, 0.08);
      counter-reset: steps;
    }

    .hiw-zfold-steps-list li {
      counter-increment: steps;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    }

    .hiw-zfold-steps-list li::before {
      content: counter(steps);
      font-size: 11px;
      font-weight: 400;
      color: rgba(15, 15, 15, 0.5);
      flex-shrink: 0;
      width: 16px;
      line-height: 1.6;
    }

    .hiw-zfold-steps-list li>span {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .hiw-zfold-steps-title {
      font-size: 13.5px;
      font-weight: 500;
      color: #0f0f0f;
      line-height: 1.3;
    }

    .hiw-zfold-steps-sub {
      font-size: 12px;
      font-weight: 300;
      color: #525252;
      line-height: 1.4;
    }

    .hiw-zfold-quote {
      margin: 0 0 16px;
      padding: 0 0 0 14px;
      border-left: 2px solid rgba(15, 15, 15, 0.12);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: #525252;
    }

    .hiw-zfold-check {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 400;
      color: rgba(15, 15, 15, 0.5);
      margin: 0;
    }

    .hiw-zfold-stats {
      display: flex;
      align-items: stretch;
      gap: 0;
      border: 1px solid rgba(15, 15, 15, 0.08);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .hiw-zfold-stat {
      flex: 1;
      padding: 20px 22px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hiw-zfold-stat-divider {
      width: 1px;
      background: rgba(15, 15, 15, 0.08);
      flex-shrink: 0;
    }

    .hiw-zfold-stat-num {
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 400;
      letter-spacing: -1.5px;
      line-height: 1;
      color: #0f0f0f;
    }

    .hiw-zfold-stat-desc {
      font-size: 12px;
      font-weight: 300;
      line-height: 1.5;
      color: #525252;
    }

    .hiw-zfold-controls {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 28px;
    }

    .hiw-zfold-control {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid rgba(15, 15, 15, 0.07);
      background: #fff;
    }

    .hiw-zfold-control-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: rgba(15, 15, 15, 0.5);
    }

    .hiw-zfold-control-val {
      font-size: 13px;
      font-weight: 400;
      color: #0f0f0f;
      line-height: 1.4;
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE - tablet ≤ 1024px
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {

      /* Hero v3 tablet */
      .hero-top {
        padding: 0 40px;
        margin-bottom: 20px;
      }

      .hero-prompt-wrap,
      .hero-chips {
        width: calc(100% - 80px);
      }

      /* Reduce card height slightly on tablet */
      .hero-cards {
        height: 240px;
      }

      .styles-bento {
        grid-template-columns: repeat(6, 1fr);
      }

      .s-card:nth-child(1) {
        grid-column: span 3;
        height: 320px;
      }

      .s-card:nth-child(2) {
        grid-column: span 3;
        height: 320px;
      }

      .s-card:nth-child(3) {
        grid-column: span 3;
        height: 320px;
      }

      .s-card:nth-child(4) {
        grid-column: span 3;
        height: 280px;
      }

      .s-card:nth-child(5) {
        grid-column: span 3;
        height: 280px;
      }

      .s-card:nth-child(6) {
        grid-column: span 3;
        height: 280px;
      }

      .s-card:nth-child(7) {
        grid-column: span 4;
        height: 200px;
      }

      .s-card:nth-child(8) {
        grid-column: span 2;
        height: 200px;
      }

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

      .ads-card-stack {
        flex-direction: row;
        gap: 12px;
      }

      .ads-card-stat {
        flex: 1;
        height: 160px;
      }

      .ads-card-secondary {
        height: 260px;
      }
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE - mobile ≤ 768px
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* ── Hero v3 mobile ──────────────────────────────── */
      .mkt-hero {
        padding-top: 44px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 160px;
      }

      .hero-top {
        padding: 0 24px;
        margin-bottom: 18px;
        gap: 8px;
      }

      .hero-studio-title {
        font-size: clamp(30px, 9vw, 48px);
        letter-spacing: 3px;
      }

      .hero-sub {
        font-size: 15px;
      }

      /* ── Hero cards, expanding accordion ─────────────── */
      .hero-cards-wrap {
        max-width: none;
      }

      .hero-cards {
        height: 180px;
        overflow: hidden;
        padding: 0 20px;
        gap: 6px;
      }

      .hi {
        flex: 1;
        width: auto;
        transition: flex 0.52s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .hi.active {
        flex: 5;
      }

      .hi-label {
        opacity: 0;
        transform: translateY(3px);
        transition: opacity 280ms ease 180ms, transform 280ms ease 180ms;
      }

      .hi.active .hi-label {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── Shared ───────────────────────────────────────── */
      .mkt-inner {
        padding: 0 20px;
      }

      .sec-h2 {
        letter-spacing: -1px;
      }

      /* ── Ads ──────────────────────────────────────────── */
      .mkt-ads {
        padding: 72px 0;
      }

      .mkt-ads-inner {
        padding: 0 20px;
        gap: 32px;
      }

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

      .ads-card-main {
        height: 420px;
      }

      .ads-card-stack {
        flex-direction: column;
        gap: 10px;
      }

      .ads-card-stat {
        height: 160px;
        padding: 22px;
      }

      .ads-card-secondary {
        height: 260px;
      }

      .ads-features-row {
        grid-template-columns: 1fr;
        border-radius: 16px;
      }


      /* ── Templates ────────────────────────────────────── */
      .templates {
        padding: 72px 0;
      }

      .templates-inner {
        padding: 0 20px;
        gap: 32px;
      }

      .templates-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .templates-head p {
        text-align: left;
        max-width: 100%;
      }

      .styles-bento {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .s-card:nth-child(n) {
        grid-column: span 1 !important;
        height: 180px !important;
      }

      .s-card:nth-child(1),
      .s-card:nth-child(2) {
        height: 240px !important;
      }

      /* ── Gallery ──────────────────────────────────────── */
      .gallery-header {
        padding: 64px 24px 36px;
      }

      .gallery-pin-wrap {
        height: auto;
      }

      .gallery-pin {
        position: relative;
        height: auto;
        display: block;
      }

      .gallery-grid {
        transform: none;
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
      }

      .gallery-item {
        aspect-ratio: 1/1;
      }

      /* ── Hero tabs (mobile) ──────────────────────────── */
      .hero-tab {
        padding: 6px 10px;
        font-size: 10px;
      }

      /* ── HIW card labels (mobile) ─────────────────────── */
      .hiw-card-label {
        font-size: 8px;
        padding: 3px 7px;
      }

      /* ── FAQ ─────────────────────────────────────────────── */
      .mkt-faq {
        padding: 80px 20px 72px;
      }

      .mkt-faq-inner {
        flex-direction: column;
        gap: 40px;
      }

      .mkt-faq-left {
        max-width: 100%;
        position: static;
      }

      /* ── Comparison table ────────────────────────────────── */
      .mkt-compare {
        padding: 80px 20px 72px;
      }

      .mkt-compare-header {
        margin-bottom: 48px;
      }

      .mkt-compare-table {
        border-radius: 12px;
      }

      .mkt-compare-row {
        grid-template-columns: 1fr;
      }

      .mkt-compare-row.mkt-compare-head {
        display: none;
      }

      .mkt-compare-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 16px 20px;
      }

      .mkt-compare-cell:last-child {
        border-bottom: none;
      }

      .mkt-compare-row .mkt-compare-cell:nth-child(2) {
        border-right: none;
        border-top: none;
      }

      .mkt-compare-row:last-child .mkt-compare-cell:last-child {
        border-bottom: none;
      }

      .mkt-compare-cell::before {
        content: attr(data-col);
        display: block;
        font-size: 9.5px;
        font-weight: 500;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        margin-bottom: 6px;
      }

      .mkt-compare-cell:first-child::before {
        display: none;
      }

      /* ── Steps section ───────────────────────────────────── */
      .mkt-steps {
        padding: 80px 20px 72px;
      }

      .mkt-steps-h2 {
        letter-spacing: -1.5px;
      }

      .mkt-steps-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
      }

      .mkt-step-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 28px 24px;
      }

      .mkt-step-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
      }

      .mkt-step-card:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .mkt-step-num {
        font-size: 40px;
        margin-bottom: 28px;
      }

      /* ── How It Works Z-fold ─────────────────────────────── */
      .hiw-zfold {
        padding: 72px 20px 60px;
      }

      .hiw-zfold-header {
        margin-bottom: 48px;
      }

      .hiw-zfold-item,
      .hiw-zfold-item.hiw-zfold-reverse {
        flex-direction: column;
        gap: 24px;
      }

      .hiw-zfold-media {
        flex: none;
        width: 100%;
        height: clamp(200px, 55vw, 320px);
      }

      .hiw-zfold-body {
        max-width: 100%;
      }

      /* ── Final CTA ────────────────────────────────────── */
      .mkt-final {
        padding: 80px 24px 64px;
      }

      .final-h2 {
        font-size: clamp(36px, 4.5vw, 56px);
        letter-spacing: -2px;
      }

      .final-sub {
        font-size: 15px;
      }

      .final-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .btn-final-white,
      .btn-final-ghost {
        justify-content: center;
      }

      .final-stats {
        flex-wrap: wrap;
        border-radius: 16px;
      }

      .fstat {
        flex: 1 0 40%;
        padding: 18px 20px;
      }

      .fstat+.fstat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    /* ═══════════════════════════════════════════════════════
       RESPONSIVE - short viewports (MacBook 800px height)
       ═══════════════════════════════════════════════════════ */
    @media (max-height: 860px) {
      .mkt-hero {
        justify-content: center;
        padding-top: 96px;
        padding-bottom: 48px;
      }

      .hero-top {
        margin-bottom: 0;
      }
    }

    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .site-nav.is-scrolled {
      background: rgba(10, 10, 11, 0.72);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      border-bottom-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .site-nav-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: calc(1200px + 24px * 2);
      margin: 0 auto;
      padding: 0 24px;
      height: 68px;
    }

    .site-nav-logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .site-nav-logo-img {
      display: block;
      height: 27px;
      width: auto;
    }

    .site-nav-links {
      position: absolute;
      inset: 0;
      margin: auto;
      height: 100%;
      width: fit-content;
      display: flex;
      align-items: center;
    }

    .nav-list {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-item {
      position: relative;
    }

    .nav-link,
    .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      padding: 6px 16px;
      border-radius: 10px;
      transition: color 0.22s, background 0.22s;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      background: none;
      border: none;
      font-family: inherit;
    }

    .site-nav .nav-link,
    .site-nav .nav-trigger {
      color: #fff !important;
      font-weight: 600 !important;
    }

    .nav-link:hover,
    .nav-trigger:hover,
    .nav-item.is-open .nav-trigger {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .site-nav .nav-link:hover,
    .site-nav .nav-trigger:hover,
    .site-nav .nav-item.is-open .nav-trigger {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-chevron {
      transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
      opacity: 0.5;
    }

    .nav-item.is-open .nav-chevron {
      transform: rotate(180deg);
    }

    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.13);
      border-radius: 16px;
      padding: 8px;
      min-width: 200px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
      z-index: 200;
    }

    .nav-item.is-open .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .site-nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .btn-site-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      background: #fff;
      border: 1px solid #fff;
      color: #0a0a0b;
      border-radius: 9999px;
      padding: 10px 20px;
      text-decoration: none;
      transition: background 0.22s, box-shadow 0.22s;
      white-space: nowrap;
      font-family: inherit;
      cursor: pointer;
    }

    .btn-site-dark:hover {
      background: rgba(255, 255, 255, 0.88);
    }

    .site-nav.is-scrolled .btn-site-dark {
      background: #fff;
      border-color: transparent;
      color: #0a0a0b;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .site-nav.is-scrolled .btn-site-dark:hover {
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: transparent;
      cursor: pointer;
    }

    .burger {
      display: inline-flex;
      flex-direction: column;
      gap: 6px;
    }

    .burger::before,
    .burger::after {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-toggle[aria-expanded="true"] .burger::before {
      transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .burger::after {
      transform: translateY(-4px) rotate(-45deg);
    }

    body.mobile-nav-open,
    html.mobile-nav-open {
      overflow: hidden;
    }

    .mobile-nav-open .site-nav-links {
      display: block;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: calc(100vh - 68px);
      background: #0a0a0b;
      padding: 24px;
      overflow-y: scroll;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
      z-index: 99;
    }

    .mobile-nav-open .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
    }

    .mobile-nav-open .nav-link,
    .mobile-nav-open .nav-trigger {
      width: 100%;
      justify-content: space-between;
      font-size: 1rem;
      padding: 12px 16px;
    }

    .mobile-nav-open .dropdown {
      display: none;
      position: static;
      box-shadow: none;
      border: none;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      margin-top: 4px;
      padding: 6px;
    }

    .mobile-nav-open .nav-item.is-open .dropdown {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: none;
    }

    .nav-item.has-mega {
      position: static;
    }

    .dropdown-mega {
      position: fixed;
      top: 68px;
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      width: 760px;
      max-width: calc(100vw - 48px);
      padding: 0;
      min-width: 0;
    }

    .nav-item.is-open .dropdown-mega {
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-community {
      position: fixed;
      top: 68px;
      left: 50%;
      right: auto;
      transform: translateX(-50%) translateY(-6px);
      width: 580px;
      max-width: calc(100vw - 48px);
      padding: 0;
      min-width: 0;
    }

    .nav-item.is-open .dropdown-community {
      transform: translateX(-50%) translateY(0);
    }

    .mega-inner,
    .community-inner {
      display: flex;
      align-items: stretch;
      padding: 20px 24px;
      gap: 0;
    }

    .mega-col {
      display: flex;
      flex-direction: column;
      padding: 4px 16px 4px 0;
      min-width: 0;
    }

    .mega-col:last-child {
      padding-right: 0;
    }

    .mega-col-featured {
      flex-shrink: 0;
      width: 236px;
    }

    .mega-divider-v {
      width: 1px;
      background: rgba(0, 0, 0, 0.07);
      margin: 0 16px;
      flex-shrink: 0;
      align-self: stretch;
    }

    .mega-label {
      display: block;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #8B8BAB;
      margin-bottom: 12px;
    }

    .mega-feat-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .mega-feat-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px;
      border-radius: 10px;
      transition: background 0.22s;
    }

    .mega-feat-item:hover {
      background: rgba(0, 0, 0, 0.04);
    }

    .mega-feat-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
      color: #4B4B6B;
      transition: background 0.22s, color 0.22s;
    }

    .mega-feat-item:hover .mega-feat-icon {
      background: rgba(138, 63, 252, 0.08);
      color: #8A3FFC;
    }

    .mega-feat-body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .mega-feat-name {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #0D0D1A;
    }

    .mega-feat-desc {
      display: block;
      font-size: 0.75rem;
      color: #8B8BAB;
      line-height: 1.45;
    }

    .mega-cat-hd {
      display: inline-flex;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #8A3FFC;
      margin-bottom: 4px;
      transition: opacity 0.22s;
    }

    .mega-cat-hd:hover {
      opacity: 0.75;
    }

    .mega-cat-hd--gap {
      margin-top: 18px;
    }

    .mega-link-list {
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mega-lnk {
      display: block;
      font-size: 0.8125rem;
      color: #4B4B6B;
      padding: 4px 8px;
      border-radius: 6px;
      white-space: nowrap;
      transition: color 0.22s, background 0.22s;
      text-decoration: none;
    }

    .mega-lnk:hover {
      color: #0D0D1A;
      background: rgba(0, 0, 0, 0.04);
    }

    .mega-explore-all {
      display: inline-flex;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #8A3FFC;
      margin-top: 14px;
      padding: 4px 8px;
      border-radius: 6px;
      transition: background 0.22s;
      text-decoration: none;
    }

    .mega-explore-all:hover {
      background: rgba(138, 63, 252, 0.07);
    }

    .community-intro {
      display: flex;
      flex-direction: column;
      width: 210px;
      flex-shrink: 0;
      padding: 4px 0;
    }

    .community-desc {
      font-size: 0.8125rem;
      color: #4B4B6B;
      line-height: 1.55;
      margin: 0;
    }

    .community-grid {
      display: grid;
      grid-template-rows: repeat(3, auto);
      grid-auto-flow: column;
      gap: 4px;
      flex: 1;
      align-content: start;
    }

    .community-social {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 6px;
      border-radius: 10px;
      font-size: 0.6875rem;
      font-weight: 500;
      color: #4B4B6B;
      text-align: center;
      transition: color 0.22s, background 0.22s;
      text-decoration: none;
    }

    .community-social:hover {
      color: #0D0D1A;
      background: rgba(0, 0, 0, 0.04);
    }

    .mobile-nav-open .dropdown-mega,
    .mobile-nav-open .dropdown-community {
      position: static;
      width: 100%;
      max-width: 100%;
      transform: none;
    }

    .mobile-nav-open .mega-inner,
    .mobile-nav-open .community-inner {
      flex-direction: column;
      padding: 8px 0;
      gap: 12px;
    }

    .mobile-nav-open .mega-col {
      padding-right: 0;
      width: 100%;
    }

    .mobile-nav-open .community-intro {
      width: 100%;
    }

    .mobile-nav-open .mega-col-featured {
      width: 100%;
    }

    .mobile-nav-open .mega-divider-v {
      display: none;
    }

    .mobile-nav-open .community-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: none;
      grid-auto-flow: row;
    }

    @media (max-width: 1024px) {
      .site-nav-links {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @media (max-width: 640px) {
      .site-nav-inner {
        height: 60px;
      }

      .mobile-nav-open .site-nav-links {
        top: 60px;
        height: calc(100vh - 60px);
      }
    }

    /* ─── OLD NAVBAR (kept only for overrides below) ─────── */
    .navbar {
      width: 100%;
      padding: 16px 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: padding 0.3s ease;
    }

    .navbar-inner {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: 10px clamp(40px, 12vw, 220px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 22px;
      background: transparent;
      border: 1px solid transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      transition: background 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .navbar.scrolled {
      padding: 10px 16px;
    }

    .navbar.scrolled .navbar-inner {
      max-width: min(1180px, calc(100vw - 32px));
      margin: 0 auto;
      padding: 8px 12px;
      background: rgba(10, 10, 11, 0.72);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      border-color: transparent;
      border-radius: 22px;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      overflow: visible;
      line-height: 0;
    }

    .logo-white {
      display: block;
    }

    .logo-dark {
      display: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0.14px;
      color: rgba(15, 15, 15, 0.75);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.15s, background 0.15s;
    }

    .nav-link:hover {
      color: #0f0f0f;
      background: rgba(15, 15, 15, 0.05);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-trigger {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      gap: 5px;
    }

    .nav-dropdown-trigger svg {
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: rgba(10, 10, 11, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 22px;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      padding: 8px;
      min-width: 220px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.22s ease;
      z-index: 200;
    }

    .nav-dropdown-menu::before {
      content: '';
      position: absolute;
      top: -14px;
      left: 0;
      right: 0;
      height: 14px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-item {
      display: flex;
      align-items: center;
      padding: 11px 14px;
      border-radius: 14px;
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      transition: background 0.12s, color 0.12s;
      white-space: nowrap;
    }

    .nav-dropdown-item:hover {
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
    }

    .nav-dropdown-item.current {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-dropdown-trigger {
      color: rgba(255, 255, 255, 0.75);
    }

    .nav-dropdown-trigger:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .navbar-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 34px;
      padding: 0 14px;
      border-radius: 9px;
      font-size: 13.5px;
      font-weight: 300;
      letter-spacing: 0.14px;
      white-space: nowrap;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.15s;
      font-family: inherit;
    }

    .navbar-btn-ghost {
      background: transparent;
      color: rgba(255, 255, 255, 0.75);
      border-radius: 22px;
    }

    .navbar-btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .navbar:not(.scrolled) .navbar-btn-ghost {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar:not(.scrolled) .navbar-btn-ghost:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar.scrolled .navbar-btn-ghost {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar.scrolled .navbar-btn-ghost:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar-btn-dark {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: none;
      border-radius: 22px;
    }

    .navbar-btn-dark:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .navbar.scrolled .navbar-btn-dark {
      background: #fff;
      border-color: transparent;
      color: #0a0a0b;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .navbar.scrolled .navbar-btn-dark:hover {
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
      transform: scale(1.02);
    }

    .navbar:not(.scrolled) .nav-link {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar:not(.scrolled) .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar.scrolled .nav-link {
      color: rgba(255, 255, 255, 0.7);
    }

    .navbar.scrolled .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    /* ─── Hamburger ───────────────────────────────────────── */
    .nav-hamburger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: transparent;
      border: none;
      cursor: pointer;
      color: #fff;
      transition: background 0.15s;
      padding: 0;
      flex-shrink: 0;
    }

    .nav-hamburger:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled .nav-hamburger {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar.scrolled .nav-hamburger:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-hamburger .bar {
      display: block;
      width: 18px;
      height: 1.5px;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
      transform-origin: center;
    }

    .nav-hamburger .bars {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .nav-hamburger.open .bar:nth-child(1) {
      transform: translateY(3.25px) rotate(45deg);
    }

    .nav-hamburger.open .bar:nth-child(2) {
      transform: translateY(-3.25px) rotate(-45deg);
    }

    /* ─── Mobile menu - full-screen dark overlay ─────────── */
    @keyframes mobileMenuIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

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

    .nav-mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 101;
      background: #0a0a0a;
      flex-direction: column;
    }

    .nav-mobile-menu.open {
      display: flex;
      animation: mobileMenuIn 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Top bar inside overlay */
    .nav-mobile-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      flex-shrink: 0;
    }

    .nav-mobile-close {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.6);
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.15s;
    }

    .nav-mobile-close:hover {
      color: #fff;
    }

    /* Vertically centered body */
    .nav-mobile-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 40px;
    }

    .nav-mobile-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .nav-mobile-link {
      display: block;
      text-align: center;
      padding: 10px 32px;
      border-radius: 10px;
      font-size: 22px;
      font-weight: 300;
      letter-spacing: -0.2px;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.15s, background 0.15s;
    }

    .nav-mobile-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .nav-mobile-divider {
      display: block;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      width: calc(100% - 48px);
      margin: 16px 0;
    }

    .nav-mobile-actions {
      padding: 0 24px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .nav-mobile-actions .navbar-btn {
      height: 44px;
      padding: 0 24px;
      font-size: 14px;
      font-weight: 300;
      border-radius: 14px;
    }

    .nav-mobile-actions .navbar-btn-dark {
      background: #fff;
      color: #0f0f0f;
      border: none;
    }

    .nav-mobile-actions .navbar-btn-dark:hover {
      background: #e8e8e8;
    }

    /* ─── Responsive breakpoint ──────────────────────────── */
    @media (max-width: 820px) {
      .nav-links {
        display: none;
      }

      .nav-actions {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .navbar-inner {
        padding: 10px 20px;
      }

      .navbar.scrolled {
        padding: 8px 0;
      }
    }

    /* Page-level navbar overrides */
    .navbar-btn-ghost {
      display: none !important;
    }

    .nav-link-active {
      color: #0f0f0f !important;
      background: rgba(15, 15, 15, 0.09) !important;
      font-weight: 300 !important;
    }

    .navbar:not(.scrolled) .nav-link {
      color: rgba(255, 255, 255, 0.75) !important;
    }

    .navbar:not(.scrolled) .nav-dropdown-trigger {
      color: rgba(255, 255, 255, 0.75) !important;
    }

    .navbar:not(.scrolled) .nav-link:hover {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.1) !important;
    }

    .navbar:not(.scrolled) .bar {
      background: #fff !important;
    }

    .navbar:not(.scrolled) .nav-link-active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.18) !important;
    }

    .navbar.scrolled .nav-link-active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.14) !important;
    }

    .nav-link {
      font-weight: 300 !important;
    }

    /* Reset global nav/footer element selectors that break injected header and footer */
    nav.site-nav-links,
    .site-nav-links {
      position: static !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      height: auto !important;
      z-index: auto !important;
      padding: 0 !important;
      background: transparent !important;
      backdrop-filter: none !important;
      border: none !important;
      box-shadow: none !important;
      display: flex !important;
      align-items: center !important;
      justify-content: flex-start !important;
    }

    /* Restore the tablet/mobile collapse the reset above unintentionally forced off. */
    @media (max-width: 1024px) {

      nav.site-nav-links,
      .site-nav-links {
        display: none !important;
      }

      .menu-toggle {
        display: flex !important;
      }

      .site-nav-actions .btn-site-dark {
        display: none !important;
      }

      /* ...but let the hamburger's own JS-driven open state win over that collapse,
     restoring every property the reset above also force-overrode. */
      .mobile-nav-open .site-nav-links,
      .mobile-nav-open nav.site-nav-links {
        display: block !important;
        position: fixed !important;
        margin: 0 !important;
        inset: auto !important;
        top: 68px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 68px) !important;
        background: #0a0a0b !important;
        padding: 24px !important;
        overflow-y: scroll !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4) !important;
        z-index: 99 !important;
      }
    }

    nav.footer-columns,
    .footer-columns {
      position: static !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      height: auto !important;
      z-index: auto !important;
      padding: 0 !important;
      background: transparent !important;
      backdrop-filter: none !important;
      border: none !important;
      box-shadow: none !important;
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: 32px !important;
      align-items: start !important;
    }

    footer.site-footer {
      position: static !important;
      padding: 72px 0 36px !important;
      border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
      background: #0D0D1A !important;
    }

    .footer-container {
      width: 100% !important;
      max-width: 1248px !important;
      margin: 0 auto !important;
      padding: 0 24px !important;
      box-sizing: border-box !important;
    }

    .footer-top {
      display: grid !important;
      grid-template-columns: 260px 1fr !important;
      gap: 60px !important;
      margin-bottom: 64px !important;
      padding: 0 !important;
      border: none !important;
    }

    .footer-bottom {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      padding-top: 28px !important;
      border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
      flex-wrap: wrap !important;
      gap: 16px !important;
      background: transparent !important;
    }

    @media (max-width: 1024px) {
      .footer-top {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
      }

      nav.footer-columns,
      .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }

    @media (max-width: 640px) {

      nav.footer-columns,
      .footer-columns {
        grid-template-columns: 1fr 1fr !important;
      }

      .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
      }
    }

    /* ── Mega dropdown UI fixes: no underlines, better spacing ── */
    .mega-feat-item {
      text-decoration: none !important;
      padding: 12px 14px !important;
    }

    .mega-feat-name {
      text-decoration: none !important;
    }

    .mega-feat-desc {
      text-decoration: none !important;
    }

    .mega-feat-list {
      gap: 8px !important;
    }

    .mega-feat-body {
      gap: 5px !important;
    }

    .mega-feat-icon {
      width: 38px !important;
      height: 38px !important;
    }

    /* ─── ImagineArt Shared Navbar CSS ─────────────────────── */
    .navbar {
      width: 100%;
      padding: 16px 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: padding 0.3s ease;
    }

    .navbar-inner {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: 10px clamp(40px, 12vw, 220px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 22px;
      background: transparent;
      border: 1px solid transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      transition: background 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .navbar.scrolled {
      padding: 10px 16px;
    }

    .navbar.scrolled .navbar-inner {
      max-width: min(1180px, calc(100vw - 32px));
      margin: 0 auto;
      padding: 8px 12px;
      background: rgba(10, 10, 11, 0.72);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      border-color: transparent;
      border-radius: 22px;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      overflow: visible;
      line-height: 0;
    }

    .logo-white {
      display: block;
    }

    .logo-dark {
      display: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0.14px;
      color: rgba(15, 15, 15, 0.75);
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.15s, background 0.15s;
    }

    .nav-link:hover {
      color: #0f0f0f;
      background: rgba(15, 15, 15, 0.05);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-trigger {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      gap: 5px;
    }

    .nav-dropdown-trigger svg {
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: rgba(10, 10, 11, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 22px;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      padding: 8px;
      min-width: 220px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.22s ease;
      z-index: 200;
    }

    .nav-dropdown-menu::before {
      content: '';
      position: absolute;
      top: -14px;
      left: 0;
      right: 0;
      height: 14px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown-item {
      display: flex;
      align-items: center;
      padding: 11px 14px;
      border-radius: 14px;
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
      transition: background 0.12s, color 0.12s;
      white-space: nowrap;
    }

    .nav-dropdown-item:hover {
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
    }

    .nav-dropdown-item.current {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-dropdown-trigger {
      color: rgba(255, 255, 255, 0.75);
    }

    .nav-dropdown-trigger:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .navbar-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 34px;
      padding: 0 14px;
      border-radius: 9px;
      font-size: 13.5px;
      font-weight: 300;
      letter-spacing: 0.14px;
      white-space: nowrap;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.15s;
      font-family: inherit;
    }

    .navbar-btn-ghost {
      background: transparent;
      color: rgba(255, 255, 255, 0.75);
      border-radius: 22px;
    }

    .navbar-btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .navbar:not(.scrolled) .navbar-btn-ghost {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar:not(.scrolled) .navbar-btn-ghost:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar.scrolled .navbar-btn-ghost {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar.scrolled .navbar-btn-ghost:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar-btn-dark {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: none;
      border-radius: 22px;
    }

    .navbar-btn-dark:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .navbar.scrolled .navbar-btn-dark {
      background: #fff;
      border-color: transparent;
      color: #0a0a0b;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .navbar.scrolled .navbar-btn-dark:hover {
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
      transform: scale(1.02);
    }

    .navbar:not(.scrolled) .nav-link {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar:not(.scrolled) .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar.scrolled .nav-link {
      color: rgba(255, 255, 255, 0.7);
    }

    .navbar.scrolled .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    /* ─── Hamburger ───────────────────────────────────────── */
    .nav-hamburger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: transparent;
      border: none;
      cursor: pointer;
      color: #fff;
      transition: background 0.15s;
      padding: 0;
      flex-shrink: 0;
    }

    .nav-hamburger:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled .nav-hamburger {
      color: rgba(255, 255, 255, 0.75);
    }

    .navbar.scrolled .nav-hamburger:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .nav-hamburger .bar {
      display: block;
      width: 18px;
      height: 1.5px;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
      transform-origin: center;
    }

    .nav-hamburger .bars {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .nav-hamburger.open .bar:nth-child(1) {
      transform: translateY(3.25px) rotate(45deg);
    }

    .nav-hamburger.open .bar:nth-child(2) {
      transform: translateY(-3.25px) rotate(-45deg);
    }

    /* ─── Mobile menu - full-screen dark overlay ─────────── */
    @keyframes mobileMenuIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

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

    .nav-mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 101;
      background: #0a0a0a;
      flex-direction: column;
    }

    .nav-mobile-menu.open {
      display: flex;
      animation: mobileMenuIn 0.22s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Top bar inside overlay */
    .nav-mobile-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      flex-shrink: 0;
    }

    .nav-mobile-close {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.6);
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.15s;
    }

    .nav-mobile-close:hover {
      color: #fff;
    }

    /* Vertically centered body */
    .nav-mobile-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 40px;
    }

    .nav-mobile-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .nav-mobile-link {
      display: block;
      text-align: center;
      padding: 10px 32px;
      border-radius: 10px;
      font-size: 22px;
      font-weight: 300;
      letter-spacing: -0.2px;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.15s, background 0.15s;
    }

    .nav-mobile-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }

    .nav-mobile-divider {
      display: block;
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      width: calc(100% - 48px);
      margin: 16px 0;
    }

    .nav-mobile-actions {
      padding: 0 24px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .nav-mobile-actions .navbar-btn {
      height: 44px;
      padding: 0 24px;
      font-size: 14px;
      font-weight: 300;
      border-radius: 14px;
    }

    .nav-mobile-actions .navbar-btn-dark {
      background: #fff;
      color: #0f0f0f;
      border: none;
    }

    .nav-mobile-actions .navbar-btn-dark:hover {
      background: #e8e8e8;
    }

    /* ─── Responsive breakpoint ──────────────────────────── */
    @media (max-width: 820px) {
      .nav-links {
        display: none;
      }

      .nav-actions {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .navbar-inner {
        padding: 10px 20px;
      }

      .navbar.scrolled {
        padding: 8px 0;
      }
    }

    /* Page-level navbar overrides */
    .navbar-btn-ghost {
      display: none !important;
    }

    .nav-link-active {
      color: #0f0f0f !important;
      background: rgba(15, 15, 15, 0.09) !important;
      font-weight: 300 !important;
    }

    .navbar:not(.scrolled) .nav-link {
      color: rgba(255, 255, 255, 0.75) !important;
    }

    .navbar:not(.scrolled) .nav-dropdown-trigger {
      color: rgba(255, 255, 255, 0.75) !important;
    }

    .navbar:not(.scrolled) .nav-link:hover {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.1) !important;
    }

    .navbar:not(.scrolled) .bar {
      background: #fff !important;
    }

    .navbar:not(.scrolled) .nav-link-active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.18) !important;
    }

    .navbar.scrolled .nav-link-active {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.14) !important;
    }

    .nav-link {
      font-weight: 300 !important;
    }
