    :root {
      --bg: #0C0B10;
      --bg-2: #110F17;
      --bg-3: #16131E;
      --line: rgba(204, 151, 255, 0.14);
      --line-2: rgba(255, 255, 255, 0.07);
      --ink: #F4F1FA;
      --ink-2: #B4ACC4;
      --ink-3: #6E677D;
      --ink-4: #3B3748;
      --accent: #CC97FF;
      --accent-2: #A06FE0;
      --accent-ink: #0C0B10;
      --accent-soft: rgba(204, 151, 255, 0.10);
      --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
      --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
      /* font families — one variable to change them all */
      --font-display: 'Playfair Display', 'Noto Serif Thai', Georgia, serif;
      --font-ui: 'Space Grotesk', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
    }

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

    html,
    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-ui);
      -webkit-font-smoothing: antialiased
    }

    body {
      background:
        radial-gradient(1100px 700px at 85% -10%, rgba(204, 151, 255, 0.09), transparent 60%),
        radial-gradient(900px 600px at -10% 40%, rgba(160, 111, 224, 0.05), transparent 70%),
        var(--bg);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none
    }

    ul {
      list-style: none
    }

    ::selection {
      background: var(--accent);
      color: var(--accent-ink)
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 90;
      opacity: .20;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    }

    .wrap {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 36px
    }

    @media(max-width:720px) {
      .wrap {
        padding: 0 20px
      }
    }

    .mono {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-3)
    }

    .serif {
      font-family: var(--font-display);
      font-weight: 400
    }

    .serif-i {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400
    }

    .icon {
      display: inline-block;
      flex-shrink: 0;
      vertical-align: middle
    }

    .eyebrow-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 13px;
      margin-bottom: 22px;
      border: 1px solid rgba(204, 151, 255, 0.22);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(204, 151, 255, 0.06);
    }

    .eyebrow-tag::before {
      content: "";
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent)
    }

    /* ========== HEADER ========== */
    .top-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 60;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(12, 11, 16, 0.55);
      border-bottom: 1px solid var(--line-2)
    }

    .top-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 24px;
      align-items: center;
      padding: 18px 36px;
      max-width: 1360px;
      margin: 0 auto
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: -0.01em
    }

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

    .top-nav {
      display: flex;
      gap: 36px;
      font-size: 13.5px;
      color: var(--ink-2);
      justify-content: center
    }

    .top-nav a {
      position: relative;
      padding: 6px 0;
      transition: color .25s var(--ease-out)
    }

    .top-nav a::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width .3s var(--ease-out), left .3s var(--ease-out)
    }

    .top-nav a:hover {
      color: var(--ink)
    }

    .top-nav a:hover::before {
      width: 100%;
      left: 0
    }

    .top-right {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 18px
    }

    .menu-toggle {
      display: none;
      position: relative;
    }

    .menu-toggle summary {
      list-style: none;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(204, 151, 255, 0.06), transparent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color .25s, transform .25s var(--ease-out);
    }

    .menu-toggle summary::-webkit-details-marker {
      display: none;
    }

    .menu-toggle summary:hover {
      border-color: var(--accent);
      transform: translateY(-1px);
    }

    .menu-toggle .hamburger {
      width: 18px;
      height: 14px;
      position: relative;
      display: block;
    }

    .menu-toggle .hamburger::before,
    .menu-toggle .hamburger::after,
    .menu-toggle .hamburger i {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      border-radius: 999px;
      background: var(--ink);
      transition: transform .25s var(--ease-out), opacity .2s;
    }

    .menu-toggle .hamburger::before {
      top: 0;
    }

    .menu-toggle .hamburger i {
      top: 6px;
    }

    .menu-toggle .hamburger::after {
      bottom: 0;
    }

    .menu-toggle[open] .hamburger::before {
      transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[open] .hamburger i {
      opacity: 0;
    }

    .menu-toggle[open] .hamburger::after {
      transform: translateY(-6px) rotate(-45deg);
    }

    .menu-panel {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      width: min(320px, calc(100vw - 32px));
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(17, 15, 23, 0.96);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
      display: grid;
      gap: 8px;
      z-index: 30;
    }

    .menu-links {
      display: grid;
      gap: 4px;
    }

    .menu-links a,
    .menu-lang button {
      width: 100%;
      border: 0;
      background: transparent;
      text-align: left;
      padding: 12px 14px;
      border-radius: 14px;
      color: var(--ink-2);
      font-size: 14px;
      transition: background .2s var(--ease-out), color .2s var(--ease-out);
    }

    .menu-links a:hover,
    .menu-lang button:hover {
      background: rgba(204, 151, 255, 0.10);
      color: var(--ink);
    }

    .menu-meta {
      padding: 12px 14px 4px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-4);
    }

    .menu-lang {
      display: grid;
      gap: 4px;
    }

    .menu-lang button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      padding: 12px 14px;
      border: 1px solid transparent;
      color: var(--ink-3);
    }

    .menu-lang button::after {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: transparent;
      box-shadow: 0 0 0 1px var(--line);
      flex-shrink: 0;
    }

    .menu-lang button.is-active {
      border-color: rgba(204, 151, 255, 0.22);
      background: rgba(204, 151, 255, 0.12);
      color: var(--ink);
    }

    .menu-lang button.is-active::after {
      background: var(--accent);
      box-shadow: 0 0 10px rgba(204, 151, 255, 0.35);
    }

    .menu-panel .cta-pill {
      width: 100%;
      justify-content: center;
      padding-block: 14px;
    }

    .lang-drop {
      position: relative;
    }

    .lang-drop summary {
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 13px;
      color: var(--ink-2);
      background: linear-gradient(180deg, rgba(204, 151, 255, 0.06), transparent);
      cursor: pointer;
      transition: border-color .3s, color .25s, transform .25s var(--ease-out);
    }

    .lang-drop summary::-webkit-details-marker {
      display: none;
    }

    .lang-drop summary:hover {
      border-color: var(--accent);
      color: var(--ink);
      transform: translateY(-1px);
    }

    .lang-drop .lang-icon {
      width: 16px;
      height: 16px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .lang-drop .lang-caret {
      width: 12px;
      height: 12px;
      color: var(--ink-3);
      transition: transform .25s var(--ease-out), color .25s;
    }

    .lang-drop[open] .lang-caret {
      transform: rotate(180deg);
      color: var(--accent);
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      min-width: 180px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(17, 15, 23, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
    }

    .lang-menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
      color: var(--ink-2);
      transition: background .2s var(--ease-out), color .2s var(--ease-out);
    }

    .lang-menu a:hover {
      background: rgba(204, 151, 255, 0.10);
      color: var(--ink);
    }

    .cta-pill {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 20px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      background: linear-gradient(180deg, rgba(204, 151, 255, 0.06), transparent);
      transition: border-color .3s, transform .25s var(--ease-out)
    }

    .cta-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 12px var(--accent);
      animation: pulse 2s ease-in-out infinite;
      flex-shrink: 0
    }

    .cta-pill:hover {
      border-color: var(--accent);
      transform: translateY(-1px)
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: .4;
        transform: scale(.8)
      }

      50% {
        opacity: 1;
        transform: scale(1.2)
      }
    }

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

      .top-inner {
        grid-template-columns: 1fr auto
      }

      .top-right {
        gap: 10px
      }

      .top-right>.lang-drop,
      .top-right>.cta-pill {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }

    /* ========== HERO (Overlay) ==========
       Image is an absolutely-positioned background spanning the whole hero,
       cropped right so the "after" side of the before/after composition stays
       in frame. A left-to-right gradient (solid bg → transparent at ~66%)
       fades the image into the background so the text column reads cleanly on
       the left third. No visible card — the text layers directly over the
       gradient-masked image. Single font-size knob on .hero drives every
       child size via em. Mobile: image lifts to the top, shown in natural
       aspect ratio at full width, content below. */

    .hero {
      position: relative;
      overflow: hidden;
      font-size: clamp(14px, 0.52vw + 10px, 19px);
      background: var(--bg);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.4em;
      /* Below ~1330px: floor clamps to 720px → stable block, matches the
         behaviour the user liked in 1024-1330. Above ~1330px: 54vw takes over
         so the content keeps pace with the growing image column. Caps at
         1000px so text doesn't sprawl on 4K. */
      max-width: clamp(720px, 54vw, 1000px);
      padding: 7em clamp(2em, 4vw, 4.5em) 5em;
      min-height: min(900px, calc(100vh - 72px));
    }

    .hero-eyebrow {
      font-family: var(--font-mono);
      font-weight: 400;
      font-size: 0.72em;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin: 0;
      display: inline-flex;
      align-items: center;
      gap: 0.75em;
    }

    .hero-eyebrow::before {
      content: "";
      width: 0.55em;
      height: 0.55em;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 5.2em;
      line-height: 0.96;
      letter-spacing: -0.028em;
      color: var(--ink);
      margin: 0;
      text-wrap: balance;
      max-width: 13ch;
    }

    .hero-title em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-lead {
      font-size: 1.05em;
      line-height: 1.55;
      color: var(--ink-2);
      max-width: 34em;
      margin: 0;
    }

    .hero-lead strong {
      color: var(--ink);
      font-weight: 500;
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 1.4em;
      flex-wrap: wrap;
      padding: 0.9em 0;
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
      margin: 0.2em 0;
    }

    .hero-meta__item {
      display: inline-flex;
      align-items: baseline;
      gap: 0.5em;
      font-family: var(--font-mono);
      font-size: 0.66em;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-3);
    }

    .hero-meta__item b {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 2em;
      letter-spacing: -0.015em;
      color: var(--ink);
      line-height: 1;
      display: inline-flex;
      align-items: baseline;
    }

    .hero-meta__item b sup {
      color: var(--accent);
      font-size: 0.4em;
      font-family: var(--font-ui);
      position: relative;
      top: -0.8em;
      margin-left: 0.1em;
    }

    .hero-meta__divider {
      width: 1px;
      height: 1.8em;
      background: var(--line-2);
      flex-shrink: 0;
    }

    .hero-cta {
      margin-top: 0.4em;
      gap: 0.9em;
    }

    /* Visual lives in the right 60% of the hero. Image is shown in full
       (object-fit: contain, natural aspect preserved) and pinned to the right
       edge. Left edge of the visual container fades from bg → transparent so
       the image emerges softly out of the background; optional right vignette
       keeps the image from hitting the viewport edge hard. */
    .hero-visual {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 60%;
      z-index: 1;
      overflow: hidden;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .hero-visual img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      object-position: right center;
    }

    /* Left-edge fade — 35% of the visual width, bg → transparent, so the
       image's left side merges into the page background and the text column
       on the left reads on clean bg. */
    .hero-visual::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 38%;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        var(--bg) 0%,
        rgba(12, 11, 16, 0.82) 45%,
        rgba(12, 11, 16, 0) 100%
      );
    }

    /* Right-edge fade — soft vignette so the image doesn't hit the viewport
       edge with a hard line, and an accent wash for warmth. */
    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background:
        linear-gradient(270deg, rgba(12, 11, 16, 0.55) 0%, rgba(12, 11, 16, 0) 14%),
        radial-gradient(55% 55% at 70% 25%, rgba(204, 151, 255, 0.10), transparent 70%),
        radial-gradient(45% 55% at 80% 85%, rgba(160, 111, 224, 0.07), transparent 70%);
    }

    @media (max-width: 1024px) {
      .hero {
        font-size: clamp(14px, 1.4vw + 8px, 18px);
        display: flex;
        flex-direction: column;
      }

      .hero-content {
        order: 2;
        position: relative;
        z-index: 1;
        max-width: none;
        min-height: auto;
        padding: 2.5em clamp(1.25em, 5vw, 2em) 2em;
        gap: 1.2em;
      }

      .hero-title {
        max-width: 14ch;
      }

      /* Image lifts to the top and is shown in full at natural aspect. */
      .hero-visual {
        order: 1;
        position: relative;
        inset: auto;
        width: 100%;
        display: block;
        margin-top: 72px; /* clear fixed top-bar */
        overflow: visible;
      }

      .hero-visual img {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
        object-fit: unset;
        object-position: unset;
      }

      .hero-visual::before,
      .hero-visual::after {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero-visual {
        margin-top: 68px;
      }

      .hero-content {
        padding: 2em 1.25em 1.75em;
        gap: 1.1em;
      }

      .hero-meta {
        gap: 1em;
      }

      .hero-meta__divider {
        display: none;
      }

      .hero-meta__item {
        flex: 1 1 28%;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .hero-cta .btn-primary,
      .hero-cta .btn-ghost {
        justify-content: center;
        width: 100%;
      }
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2)
    }

    .stat {
      padding: 26px 20px;
      border-right: 1px solid var(--line-2);
      position: relative
    }

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

    .stat .v {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 4px
    }

    .stat .v sup {
      color: var(--accent);
      font-size: 15px;
      position: relative;
      top: -14px;
      font-family: var(--font-ui)
    }

    .stat .l {
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-3);
      margin-top: 10px
    }

    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 58px;
      padding: 12px 18px 12px 26px;
      background: var(--accent);
      color: var(--accent-ink);
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.01em;
      transition: transform .25s var(--ease-out), box-shadow .3s;
    }

    .btn-primary .label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 34px
    }

    .btn-primary .apple-ico {
      width: 15px;
      height: 15px;
      color: var(--accent-ink);
      flex-shrink: 0
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(204, 151, 255, 0.28)
    }

    .btn-primary:active {
      transform: translateY(0) scale(0.98)
    }

    .btn-primary .ico-wrap {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(12, 11, 16, 0.18);
      display: grid;
      place-items: center;
      transition: transform .25s var(--ease-out);
      flex-shrink: 0;
    }

    .btn-primary:hover .ico-wrap {
      transform: translate(2px, -1px) scale(1.08)
    }

    .btn-primary .ico-wrap svg {
      color: var(--accent-ink)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 58px;
      padding: 12px 24px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 14px;
      color: var(--ink-2);
      transition: border-color .3s, color .25s;
    }

    .btn-ghost.is-quiz {
      justify-content: center;
      min-width: 240px
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--ink)
    }

    .btn-ghost svg {
      color: var(--accent);
      transition: transform .25s var(--ease-out)
    }

    .btn-ghost:hover svg {
      transform: translateY(2px)
    }

    /* ========== MARQUEE ========== */
    .rule-marquee {
      border-top: 1px solid var(--line-2);
      border-bottom: 1px solid var(--line-2);
      overflow: hidden;
      padding: 20px 0;
      background: var(--bg-2)
    }

    .rm-track {
      display: flex;
      gap: 56px;
      animation: scrollX 44s linear infinite;
      white-space: nowrap;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 28px;
      color: var(--ink-2)
    }

    .rm-track span {
      display: inline-flex;
      align-items: center;
      gap: 56px
    }

    .rm-track span::after {
      content: "◈";
      color: var(--accent);
      font-size: 16px;
      margin-left: 56px;
      font-style: normal
    }

    @keyframes scrollX {
      to {
        transform: translateX(-50%)
      }
    }

    /* ========== SECTION DRESS ========== */
    section.block {
      padding: 140px 0;
      position: relative
    }

    @media(max-width:720px) {
      section.block {
        padding: 90px 0
      }
    }

    .sec-head {
      display: block;
      margin-bottom: 72px
    }

    .sec-head h2,
    .sec-head .sec-title {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(40px, 5.8vw, 80px);
      line-height: 0.95;
      letter-spacing: -0.025em;
      max-width: 20ch;
      margin: 0
    }

    .sec-head h2 em,
    .sec-head .sec-title em {
      font-style: italic;
      color: var(--accent)
    }

    .sec-head .sub {
      color: var(--ink-2);
      font-size: 16px;
      line-height: 1.55;
      max-width: 56ch;
      margin-top: 24px
    }

    /* ========== FAMILIAR ========== */
    .fm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px
    }

    @media(max-width:820px) {
      .fm-grid {
        grid-template-columns: 1fr
      }
    }

    .fm-card {
      padding: 40px 32px;
      border: 1px solid var(--line);
      border-radius: 28px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(204, 151, 255, 0.04), transparent);
      transition: transform .4s var(--ease-out), box-shadow .4s;
    }

    .fm-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px -20px rgba(204, 151, 255, 0.14)
    }

    .fm-card .n {
      position: absolute;
      top: 36px;
      right: 36px;
      z-index: 2;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 52px;
      font-weight: 400;
      color: var(--accent);
      line-height: 0.9;
      letter-spacing: -0.04em;
    }

    .fm-card h3 {
      font-family: var(--font-display);
      font-size: 28px;
      line-height: 1.05;
      letter-spacing: -0.015em;
      margin: 70px 0 16px;
      max-width: 14ch;
      position: relative;
      z-index: 2
    }

    .fm-card p {
      color: var(--ink-2);
      font-size: 14.5px;
      line-height: 1.6;
      max-width: 44ch;
      position: relative;
      z-index: 2
    }

    .fm-card .edge {
      position: absolute;
      bottom: 0;
      left: 40px;
      right: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: .45;
      transition: opacity .4s
    }

    .fm-card:hover .edge {
      opacity: .85
    }

    .fm-cta {
      margin-top: 56px;
      display: flex;
      justify-content: center
    }

    .fm-grid .fm-card {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), box-shadow .4s
    }

    .fm-grid .fm-card.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .fm-grid .fm-card.visible:hover {
      transform: translateY(-4px);
      transition: opacity .7s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s
    }

    .fm-grid .fm-card:nth-child(1) {
      transition-delay: .05s
    }

    .fm-grid .fm-card:nth-child(2) {
      transition-delay: .15s
    }

    .fm-grid .fm-card:nth-child(3) {
      transition-delay: .25s
    }

    .fm-grid .fm-card:nth-child(4) {
      transition-delay: .35s
    }

    /* ========== SMALL DETAILS & DIAGNOSTICS (shared) ========== */
    .sd-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start
    }

    .sd-content {
      display: flex;
      flex-direction: column
    }

    .sd-content .sec-head {
      margin-bottom: 0
    }

    .sd-cards-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 36px
    }

    .sd-card {
      padding: 28px 32px;
      border: 1px solid var(--line-2);
      border-radius: 16px;
      background: var(--bg-2);
      transition: border-color .3s, background .3s
    }

    .sd-card:hover {
      border-color: var(--line);
      background: var(--bg-3)
    }

    .sd-card h3 {
      font-family: var(--font-display);
      font-size: 20px;
      line-height: 1.1;
      letter-spacing: -0.015em;
      margin-bottom: 8px
    }

    .sd-card p {
      color: var(--ink-2);
      font-size: 13.5px;
      line-height: 1.55;
      max-width: 38ch
    }

    .sd-note {
      margin-top: 28px;
      font-family: var(--font-display);
      font-size: 18px;
      line-height: 1.45;
      letter-spacing: -0.01em;
      color: var(--ink-2)
    }

    .sd-content .cta-row {
      margin-top: 28px;
      align-items: center;
      flex-wrap: wrap;
    }

    .sd-note em {
      font-style: italic;
      color: var(--accent)
    }

    .sd-img-shell {
      position: sticky;
      top: 120px
    }

    .sd-img {
      overflow: hidden;
      border-radius: 12px
    }

    .sd-img img {
      width: 100%;
      height: auto;
      display: block
    }

    @media(max-width:900px) {
      .sd-layout {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .sd-img-shell {
        position: static;
        width: 100%;
        max-width: none;
        margin: 0
      }

      .sd-img,
      .sd-img img {
        width: 100%
      }
    }

    /* ========== AI ENGINE ========== */
    .eng {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start
    }

    @media(max-width:980px) {
      .eng {
        grid-template-columns: 1fr;
        gap: 48px
      }
    }

    @media(max-width:980px) {
      .eng-viz {
        border: 0;
        border-radius: 0;
        background: none;
        margin: 0 -36px;
        width: calc(100% + 72px)
      }
    }

    @media(max-width:720px) {
      .eng-viz {
        margin: 0 -20px;
        width: calc(100% + 40px)
      }
    }

    .eng-viz {
      position: relative;
      border: 1px solid var(--line-2);
      border-radius: 20px;
      aspect-ratio: 1;
      background: var(--bg);
      overflow: hidden
    }

    .eng-viz .gen-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      display: block
    }

    .eng-tag {
      position: absolute;
      z-index: 3;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(12, 11, 16, 0.82);
      border: 1px solid var(--line);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--ink);
      backdrop-filter: blur(8px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
    }

    .eng-viz.visible .eng-tag {
      opacity: 1;
      transform: translateY(0)
    }

    .eng-tag::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
      flex-shrink: 0
    }

    .eng-tag.a {
      top: 8%;
      left: 14%;
      transition-delay: .1s
    }

    .eng-tag.b {
      top: 18%;
      right: 6%;
      transition-delay: .2s
    }

    .eng-tag.c {
      bottom: 22%;
      right: 4%;
      transition-delay: .3s
    }

    .eng-tag.d {
      bottom: 6%;
      left: 24%;
      transition-delay: .4s
    }

    .eng-tag.e {
      top: 46%;
      left: 3%;
      transition-delay: .5s
    }

    .eng-list {
      display: flex;
      flex-direction: column
    }

    .eng-item {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--line-2);
      align-items: start
    }

    .eng-item:first-child {
      border-top: 1px solid var(--line-2)
    }

    .eng-item .k {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--accent);
      letter-spacing: 0.1em;
      padding-top: 4px
    }

    .eng-item h4 {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: -0.015em;
      line-height: 1.1;
      margin-bottom: 8px
    }

    .eng-item p {
      color: var(--ink-2);
      font-size: 14px;
      line-height: 1.55;
      max-width: 52ch
    }

    .eng-list .eng-item {
      opacity: 0;
      transform: translateX(-12px);
      transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
    }

    .eng-list.visible .eng-item {
      opacity: 1;
      transform: translateX(0)
    }

    .eng-list.visible .eng-item:nth-child(1) {
      transition-delay: .05s
    }

    .eng-list.visible .eng-item:nth-child(2) {
      transition-delay: .12s
    }

    .eng-list.visible .eng-item:nth-child(3) {
      transition-delay: .19s
    }

    .eng-list.visible .eng-item:nth-child(4) {
      transition-delay: .26s
    }

    .eng-list.visible .eng-item:nth-child(5) {
      transition-delay: .33s
    }

    /* ========== FEATURES GRID ========== */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      align-items: stretch;
      grid-auto-rows: 1fr
    }

    @media(max-width:1080px) {
      .feat-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:600px) {
      .feat-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2px;
        scrollbar-width: none;
        cursor: grab
      }

      .feat-grid::-webkit-scrollbar {
        display: none
      }

      .feat-grid.dragging {
        cursor: grabbing
      }
    }

    .feat-shell {
      border-radius: 24px;
      padding: 2px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      background: rgba(255, 255, 255, 0.015);
      transition: border-color .3s, transform .3s;
      flex-shrink: 0;
      height: 100%;
      display: flex;
    }

    .feat-shell:hover {
      border-color: rgba(204, 151, 255, 0.12);
      transform: translateY(-3px)
    }

    @media(max-width:600px) {
      .feat-shell {
        width: 244px;
        scroll-snap-align: start
      }
    }

    .feat-card {
      border: 1px solid var(--line-2);
      border-radius: 20px;
      background: var(--bg-2);
      overflow: hidden;
      transition: border-color .3s;
      position: relative;
      min-height: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      width: 100%
    }

    .feat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(95% 95% at 50% 5%, rgba(204, 151, 255, 0.15) 0%, rgba(204, 151, 255, 0) 100%);
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 0
    }

    .feat-shell:hover .feat-card {
      border-color: var(--line)
    }

    .feat-img {
      aspect-ratio: 1;
      overflow: hidden;
      background: transparent;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .feat-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      position: relative;
      z-index: 1;
      transition: transform .5s var(--ease-out)
    }

    .feat-shell:hover .feat-img img {
      transform: scale(1.03)
    }

    .feat-body {
      padding: 20px 24px 24px;
      position: relative;
      z-index: 1;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column
    }

    .feat-key {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      color: var(--ink-3);
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .feat-key svg {
      color: var(--ink-3)
    }

    .feat-card h3 {
      font-family: var(--font-display);
      font-size: 21px;
      line-height: 1.05;
      letter-spacing: -0.015em;
      margin-bottom: 7px
    }

    .feat-card p {
      color: var(--ink-2);
      font-size: 12.5px;
      line-height: 1.5
    }

    /* ========== HOW IT WORKS ========== */
    .how {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 80px;
      align-items: start
    }

    @media(max-width:980px) {
      .how {
        grid-template-columns: 1fr
      }
    }

    .steps {
      margin-top: 16px;
      border-top: 1px solid var(--line-2)
    }

    .st {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 24px;
      padding: 32px 0;
      border-bottom: 1px solid var(--line-2);
      align-items: baseline;
      position: relative
    }

    .st::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width .6s var(--ease-out)
    }

    .st:hover::before {
      width: 100%
    }

    .st .num {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 48px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--ink-4);
      transition: color .3s
    }

    .st:hover .num {
      color: var(--accent)
    }

    .st h4 {
      font-family: var(--font-display);
      font-size: 26px;
      letter-spacing: -0.015em;
      line-height: 1.05;
      margin-bottom: 10px
    }

    .st p {
      color: var(--ink-2);
      font-size: 14.5px;
      line-height: 1.55;
      max-width: 44ch
    }

    .steps .st {
      opacity: 0;
      transform: translateX(-10px);
      transition: opacity .6s var(--ease-out), transform .6s var(--ease-out)
    }

    .steps .st::before {
      transition: width .6s var(--ease-out)
    }

    .steps.visible .st {
      opacity: 1;
      transform: translateX(0)
    }

    .steps.visible .st:nth-child(1) {
      transition-delay: .04s
    }

    .steps.visible .st:nth-child(2) {
      transition-delay: .10s
    }

    .steps.visible .st:nth-child(3) {
      transition-delay: .16s
    }

    .steps.visible .st:nth-child(4) {
      transition-delay: .22s
    }

    .report-shell {
      position: sticky;
      top: 120px;
      padding: 3px;
      border-radius: 32px;
      border: 1px solid rgba(204, 151, 255, 0.14);
      background: rgba(204, 151, 255, 0.04);
      box-shadow: 0 40px 80px -40px rgba(204, 151, 255, 0.12);
    }

    .report {
      border: 1px solid var(--line-2);
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
      padding: 36px;
    }

    .report-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 28px
    }

    .report-head .tag {
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 0.18em;
      color: var(--ink-3);
      text-transform: uppercase
    }

    .report-head h3 {
      font-family: var(--font-display);
      font-size: 26px;
      letter-spacing: -0.015em;
      margin-top: 6px
    }

    .report-head .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      padding: 6px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 11.5px;
      color: var(--accent);
      font-family: var(--font-mono);
      letter-spacing: 0.08em
    }

    .report-head .pill::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
      animation: pulse 1.4s infinite;
      flex-shrink: 0
    }

    .report-score {
      font-family: var(--font-display);
      font-size: 96px;
      font-weight: 400;
      line-height: 0.85;
      letter-spacing: -0.05em;
      text-align: right
    }

    .report-score em {
      font-style: italic;
      color: var(--accent)
    }

    .report-bars {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 8px
    }

    .rb .head {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      margin-bottom: 8px;
      color: var(--ink)
    }

    .rb .head b {
      font-family: var(--font-mono);
      color: var(--accent);
      font-weight: 500
    }

    .rb .track {
      height: 2px;
      background: var(--line-2);
      border-radius: 2px;
      overflow: hidden;
      position: relative
    }

    .rb .track i {
      position: absolute;
      inset: 0 auto 0 0;
      background: var(--accent);
      box-shadow: 0 0 12px var(--accent);
      transform: scaleX(0);
      transform-origin: left
    }

    .report.animate .rb .track i {
      animation: fill 1.8s var(--ease-out) forwards
    }

    .report.animate .rb:nth-child(2) .track i {
      animation-delay: .15s
    }

    .report.animate .rb:nth-child(3) .track i {
      animation-delay: .3s
    }

    @keyframes fill {
      from {
        transform: scaleX(0)
      }

      to {
        transform: scaleX(1)
      }
    }

    .report-foot {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--line-2)
    }

    .report-foot .box small {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--ink-3);
      letter-spacing: 0.14em;
      text-transform: uppercase
    }

    .report-foot .box b {
      display: block;
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      margin-top: 4px;
      letter-spacing: -0.015em
    }

    .report-foot .box b em {
      font-style: italic;
      color: var(--accent)
    }

    /* ========== LAB ========== */
    .lab-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    @media(max-width:900px) {
      .lab-grid {
        grid-template-columns: 1fr
      }
    }

    .lab-shell {
      padding: 3px;
      border-radius: 32px;
      border: 1px solid rgba(204, 151, 255, 0.08);
      background: rgba(204, 151, 255, 0.025)
    }

    .lab {
      position: relative;
      border: 1px solid var(--line-2);
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 28px;
      background: linear-gradient(180deg, #1A1625, #0F0D17);
    }

    .lab::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(rgba(204, 151, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 151, 255, 0.07) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(180deg, black, transparent 80%);
    }

    .lab .gen-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      display: block;
      mix-blend-mode: screen
    }

    .lab-top {
      position: relative;
      z-index: 3;
      display: flex;
      justify-content: space-between;
      align-items: flex-start
    }

    .lab-mark {
      padding: 6px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 0.14em;
      color: var(--ink);
      backdrop-filter: blur(6px);
      background: rgba(12, 11, 16, 0.5)
    }

    .lab-kind {
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 0.16em;
      color: var(--ink-3);
      text-transform: uppercase;
      text-align: right
    }

    .lab-bot {
      position: relative;
      z-index: 3;
      margin: 0 -28px -28px;
      padding: 80px 28px 28px;
      background: linear-gradient(180deg, transparent, rgba(15, 13, 23, 0.92) 45%)
    }

    .lab-bot h4 {
      font-family: var(--font-display);
      font-size: 28px;
      letter-spacing: -0.015em;
      line-height: 1.05;
      margin-bottom: 12px
    }

    .lab-bot p {
      color: var(--ink-2);
      font-size: 14px;
      line-height: 1.55;
      max-width: 34ch
    }

    /* ========== TESTI ========== */
    .testi-lead {
      display: grid;
      grid-template-columns: 1fr;
      align-items: end;
      gap: 30px;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line-2)
    }

    .testi-lead .rating {
      font-family: var(--font-display);
      font-size: 40px;
      letter-spacing: -0.02em;
      line-height: 1
    }

    .testi-lead .rating em {
      font-style: italic;
      color: var(--accent)
    }

    .testi-lead .note {
      color: var(--ink-3);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      display: none
    }

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

    @media(max-width:900px) {
      .testi-grid {
        grid-template-columns: 1fr
      }
    }

    .testi {
      border: 1px solid var(--line-2);
      border-radius: 28px;
      padding: 36px;
      background: linear-gradient(180deg, rgba(204, 151, 255, 0.03), transparent);
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: border-color .3s, transform .3s var(--ease-out);
    }

    .testi:hover {
      border-color: var(--line);
      transform: translateY(-4px)
    }

    .testi .stars {
      display: flex;
      gap: 3px;
      color: var(--accent)
    }

    .testi blockquote {
      font-family: var(--font-display);
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: -0.01em;
      flex: 1;
      font-weight: 400
    }

    .testi blockquote::first-letter {
      font-size: 1.4em;
      color: var(--accent)
    }

    .testi .auth {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 20px;
      border-top: 1px solid var(--line-2)
    }

    .testi .ava {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--bg-3);
      border: 1px solid var(--line);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 500;
      flex-shrink: 0;
    }

    .testi .auth .n {
      font-size: 14.5px;
      font-weight: 500
    }

    .testi .auth .s {
      font-family: var(--font-mono);
      font-size: 10.5px;
      letter-spacing: 0.1em;
      color: var(--ink-3);
      text-transform: uppercase;
      margin-top: 3px
    }

    /* ========== FAQ ========== */
    .faq {
      display: grid;
      grid-template-columns: 0.9fr 1.4fr;
      gap: 80px;
      align-items: start
    }

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

    .faq-aside h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(40px, 5.8vw, 80px);
      letter-spacing: -0.025em;
      line-height: 0.95;
      margin: 16px 0 18px
    }

    .faq-aside h2 em {
      font-style: italic;
      color: var(--accent)
    }

    .faq-aside p {
      color: var(--ink-2);
      font-size: 15.5px;
      line-height: 1.55;
      max-width: 34ch
    }

    .faq-aside .sig {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px solid var(--line-2);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.16em;
      color: var(--ink-3);
      text-transform: uppercase
    }

    .faq-list {
      border-top: 1px solid var(--line-2)
    }

    details.qa {
      border-bottom: 1px solid var(--line-2);
      padding: 26px 0;
      cursor: pointer;
      transition: padding-left .3s
    }

    details.qa:hover {
      padding-left: 10px
    }

    details.qa summary {
      list-style: none;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 28px;
      align-items: center;
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: -0.015em;
      font-weight: 400
    }

    details.qa summary::-webkit-details-marker {
      display: none
    }

    details.qa summary .idx {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--ink-3);
      letter-spacing: 0.14em
    }

    details.qa summary .sign {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--accent);
      transition: transform .3s var(--ease-out), background .3s;
      flex-shrink: 0;
    }

    details.qa summary .sign svg {
      transition: transform .3s var(--ease-out)
    }

    details.qa[open] summary .sign {
      background: var(--accent);
      color: var(--accent-ink);
      border-color: var(--accent)
    }

    details.qa[open] summary .sign svg {
      transform: rotate(45deg)
    }

    details.qa[open] summary .sign svg path {
      stroke: var(--accent-ink)
    }

    details.qa .ans {
      margin-top: 16px;
      padding-left: 55px;
      padding-right: 40px;
      color: var(--ink-2);
      font-size: 15px;
      line-height: 1.6;
      max-width: 60ch
    }

    @media(max-width:560px) {
      details.qa .ans {
        padding-left: 0
      }
    }

    /* ========== CTA ========== */
    .cta-block {
      position: relative;
      padding: 160px 0;
      border-top: 1px solid var(--line-2);
      overflow: hidden
    }

    .cta-block::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 50% 120%, rgba(204, 151, 255, 0.3), transparent 60%),
        radial-gradient(ellipse 50% 50% at 15% -10%, rgba(204, 151, 255, 0.1), transparent 60%);
      pointer-events: none;
    }

    .cta-inner {
      text-align: center;
      position: relative
    }

    .cta-inner .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      color: var(--ink-3);
      text-transform: uppercase
    }

    .cta-inner .eyebrow::before,
    .cta-inner .eyebrow::after {
      content: "";
      width: 40px;
      height: 1px;
      background: var(--accent)
    }

    .cta-inner h2 {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(52px, 8vw, 116px);
      line-height: 0.93;
      letter-spacing: -0.035em;
      max-width: 15ch;
      margin: 28px auto 0
    }

    .cta-inner h2 em {
      font-style: italic;
      color: var(--accent)
    }

    .cta-inner p {
      color: var(--ink-2);
      font-size: 17px;
      line-height: 1.55;
      max-width: 56ch;
      margin: 32px auto 0
    }

    .cta-inner .row {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 44px
    }

    .cta-inner .disc {
      margin-top: 40px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--ink-3);
      text-transform: uppercase
    }

    /* ========== FOOTER ========== */
    footer {
      padding: 100px 0 40px;
      border-top: 1px solid var(--line-2);
      background: var(--bg-2);
      position: relative
    }

    .foot-sig {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: clamp(52px, 11vw, 160px);
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--ink);
      padding-bottom: 60px;
      border-bottom: 1px solid var(--line-2);
      margin-bottom: 60px
    }

    .foot-sig em {
      font-style: italic;
      color: var(--accent)
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px
    }

    @media(max-width:820px) {
      .foot-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:520px) {
      .foot-grid {
        grid-template-columns: 1fr
      }
    }

    .foot-brand p {
      color: var(--ink-2);
      font-size: 14px;
      line-height: 1.55;
      max-width: 36ch;
      margin-top: 18px
    }

    .foot-col h5 {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      color: var(--ink-3);
      text-transform: uppercase;
      margin-bottom: 20px
    }

    .foot-col a {
      display: block;
      padding: 6px 0;
      color: var(--ink-2);
      font-size: 14.5px;
      transition: color .2s, padding-left .2s
    }

    .foot-col a:hover {
      color: var(--accent);
      padding-left: 6px
    }

    .foot-bot {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 64px;
      padding-top: 28px;
      border-top: 1px solid var(--line-2);
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--ink-3);
      flex-wrap: wrap
    }

    .foot-bot .soc {
      display: flex;
      gap: 28px
    }

    .foot-bot a {
      transition: color .2s
    }

    .foot-bot a:hover {
      color: var(--accent)
    }

    /* ========== REVEAL ========== */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s var(--ease-out), transform .9s var(--ease-out)
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0)
    }


