    :root {
      --bg: #f3fbff;
      --panel: #ffffff;
      --card: #eaf6ff;
      --card-strong: #dff1ff;
      --ink: #132642;
      --heading: #0F2D4A;
      --text: #5b6a7e;
      --line: #a9d1ec;
      --line-soft: #cbe3f4;
      --blue: #2e8be8;
      --blue-dark: #142844;
      --gold: #c08a21;
      --white: #fff;
      --shadow: 0 16px 34px rgba(29, 98, 151, .12);
      --soft-shadow: 0 10px 22px rgba(29, 98, 151, .10);
      --radius-xl: 26px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1040px;
      --font-display: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
      --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 29px;
      background: var(--bg);
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-body);
      background:
        radial-gradient(circle at 86% 160px, rgba(86, 181, 247, .23), transparent 310px),
        radial-gradient(circle at 8% 620px, rgba(201, 235, 255, .55), transparent 300px),
        linear-gradient(180deg, #f4fbff 0%, #eef8ff 52%, #f8fcff 100%);
      line-height: 1.5;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; text-decoration: none; }
    button, select { font: inherit; }
    img { max-width: 100%; display: block; }

    .page {
      min-height: 100vh;
      overflow: clip;
      position: relative;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin-inline: auto;
      position: relative;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(126, 184, 226, .55);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 2px 6px rgba(19, 38, 66, .06), 0 10px 28px rgba(19, 38, 66, .14);
    }

    .nav {
      min-height: 66px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .app-icon {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      flex: 0 0 auto;
      display: block;
      object-fit: cover;
      box-shadow: 0 4px 9px rgba(46, 139, 232, .22);
    }

    .brand strong {
      display: block;
      font-family: var(--font-display);
      font-size: 19px;
      font-weight: 900;
      line-height: 1.2;
      white-space: nowrap;
    }

    .nav-links a.nav-cta-mobile { display: none; }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: clamp(12px, 2.2vw, 24px);
      color: #42526a;
      font-weight: 800;
    }

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

    .menu-toggle {
      display: none;
      width: 40px;
      min-height: 40px;
      border: 0;
      border-radius: 999px;
      color: var(--blue);
      background: #eaf6ff;
      cursor: pointer;
      box-shadow: inset 0 0 0 1px rgba(169, 209, 236, .75);
    }

    .menu-toggle span {
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
    }

    .lang-switcher {
      position: relative;
    }

    .lang-btn {
      min-height: 40px;
      border: 0;
      border-radius: 999px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--blue);
      background: #eaf6ff;
      font-weight: 900;
      cursor: pointer;
      box-shadow: inset 0 0 0 1px rgba(169, 209, 236, .75);
      transition: background .18s ease, transform .18s ease;
    }

    .lang-btn:hover {
      background: #dff1ff;
      transform: translateY(-1px);
    }

    .flag {
      width: 22px;
      height: 15px;
      object-fit: cover;
      flex: 0 0 auto;
      box-shadow: 0 0 0 1px rgba(19, 38, 66, .18), 0 2px 6px rgba(19, 38, 66, .12);
    }

    .lang-btn .arrow {
      width: 11px;
      height: 11px;
      transition: transform .18s ease;
    }

    .lang-switcher.open .lang-btn .arrow {
      transform: rotate(180deg);
    }

    .lang-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      z-index: 40;
      min-width: 140px;
      padding: 6px;
      border: 1px solid rgba(169, 209, 236, .72);
      border-radius: 16px;
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 8px 22px rgba(49, 111, 164, .16);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .18s ease, transform .18s ease;
    }

    .lang-switcher.open .lang-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .lang-menu a {
      min-height: 38px;
      padding: 0 11px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 9px;
      color: #42526a;
      font-size: 14px;
      font-weight: 900;
    }

    .lang-menu a:hover {
      background: #eef8ff;
    }

    .lang-menu a.current {
      color: var(--blue);
      background: #eaf6ff;
    }

    .btn {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      padding: 0 16px;
      font-weight: 900;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      color: var(--white);
      background: linear-gradient(180deg, #3aa0ff, #1978dc);
      box-shadow: 0 8px 16px rgba(46, 139, 232, .28);
    }

    .btn-stores {
      gap: 10px;
      padding: 0 20px 0 16px;
    }

    .btn-stores .store-icon {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .btn-stores .store-sep {
      display: inline-block;
      width: 2px;
      height: 22px;
      margin: 0 4px;
      background: rgba(255, 255, 255, .7);
      border-radius: 2px;
      flex: 0 0 auto;
    }

    .download-cta.btn-stores {
      padding: 0 32px 0 26px;
      gap: 6px;
    }

    .download-cta.btn-stores .store-icon {
      width: 24px;
      height: 24px;
    }

    .download-cta.btn-stores .store-sep {
      height: 38px;
      margin: 0 10px;
    }

    .store-buttons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(176px, 220px));
      justify-content: center;
      align-items: center;
      gap: 14px;
      width: 100%;
      max-width: 760px;
      margin-inline: auto;
    }

    .store {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 0;
      padding: 0;
      border: 0;
      border-radius: 14px;
      background: transparent;
      box-shadow: 0 8px 18px rgba(19, 38, 66, .14);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .store:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 22px rgba(19, 38, 66, .18);
    }

    .store:focus-visible {
      outline: 3px solid rgba(46, 139, 232, .42);
      outline-offset: 4px;
    }

    .store img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 768 / 227;
      object-fit: contain;
    }

    .download-cta {
      min-height: 68px;
      width: min(100%, 332px);
      border-radius: 999px;
      padding: 0 28px;
      font-size: 19px;
      letter-spacing: .01em;
      box-shadow: 0 10px 20px rgba(46, 139, 232, .26);
    }

    .hero {
      padding: 34px 0 8px;
    }

    .hero-panel,
    .section-panel,
    .footer-panel {
      background: #fff;
      border: 1px solid rgba(128, 188, 226, .5);
      border-radius: var(--radius-xl);
      box-shadow: 0 10px 26px rgba(48, 112, 170, .11), 0 3px 8px rgba(48, 112, 170, .06);
    }

    .hero-panel {
      min-height: 470px;
      padding: clamp(34px, 4vw, 52px) clamp(22px, 3.8vw, 42px) clamp(14px, 2vw, 24px);
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(280px, .72fr);
      align-items: center;
      gap: clamp(14px, 2.2vw, 26px);
      overflow: hidden;
      background: transparent;
      border-color: transparent;
      box-shadow: none;
    }

    h1, h2, h3 {
      margin: 0;
      font-family: var(--font-display);
      color: var(--heading);
      letter-spacing: -.01em;
      line-height: .98;
    }

    h1 {
      max-width: 620px;
      font-size: clamp(42px, 6.4vw, 76px);
      font-weight: 900;
    }

    .hero-title {
      margin-bottom: 18px;
      color: var(--heading);
      font-size: clamp(42px, 5.6vw, 72px);
      line-height: .94;
      letter-spacing: -0.006em;
      text-shadow: none;
      opacity: 0;
      animation: heroTextIn .62s ease-out .08s both;
    }

    .hero-subtitle {
      max-width: 650px;
      margin: 0;
      font-family: var(--font-display);
      color: rgb(54, 112, 206);
      font-size: 30px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.008em;
      white-space: nowrap;
      opacity: 0;
      animation: heroTextIn .62s ease-out .22s both;
    }

    h2 {
      font-size: clamp(28px, 4.2vw, 48px);
      font-weight: 900;
    }

    h3 {
      font-size: 19px;
      font-weight: 900;
      line-height: 1.06;
    }

    .lead {
      max-width: 560px;
      margin: 24px 0 0;
      color: var(--text);
      font-size: clamp(17px, 1.85vw, 25px);
      font-weight: 600;
      line-height: 1.45;
      opacity: 0;
      animation: heroTextIn .62s ease-out .36s both;
    }

    .hero-actions {
      margin-top: 30px;
      display: grid;
      gap: 18px;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px 22px;
      opacity: 0;
      animation: heroTextIn .62s ease-out .5s both;
    }

    .rating-chip {
      --hero-final-opacity: .86;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 0;
      padding: 0;
      color: #5b6a83;
      background: transparent;
      box-shadow: none;
      font-size: 15px;
      font-weight: 800;
      opacity: .86;
      animation: heroTextIn .62s ease-out .64s both;
    }

    .rating-chip .stars {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      color: #efb23f;
    }

    .rating-chip .stars svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    .rating-chip .rating-num {
      color: #2d4361;
      font-weight: 900;
    }

    .rating-chip .rating-sep {
      opacity: .42;
    }

    .hero-panel > :first-child {
      max-width: 610px;
    }

    .ipad-stage {
      min-height: 430px;
      display: grid;
      place-items: center;
      position: relative;
      margin-left: -18px;
      padding-bottom: 16px;
      opacity: 0;
      animation: ipadStageIn .78s cubic-bezier(.18, .86, .26, 1) .9s both;
    }

    .ipad-stage::before {
      content: "";
      position: absolute;
      width: min(108%, 680px);
      aspect-ratio: 1;
      border-radius: 48%;
      background: radial-gradient(circle, rgba(46, 139, 232, .18), rgba(46, 139, 232, 0) 68%);
      animation: breathe 5s ease-in-out infinite;
    }

    .ipad-mock {
      width: min(364px, 34vw);
      aspect-ratio: 2064 / 3000;
      border-radius: 34px;
      padding: 9px;
      background: #12233d;
      box-shadow: 0 14px 36px rgba(19, 38, 66, .16), 0 4px 10px rgba(19, 38, 66, .08);
      position: relative;
      z-index: 1;
      overflow: hidden;
      transform: rotate(1.65deg);
      animation: ipadFloat 6.5s ease-in-out infinite;
    }

    .hero-screen {
      position: absolute;
      inset: 9px;
      opacity: 0;
      pointer-events: none;
      overflow: hidden;
      border-radius: 25px;
      background: #fff;
      padding: 10px 0;
      transition: opacity 1.2s ease;
      z-index: 1;
    }

    .hero-screen.is-active {
      opacity: 1;
      z-index: 2;
    }

    .hero-screen img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fff;
    }

    .section {
      padding: 22px 0;
    }

    section[id] {
      scroll-margin-top: 29px;
    }

    .section-panel {
      padding: clamp(22px, 4vw, 40px);
    }

    #gameplay .section-panel {
      padding-bottom: clamp(24px, 3vw, 34px);
    }

    #contact .section-panel {
      padding-top: clamp(26px, 4vw, 44px);
      padding-bottom: clamp(28px, 4vw, 46px);
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      align-items: start;
      justify-items: start;
      margin-bottom: 24px;
      text-align: left;
    }

    .section-copy {
      justify-self: start;
      text-align: left;
    }

    .section-copy p {
      max-width: 720px;
      margin: 10px 0 0;
      color: var(--text);
      font-size: clamp(15px, 1.6vw, 18px);
      font-weight: 600;
      line-height: 1.38;
    }

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

    .benefit-card,
    .faq-item {
      border-radius: 18px;
      background: var(--card);
      box-shadow: inset 0 0 0 2px var(--line), var(--soft-shadow);
    }

    .benefit-card {
      min-height: 160px;
      margin: 0;
      padding: 20px 18px;
    }

    .benefit-icon {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      margin-bottom: 16px;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 76% 22%, rgba(255, 255, 255, .95) 0 8px, transparent 9px),
        linear-gradient(145deg, #f8fcff, #d8efff);
      box-shadow:
        inset 0 0 0 1px rgba(55, 141, 214, .18),
        0 8px 18px rgba(32, 108, 177, .14);
    }

    .benefit-icon svg {
      width: 24px;
      height: 24px;
      stroke: #0d4f96;
      stroke-width: 3.1;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .75));
    }

    #reviews .benefit-icon {
      width: auto;
      height: auto;
      min-height: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      color: #efb23f;
      display: block;
      font-size: 20px;
      letter-spacing: .08em;
      line-height: 1.25;
    }

    .benefit-card p {
      margin: 12px 0 0;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
    }

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

    .review-card {
      margin: 0;
      min-height: 0;
      padding: 20px;
      border: 0;
      border-radius: 18px;
      background: var(--card);
      box-shadow: inset 0 0 0 2px var(--line), var(--soft-shadow);
    }

    .review-stars {
      color: #efb23f;
      font-size: 16px;
      letter-spacing: .08em;
      line-height: 1;
    }

    .review-card h3 {
      margin-top: 16px;
    }

    .review-card p {
      margin: 12px 0 0;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.48;
    }

    .review-source {
      display: block;
      margin-top: 12px;
      font-size: 12px;
      font-style: normal;
      font-weight: 500;
      color: #5b6a83;
      letter-spacing: .02em;
    }

    .review-source em {
      font-style: italic;
    }

    .carousel-shell {
      position: relative;
      margin-inline: calc(clamp(22px, 4vw, 40px) * -1);
      overflow: hidden;
      padding: 4px 0 0;
    }

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

    .carousel-shell::before {
      left: 0;
      background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
    }

    .carousel-shell::after {
      right: 0;
      background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
    }

    .screens {
      display: flex;
      gap: 18px;
      overflow: visible;
      scrollbar-width: none;
      padding: 8px clamp(28px, 3vw, 48px);
      cursor: grab;
      touch-action: pan-y;
      user-select: none;
      transition: transform 500ms ease;
      will-change: transform;
    }

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

    .screens.dragging {
      cursor: grabbing;
      transition: none;
    }

    .screens.dragging * {
      pointer-events: none;
    }

    .shot {
      flex: 0 0 clamp(170px, 19vw, 245px);
      aspect-ratio: 9 / 16;
      border-radius: 24px;
      border: 0;
      padding: 0;
      background: transparent;
      box-shadow: 0 10px 18px rgba(19, 38, 66, .10);
      color: inherit;
      cursor: pointer;
      overflow: hidden;
    }

    .shot:focus-visible,
    .carousel-arrow:focus-visible,
    .viewer-close:focus-visible,
    .viewer-arrow:focus-visible {
      outline: 3px solid rgba(46, 139, 232, .42);
      outline-offset: 4px;
    }

    .shot-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .carousel-arrow {
      position: absolute;
      top: 38%;
      z-index: 3;
      width: 40px;
      height: 40px;
      padding: 0;
      border: 0;
      border-radius: 0;
      color: #ffffff;
      background: transparent;
      box-shadow: none;
      text-shadow: 0 2px 6px rgba(0, 0, 0, .55), 0 0 12px rgba(0, 0, 0, .35);
      cursor: pointer;
      font-size: 42px;
      font-weight: 900;
      line-height: 34px;
      text-align: center;
      transition: transform .18s ease, text-shadow .18s ease;
    }

    .carousel-arrow:hover {
      transform: scale(1.12);
      text-shadow: 0 3px 8px rgba(0, 0, 0, .65), 0 0 14px rgba(0, 0, 0, .4);
    }

    .carousel-arrow.prev { left: 18px; }
    .carousel-arrow.next { right: 18px; }

    .carousel-arrow:disabled,
    .viewer-arrow:disabled {
      cursor: default;
      opacity: .42;
      pointer-events: none;
    }

    .dots {
      display: flex;
      justify-content: center;
      gap: 9px;
      margin-inline: 0;
      margin-top: 31px;
      position: relative;
      z-index: 4;
    }

    .carousel-dot {
      width: 9px;
      height: 9px;
      border: 0;
      border-radius: 50%;
      background: #b7d8ee;
      cursor: pointer;
      padding: 0;
      transition: width .25s ease, background-color .25s ease;
    }

    .carousel-dot:focus {
      outline: 0;
    }

    .carousel-dot.active {
      width: 28px;
      border-radius: 999px;
      background: var(--blue);
    }

    .screenshot-viewer {
      position: fixed;
      inset: 0;
      z-index: 50;
      display: grid;
      grid-template-columns: minmax(48px, 1fr) minmax(0, auto) minmax(48px, 1fr);
      align-items: center;
      gap: clamp(10px, 2vw, 20px);
      padding: clamp(18px, 4vw, 42px);
      background: rgba(10, 23, 42, .72);
      backdrop-filter: blur(14px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
    }

    .screenshot-viewer.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .viewer-frame {
      grid-column: 2;
      margin: 0;
      display: grid;
      gap: 14px;
      justify-items: center;
    }

    .viewer-img {
      width: min(82vw, 430px);
      max-height: min(82vh, 760px);
      border-radius: 28px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
      object-fit: contain;
      background: #eaf6ff;
    }

    .viewer-caption {
      color: var(--white);
      font-weight: 800;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
    }

    .viewer-close,
    .viewer-arrow {
      border: 0;
      border-radius: 999px;
      color: var(--blue);
      background: var(--white);
      box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
      cursor: pointer;
      font-weight: 900;
    }

    .viewer-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      font-size: 24px;
      line-height: 1;
    }

    .viewer-arrow {
      width: 48px;
      height: 48px;
      font-size: 30px;
      line-height: 1;
    }

    .viewer-arrow.prev { justify-self: end; }
    .viewer-arrow.next { justify-self: start; }

    .seo-brief {
      display: block;
    }

    .seo-brief h2 {
      max-width: 100%;
      text-align: left;
    }

    .seo-brief p {
      max-width: 100%;
      margin: 12px 0 0;
      color: var(--text);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.58;
    }

    .seo-copy {
      display: grid;
      gap: 12px;
      max-width: 100%;
    }

    .seo-copy p {
      margin: 0;
    }

    .seo-copy p:first-of-type {
      margin-top: 12px;
    }

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

    .seo-list li {
      position: relative;
      padding-left: 18px;
      color: var(--text);
      font-size: 15px;
      font-weight: 800;
      line-height: 1.35;
    }

    .seo-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--blue);
      box-shadow: 0 0 0 4px rgba(46, 139, 232, .12);
    }

    .seo-more {
      display: grid;
      gap: 12px;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transform: translateY(-4px);
      transition: max-height .34s ease, opacity .24s ease, transform .24s ease;
    }

    .seo-more.is-open {
      max-height: 720px;
      opacity: 1;
      transform: translateY(0);
    }

    .seo-toggle {
      justify-self: start;
      margin: clamp(11px, 1.5vw, 17px) 0 clamp(2px, .5vw, 5px);
      border: 0;
      border-radius: 999px;
      padding: 11px 16px;
      background: rgba(46, 139, 232, .12);
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }

    .seo-toggle:hover {
      background: rgba(46, 139, 232, .18);
      transform: translateY(-1px);
    }

    #reviews .section-copy {
      max-width: 760px;
    }

    .faq {
      display: grid;
      gap: 10px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 54px;
      border: 0;
      padding: 15px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--ink);
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 900;
    }

    .faq-question .faq-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      color: var(--blue);
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
      transition: transform .22s ease, color .22s ease;
    }

    .faq-item.open .faq-question .faq-toggle {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
    }

    .faq-item.open .faq-answer { display: block; }

    #contact .section-head {
      justify-content: center;
      text-align: center;
    }

    #contact .section-copy {
      justify-self: center;
      max-width: 760px;
      margin-inline: auto;
      text-align: center;
    }

    #contact .section-copy p {
      margin-inline: auto;
    }

    #contact .section-head {
      margin-bottom: clamp(26px, 3vw, 34px);
    }

    .contact-intro {
      max-width: 700px;
      margin: 0 0 clamp(26px, 4vw, 38px);
      color: var(--text);
      text-align: left;
      font-size: 16px;
      font-weight: 650;
      line-height: 1.72;
    }

    .contact-form {
      width: min(100%, 500px);
      margin: 0 auto;
      display: grid;
      gap: 11px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .contact-form label {
      display: grid;
      gap: 7px;
      color: #536986;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 2px solid rgba(116, 177, 232, .58);
      border-radius: 12px;
      background: rgba(242, 249, 255, .84);
      color: var(--ink);
      font: 750 14px/1.45 var(--font-body);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .contact-form input {
      min-height: 48px;
      padding: 0 17px;
    }

    .contact-form textarea {
      min-height: 112px;
      padding: 14px 17px;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      background: #fff;
      border-color: rgba(63, 153, 225, .72);
      box-shadow: 0 0 0 5px rgba(83, 167, 233, .14);
    }

    .contact-form input.has-value,
    .contact-form textarea.has-value {
      background: #fff;
    }

    .contact-submit {
      justify-self: center;
      width: 100%;
      min-height: 48px;
      margin-top: 8px;
      padding-inline: 24px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 900;
      gap: 10px;
      box-shadow: 0 10px 22px rgba(43, 118, 213, .22);
    }

    .submit-icon {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .contact-note {
      min-height: 0;
      margin: 0;
      color: var(--text);
      text-align: center;
      font-size: 13px;
      font-weight: 800;
    }

    .contact-note.is-success { color: #1e8a4a; }
    .contact-note.is-error { color: #c2272d; }

    .contact-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .contact-form.is-sending .contact-submit {
      opacity: .65;
      pointer-events: none;
    }

    .closing {
      display: grid;
      gap: 36px;
      justify-items: center;
    }

    .closing .section-head {
      margin-bottom: 0;
      justify-items: center;
      text-align: center;
    }

    .closing .section-copy {
      justify-self: center;
      text-align: center;
    }

    .closing .section-copy p {
      margin-inline: auto;
    }

    .site-footer {
      margin-top: 22px;
      padding: 28px 0;
      color: rgba(255, 255, 255, .78);
      background: #102844;
    }

    .footer-panel {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .footer-brand {
      display: grid;
      gap: 6px;
    }

    .footer-panel h3 {
      margin: 0;
      color: #fff;
      font-size: 16px;
    }

    .reg-mark {
      font-size: .55em;
      vertical-align: super;
      line-height: 0;
      margin-left: 1px;
      font-weight: 400;
    }

    .footer-panel p {
      margin: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
      font-weight: 700;
    }

    .copyright {
      margin: 0;
      color: rgba(255, 255, 255, .58);
      font-size: 14px;
      font-weight: 700;
    }

    .footer-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      font-weight: 800;
      transition: color .18s ease;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }

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

    @keyframes breathe {
      0%, 100% { transform: scale(.96); opacity: .82; }
      50% { transform: scale(1.04); opacity: 1; }
    }

    @keyframes heroTextIn {
      from {
        opacity: 0;
        transform: translateX(-34px);
      }
      to {
        opacity: var(--hero-final-opacity, 1);
        transform: translateX(0);
      }
    }

    @keyframes ipadStageIn {
      from {
        opacity: 0;
        transform: translateX(56px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes ipadFloat {
      0%, 100% {
        transform: translateY(0) rotate(1.65deg);
      }
      50% {
        transform: translateY(-8px) rotate(1.95deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-title,
      .hero-subtitle,
      .lead,
      .hero-cta-row,
      .rating-chip,
      .ipad-stage,
      .ipad-mock,
      .ipad-stage::before {
        animation: none;
        opacity: var(--hero-final-opacity, 1);
        transform: none;
      }
      .hero-screen {
        transition: none;
      }
    }

    @media (max-width: 980px) {
      .nav {
        position: relative;
        grid-template-columns: minmax(0, 1fr) auto;
      }
      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 12px;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 12px 32px rgba(19, 38, 66, .18), 0 4px 10px rgba(19, 38, 66, .08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .18s ease, transform .18s ease;
      }
      .nav-links a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: #eef8ff;
      }
      .nav.is-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav-actions { justify-self: end; }
      .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
      .hero-panel,
      .seo-brief {
        grid-template-columns: 1fr;
      }
      .hero-panel {
        gap: 56px;
        padding: 48px clamp(22px, 3.8vw, 42px);
        overflow: visible;
      }
      .ipad-mock { transform: none; animation: none; }
      .ipad-stage {
        min-height: auto;
        padding-bottom: 0;
      }
      .hero-panel > :first-child {
        width: min(100%, 620px);
        justify-self: center;
        text-align: center;
      }
      .hero-actions { justify-items: center; }
      .hero-cta-row { justify-content: center; }
      .rating-chip { margin-inline: auto; }

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

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

      .carousel-arrow { display: none; }
      .ipad-stage {
        margin-left: 0;
      }
      .ipad-mock { width: min(360px, 58vw); }
    }

    @media (min-width: 641px) and (max-width: 980px) {
      .brand strong { font-size: 21px; }
      .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 24px, var(--max)); }
      .site-header { position: sticky; }
      .nav {
        min-height: 58px;
        gap: 8px;
        justify-content: space-between;
      }
      .app-icon {
        width: 34px;
        height: 34px;
        border-radius: 12px;
      }
      .brand { gap: 9px; }
      .brand strong { font-size: 17px; }
      .nav-actions { gap: 6px; }
      .menu-toggle {
        width: 34px;
        min-height: 34px;
      }
      .nav-links {
        left: 0;
        right: 0;
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
      }
      .lang-btn {
        display: inline-flex;
        min-height: 34px;
        padding: 0 7px;
        font-size: 12px;
        box-shadow: inset 0 0 0 1px rgba(169, 209, 236, .75);
      }
      .lang-menu {
        min-width: 126px;
        border-radius: 14px;
      }
      .flag {
        width: 20px;
        height: 14px;
      }
      .nav-actions > .btn-primary { display: none; }
      .nav-links a.nav-cta-mobile {
        grid-column: 1 / -1;
        margin-top: 6px;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: linear-gradient(180deg, #3aa0ff, #1978dc);
        color: #fff;
        font-weight: 900;
        font-size: 15px;
        letter-spacing: .01em;
        box-shadow: 0 8px 16px rgba(46, 139, 232, .28);
      }

      .seo-brief p {
        font-size: 16px;
      }

      .seo-list {
        grid-template-columns: 1fr;
      }
      .hero { padding-top: 22px; }
      .hero-panel,
      .section-panel {
        border-radius: 22px;
        padding: 20px;
      }
      .hero-panel {
        overflow: hidden;
      }
      .hero-panel > :first-child {
        width: calc(100vw - 72px);
        max-width: 320px;
        min-width: 0;
        justify-self: center;
      }
      h1 { font-size: clamp(32px, 10vw, 40px); }
      .hero-title {
        max-width: 100%;
        margin-inline: auto;
        font-size: clamp(31px, 9.4vw, 36px);
        white-space: normal;
      }
      .hero-subtitle {
        max-width: 100%;
        margin-inline: auto;
        font-size: clamp(25px, 8.2vw, 30px);
        white-space: normal;
      }
      h2 { font-size: 29px; }
      .lead {
        max-width: 270px;
        margin-inline: auto;
        font-size: 15px;
      }
      .hero-actions {
        width: calc(100vw - 72px);
        max-width: 320px;
      }
      .hero-cta-row {
        width: 100%;
      }
      .download-cta {
        width: 100%;
      }
      .download-cta.btn-stores {
        width: 252px;
        max-width: 100%;
        min-width: 0;
        min-height: 58px;
        padding: 0 14px;
        gap: 5px;
        font-size: 15px;
      }
      .download-cta.btn-stores .store-icon {
        width: 18px;
        height: 18px;
      }
      .download-cta.btn-stores .store-sep {
        height: 28px;
        margin: 0 5px;
      }
      .download-cta.btn-stores span:last-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .rating-chip {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 4px;
        font-size: 14px;
        line-height: 1.25;
      }
      .ipad-mock {
        width: min(270px, calc(100vw - 96px));
        border-radius: 26px;
        padding: 7px;
        transform: none;
        animation: none;
      }
      .hero-screen {
        inset: 7px;
      }
      .hero-screen img {
        border-radius: 20px;
      }
      .store-buttons { grid-template-columns: minmax(0, 240px); }
      .store { width: 100%; }
      .section-head { grid-template-columns: 1fr; gap: 14px; }
      .benefits { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .benefit-card { min-height: 0; }
      .carousel-shell { margin-inline: -20px; }
      .carousel-shell::before,
      .carousel-shell::after {
        width: 28px;
      }
      .screens {
        padding-inline: clamp(24px, 8vw, 64px);
        gap: 14px;
      }
      .shot { flex-basis: min(62vw, 210px); border-radius: 22px; }
      .screenshot-viewer {
        grid-template-columns: 1fr 1fr;
        align-content: center;
        justify-items: center;
      }
      .viewer-frame {
        grid-column: 1 / -1;
        grid-row: 1;
      }
      .viewer-img {
        width: min(84vw, 340px);
        max-height: 72vh;
        border-radius: 24px;
      }
      .viewer-arrow {
        grid-row: 2;
        width: 44px;
        height: 44px;
      }
      .viewer-arrow.prev,
      .viewer-arrow.next {
        justify-self: center;
      }
      .faq-question { font-size: 16px; }
      .contact-form {
        width: 100%;
      }
      .contact-form label { font-size: 11px; }
      .contact-form input {
        min-height: 48px;
        border-radius: 11px;
        padding-inline: 15px;
      }
      .contact-form textarea {
        min-height: 120px;
        border-radius: 11px;
        padding: 13px 15px;
      }
      .contact-submit {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
      }
      .site-footer {
        padding: 24px 0;
      }
      .footer-panel {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
      }
      .footer-links {
        justify-content: center;
        gap: 14px;
      }
    }
