:root {
      --ink: #111827;
      --muted: #5d6675;
      --line: #d9e1e8;
      --paper: #ffffff;
      --soft: #f7f9fb;
      --soft-2: #eef5f3;
      --teal: #0f766e;
      --teal-dark: #0a4f4a;
      --amber: #b45309;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--soft);
    }

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

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 72px;
      padding: 14px clamp(18px, 4vw, 56px);
      color: #ffffff;
      background: rgba(12, 19, 27, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(14px);
    }

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

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: var(--teal);
      box-shadow: 0 10px 24px rgba(15, 118, 110, 0.28);
    }

    .brand-mark svg {
      width: 24px;
      height: 24px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 16px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 14px;
    }

    nav a {
      white-space: nowrap;
    }

    nav a:hover,
    nav a.active {
      color: #ffffff;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: auto;
    }

    .language-switch {
      width: 34px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
    }

    .language-switch:hover {
      background: rgba(255, 255, 255, 0.16);
    }

    .flag {
      position: relative;
      width: 24px;
      height: 16px;
      overflow: hidden;
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
    }

    .flag-us {
      background: repeating-linear-gradient(to bottom, #b22234 0 1.23px, #ffffff 1.23px 2.46px);
    }

    .flag-us::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 10.6px;
      height: 8.6px;
      background: #3c3b6e;
    }

    .hero {
      min-height: 360px;
      padding: 92px clamp(18px, 5vw, 72px) 42px;
      display: flex;
      align-items: center;
      color: #ffffff;
      background:
        linear-gradient(90deg, rgba(8, 14, 20, 0.92) 0%, rgba(8, 14, 20, 0.82) 36%, rgba(8, 14, 20, 0.28) 72%, rgba(8, 14, 20, 0.08) 100%),
        url("plugin-hero.png") center / cover no-repeat;
      background:
        linear-gradient(90deg, rgba(8, 14, 20, 0.92) 0%, rgba(8, 14, 20, 0.82) 36%, rgba(8, 14, 20, 0.28) 72%, rgba(8, 14, 20, 0.08) 100%),
        image-set(url("plugin-hero-1440.webp") type("image/webp"), url("plugin-hero.png") type("image/png")) center / cover no-repeat;
    }

    .hero-inner {
      width: 100%;
      max-width: 780px;
      min-width: 0;
    }

    .eyebrow,
    .section-kicker {
      color: #bcece5;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      letter-spacing: 0;
    }

    h1 {
      margin-top: 10px;
      max-width: 760px;
      font-size: 42px;
      line-height: 1.04;
    }

    .hero p {
      max-width: 660px;
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: 16px;
      line-height: 1.48;
    }

    section {
      padding: 64px clamp(18px, 5vw, 72px);
    }

    .section-inner {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      min-width: 0;
    }

    .section-head {
      max-width: 880px;
      margin-bottom: 30px;
    }

    .section-head .section-kicker {
      color: var(--teal);
    }

    h2 {
      margin-top: 8px;
      font-size: 36px;
      line-height: 1.12;
    }

    .section-head p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .band {
      background: #ffffff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .summary-item {
      min-width: 0;
      min-height: 152px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--soft);
      box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
    }

    .summary-item strong {
      display: block;
      font-size: 18px;
      line-height: 1.25;
    }

    .summary-item span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .process-list {
      counter-reset: process;
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .process-list li {
      counter-increment: process;
      position: relative;
      display: block;
      min-height: 80px;
      padding: 18px 20px 18px 86px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--paper);
      box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
      line-height: 1.55;
      overflow-wrap: anywhere;
    }

    .process-list li::before {
      content: counter(process);
      position: absolute;
      left: 20px;
      top: 18px;
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border-radius: 8px;
      color: #ffffff;
      background: var(--teal);
      font-weight: 800;
    }

    .process-list strong {
      color: var(--teal-dark);
    }

    .language-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
    }

    .language-list li {
      counter-increment: none;
      min-height: 0;
      padding: 8px 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--soft);
      box-shadow: none;
      line-height: 1.35;
    }

    .language-list li::before {
      display: none;
      content: none;
    }

    footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px clamp(18px, 5vw, 72px);
      color: var(--muted);
      background: #ffffff;
      border-top: 1px solid var(--line);
      font-size: 14px;
    }

    .email-image {
      display: block;
      width: 285px;
      max-width: 100%;
      height: auto;
    }

    .liveinternet-counter {
      display: inline-flex;
      align-items: center;
      line-height: 0;
      opacity: 0.78;
    }

    .liveinternet-counter:hover {
      opacity: 1;
    }

    .liveinternet-counter img {
      display: block;
      width: 88px;
      height: 31px;
      border: 0;
    }

    @media (max-width: 980px) {
      .site-header {
        position: absolute;
      }

      .site-header {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
      }

      .header-actions {
        width: 100%;
        margin-left: 0;
        padding-right: 46px;
      }

      nav {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 8px 14px;
        overflow-x: visible;
        padding: 2px 0 4px;
        font-size: 13px;
      }

      nav a {
        flex: 0 1 auto;
      }

      nav a[target="_blank"] {
        display: none;
      }

      .language-switch {
        position: absolute;
        top: 14px;
        right: clamp(18px, 4vw, 56px);
      }

      .hero {
        padding-top: 126px;
      }

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

    @media (max-width: 640px) {
      .site-header {
        min-height: 64px;
        padding: 12px 16px;
      }

      .language-switch {
        top: 12px;
        right: 16px;
      }

      .brand {
        max-width: calc(100% - 52px);
        white-space: nowrap;
        font-size: 13px;
      }

      .hero {
        min-height: 520px;
        padding: 140px 18px 44px;
      }

      h1 {
        font-size: 30px;
        overflow-wrap: anywhere;
      }

      h2 {
        font-size: 28px;
      }

      section {
        padding: 54px 18px;
      }

      .hero-inner,
      .section-inner {
        max-width: 354px;
      }

      .section-inner {
        margin-left: 0;
        margin-right: 0;
      }

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

      .language-list {
        grid-template-columns: 1fr;
      }

      .process-list li {
        min-height: 68px;
        padding: 16px 16px 16px 64px;
      }

      .process-list li::before {
        left: 16px;
        top: 16px;
        width: 36px;
        height: 36px;
      }

      footer {
        display: grid;
        justify-content: start;
        align-items: start;
        gap: 10px;
      }

      footer span {
        justify-self: start;
      }
    }