/* ==========================================================================
   BLOG · ARTICLE · SYSTEM PAGES · 404
   Uses the same tokens (--bg, --ink, --accent, --font-display, --font-ui, --font-mono).
   ========================================================================== */

.container,
.shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 36px;
}

.prose-shell {
  max-width: 820px;
}

@media (max-width: 720px) {
  .container,
  .shell {
    padding: 0 20px;
  }
}

.section {
  padding: 96px 0 72px;
  border-top: 1px solid var(--line-2);
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0 48px;
  }
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 48px;
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

/* Blog index */

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

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

@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 151, 255, 0.28);
}

.post-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-3);
}

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

.post-card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.post-card__title a {
  color: inherit;
  transition: color .25s var(--ease-out);
}

.post-card__title a:hover {
  color: var(--accent);
}

.post-card__excerpt {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.post-card__read-more {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: transform .25s var(--ease-out);
  align-self: flex-start;
}

.post-card__read-more:hover {
  transform: translateX(4px);
}

/* Pagination */

.pagination {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination .page-numbers {
  min-width: 40px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out), background .25s var(--ease-out);
}

.pagination .page-numbers:hover {
  border-color: rgba(204, 151, 255, 0.32);
  color: var(--ink);
}

.pagination .page-numbers.current {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

/* Article (single post) */

.article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}

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

.article__main {
  min-width: 0;
}

.article__hero {
  margin-bottom: 32px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.article__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.article__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}

.article__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 36px;
}

