    :root {
      --ink: #14201c;
      --muted: #5d6a64;
      --paper: #f7f8f2;
      --mist: #e7ece5;
      --line: rgba(20, 32, 28, .12);
      --green: #34c774;
      --green-soft: #dff8e9;
      --green-dark: #126b42;
      --blue: #277bc0;
      --coral: #f06d4f;
      --yellow: #f5c84c;
      --white: #fffef8;
      --shadow: 0 24px 60px rgba(20, 32, 28, .16);
      --hero-shot: url("/assets/screenshots/ru-macros.webp");
      --cta-shot: url("/assets/screenshots/ru-triggers.webp");
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: "Segoe UI", Arial, sans-serif;
      background:
        linear-gradient(90deg, rgba(20, 32, 28, .055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(20, 32, 28, .055) 1px, transparent 1px),
        var(--paper);
      background-size: 36px 36px;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .nav {
      position: fixed;
      inset: 18px 24px auto;
      z-index: 30;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 12px 10px 10px;
      background: rgba(255, 254, 248, .84);
      border: 1px solid rgba(255, 255, 255, .74);
      box-shadow: 0 12px 36px rgba(20, 32, 28, .12);
      backdrop-filter: blur(18px);
    }

    .mobile-menu-button {
      display: none;
      border: 1px solid var(--line);
      border-radius: 10px;
      min-width: 42px;
      min-height: 38px;
      padding: 0;
      background: rgba(20, 32, 28, .05);
      color: var(--ink);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
    }

    .brand img {
      width: 42px;
      height: 42px;
      border-radius: 12px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 18px;
      border: 1px solid var(--ink);
      border-radius: 8px;
      background: var(--ink);
      color: var(--white);
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(20, 32, 28, .16);
    }

    .button:disabled,
    .button.disabled {
      cursor: not-allowed;
      border-color: rgba(20, 32, 28, .18);
      background: #d9ded8;
      color: rgba(20, 32, 28, .52);
      box-shadow: none;
      transform: none;
    }

    .button.secondary {
      background: var(--white);
      color: var(--ink);
    }

    .lang-switch {
      display: inline-grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      padding: 3px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(20, 32, 28, .06);
    }

    .lang-switch button {
      min-width: 38px;
      min-height: 34px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      font: inherit;
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
    }

    .lang-switch button[aria-pressed="true"] {
      background: var(--ink);
      color: var(--white);
    }

    .hero {
      min-height: 92vh;
      position: relative;
      overflow: hidden;
      padding: 122px 24px 64px;
      display: flex;
      align-items: end;
      background:
        linear-gradient(90deg, rgba(247, 248, 242, .96), rgba(247, 248, 242, .76) 43%, rgba(247, 248, 242, .22)),
        var(--hero-shot) right 12% top 54% / min(360px, 36vw) auto no-repeat,
        var(--paper);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(0deg, var(--paper), transparent);
      pointer-events: none;
    }

    .hero-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
      gap: 48px;
      align-items: end;
    }

    .hero-copy {
      padding-bottom: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border: 1px solid rgba(18, 107, 66, .22);
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: clamp(15px, 1.3vw, 19px);
      font-weight: 800;
      box-shadow: 0 16px 34px rgba(18, 107, 66, .12);
    }

    .eyebrow::before {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(52, 199, 116, .16);
    }

    h1 {
      margin: 22px 0 28px;
      max-width: 780px;
      font-size: clamp(58px, 10.6vw, 142px);
      line-height: .94;
      letter-spacing: 0;
      font-weight: 800;
    }

    .lead {
      max-width: 680px;
      margin: 0;
      color: #2e3c36;
      font-size: clamp(20px, 2vw, 30px);
      line-height: 1.24;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-phone {
      position: relative;
      z-index: 3;
      justify-self: end;
      width: min(100%, 350px);
      padding: 12px;
      border-radius: 38px;
      background: #101815;
      box-shadow: var(--shadow);
      transform: rotate(3deg);
    }

    .hero-phone img {
      border-radius: 28px;
      aspect-ratio: 9 / 16;
      object-fit: cover;
    }

    .stats-strip {
      width: min(1180px, calc(100% - 48px));
      margin: -30px auto 78px;
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 18px 48px rgba(20, 32, 28, .1);
    }

    .stat {
      min-height: 108px;
      padding: 22px;
      border-right: 1px solid var(--line);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat b {
      display: block;
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    section {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto 92px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
      gap: 44px;
      align-items: end;
      margin-bottom: 28px;
    }

    h2 {
      margin: 0;
      font-size: clamp(34px, 5vw, 72px);
      line-height: .98;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 600;
    }

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

    .feature {
      min-height: 250px;
      padding: 24px;
      border: 1px solid var(--line);
      background: rgba(255, 254, 248, .74);
    }

    .feature:nth-child(2) {
      background: #eef7f1;
    }

    .feature:nth-child(3) {
      background: #f9f1e5;
    }

    .feature:nth-child(4) {
      background: #edf3fa;
    }

    .feature:nth-child(5) {
      background: #fbf5d9;
    }

    .feature:nth-child(6) {
      background: #f7ece8;
    }

    .feature .icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-bottom: 22px;
      border-radius: 8px;
      background: var(--ink);
      color: var(--white);
      font-size: 24px;
      font-weight: 800;
    }

    .feature h3,
    .info-panel h3 {
      margin: 0 0 12px;
      font-size: 23px;
      line-height: 1.18;
    }

    .feature p,
    .info-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
      font-weight: 600;
    }

    .gallery-band {
      width: 100%;
      margin-bottom: 92px;
      padding: 72px 0;
      background: #111916;
      color: var(--white);
      overflow: hidden;
    }

    .gallery-inner {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .gallery-inner .section-head p {
      color: rgba(255, 254, 248, .72);
    }

    .screens-carousel {
      position: relative;
      margin-top: 10px;
      padding: 0 70px 42px;
    }

    .screens {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding: 4px 2px 18px;
    }

    .screens::-webkit-scrollbar {
      display: none;
    }

    .screen {
      display: block;
      flex: 0 0 clamp(190px, 22vw, 246px);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 26px;
      padding: 10px;
      background: rgba(255, 255, 255, .08);
      box-shadow: 0 26px 60px rgba(0, 0, 0, .26);
      cursor: zoom-in;
      scroll-snap-align: center;
      transition: transform .2s ease, border-color .2s ease;
    }

    .screen:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, .34);
    }

    .screen img {
      width: 100%;
      border-radius: 18px;
      aspect-ratio: 9 / 16;
      object-fit: cover;
    }

    .screen[hidden] {
      display: none;
    }

    .screens-carousel-btn {
      position: absolute;
      top: 43%;
      z-index: 2;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 50%;
      background: rgba(255, 254, 248, .12);
      color: var(--white);
      font-size: 34px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(16px);
      transition: transform .2s ease, background .2s ease, opacity .2s ease;
    }

    .screens-carousel-btn:hover {
      transform: translateY(-2px);
      background: rgba(255, 254, 248, .2);
    }

    .screens-carousel-btn:disabled {
      cursor: default;
      opacity: .28;
      transform: none;
    }

    .screens-carousel-prev {
      left: 0;
    }

    .screens-carousel-next {
      right: 0;
    }

    .screens-carousel-pagination {
      position: absolute;
      left: 70px;
      right: 70px;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }

    .screens-carousel-dot {
      width: 8px;
      height: 8px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 254, 248, .28);
      padding: 0;
      cursor: pointer;
      transition: width .2s ease, background .2s ease;
    }

    .screens-carousel-dot[aria-current="true"] {
      width: 28px;
      border-radius: 999px;
      background: var(--white);
    }

    .info-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
    }

    .info-panel {
      padding: 28px;
      border: 1px solid var(--line);
      background: var(--white);
    }

    .info-panel.accent {
      background: var(--ink);
      color: var(--white);
    }

    .info-panel.accent p,
    .info-panel.accent li,
    .info-panel.accent .list-meta {
      color: rgba(255, 254, 248, .78);
    }

    .info-list {
      display: grid;
      gap: 13px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .info-list li {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 11px;
      color: var(--muted);
      font-weight: 650;
      line-height: 1.45;
    }

    .tick {
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: rgba(52, 199, 116, .18);
      color: var(--green-dark);
      font-weight: 900;
    }

    .info-panel.accent .tick {
      background: rgba(52, 199, 116, .22);
      color: #7cf0aa;
    }

    .specs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .spec {
      min-height: 92px;
      padding: 16px;
      border: 1px solid var(--line);
      background: rgba(247, 248, 242, .7);
    }

    .spec span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .spec b {
      display: block;
      margin-top: 8px;
      font-size: 18px;
      line-height: 1.25;
    }

    .release {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      gap: 20px;
      align-items: start;
      padding: 26px;
      background: #eaf6ef;
      border: 1px solid var(--line);
    }

    .version-badge {
      display: grid;
      place-items: center;
      min-height: 124px;
      background: var(--green);
      color: var(--ink);
      font-size: 34px;
      font-weight: 900;
      border-radius: 8px;
    }

    .release h3 {
      margin: 0 0 10px;
      font-size: 28px;
    }

    .release p {
      margin: 0;
      color: #40504a;
      line-height: 1.6;
      font-weight: 650;
    }

    .cta {
      width: 100%;
      margin: 0;
      padding: 86px 24px;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(17, 25, 22, .92), rgba(17, 25, 22, .72)),
        var(--cta-shot) right 16% center / 320px auto no-repeat,
        #111916;
    }

    .cta-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      max-width: 760px;
    }

    .cta h2 {
      margin-bottom: 18px;
    }

    .cta p {
      margin: 0 0 30px;
      color: rgba(255, 254, 248, .78);
      font-size: 20px;
      line-height: 1.5;
      font-weight: 650;
    }

    .cta .button.secondary {
      border-color: var(--white);
    }

    .feedback {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto 92px;
    }

    .feedback .section-head {
      margin-bottom: 20px;
      gap: 26px;
    }

    .feedback-form {
      background: #f8fbf8;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 22px;
    }

    .feedback-form form {
      margin: 0;
    }

    .feedback-form input,
    .feedback-form textarea,
    .feedback-form select,
    .feedback-form button {
      width: 100%;
      box-sizing: border-box;
      border: 1px solid #c4d1cc;
      border-radius: 10px;
      background: #fff;
      padding: 10px 12px;
      font: inherit;
      color: #1a2a24;
    }

    .feedback-form input:focus,
    .feedback-form textarea:focus,
    .feedback-form select:focus {
      outline: 2px solid rgba(52, 199, 116, .32);
      outline-offset: 0;
      border-color: #34c774;
    }

    .feedback-form button {
      width: auto;
      display: inline-flex;
      justify-content: center;
      border: 0;
      background: var(--ink);
      color: var(--white);
      font-weight: 800;
      cursor: pointer;
      margin-top: 10px;
    }

    .feedback-form button:hover,
    .feedback-form button:focus {
      background: #1e332c;
    }

    .feedback-form table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
    }

    .feedback-form td {
      padding: 0 0 12px;
      vertical-align: top;
    }

    .feedback-form .xw-shadow {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--paper);
      color: #13281f;
      box-shadow: 0 20px 52px rgba(18, 40, 32, .14);
    }

    .feedback-form .xw-tl,
    .feedback-form .xw-tr,
    .feedback-form .xw-tc,
    .feedback-form .xw-ml,
    .feedback-form .xw-mr,
    .feedback-form .xw-mc,
    .feedback-form .xw-bl,
    .feedback-form .xw-br,
    .feedback-form .xw-bc,
    .feedback-form .xw-hdr,
    .feedback-form .xt-close,
    .feedback-form .xt-close2 {
      background-image: none !important;
      background: none !important;
      border: 0 !important;
    }

    .feedback-form .xw-sps,
    .feedback-form .xw-shadow .xw-sps {
      display: none !important;
    }

    footer {
      padding: 28px 24px;
      color: var(--muted);
      background: var(--paper);
      font-size: 13px;
      font-weight: 650;
    }

    .footer-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .screenshot-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 28px 82px;
      background: rgba(5, 8, 7, .94);
    }

    .screenshot-modal[hidden] {
      display: none;
    }

    .modal-close {
      position: fixed;
      top: 22px;
      right: 24px;
      z-index: 105;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      font-size: 31px;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(14px);
    }

    .screenshot-slider {
      width: min(440px, calc(100vw - 180px));
      height: min(86vh, 860px);
      overflow: hidden;
      position: relative;
      border-radius: 28px;
    }

    .screenshot-slider-track {
      width: 100%;
      height: 100%;
      display: flex;
      transition: transform 280ms ease;
    }

    .screenshot-slider-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      min-width: 100%;
      padding: 0 8px;
    }

    .screenshot-slider img {
      width: auto;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
      border-radius: 28px;
      background: #0f1316;
      box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
    }

    .screenshot-slider-btn {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      z-index: 106;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: 50%;
      background: rgba(255, 255, 255, .16);
      color: var(--white);
      font-size: 26px;
      backdrop-filter: blur(14px);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .screenshot-slider-btn:hover {
      background: rgba(255, 255, 255, .26);
    }

    .screenshot-slider-btn[hidden] {
      display: none;
    }

    .screenshot-slider-prev {
      left: max(18px, calc(50vw - 330px));
    }

    .screenshot-slider-next {
      right: max(18px, calc(50vw - 330px));
    }

    .screenshot-slider-pagination {
      position: fixed;
      left: 0;
      right: 0;
      text-align: center;
      bottom: 22px;
      z-index: 106;
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
    }

    @media (max-width: 960px) {
      .nav {
        inset: 12px 12px auto;
      }

      .mobile-menu-button {
        display: inline-flex;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        z-index: 35;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
        margin: 0;
        border: 1px solid rgba(20, 32, 28, .18);
        border-radius: 12px;
        background: rgba(255, 254, 248, .98);
        box-shadow: 0 12px 36px rgba(20, 32, 28, .14);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a:not(.button) {
        display: block;
      }

      .hero {
        min-height: 86vh;
        padding-top: 108px;
        background:
          linear-gradient(180deg, rgba(247, 248, 242, .96), rgba(247, 248, 242, .76)),
          var(--paper);
      }

      .hero-inner,
      .section-head,
      .info-layout {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding-bottom: 0;
      }

      .hero-phone {
        display: none;
        justify-self: start;
        width: min(280px, 76vw);
        transform: rotate(-2deg);
      }

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

      .stat {
        border-bottom: 1px solid var(--line);
      }

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

      .screen {
        min-width: 220px;
      }
    }

    @media (max-width: 620px) {
      .button {
        width: 100%;
      }

      .nav .button {
        width: auto;
      }

      .nav-links {
        gap: 8px;
      }

      .nav {
        position: absolute;
      }

      .brand span {
        display: none;
      }

      .hero {
        padding: 96px 18px 48px;
      }

      .lead {
        font-size: 18px;
      }

      .stats-strip,
      section,
      .gallery-inner {
        width: calc(100% - 32px);
      }

      .screens-carousel {
        padding: 0 0 44px;
      }

      .screens {
        gap: 14px;
        padding-inline: 2px;
      }

      .screen {
        flex-basis: min(72vw, 250px);
        min-width: 0;
      }

      .screens-carousel-btn {
        top: auto;
        bottom: 0;
        width: 42px;
        height: 42px;
        font-size: 28px;
      }

      .screens-carousel-prev {
        left: calc(50% - 82px);
      }

      .screens-carousel-next {
        right: calc(50% - 82px);
      }

      .screens-carousel-pagination {
        left: 92px;
        right: 92px;
        bottom: 15px;
      }

      .stats-strip {
        margin-bottom: 58px;
      }

      .feedback {
        width: calc(100% - 32px);
        margin-bottom: 62px;
      }

      .feedback-form {
        padding: 16px;
      }

      .stat {
        min-height: 94px;
        padding: 17px;
      }

      .feature-grid,
      .specs {
        grid-template-columns: 1fr;
      }

      .feature,
      .info-panel {
        padding: 21px;
      }

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

      .version-badge {
        min-height: 82px;
      }

      .cta {
        padding: 64px 18px;
        background:
          linear-gradient(180deg, rgba(17, 25, 22, .94), rgba(17, 25, 22, .88)),
          var(--cta-shot) right 18px bottom -90px / 190px auto no-repeat,
          #111916;
      }

      .screenshot-modal {
        padding: 22px 16px 54px;
      }

    .screenshot-slider {
      width: calc(100vw - 32px);
      height: min(78vh, 720px);
    }

    .screenshot-slider-btn {
      width: 44px;
      height: 44px;
      font-size: 22px;
    }

    .screenshot-slider-prev {
      left: 12px;
    }

    .screenshot-slider-next {
      right: 12px;
    }
  }
  </style>
