﻿    @font-face {
      font-family: "Bricolage Grotesque";
      src: url("app/assets/fonts/bricolage-grotesque/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf") format("truetype");
      font-weight: 200 800;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Nauryz";
      src: url("assets/web/fonts/Nauryz.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --bg: #111014;
      --panel: #18171d;
      --panel-soft: #1f1e25;
      --text: #f4f0f7;
      --muted: #b9b2c2;
      --line: rgba(255, 255, 255, 0.11);
      --accent: #8fd7ff;
      --accent-2: #f2a6c8;
      --button: #f4f0f7;
      --button-text: #151318;
      --shadow: rgba(0, 0, 0, 0.36);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      display: flex;
      min-height: 100vh;
      min-height: 100dvh;
      flex-direction: column;
      font-family: "Bricolage Grotesque", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.55;
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(17, 16, 20, 0.84);
      backdrop-filter: blur(16px);
    }

    .nav {
      width: min(1120px, calc(100% - 40px));
      height: 68px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.01em;
    }

    .brand img {
      width: 34px;
      height: 34px;
      border-radius: 8px;
    }

    .brand span {
      font-family: "Nauryz", "Bricolage Grotesque", Arial, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a {
      padding: 9px 12px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      border-radius: 8px;
    }

    .nav-links a:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.07);
    }

    .hero {
      min-height: 92vh;
      padding: 92px 20px 54px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: #061824;
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      pointer-events: none;
      user-select: none;
      animation: hero-drift 18s ease-in-out infinite alternate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(230, 94, 248, 0.04) 0%, rgba(16, 23, 34, 0.58) 70%, #111014 100%),
        radial-gradient(circle at 26% 45%, rgba(131, 97, 133, 0.24), transparent 28%),
        linear-gradient(90deg, #200624 0%, rgba(6, 24, 36, 0.94) 34%, rgba(10, 17, 26, 0.42) 66%, rgba(17, 16, 20, 0.32) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      height: 140px;
      background: linear-gradient(180deg, transparent, #111014);
      pointer-events: none;
    }

    .hero-inner {
      width: min(720px, calc(100% - 40px));
      margin: 0;
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin-left: clamp(28px, 6vw, 92px);
      margin-right: auto;
      padding: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 18px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    h1 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(52px, 9vw, 112px);
      line-height: 0.92;
      letter-spacing: 0;
      font-weight: 800;
    }

    .hero-title {
      font-family: "Nauryz", "Bricolage Grotesque", Arial, sans-serif;
      font-size: clamp(70px, 11vw, 142px);
      font-weight: 400;
      line-height: 0.82;
    }

    .hero-copy {
      max-width: 650px;
      margin: 22px 0 0;
      color: #d7d0df;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 600;
    }

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

    .btn {
      display: inline-flex;
      min-height: 46px;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      border-radius: 8px;
      border: 1px solid var(--line);
      font-size: 15px;
      font-weight: 800;
      transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .btn.primary {
      background: var(--button);
      color: var(--button-text);
      border-color: var(--button);
    }

    .btn.secondary {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
    }

    .download-app-btn {
      border-color: rgba(143, 215, 255, 0.52);
      background:
        linear-gradient(135deg, rgba(143, 215, 255, 0.24), rgba(242, 166, 200, 0.18)),
        rgba(255, 255, 255, 0.1);
      color: #ffffff;
      box-shadow:
        0 0 0 1px rgba(143, 215, 255, 0.08),
        0 8px 22px rgba(143, 215, 255, 0.12);
    }

    .download-app-btn:hover {
      border-color: rgba(143, 215, 255, 0.78);
      box-shadow:
        0 0 0 1px rgba(143, 215, 255, 0.16),
        0 10px 26px rgba(143, 215, 255, 0.18);
    }

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

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

    main {
      flex: 1 0 auto;
      position: relative;
      z-index: 3;
    }

    .section {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
      padding: 72px 0;
      border-top: 1px solid var(--line);
    }

    .section:first-of-type {
      border-top: 0;
      padding-top: 46px;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 30px;
    }

    .section-heading h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1;
      font-weight: 800;
    }

    .section-heading p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 17px;
      font-weight: 600;
    }

    .showcase {
      display: grid;
      gap: 24px;
      justify-items: center;
    }

    .preview-frame {
      width: min(980px, 100%);
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #0f0e12;
      box-shadow: 0 24px 80px var(--shadow);
      overflow: hidden;
    }

    .preview-frame img {
      display: block;
      width: 100%;
      border-radius: 4px;
      transition: transform 0.35s ease, filter 0.35s ease;
      transform-origin: center center;
    }

    .preview-frame:hover img {
      transform: scale(1.04);
      filter: saturate(1.05) brightness(1.03);
    }

    .feature-list {
      display: grid;
      width: 100%;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .feature-item,
    .plan,
    .step {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      padding: 18px;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .feature-item:hover,
    .plan:hover,
    .step:hover,
    .info-card:hover,
    .download-card:hover,
    .story-block:hover {
      transform: translateY(-3px);
      border-color: rgba(143, 215, 255, 0.26);
      box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
    }

    .feature-item h3,
    .plan h3,
    .step h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
    }

    .feature-item p,
    .plan p,
    .step p {
      margin: 0;
      color: var(--muted);
      font-weight: 500;
    }

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

    .plan strong {
      color: var(--accent);
    }

    .sample-section .section-heading {
      max-width: 780px;
    }

    .sample-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .sample-actions .btn {
      min-height: 54px;
      padding: 0 24px;
      font-size: 16px;
    }

    .page-main {
      padding-top: 68px;
    }

    .page-hero-section {
      padding-top: 84px;
    }

    .page-heading {
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .page-heading h1 {
      max-width: none;
      font-size: clamp(44px, 7vw, 76px);
    }

    .brand-word {
      font-family: "Nauryz", "Bricolage Grotesque", Arial, sans-serif;
      font-weight: 400;
      line-height: 0.9;
    }

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

    .info-card,
    .download-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      padding: 22px;
    }

    .info-card h2,
    .download-card h2 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1;
      font-weight: 800;
    }

    .info-card p,
    .download-card p {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
    }

    .download-grid {
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      align-items: stretch;
    }

    .download-card {
      display: flex;
      min-height: 360px;
      flex-direction: column;
      justify-content: space-between;
      gap: 22px;
    }

    .featured-download {
      background:
        linear-gradient(135deg, rgba(143, 215, 255, 0.12), rgba(242, 166, 200, 0.08)),
        var(--panel);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    }

    .download-label {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .download-meta {
      display: grid;
      gap: 10px;
      margin: 0;
    }

    .download-meta div {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
    }

    .download-meta dt {
      color: var(--muted);
      font-weight: 700;
    }

    .download-meta dd {
      margin: 0;
      color: var(--text);
      font-weight: 800;
      text-align: right;
    }

    .download-main-btn {
      min-height: 54px;
      font-size: 16px;
    }

    .about-story {
      display: grid;
      gap: 18px;
      max-width: 920px;
    }

    .story-block {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      padding: 24px;
    }

    .story-block h2 {
      max-width: 760px;
      margin: 0 0 12px;
      font-size: clamp(26px, 4vw, 42px);
      line-height: 1;
      font-weight: 800;
    }

    .story-block p {
      max-width: 820px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      font-weight: 600;
    }

    .story-block p + p {
      margin-top: 12px;
    }

    .about-paragraph {
      max-width: 900px;
      margin: 0 auto;
    }

    .about-paragraph p {
      max-width: none;
    }

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

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-section .section-heading {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .faq-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      margin-bottom: 18px;
      padding: 0 18px;
      border-radius: 999px;
      background: rgba(143, 215, 255, 0.14);
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
      overflow: hidden;
    }

    .faq-item summary {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 20px;
      color: var(--text);
      font-size: 17px;
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "";
      flex: 0 0 auto;
      width: 9px;
      height: 9px;
      border-right: 2px solid var(--accent);
      border-bottom: 2px solid var(--accent);
      transform: rotate(45deg) translateY(-2px);
      transition: transform 0.18s ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(225deg) translateY(-2px);
    }

    .faq-content {
      overflow: hidden;
      transition:
        height 0.26s ease,
        opacity 0.22s ease;
    }

    .faq-item:not([open]) .faq-content {
      opacity: 0;
    }

    .faq-item p {
      margin: -2px 0 0;
      padding: 0 20px 20px;
      color: var(--muted);
      font-weight: 600;
    }

    .step-number {
      display: inline-grid;
      width: 34px;
      height: 34px;
      margin-bottom: 14px;
      place-items: center;
      border-radius: 999px;
      background: var(--panel-soft);
      color: var(--accent-2);
      font-weight: 800;
    }

    .cta {
      position: relative;
      text-align: center;
      padding-bottom: 92px;
    }

    .cta::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 48%;
      width: min(720px, 82vw);
      height: 280px;
      background:
        radial-gradient(circle at 45% 42%, rgba(143, 215, 255, 0.18), transparent 58%),
        radial-gradient(circle at 62% 58%, rgba(242, 166, 200, 0.12), transparent 54%);
      filter: blur(22px);
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: -1;
    }

    .cta h2 {
      margin: 0 auto 16px;
      max-width: 680px;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1;
      font-weight: 800;
    }

    .cta p {
      max-width: 620px;
      margin: 0 auto 26px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 600;
    }

    .center-actions {
      justify-content: center;
    }

    .single-cta-action .btn {
      min-width: 230px;
      min-height: 56px;
      padding: 0 28px;
      font-size: 16px;
    }

    .site-footer {
      flex-shrink: 0;
      border-top: 1px solid var(--line);
      padding: 38px 20px 18px;
      overflow: hidden;
      background: #0f141f;
      text-align: center;
    }

    .footer-copy {
      margin: 22px 0 0;
      color: rgba(244, 240, 247, 0.44);
      font-size: 13px;
      font-weight: 800;
    }

    .footer-brand {
      color: #202839;
      font-family: "Nauryz", "Bricolage Grotesque", Arial, sans-serif;
      font-size: clamp(72px, 17vw, 250px);
      font-weight: 400;
      line-height: 0.82;
      letter-spacing: 0;
      opacity: 0.75;
    }

    .trial-notice {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: grid;
      place-items: center;
      min-height: 100vh;
      min-height: 100dvh;
      overflow-y: auto;
      padding: 20px;
      background: rgba(8, 8, 12, 0.68);
      backdrop-filter: blur(8px);
    }

    .trial-notice[hidden] {
      display: none;
    }

    .trial-notice-panel {
      width: min(460px, 100%);
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #141318;
      padding: 24px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
    }

    .trial-notice-panel h2 {
      margin: 0;
      font-size: 26px;
      line-height: 1.05;
      font-weight: 800;
    }

    .trial-notice-panel p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
      font-weight: 600;
    }

    .trial-notice-actions {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .trial-notice-actions .btn {
      flex: 1;
      cursor: pointer;
    }

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

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

    @keyframes hero-drift {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.035);
      }
    }

    @media (max-width: 860px) {
      body {
        font-size: 15px;
      }

      .site-header {
        background: rgba(17, 16, 20, 0.9);
      }

      .nav {
        width: min(100% - 28px, 1120px);
        height: 62px;
      }

      .nav-links a:not(.download-link) {
        display: none;
      }

      .nav-links a {
        padding: 8px 10px;
        font-size: 13px;
      }

      .hero {
        min-height: 760px;
        padding: 96px 18px 64px;
        align-items: flex-end;
      }

      .hero-visual {
        height: 58%;
        object-position: center top;
        opacity: 0.72;
        animation-duration: 22s;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(17, 16, 20, 0.16) 0%, rgba(17, 16, 20, 0.7) 42%, #111014 78%),
          linear-gradient(90deg, rgba(32, 6, 36, 0.88), rgba(6, 24, 36, 0.78));
      }

      .hero-inner {
        width: 100%;
        max-width: 560px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
      }

      .eyebrow {
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 0.06em;
      }

      .hero-title {
        max-width: 100%;
        font-size: clamp(52px, 16vw, 88px);
        line-height: 0.9;
      }

      .hero-copy {
        max-width: 100%;
        font-size: 17px;
      }

      .section-heading {
        margin-bottom: 22px;
      }

      .section-heading h2 {
        font-size: 34px;
        line-height: 1.05;
      }

      .section-heading p {
        font-size: 16px;
      }

      .preview-frame {
        padding: 8px;
      }

      .showcase,
      .feature-list,
      .info-grid,
      .download-grid,
      .plans,
      .steps {
        grid-template-columns: 1fr;
      }

      .page-main {
        padding-top: 62px;
      }

      .page-hero-section {
        padding-top: 64px;
      }

      .page-heading h1 {
        font-size: 40px;
        line-height: 1.02;
      }

      .download-card {
        min-height: auto;
      }

      .trial-notice-panel {
        align-self: center;
        padding: 20px;
      }
    }

    @media (max-width: 560px) {
      .hero,
      .section {
        width: auto;
      }

      .hero {
        min-height: 720px;
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero-title {
        font-size: clamp(44px, 15vw, 72px);
      }

      .section {
        width: calc(100% - 32px);
        padding: 48px 0;
      }

      .brand span {
        display: none;
      }

      .brand img {
        width: 32px;
        height: 32px;
      }

      .hero-actions {
        gap: 10px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .sample-actions .btn {
        width: 100%;
      }

      .feature-item,
      .plan,
      .info-card,
      .download-card,
      .story-block,
      .step {
        padding: 16px;
      }

      .story-block p {
        font-size: 16px;
      }

      .faq-item summary {
        min-height: 58px;
        padding: 0 16px;
        font-size: 15px;
      }

      .faq-item p {
        padding: 0 16px 18px;
      }

      .cta {
        padding-bottom: 118px;
      }

      .footer-brand {
        font-size: clamp(70px, 28vw, 130px);
      }

      .trial-notice-actions {
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