.article__content {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
}

.article__content > * + * {
  margin-top: 1.1em;
}

.article__content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-top: 1.8em;
}

.article__content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  margin-top: 1.6em;
}

.article__content p,
.article__content li {
  color: var(--ink-2);
}

.article__content a {
  color: var(--accent);
  border-bottom: 1px solid rgba(204, 151, 255, 0.32);
  transition: border-color .2s var(--ease-out);
}

.article__content a:hover {
  border-bottom-color: var(--accent);
}

.article__content ul,
.article__content ol {
  padding-left: 1.3em;
}

.article__content ul li {
  list-style: disc;
}

.article__content ol li {
  list-style: decimal;
}

.article__content blockquote {
  border-left: 2px solid var(--accent);
  padding: 6px 0 6px 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
}

.article__content code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.article__content pre {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  overflow-x: auto;
}

.article__content pre code {
  background: transparent;
  padding: 0;
}

.article__content img {
  border-radius: 14px;
  border: 1px solid var(--line);
  max-width: 100%;
  height: auto;
}

.article__sidebar {
  position: sticky;
  top: 110px;
}

@media (max-width: 1080px) {
  .article__sidebar {
    position: static;
  }
}

.sidebar-cta {
  background: linear-gradient(180deg, rgba(204, 151, 255, 0.08), rgba(204, 151, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}

.sidebar-cta__body {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
}

.sidebar-cta .store-buttons,
.sidebar-cta .store-btn {
  display: flex;
}

.sidebar-cta .store-buttons {
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta .store-btn {
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}

.sidebar-cta .store-btn:hover {
  border-color: rgba(204, 151, 255, 0.38);
  background: rgba(204, 151, 255, 0.04);
}

.sidebar-cta .store-btn .material-symbols-outlined {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  opacity: .8;
}

/* System pages (terms, privacy, contact, support) */

.entry-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px clamp(24px, 4vw, 56px);
}

.entry-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.entry-content {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

.entry-content > * + * {
  margin-top: 1em;
}

.entry-content a {
  color: var(--accent);
  border-bottom: 1px solid rgba(204, 151, 255, 0.32);
}

.entry-content a:hover {
  border-bottom-color: var(--accent);
}

.entry-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin-top: 1.5em;
}

.entry-content ul li {
  list-style: disc;
  margin-left: 1.2em;
}

/* 404 */

.section--404 {
  text-align: center;
  padding: 140px 0 120px;
}

.section--404 .kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section--404 h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}

.section--404 p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 36px;
}

