    :root {
      --bg: #ffffff;
      --surface: #f9f8ff;
      --surface-alt: #efeff7;
      --surface-soft: #fbfbff;
      --surface-lilac: #e1d0ff;
      --text: #171624;
      --text-strong: #0f172a;
      --text-muted: #5f5a6f;
      --line: rgba(21, 19, 31, 0.08);
      --primary: #6c43f6;
      --primary-dark: #6137f0;
      --primary-soft: #ede7ff;
      --yellow: #ffde59;
      --shadow: 0 18px 42px rgba(97, 55, 240, 0.2);
      --shadow-card: 0 18px 48px rgba(28, 28, 37, 0.08);
      --radius-card: 28px;
      --radius-panel: 40px;
      --radius-pill: 999px;
      --container: min(1180px, calc(100vw - 32px));
      --font-display: "Plus Jakarta Sans", sans-serif;
      --font-ui: "Plus Jakarta Sans", sans-serif;
      --font-accent: "Plus Jakarta Sans", sans-serif;
      --font-metric: "Plus Jakarta Sans", sans-serif;
      --text-body: 1rem;
      --text-body-lg: 1.0625rem;
      --text-small: 0.9375rem;
      --text-label: 0.875rem;
      --title-section: clamp(2.35rem, 4vw, 3.8rem);
      --title-feature: clamp(2.1rem, 3.2vw, 3.1rem);
      --title-card: 1.25rem;
      --title-mini: 1.125rem;
      --leading-body: 1.65;
      --leading-tight: 1.12;
      --tracking-display: -0.06em;
      --header-offset: 90px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }
    body {
      margin: 0;
      color: var(--text);
      font-family: var(--font-ui);
      font-size: var(--text-body);
      line-height: var(--leading-body);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
      padding-top: var(--header-offset);
    }

    .is-rtl-language {
      direction: rtl;
      text-align: right;
    }

    .is-rtl-language .brand,
    .is-rtl-language .header__actions,
    .is-rtl-language .nav,
    .is-rtl-language .footer__links,
    .is-rtl-language .footer__support {
      direction: rtl;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

    summary {
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    :focus-visible {
      outline: 3px solid rgba(108, 67, 246, 0.35);
      outline-offset: 3px;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -64px;
      z-index: 80;
      padding: 12px 16px;
      border-radius: 16px;
      background: #101014;
      color: #fff;
      transition: top 180ms ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .section {
      padding: 100px 0;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.66);
      border-bottom: 1px solid rgba(21, 19, 31, 0.06);
    }

    .header__inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 90px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      line-height: 1;
    }

    .brand__mark {
      width: 40px;
      height: 39px;
      flex: none;
    }

    .brand__text {
      display: inline-block;
      color: var(--text);
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .nav-wrap {
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }

    .nav {
      display: inline-flex;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 7px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(21, 19, 31, 0.06);
      background: rgba(255, 255, 255, 0.72);
    }

    .nav a,
    .lang-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 10px 16px;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      font-size: var(--text-label);
      font-weight: 600;
      line-height: 1;
      transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .nav a:hover,
    .nav a:focus-visible,
    .lang-pill:hover,
    .lang-pill:focus-visible {
      background: var(--primary-soft);
      color: var(--text);
      transform: translateY(-1px);
    }

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

    .lang-pill {
      min-width: 56px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(21, 19, 31, 0.1);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 14px 30px;
      border: 0;
      border-radius: var(--radius-pill);
      cursor: pointer;
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1;
      transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    }

    .header__actions .button {
      min-height: 52px;
      padding: 12px 24px;
      font-size: 1rem;
    }

    .button:focus-visible,
    .menu-toggle:focus-visible,
    .store-badge:focus-visible,
    .socials a:focus-visible {
      outline-offset: 4px;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
    }

    .button--primary {
      color: #fff;
      background: linear-gradient(160deg, #7d57ff 0%, #6137f0 100%);
      box-shadow: var(--shadow);
    }

    .button--secondary {
      background: #fff;
      border: 1px solid var(--line);
      color: var(--text);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 30px 0 56px;
    }

    .hero__bg {
      position: absolute;
      inset: 0 0 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero__bg-image {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      width: 100%;
      height: auto;
      opacity: 0.98;
    }

    .hero__content {
      position: relative;
      z-index: 1;
      max-width: 855px;
      margin: 0 auto;
      text-align: center;
      isolation: isolate;
    }

    .eyebrow {
      margin: 0 0 16px;
      color: var(--text-muted);
      font-family: var(--font-accent);
      font-size: var(--text-body-lg);
      font-weight: 500;
      line-height: 1.45;
    }

    .hero h1,
    .section-title,
    .cta__title {
      margin: 0;
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: var(--tracking-display);
      line-height: 0.96;
      color: var(--text);
    }

    .hero h1 {
      font-size: clamp(3.3rem, 7vw, 5rem);
    }

    .hero h1 .hero__eyebrow-inline {
      display: block;
      margin-bottom: 18px;
      color: var(--text-muted);
      font-size: clamp(1.15rem, 2vw, 1.8rem);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

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

    .hero__lead {
      max-width: 690px;
      margin: 20px auto 0;
      color: var(--text-muted);
      font-size: var(--text-body-lg);
      line-height: var(--leading-body);
    }

    .hero__stats {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: fit-content;
      margin: 54px auto 0;
    }

    .quiz-insert-section {
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .quiz-insert-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 28px;
      padding: 34px 38px;
      border-radius: 36px;
      background: #f3efff;
      box-shadow: 0 18px 42px rgba(57, 38, 130, 0.08);
    }

    .quiz-insert-card__copy {
      max-width: 760px;
    }

    .quiz-insert-card__title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 2.5vw, 2.55rem);
      font-weight: 800;
      letter-spacing: -0.055em;
      line-height: 1;
      color: var(--text);
    }

    .quiz-insert-card__text {
      max-width: 620px;
      margin: 12px 0 0;
      color: var(--text-muted);
      font-size: var(--text-body);
      line-height: 1.55;
    }

    .quiz-insert-card__cta {
      justify-self: end;
      white-space: nowrap;
    }

    .hero__metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(160px, 1fr));
      align-items: start;
      gap: 48px;
    }

    .metric {
      display: grid;
      grid-template-rows: auto auto;
      justify-items: center;
      align-content: start;
      row-gap: 10px;
      min-width: 0;
      text-align: center;
    }

    .metric__value {
      margin: 0;
      font-family: var(--font-metric);
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.1;
      color: #15131f;
    }

    .metric__caption {
      margin: 0;
      color: rgba(95, 90, 111, 0.92);
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .metric__stars {
      display: block;
      color: #f2b340;
      letter-spacing: 0.14em;
      font-size: var(--text-small);
      line-height: 1;
    }

    .metric__detail {
      display: grid;
      justify-items: center;
      align-content: start;
      gap: 6px;
      width: 100%;
      min-height: 46px;
    }

    .metric__subcaption {
      margin: 0;
      color: rgba(95, 90, 111, 0.92);
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: 0.01em;
    }

    .hero__trust {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 18px;
      max-width: 560px;
      color: var(--text-muted);
      font-size: var(--text-small);
      font-weight: 600;
      text-align: center;
    }

    .hero__trust span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .hero__trust span::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: rgba(108, 67, 246, 0.3);
    }

    .section-title {
      font-size: var(--title-section);
      text-align: center;
      text-wrap: balance;
    }

    .section-subtitle {
      margin: 18px auto 0;
      max-width: 760px;
      color: var(--text-muted);
      font-size: var(--text-body);
      text-align: center;
      line-height: var(--leading-body);
    }

    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      margin-top: 40px;
    }

    .scenario-card {
      border: 1px solid rgba(21, 19, 31, 0.06);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .scenario-card:nth-child(1) {
      background: #fff8c9;
      box-shadow: 0 14px 64px #ffe396;
      transform: rotate(-2deg);
    }

    .scenario-card:nth-child(2) {
      background: #ded1ff;
      box-shadow: 0 14px 64px #d9ccff;
      transform: rotate(2deg);
    }

    .scenario-card:nth-child(3) {
      background: #ffd9ea;
      box-shadow: 0 14px 64px #ffb6e7;
      transform: rotate(-2deg);
    }

    .scenario-card:nth-child(4) {
      background: #cdf6bd;
      box-shadow: 0 14px 64px #cff3a3;
      transform: rotate(1.5deg);
    }

    .scenario-card img {
      height: 232px;
      object-fit: cover;
    }

    .scenario-card__body {
      padding: 28px 24px 30px;
    }

    .scenario-card__title,
    .feature-story__title,
    .mini-card h3,
    .review-card__author,
    .footer__title {
      margin: 0;
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: -0.05em;
      color: var(--text);
    }

    .scenario-card__title {
      font-size: clamp(1.4rem, 1.9vw, 1.56rem);
      line-height: 1;
      color: var(--text-strong);
    }

    .scenario-card__title + p {
      margin-top: 8px;
    }

    .scenario-card p,
    .feature-copy p,
    .mini-card p,
    .review-card blockquote,
    .footer p,
    .footer a,
    .faq__answer {
      color: var(--text-muted);
      line-height: var(--leading-body);
    }

    .section-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      margin-top: 40px;
    }

    .feature-band {
      background: var(--surface-alt);
    }

    .feature-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(420px, 596px);
      gap: 64px;
      align-items: center;
    }

    .feature-copy h2,
    .gallery-title,
    .faq-title,
    .reviews-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: var(--title-feature);
      line-height: 1.02;
      letter-spacing: var(--tracking-display);
      color: var(--text);
    }

    .feature-copy h2 {
      max-width: 445px;
    }

    .feature-copy p + p {
      margin-top: 14px;
    }

    .feature-image {
      position: relative;
      min-height: 595px;
      overflow: hidden;
      border-radius: 40px;
    }

    .feature-image__blob {
      position: absolute;
      left: -26%;
      top: 4%;
      width: 88%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(191, 182, 255, 0.9) 0%, rgba(191, 182, 255, 0.12) 62%, transparent 72%);
    }

    .feature-image img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 64px;
    }

    .benefit {
      min-height: 204px;
      padding: 22px 24px 20px;
      border-radius: 40px;
      border: 1px solid rgba(21, 19, 31, 0.04);
      text-align: center;
    }

    .benefit__icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 18px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    }

    .benefit__icon img {
      width: 80px;
      height: 80px;
      object-fit: contain;
    }

    .benefit__title {
      margin: 0;
      font-family: var(--font-accent);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-strong);
      line-height: 1.2;
    }

    .benefit p {
      margin: 10px 0 0;
      font-size: var(--text-small);
      color: var(--text-muted);
      line-height: 1.45;
    }

    .benefit--violet .benefit__icon {
      background: #d7cdf8;
    }

    .benefit--gold .benefit__icon {
      background: #fbefb8;
    }

    .benefit--coral .benefit__icon {
      background: #ffd4c8;
    }

    .benefit--blue .benefit__icon {
      background: #b8def8;
    }

    .benefit--violet {
      background: #e0dcf4;
    }

    .benefit--gold {
      background: #f8f0cf;
    }

    .benefit--coral {
      background: #f8dfd4;
    }

    .benefit--blue {
      background: #c6def2;
    }

    .gallery {
      background: #ffffff;
      overflow: hidden;
    }

    .gallery-title,
    .gallery-kicker {
      text-align: center;
    }

    .gallery-title {
      margin: 0 0 16px;
    }

    .gallery-kicker {
      margin: 0;
      color: var(--text-muted);
      font-family: var(--font-accent);
      font-size: var(--text-body-lg);
      font-weight: 500;
      line-height: 1.4;
    }

    .gallery-hero {
      position: relative;
      margin-top: 64px;
      border-radius: 0;
      overflow: visible;
      min-height: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .gallery-hero__image {
      display: block;
      width: 100%;
      max-height: 630px;
      margin: 0 auto;
      height: auto;
      object-fit: contain;
    }

    .app-band {
      background: var(--surface-lilac);
      overflow: hidden;
    }

    .app-band .section-subtitle {
      max-width: 855px;
    }

    .app-band .gallery-kicker {
      margin-bottom: 16px;
    }

    .feature-stories {
      margin-top: 80px;
      display: grid;
      gap: 80px;
    }

    .feature-story {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 331px;
      gap: 48px;
      align-items: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .feature-story--reverse {
      grid-template-columns: 331px minmax(0, 1fr);
      max-width: 712px;
    }

    .feature-story__title {
      font-size: clamp(1.95rem, 2.6vw, 2.2rem);
      line-height: 1.05;
    }

    .feature-story__copy {
      display: grid;
      gap: 16px;
    }

    .feature-story__copy p {
      margin: 0;
      max-width: 340px;
      color: var(--text-muted);
      font-size: var(--text-body-lg);
      line-height: 1.55;
    }

    .feature-story__visual {
      position: relative;
      min-height: 293px;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    }

    .feature-story__visual--purple {
      background: linear-gradient(180deg, #7149f6 0%, #643ce9 100%);
    }

    .feature-story__visual--white {
      background: rgba(255, 255, 255, 0.94);
    }

    .feature-story__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-story__visual--placeholder {
      background:
        radial-gradient(circle at top right, rgba(108, 67, 246, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 244, 255, 0.98) 100%);
      border: 1px solid rgba(108, 67, 246, 0.12);
      box-shadow: 0 18px 32px rgba(83, 64, 169, 0.08);
    }

    .feature-story__visual--placeholder::before,
    .feature-story__visual--placeholder::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      background: rgba(108, 67, 246, 0.11);
    }

    .feature-story__visual--placeholder::before {
      width: 150px;
      height: 150px;
      top: -32px;
      right: -24px;
    }

    .feature-story__visual--placeholder::after {
      width: 108px;
      height: 108px;
      left: 22px;
      bottom: -30px;
    }

    .feature-story__badge {
      position: absolute;
      top: 18px;
      left: 18px;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.88);
      color: #5f48cb;
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(108, 67, 246, 0.1);
    }

    .translator-visual {
      position: relative;
      width: 331px;
      height: 293px;
      margin: 0 auto;
      overflow: hidden;
      background: transparent;
      box-shadow: none;
    }

    .translator-visual__stage {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 211px;
      border-radius: 56px;
      background: #6a41f5;
    }

    .translator-visual__phone {
      position: absolute;
      left: 42px;
      top: 0;
      width: 236px;
      height: 515px;
      border: 8px solid #000;
      border-radius: 44px;
      background:
        linear-gradient(180deg, #f5f4ff 0%, #f1f1ff 100%);
      transform: rotate(3.6deg);
      transform-origin: top left;
      box-shadow: 0 18px 28px rgba(34, 27, 74, 0.18);
    }

    .translator-visual__notch {
      position: absolute;
      top: 10px;
      left: 50%;
      width: 86px;
      height: 18px;
      transform: translateX(-50%);
      border-radius: 0 0 14px 14px;
      background: #0d0d12;
    }

    .translator-visual__messages {
      position: absolute;
      left: 12px;
      top: 46px;
      width: 308px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transform: rotate(3.24deg);
      filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
    }

    .translator-bubble {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border-radius: 26px;
      padding: 10px 13px;
      color: #161150;
    }

    .translator-bubble--human {
      width: 255px;
      margin-left: auto;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .translator-bubble__wave {
      display: flex;
      align-items: center;
      gap: 2px;
      height: 36px;
      padding: 5px 12px;
      border-radius: 19px;
      background: #fff;
    }

    .translator-bubble__wave span {
      width: 4px;
      border-radius: 999px;
      background: rgba(73, 59, 219, 0.4);
      flex: none;
    }

    .translator-bubble__wave span:nth-child(1) { height: 15px; }
    .translator-bubble__wave span:nth-child(2) { height: 9px; }
    .translator-bubble__wave span:nth-child(3) { height: 4px; }
    .translator-bubble__wave span:nth-child(4) { height: 26px; }
    .translator-bubble__wave span:nth-child(5) { height: 4px; }
    .translator-bubble__wave span:nth-child(6) { height: 4px; }
    .translator-bubble__wave span:nth-child(7) { height: 4px; }
    .translator-bubble__wave span:nth-child(8) { height: 15px; }
    .translator-bubble__wave span:nth-child(9) { height: 4px; }
    .translator-bubble__wave span:nth-child(10) { height: 4px; }
    .translator-bubble__wave span:nth-child(11) { height: 15px; }
    .translator-bubble__wave span:nth-child(12) { height: 4px; }
    .translator-bubble__wave span:nth-child(13) { height: 4px; }
    .translator-bubble__wave span:nth-child(14) { height: 17px; }
    .translator-bubble__wave span:nth-child(15) { height: 24px; }
    .translator-bubble__wave span:nth-child(16) { height: 19px; }
    .translator-bubble__wave span:nth-child(n+17) { height: 4px; }

    .translator-bubble__row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .translator-bubble__text {
      margin: 0;
      font-family: var(--font-accent);
      font-size: 18px;
      line-height: 1.05;
      color: #161150;
    }

    .translator-bubble__play {
      width: 51px;
      height: 51px;
      border-radius: 999px;
      background: #493bdb;
      display: grid;
      place-items: center;
      flex: none;
      box-shadow: 0 8px 16px rgba(73, 59, 219, 0.26);
    }

    .translator-bubble__play::before {
      content: "";
      display: block;
      margin-left: 3px;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 12px solid #fff;
    }

    .translator-bubble--cat {
      width: 255px;
      margin-right: auto;
      padding-right: 68px;
    }

    .translator-bubble__avatar {
      width: 51px;
      height: 51px;
      border-radius: 999px;
      background: #f4eefc;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
    }

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

    .feature-carousel-shell {
      position: relative;
      margin-top: 76px;
    }

    .feature-carousel {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 10px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
    }

    .feature-carousel::-webkit-scrollbar {
      display: none;
    }

    .feature-carousel:focus-visible {
      outline: 2px solid rgba(106, 65, 245, 0.34);
      outline-offset: 10px;
    }

    .feature-carousel-shell::before,
    .feature-carousel-shell::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 88px;
      z-index: 2;
      pointer-events: none;
    }

    .feature-carousel-shell::before {
      left: 0;
      background: linear-gradient(90deg, var(--surface-lilac) 0%, rgba(225, 208, 255, 0) 100%);
    }

    .feature-carousel-shell::after {
      right: 0;
      background: linear-gradient(270deg, var(--surface-lilac) 0%, rgba(225, 208, 255, 0) 100%);
    }

    .feature-carousel__track {
      display: flex;
      gap: 24px;
      width: max-content;
      padding-right: 88px;
    }

    .feature-card {
      display: flex;
      flex-direction: column;
      width: 286px;
      min-height: 320px;
      padding: 22px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 30px rgba(83, 64, 169, 0.08);
      flex: none;
      scroll-snap-align: start;
    }

    .feature-card__media {
      width: 120px;
      height: 120px;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
    }

    .feature-card__media img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .feature-card__body {
      display: grid;
      gap: 10px;
    }

    .feature-card h3 {
      margin: 0;
      font-size: 1.0625rem;
      line-height: 1.15;
    }

    .feature-card p {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.45;
      color: var(--text-muted);
    }

    .listen-card {
      margin: 64px auto 0;
      display: grid;
      grid-template-columns: 331px minmax(0, 1fr);
      gap: 48px;
      align-items: center;
      max-width: 712px;
    }

    .listen-card__visual {
      position: relative;
      min-height: 293px;
      border-radius: 0;
      overflow: visible;
      background: transparent;
      border: 0;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .listen-card__copy {
      display: grid;
      gap: 16px;
    }

    .listen-card__copy .feature-story__title {
      margin: 0;
    }

    .listen-card__copy .cta__text {
      margin: 0;
      max-width: 340px;
      color: var(--text-muted);
      text-align: left;
      font-size: var(--text-body-lg);
      line-height: 1.55;
    }

    .listen-card__copy .store-row {
      justify-content: flex-start;
      margin-top: 0;
    }

    .disclaimer-note {
      max-width: 620px;
      margin: 18px auto 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.75rem;
      line-height: 1.55;
    }

    .reviews-title,
    .faq-title {
      text-align: center;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
      margin-top: 64px;
    }

    .review-card {
      position: relative;
      padding: 32px 32px 30px;
      border-radius: 56px;
      background: #fff;
      box-shadow: 0 24px 56px rgba(25, 23, 38, 0.08);
    }

    .review-card::before {
      content: "“";
      position: absolute;
      left: 0;
      top: -20px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 6rem;
      line-height: 1;
      color: rgba(108, 67, 246, 0.12);
    }

    .review-card__stars {
      color: #f2b340;
      letter-spacing: 0.22em;
      font-size: 1rem;
    }

    .review-card blockquote {
      margin: 16px 0 24px;
      font-family: var(--font-accent);
      font-size: 1.0625rem;
      line-height: 1.55;
      color: var(--text-strong);
    }

    .review-card__footer {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .review-card__avatar {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      overflow: hidden;
      background: #eee;
    }

    .review-card__author {
      font-family: var(--font-accent);
      font-size: 1rem;
      letter-spacing: 0;
    }

    .review-card__source {
      margin-top: 2px;
      font-size: 0.8125rem;
      color: #64748b;
    }

    .faq {
      background: var(--surface-soft);
    }

    .faq__wrap {
      max-width: 896px;
      margin: 0 auto;
    }

    .faq-list {
      display: grid;
      gap: 16px;
      margin-top: 64px;
    }

    .faq-item {
      border: 1px solid rgba(99, 71, 209, 0.1);
      border-radius: 36px;
      background: #fff;
      overflow: hidden;
    }

    .faq-item summary {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 25px 25px 24px;
      cursor: pointer;
      color: var(--text-strong);
      font-family: var(--font-accent);
      font-size: 1.0625rem;
      font-weight: 700;
      line-height: 1.35;
      text-align: left;
    }

    .faq-item__icon {
      position: relative;
      flex: none;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(108, 67, 246, 0.08);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .faq__answer {
      padding: 0 25px 25px;
      font-size: var(--text-small);
    }

    .cta {
      position: relative;
      overflow: hidden;
      margin-top: 96px;
      border-radius: 56px;
      padding: 48px;
      background: #6347d1;
      color: #fff;
      text-align: center;
    }

    .cta::before,
    .cta::after {
      content: "";
      position: absolute;
      width: 190px;
      aspect-ratio: 1;
      border-radius: 38% 62% 50% 50% / 54% 36% 64% 46%;
      background: rgba(255, 255, 255, 0.08);
    }

    .cta::before {
      left: -62px;
      top: -32px;
      transform: rotate(-14deg);
    }

    .cta::after {
      right: -56px;
      bottom: -54px;
      transform: rotate(14deg);
    }

    .cta__title {
      max-width: 820px;
      margin: 0 auto;
      color: #fff;
      font-size: clamp(2.35rem, 4vw, 3.78rem);
    }

    .cta__text {
      max-width: 680px;
      margin: 20px auto 0;
      color: rgba(255, 255, 255, 0.82);
      font-family: var(--font-accent);
      font-size: var(--text-body-lg);
      line-height: 1.55;
    }

    .store-row {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .store-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 69px;
      padding: 0;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 18px 30px rgba(24, 16, 63, 0.14);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
    }

    .store-badge:hover,
    .store-badge:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 22px 34px rgba(24, 16, 63, 0.2);
      border-color: rgba(108, 67, 246, 0.2);
      background: #fdfcff;
    }

    .store-badge img {
      display: block;
      width: auto;
      height: 69px;
    }

    .store-badge--small {
      min-height: 44px;
      border-radius: 20px;
      box-shadow: none;
      background: #fff;
    }

    .store-badge--small img {
      height: 44px;
    }

    .footer__lead {
      max-width: 380px;
      margin: 22px 0 0;
      font-size: var(--text-small);
      color: #94a3b8;
      line-height: 1.55;
    }

    .footer {
      background: #0f172a;
      color: #fff;
      border-top-left-radius: 56px;
      border-top-right-radius: 56px;
      padding: 96px 0 44px;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
    }

    .footer .brand__text {
      color: #f8fafc;
    }

    .footer__links {
      display: grid;
      gap: 16px;
      justify-items: start;
      align-content: start;
    }

    .footer__links a {
      color: #f8fafc;
      font-family: var(--font-accent);
      font-size: 0.9rem;
      line-height: 1.2;
      text-decoration: none;
    }

    .footer__support {
      display: grid;
      gap: 20px;
      align-content: start;
      justify-items: start;
    }

    .footer__label {
      margin: 0 0 8px;
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    .footer__email {
      color: #fff;
      font-family: var(--font-accent);
      font-size: 1rem;
      line-height: 1.1;
    }

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

    .footer__download .store-badge {
      width: auto;
    }

    .footer__bottom {
      margin-top: 64px;
      padding-top: 32px;
      padding-bottom: 28px;
      border-top: 1px solid #1e293b;
      color: #94a3b8;
      font-size: var(--text-small);
      line-height: 1.55;
    }

    .footer__copyright {
      margin: 0;
      color: #94a3b8;
      font-size: var(--text-small);
      line-height: 1.55;
    }

    .menu-toggle {
      display: none;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .menu-toggle__icon {
      position: relative;
      display: block;
      width: 22px;
      height: 16px;
      flex: none;
    }

    .menu-toggle__icon::before,
    .menu-toggle__icon::after,
    .menu-toggle__icon {
      background: transparent;
    }

    .menu-toggle__icon::before,
    .menu-toggle__icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 22px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-toggle__icon::before {
      top: 0;
      box-shadow: 0 6.5px 0 0 currentColor;
    }

    .menu-toggle__icon::after {
      bottom: 0;
    }

    .faq-item summary .faq-item__icon {
      text-align: center;
      transition: transform 180ms ease;
    }

    .faq-item__icon::before,
    .faq-item__icon::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 16px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      transform: translate(-50%, -50%);
    }

    .faq-item__icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-item[open] .faq-item__icon::after {
      opacity: 0;
    }

    @media (max-width: 1180px) {
      .scenario-grid,
      .benefits,
      .gallery-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .feature-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
      }

      .feature-copy h2,
      .feature-copy p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
      }

      .feature-image {
        min-height: auto;
        width: min(720px, calc(100vw - 64px));
        margin: 0 auto;
      }

      .benefits {
        width: min(960px, calc(100vw - 64px));
        margin-left: auto;
        margin-right: auto;
      }

      .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
      }
    }

    @media (max-width: 960px) {
      :root {
        --header-offset: 76px;
      }

      .header__inner {
        min-height: 76px;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .nav-wrap {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(21, 19, 31, 0.08);
        box-shadow: 0 20px 40px rgba(21, 19, 31, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
      }

      .header.is-open .nav-wrap {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        border: 0;
        padding: 0;
      }

      .header__actions {
        justify-content: space-between;
      }

      .hero {
        padding: 24px 0 56px;
      }

      .hero__bg-image {
        left: 0;
        right: 0;
        bottom: 0;
      }

      .feature-stories {
        gap: 40px;
        margin-bottom: 40px;
      }

      .feature-band .container {
        width: min(100%, calc(100vw - 40px));
      }

      .quiz-insert-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 26px 24px;
        border-radius: 30px;
      }

      .quiz-insert-card__cta {
        justify-self: stretch;
      }

      .feature-copy {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
      }

      .feature-copy h2,
      .feature-copy p {
        margin-left: auto;
        margin-right: auto;
      }

      .feature-image {
        width: min(640px, 100%);
        border-radius: 40px;
      }

      .benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(720px, 100%);
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
      }

      .feature-story,
      .feature-story--reverse {
        grid-template-columns: 1fr;
        max-width: 560px;
        gap: 28px;
      }

      .feature-story__copy,
      .feature-story--reverse .feature-story__copy {
        order: 2;
        text-align: center;
      }

      .feature-story__visual,
      .feature-story--reverse .feature-story__visual {
        order: 1;
      }

      .feature-story__copy p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .listen-card {
        grid-template-columns: 1fr;
        max-width: 560px;
      }

      .listen-card__visual {
        order: 1;
      }

      .listen-card__copy {
        order: 2;
        justify-items: center;
        text-align: center;
      }

      .listen-card__copy .cta__title,
      .listen-card__copy .cta__text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .feature-carousel-shell {
        margin-top: 56px;
      }

      .feature-carousel-shell::before,
      .feature-carousel-shell::after {
        width: 12px;
      }

      .feature-card {
        width: 248px;
        min-height: 296px;
        padding: 20px;
      }

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

      .footer__bottom {
        margin-top: 48px;
      }
    }

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

      .hero {
        padding: 20px 0 40px;
      }

      .hero__bg {
        inset: auto 0 0;
        height: auto;
      }

      .hero__bg-image {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        max-width: 100%;
        transform: none;
      }

      .hero__content {
        max-width: 100%;
      }

      .hero h1 {
        font-size: clamp(2.6rem, 15vw, 4.1rem);
      }

      .hero__eyebrow-inline {
        margin-bottom: 12px;
        font-size: clamp(1rem, 5vw, 1.35rem);
      }

      .section-title,
      .gallery-title,
      .faq-title,
      .reviews-title,
      .feature-copy h2 {
        line-height: 1.04;
      }

      .hero__lead {
        font-size: 1rem;
      }

      .quiz-insert-card__title {
        font-size: clamp(1.7rem, 8.2vw, 2.15rem);
      }

      .hero__trust {
        font-size: 0.875rem;
      }

      .eyebrow,
      .gallery-kicker,
      .cta__text {
        font-size: 1rem;
      }

      .feature-story__title {
        font-size: clamp(2rem, 8.8vw, 2.5rem);
      }

      .listen-card__copy .feature-story__title {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
      }

      .listen-card__copy .store-row {
        justify-content: center;
      }

      .feature-stories {
        gap: 32px;
        margin-bottom: 32px;
      }

      .feature-story,
      .feature-story--reverse {
        gap: 22px;
      }

      .faq-item summary {
        font-size: 1.125rem;
        line-height: 1.35;
      }

      .hero__metrics {
        gap: 26px;
        grid-template-columns: repeat(2, minmax(96px, 1fr));
      }

      .metric__detail {
        min-height: 24px;
      }

      .scenario-grid,
      .benefits,
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .feature-band .container {
        width: min(100%, calc(100vw - 32px));
      }

      .feature-copy {
        text-align: left;
      }

      .feature-copy h2,
      .feature-copy p {
        margin-left: 0;
        margin-right: 0;
      }

      .feature-image,
      .benefits {
        width: 100%;
      }

      .scenario-card,
      .scenario-card:nth-child(1),
      .scenario-card:nth-child(2),
      .scenario-card:nth-child(3),
      .scenario-card:nth-child(4) {
        transform: none;
      }

      .feature-image__blob {
        left: 2%;
        top: 6%;
        width: 74%;
      }

      .benefit {
        min-height: auto;
      }

      .store-row {
        gap: 12px;
      }

      .gallery-hero {
        width: calc(100% + 40vw);
        margin-top: 48px;
        margin-left: -20vw;
        margin-right: -20vw;
        border-radius: 0;
        overflow: hidden;
      }

      .gallery-hero__image {
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        object-fit: contain;
        max-height: none;
      }

      .feature-carousel-shell {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0;
      }

      .feature-carousel {
        padding-left: 16px;
        padding-right: 0;
      }

      .feature-carousel__track {
        padding-left: 0;
        padding-right: 16px;
      }

      .faq-item {
        border-radius: 28px;
      }

      .cta {
        padding: 32px 20px;
        border-radius: 36px;
      }

      .store-badge {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        border-radius: 22px;
      }

      .store-badge img {
        width: auto;
        max-width: 100%;
        height: 56px;
      }

      .footer__links,
      .footer__support {
        gap: 18px;
      }

      .footer__bottom {
        text-align: center;
      }

      .footer {
        border-top-left-radius: 36px;
        border-top-right-radius: 36px;
        padding-top: 72px;
      }

      .brand__mark {
        width: 36px;
        height: 35px;
      }

      .brand__text {
        font-size: 1rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }

    .language-switcher {
      position: relative;
    }

    .language-switcher__button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 52px;
      min-width: 72px;
      padding: 12px 18px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(21, 19, 31, 0.1);
      background: rgba(255, 255, 255, 0.72);
      color: var(--text-muted);
      font: inherit;
      font-size: var(--text-label);
      font-weight: 600;
      line-height: 1;
      cursor: pointer;
      transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .language-switcher__button:hover,
    .language-switcher__button:focus-visible {
      background: var(--primary-soft);
      color: var(--text);
      transform: translateY(-1px);
    }

    .language-switcher__code {
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .language-switcher__chevron {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1em;
      height: 1em;
      font-size: 0.95em;
      line-height: 1;
      transition: transform 180ms ease;
    }

    .language-switcher.is-open .language-switcher__chevron {
      transform: rotate(180deg);
    }

    .language-switcher__menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      display: none;
      min-width: 220px;
      padding: 10px;
      border-radius: 28px;
      border: 1px solid rgba(21, 19, 31, 0.08);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 20px 40px rgba(21, 19, 31, 0.08);
      z-index: 15;
    }

    .language-switcher.is-open .language-switcher__menu {
      display: grid;
    }

    .language-switcher__option {
      display: block;
      padding: 12px 14px;
      border-radius: 18px;
      color: var(--text-muted);
      font-weight: 600;
      transition: background-color 180ms ease, color 180ms ease;
    }

    .language-switcher__option:hover,
    .language-switcher__option:focus-visible,
    .language-switcher__option.is-active {
      background: var(--primary-soft);
      color: var(--text);
    }

    .page-header {
      max-width: 760px;
      margin: 0 auto 40px;
      text-align: center;
    }

    .page-hero--blog {
      padding: 52px 0 28px;
    }

    .page-hero__panel {
      border-radius: 40px;
      padding: 44px;
      background:
        radial-gradient(circle at top left, rgba(109, 84, 248, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(247, 244, 255, 0.96) 0%, rgba(239, 232, 255, 0.88) 100%);
      border: 1px solid rgba(21, 19, 31, 0.06);
      box-shadow: var(--shadow-card);
    }

    .page-hero__content {
      max-width: 860px;
    }

    .page-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 4.8vw, 4.5rem);
      line-height: 0.98;
      letter-spacing: var(--tracking-display);
    }

    .page-lead,
    .section-lead {
      margin: 18px 0 0;
      max-width: 760px;
      color: var(--text-muted);
      font-size: var(--text-body-lg);
      line-height: var(--leading-body);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(21, 19, 31, 0.08);
      color: var(--primary);
      font-weight: 700;
    }

    .page-header h1 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 800;
      line-height: 0.98;
      letter-spacing: var(--tracking-display);
    }

    .page-header p {
      margin: 18px auto 0;
      color: var(--text-muted);
      font-size: var(--text-body-lg);
    }

    .section-heading--left {
      text-align: left;
    }

    .section-heading--left .eyebrow {
      justify-content: flex-start;
    }

    .blog-featured {
      margin-bottom: 48px;
    }

    .featured-story {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
      gap: 28px;
      align-items: stretch;
      margin-top: 32px;
      padding: 28px;
      border-radius: 40px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(21, 19, 31, 0.06);
      box-shadow: var(--shadow-card);
    }

    .featured-story__body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
      min-width: 0;
    }

    .featured-story__title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 0.98;
      letter-spacing: var(--tracking-display);
    }

    .featured-story__excerpt {
      margin: 0;
      color: var(--text-muted);
      font-size: 1.04rem;
      line-height: var(--leading-body);
    }

    .featured-story__media {
      position: relative;
      display: block;
      min-height: 360px;
      overflow: hidden;
      border-radius: 32px;
      background:
        radial-gradient(circle at top right, rgba(108, 67, 246, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(247, 244, 255, 0.98) 0%, rgba(237, 231, 255, 0.9) 100%);
    }

    .featured-story__media img,
    .article-hero__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .featured-story__overlay {
      position: absolute;
      inset: auto 18px 18px auto;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      color: var(--text);
      font-size: 0.875rem;
      box-shadow: 0 12px 32px rgba(23, 18, 56, 0.14);
    }

    .post-grid-section {
      padding-top: 28px;
    }

    .post-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 28px;
    }

    .pagination-nav {
      margin-top: 32px;
    }

    .pagination-nav .page-numbers {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .pagination-nav a,
    .pagination-nav span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      min-height: 44px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(106, 65, 245, 0.14);
      background: rgba(255, 255, 255, 0.92);
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
    }

    .pagination-nav a:hover,
    .pagination-nav a:focus-visible,
    .pagination-nav .current {
      border-color: rgba(106, 65, 245, 0.26);
      background: rgba(106, 65, 245, 0.08);
      color: var(--accent);
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .post-card {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid rgba(21, 19, 31, 0.06);
      border-radius: var(--radius-card);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow-card);
    }

    .post-card--featured {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      min-height: 420px;
    }

    .post-card__media {
      display: block;
      min-height: 240px;
      background:
        radial-gradient(circle at top right, rgba(108, 67, 246, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(247, 244, 255, 0.98) 0%, rgba(237, 231, 255, 0.9) 100%);
    }

    .post-card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-card__fallback {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 240px;
      background:
        radial-gradient(circle at top right, rgba(108, 67, 246, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 244, 255, 0.98) 100%);
    }

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

    .post-grid .post-card,
    .related-posts .post-card {
      min-height: 100%;
    }

    .post-meta,
    .entry-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .post-card__tag,
    .entry-language {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .post-card__title {
      margin: 0;
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: -0.05em;
      line-height: 1.05;
      color: var(--text);
      font-size: clamp(1.4rem, 2vw, 1.9rem);
    }

    .post-card__excerpt,
    .entry-content > * {
      color: var(--text-muted);
      line-height: var(--leading-body);
    }

    .post-card__excerpt {
      margin: 0;
      font-size: 0.95rem;
    }

    .post-card__cta {
      margin-top: auto;
      color: var(--primary);
      font-weight: 700;
    }

    .empty-state {
      padding: 32px;
      border-radius: 28px;
      border: 1px dashed rgba(21, 19, 31, 0.12);
      background: rgba(255, 255, 255, 0.82);
      color: var(--text-muted);
      text-align: center;
    }

    .prose-shell {
      width: var(--container);
      margin: 0 auto;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--text-subtle);
      font-size: 0.95rem;
    }

    .breadcrumbs a {
      color: var(--text-muted);
    }

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

    .article-main {
      min-width: 0;
    }

    .article-hero {
      padding: 36px;
      border-radius: var(--radius-card);
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(21, 19, 31, 0.06);
      box-shadow: var(--shadow-card);
    }

    .article-hero__title {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4vw, 3.9rem);
      line-height: 0.98;
      letter-spacing: var(--tracking-display);
    }

    .article-excerpt {
      margin: 18px 0 0;
      max-width: 780px;
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: var(--leading-body);
    }

    .article-hero__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-top: 18px;
      color: var(--text-subtle);
      font-size: 0.92rem;
    }

    .article-hero__image {
      overflow: hidden;
      margin-top: 28px;
      min-height: 320px;
      border-radius: 28px;
      background: rgba(247, 244, 255, 0.96);
    }

    .article-content {
      margin-top: 28px;
      padding: 36px;
      border-radius: var(--radius-card);
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(21, 19, 31, 0.06);
      box-shadow: var(--shadow-card);
    }

    .article-content > *:first-child {
      margin-top: 0;
    }

    .article-content h2,
    .article-content h3 {
      color: var(--text);
      font-family: var(--font-display);
      letter-spacing: -0.04em;
      line-height: 1.08;
    }

    .article-content blockquote {
      margin: 28px 0;
      padding: 20px 24px;
      border-left: 4px solid var(--primary);
      border-radius: 20px;
      background: rgba(245, 241, 255, 0.86);
      color: var(--text);
      font-size: 1.02rem;
      line-height: 1.55;
    }

    .toc,
    .cta-panel {
      padding: 24px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(21, 19, 31, 0.06);
      box-shadow: var(--shadow-card);
    }

    .toc h2,
    .cta-panel h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 1.5rem;
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .toc nav {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .toc a {
      color: var(--text-muted);
      font-weight: 600;
    }

    .cta-panel {
      margin-top: 20px;
      background:
        radial-gradient(circle at top right, rgba(108, 67, 246, 0.14), transparent 45%),
        linear-gradient(180deg, rgba(247, 244, 255, 0.98) 0%, rgba(237, 231, 255, 0.9) 100%);
    }

    .cta-panel p {
      margin: 14px 0 0;
      color: var(--text-muted);
    }

    .cta-panel__downloads {
      margin-top: 18px;
    }

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

    .entry-card {
      padding: 32px;
      border-radius: var(--radius-card);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow-card);
      border: 1px solid rgba(21, 19, 31, 0.06);
    }

    .entry-title {
      margin: 14px 0 0;
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 800;
      line-height: 0.98;
      letter-spacing: var(--tracking-display);
    }

    .entry-lead {
      max-width: 760px;
      margin: 20px 0 0;
      color: var(--text-muted);
      font-size: 1.0625rem;
      line-height: 1.65;
    }

    .entry-cover {
      margin-top: 24px;
      overflow: hidden;
      border-radius: 28px;
      background: rgba(241, 239, 255, 0.9);
    }

    .entry-cover img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .entry-content > *:first-child {
      margin-top: 0;
    }

    .entry-content h2,
    .entry-content h3 {
      color: var(--text);
      font-family: var(--font-display);
      letter-spacing: -0.04em;
      line-height: 1.08;
    }

    .entry-content--legal,
    .entry-content--contact {
      margin-top: 24px;
    }

    .entry-content > .entry-content--legal:first-child,
    .entry-content > .entry-content--contact:first-child {
      margin-top: 28px;
    }

    .legal-block + .legal-block {
      margin-top: 32px;
    }

    .contact-map {
      overflow: hidden;
      margin-top: 24px;
      border-radius: 28px;
      border: 1px solid rgba(21, 19, 31, 0.08);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow-card);
    }

    .contact-map iframe {
      display: block;
    }

    .entry-content--support {
      margin-top: 24px;
    }

    .entry-content > .entry-content--support:first-child {
      margin-top: 28px;
    }

    .support-cancel-notice {
      margin-bottom: 40px;
      padding: 32px;
      border-radius: 20px;
      background: var(--color-primary, #7c5cfc);
      color: #fff;
      text-align: center;
    }

    .support-cancel-notice p {
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.5;
      margin: 0;
    }

    .support-cancel-notice a {
      color: #fff;
      text-decoration: underline;
      font-size: 1.35rem;
    }

    .support-links {
      list-style: none;
      padding: 0;
      margin: 12px 0 0;
    }

    .support-links li + li {
      margin-top: 8px;
    }

    .support-links a {
      font-size: 1.05rem;
      text-decoration: underline;
    }

    .contact-page__grid {
      display: grid;
      grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
      gap: 28px;
      margin-top: 32px;
    }

    .contact-page__details,
    .legal-page__sections {
      display: grid;
      gap: 18px;
    }

    .contact-page__card,
    .legal-page__section {
      padding: 24px;
      border-radius: 28px;
      background: rgba(248, 246, 255, 0.9);
      border: 1px solid rgba(106, 65, 245, 0.08);
    }

    .contact-page__label,
    .legal-page__section h2 {
      margin: 0;
      color: var(--text);
      font-family: var(--font-accent);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .legal-page__section p,
    .contact-page__address {
      margin: 12px 0 0;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .legal-block ul,
    .legal-block ol {
      margin: 14px 0 0;
      padding-left: 1.4rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .legal-block p + ul,
    .legal-block p + ol {
      margin-top: 16px;
    }

    .legal-block li + li {
      margin-top: 10px;
    }

    .legal-block li strong {
      color: var(--text);
    }

    .contact-page__email {
      display: inline-block;
      margin-top: 12px;
      color: var(--primary);
      font-family: var(--font-accent);
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
    }

    .contact-page__email:hover,
    .contact-page__email:focus-visible {
      text-decoration: underline;
    }

    .contact-page__map-wrap {
      display: grid;
      gap: 12px;
    }

    .contact-page__map {
      overflow: hidden;
      min-height: 420px;
      border-radius: 28px;
      border: 1px solid rgba(21, 19, 31, 0.08);
      box-shadow: var(--shadow-card);
      background: #ede8ff;
    }

    .contact-page__map iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
    }

    .article-sidebar {
      position: sticky;
      top: calc(var(--header-offset) + 56px);
      align-self: start;
    }

    .cta-panel--sidebar {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .related-posts {
      margin-top: 48px;
    }

    @media (max-width: 960px) {
      .featured-story,
      .posts-grid,
      .post-card--featured,
      .article-layout,
      .article-shell,
      .post-grid {
        grid-template-columns: 1fr;
      }

      .article-sidebar {
        position: static;
        top: auto;
      }

      .contact-page__grid {
        grid-template-columns: 1fr;
      }

      .contact-page__map,
      .contact-page__map iframe {
        min-height: 320px;
      }

      .article-shell > aside {
        order: -1;
      }

      .page-hero__panel,
      .article-hero,
      .article-content {
        padding: 28px;
      }
    }

    @media (max-width: 720px) {
      .page-hero--blog {
        padding-top: 28px;
      }

      .page-hero__panel,
      .featured-story,
      .article-hero,
      .article-content,
      .toc,
      .cta-panel {
        padding: 22px;
        border-radius: 28px;
      }

      .featured-story__media {
        min-height: 280px;
      }

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

      .language-switcher__button {
        min-width: 112px;
      }

      .language-switcher__menu {
        left: 0;
        right: auto;
        min-width: min(240px, calc(100vw - 32px));
      }
    }