.section--404 .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .25s var(--ease-out), box-shadow .3s var(--ease-out);
}

.section--404 .button--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 38px -14px rgba(204, 151, 255, 0.6);
}

.section--404 .button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -16px rgba(204, 151, 255, 0.7);
}

/* Fixed top-bar overlaps content on pages that are not the hero-led homepage —
   push the first section down so it clears the header. */
body:not(.home) #main-content > .section:first-child {
  padding-top: 152px;
}

/* ==========================================================================
   LANGUAGE SWITCHER (markup produced by looksmax_render_language_switcher())
   Mirrors the bundle's .lang-drop look but uses BEM classes + click toggle
   wired in theme.js.
   ========================================================================== */

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: linear-gradient(180deg, rgba(204, 151, 255, 0.06), transparent);
  cursor: pointer;
  transition: border-color .3s, color .25s, transform .25s var(--ease-out);
}

.lang-switcher__toggle:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.lang-switcher__current {
  display: inline-flex;
}

.lang-switcher__arrow {
  display: inline-flex;
  font-size: 10px;
  color: var(--ink-3);
  transition: transform .25s var(--ease-out), color .25s;
}

.lang-switcher.is-open .lang-switcher__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  padding: 8px;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 15, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  z-index: 120;
}

.lang-switcher.is-open .lang-switcher__dropdown {
  display: block;
}

.lang-switcher__dropdown li {
  list-style: none;
  margin: 0;
}

.lang-switcher__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-2);
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
}

.lang-switcher__dropdown a:hover,
.lang-switcher__dropdown li[aria-selected="true"] a {
  background: rgba(204, 151, 255, 0.10);
  color: var(--ink);
}

@media (max-width: 1024px) {
  .lang-switcher {
    display: none;
  }
}

/* ==========================================================================
   STORE BADGES (looksmax_render_store_badges and _small)
   Adapt to the new typography. The large variant uses the bundle's btn-primary
   shell; this file styles the generic .store-buttons/.store-btn output for
   other contexts (footer, article sidebar).
   ========================================================================== */

.footer-store .store-buttons,
.foot-store .store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-store .store-btn,
.foot-store .store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}

.footer-store .store-btn:hover,
.foot-store .store-btn:hover {
  border-color: rgba(204, 151, 255, 0.4);
  background: rgba(204, 151, 255, 0.04);
}

/* Material Symbols fallback (the theme still references some) — render as small caps icons or hide if font absent */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined', 'Space Grotesk', sans-serif;
  font-weight: 400;
  display: inline-flex;
  vertical-align: middle;
  line-height: 1;
  font-size: 16px;
}

/* ==========================================================================
   FEATURE CARD — equal-height fix on mobile drag-scroll viewport.
   When theme.js syncs .feat-shell heights to the tallest, the inner .feat-card
   must stretch too so its border and background match the shell height.
   ========================================================================== */

.feat-shell {
  align-items: stretch;
}

.feat-shell > .feat-card {
  flex: 1 1 auto;
  align-self: stretch;
}

@media (max-width: 600px) {
  .feat-shell {
    min-height: 100%;
  }

  .feat-shell > .feat-card {
    height: auto;
    min-height: 100%;
  }
}

/* ==========================================================================
   MOBILE MENU — full-screen drawer with all 12 languages (anchor tags),
   styled consistently with nav links. Keeps the "Start Free Trial" pill
   visible next to the hamburger on narrow viewports.
   ========================================================================== */

@media (max-width: 1024px) {

  /* Keep the Start Free Trial pill visible next to the hamburger. */
  .top-right > .cta-pill {
    display: inline-flex;
    padding: 9px 14px;
    font-size: 12px;
    gap: 8px;
  }

  /* Full-screen menu panel — takes the whole viewport, vertical scroll if needed. */
  .menu-toggle[open] .menu-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    padding: 100px 24px 40px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: rgba(12, 11, 16, 0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 200;
  }

  /* Hamburger sits above the fullscreen panel. */
  .menu-toggle {
    z-index: 210;
  }

  .menu-toggle[open] summary {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 220;
  }

  .menu-panel .menu-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .menu-panel .menu-links a {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.15;
    padding: 16px 6px;
    color: var(--ink);
    border-bottom: 1px solid var(--line-2);
    border-radius: 0;
  }

  .menu-panel .menu-links a:last-child {
    border-bottom: 0;
  }

  .menu-panel .menu-meta {
    padding: 28px 6px 10px;
    font-size: 11px;
  }

  /* Language list — rendered as anchors by the PHP template */
  .menu-panel .menu-lang {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .menu-panel .menu-lang .menu-lang__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: var(--ink-2);
    padding: 14px 6px;
    border-bottom: 1px solid var(--line-2);
    border-radius: 0;
    background: transparent;
    text-align: left;
    transition: color .25s var(--ease-out);
  }

  .menu-panel .menu-lang .menu-lang__btn:last-child {
    border-bottom: 0;
  }

  .menu-panel .menu-lang .menu-lang__btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 0 1px var(--line);
    flex-shrink: 0;
  }

  .menu-panel .menu-lang .menu-lang__btn:hover {
    color: var(--ink);
    background: transparent;
  }

  .menu-panel .menu-lang .menu-lang__btn.is-active {
    color: var(--accent);
    background: transparent;
    border-bottom-color: rgba(204, 151, 255, 0.3);
  }

  .menu-panel .menu-lang .menu-lang__btn.is-active::after {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(204, 151, 255, 0.45);
  }

  .menu-panel > .cta-pill {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
  }

  .menu-panel > .cta-pill .cta-pill-dot {
    background: var(--accent-ink);
    box-shadow: 0 0 12px rgba(12, 11, 16, 0.4);
  }

  /* Lock body scroll while menu is open. */
  body:has(details.menu-toggle[open]) {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .top-right > .cta-pill {
    padding: 8px 12px;
    font-size: 11px;
  }

  .top-right > .cta-pill .cta-pill-dot {
    width: 5px;
    height: 5px;
  }
}

/* Per-section CTA rows added to every block. */
.cta-row--section {
  margin-top: 48px;
}

@media (max-width: 720px) {
  .cta-row--section {
    margin-top: 32px;
  }
}

/* ==========================================================================
   RTL — Arabic (html[dir="rtl"] / body.is-rtl-language)
   Images are NOT mirrored. Only layout direction and explicit LTR properties
   are flipped. The [dir="rtl"] attribute on <html> handles text alignment,
   flex-row order, and grid column order automatically.
   ========================================================================== */

/* Arabic typeface — Cairo covers both UI and display roles */
.is-rtl-language {
  --font-ui: 'Cairo', system-ui, sans-serif;
  --font-display: 'Cairo', system-ui, sans-serif;
}

/* Body glow: mirror horizontal focal points */
.is-rtl-language body {
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(204, 151, 255, 0.09), transparent 60%),
    radial-gradient(900px 600px at 110% 40%, rgba(160, 111, 224, 0.05), transparent 70%),
    var(--bg);
}

/* ---- Hero ---- */

/* Right-align the text block so it occupies the right side */
.is-rtl-language .hero-content {
  margin-left: auto;
}

/* Move the image panel to the left side (image is NOT mirrored) */
.is-rtl-language .hero-visual {
  right: auto;
  left: 0;
  justify-content: flex-start;
}

.is-rtl-language .hero-visual img {
  object-position: left center;
}

/* Fade now sits on the RIGHT edge of the visual (where it meets the text) */
.is-rtl-language .hero-visual::before {
  left: auto;
  right: 0;
  background: linear-gradient(
    270deg,
    var(--bg) 0%,
    rgba(12, 11, 16, 0.82) 45%,
    rgba(12, 11, 16, 0) 100%
  );
}

/* Accent vignette flipped to left edge */
.is-rtl-language .hero-visual::after {
  background:
    linear-gradient(90deg, rgba(12, 11, 16, 0.55) 0%, rgba(12, 11, 16, 0) 14%),
    radial-gradient(55% 55% at 30% 25%, rgba(204, 151, 255, 0.10), transparent 70%),
    radial-gradient(45% 55% at 20% 85%, rgba(160, 111, 224, 0.07), transparent 70%);
}

/* ---- Stat strip ---- */
/* Replace right-side dividers with left-side dividers */
.is-rtl-language .stat {
  border-right: none;
  border-left: 1px solid var(--line-2);
}

.is-rtl-language .stat:last-child {
  border-left: none;
}

/* ---- Marquee ---- */
/* Scroll right-to-left in RTL */
.is-rtl-language .rm-track {
  animation-direction: reverse;
}

/* ---- AI Engine list ---- */
/* Flip entrance animation: items slide in from the right */
.is-rtl-language .eng-list .eng-item {
  transform: translateX(12px);
}

.is-rtl-language .eng-list.visible .eng-item {
  transform: translateX(0);
}

/* ---- How it works steps ---- */
/* Flip entrance animation direction */
.is-rtl-language .steps .st {
  transform: translateX(10px);
}

.is-rtl-language .steps.visible .st {
  transform: translateX(0);
}

/* Hover accent bar animates from the right edge */
.is-rtl-language .st::before {
  left: auto;
  right: 0;
}

/* ---- Progress bars (report card) ---- */
/* Fill from right to left */
.is-rtl-language .rb .track i {
  inset: 0 0 0 auto;
  transform-origin: right;
}

/* ---- FAQ ---- */
/* Hover indent from right */
.is-rtl-language details.qa {
  transition: padding-right .3s;
}

.is-rtl-language details.qa:hover {
  padding-left: 0;
  padding-right: 10px;
}

/* Answer indent from right */
.is-rtl-language details.qa .ans {
  padding-left: 40px;
  padding-right: 55px;
}

@media (max-width: 560px) {
  .is-rtl-language details.qa .ans {
    padding-right: 0;
  }
}

/* ---- Footer ---- */
/* Link hover nudge from right */
.is-rtl-language .foot-col a {
  transition: color .2s, padding-right .2s;
}

.is-rtl-language .foot-col a:hover {
  padding-left: 0;
  padding-right: 6px;
}

/* ---- Blog cards ---- */
/* Read-more arrow points left in RTL */
.is-rtl-language .post-card__read-more:hover {
  transform: translateX(-4px);
}
