:root {
      --navy: #0b4b84;
      --navy-deep: #083866;
      --gold: #f4b12f;
      --gold-deep: #d99613;
      --bg: #f3f7fb;
      --surface: rgba(255, 255, 255, 0.78);
      --card: #ffffff;
      --text: #17324d;
      --muted: #66788d;
      --line: #dce5ef;
      --shadow-lg: 0 24px 60px rgba(8, 56, 102, 0.14);
      --shadow-md: 0 14px 34px rgba(8, 56, 102, 0.10);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --container: min(1180px, calc(100% - 32px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 0% 0%, rgba(244, 177, 47, 0.18), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(11, 75, 132, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(16px);
      background: rgba(243, 247, 251, 0.72);
      border-bottom: 1px solid rgba(220, 229, 239, 0.75);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0;
    }

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

    .brand img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-text strong {
      display: block;
      font-size: 1rem;
      line-height: 1.1;
      color: var(--navy-deep);
      letter-spacing: -0.02em;
    }

    .brand-text span {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: flex-end;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .nav-links a {
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--navy);
      transform: translateY(-1px);
    }

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

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 28px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      background: var(--surface);
      border: 1px solid rgba(220, 229, 239, 0.85);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      padding: 44px;
      backdrop-filter: blur(10px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      border-radius: 999px;
      background: rgba(244, 177, 47, 0.14);
      color: var(--gold-deep);
      font-weight: 800;
      font-size: 0.88rem;
      margin-bottom: 18px;
      letter-spacing: 0.01em;
    }

    h1 {
      margin: 0;
      font-size: clamp(1.5rem, 2vw, 3.5rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      color: var(--navy-deep);
    }

    .lead {
      margin: 18px 0 0;
      font-size: 1.07rem;
      color: var(--muted);
      max-width: 650px;
    }

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

    .point {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 14px 14px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(220, 229, 239, 0.9);
      border-radius: 16px;
      color: var(--text);
      font-size: 0.95rem;
      box-shadow: 0 8px 20px rgba(8, 56, 102, 0.05);
    }

    .point-badge {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(11, 75, 132, 0.1);
      color: var(--navy);
      font-weight: 800;
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .store-btn {
      /*display: inline-flex;*/
      align-items: center;
      gap: 14px;
      min-width: 238px;
      /*padding: 15px 18px;*/
      padding:0;
      border-radius: 20px;
      /*border: 1px solid rgba(0, 0, 0, 0.95);*/
      /*background: rgba(255, 255, 255, 0.95);*/
      box-shadow: 0 12px 30px rgba(8, 56, 102, 0.10);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .store-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(8, 56, 102, 0.14);
      border-color: rgba(11, 75, 132, 0.25);
    }

    .store-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(248, 251, 255, 1), rgba(241, 247, 253, 1));
      border: 1px solid #e1eaf4;
      flex: 0 0 auto;
    }

    .store-text small {
      display: block;
      color: var(--muted);
      font-size: 0.76rem;
      line-height: 1.15;
      margin-bottom: 3px;
    }

    .store-text strong {
      display: block;
      color: var(--navy-deep);
      font-size: 1.03rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .helper-text {
      margin-top: 16px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .view-counter-strip {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
      padding: 10px;
      border: 1px solid rgba(220, 229, 239, 0.9);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 10px 24px rgba(8, 56, 102, 0.06);
    }

    .view-counter-item {
      display: grid;
      gap: 2px;
      min-width: 158px;
      padding: 10px 14px;
      border-radius: 14px;
      background: rgba(248, 251, 255, 0.86);
      border: 1px solid rgba(220, 229, 239, 0.72);
    }

    .view-counter-item span {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .view-counter-item strong {
      color: var(--navy-deep);
      font-size: 1.12rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .visual-wrap {
      position: relative;
      min-height: 720px;
      display: grid;
      place-items: center;
    }

    .glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(22px);
      opacity: 0.85;
      pointer-events: none;
    }

    .glow.one {
      width: 220px;
      height: 220px;
      top: 60px;
      left: 14px;
      background: rgba(244, 177, 47, 0.22);
      animation: pulse 6s ease-in-out infinite;
    }

    .glow.two {
      width: 260px;
      height: 260px;
      right: 8px;
      bottom: 86px;
      background: rgba(11, 75, 132, 0.18);
      animation: pulse 7s ease-in-out infinite reverse;
    }

    .logo-badge {
      position: absolute;
      top: 18px;
      right: 10px;
      width: 210px;
      padding: 14px 18px;
      border-radius: 24px;
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(220, 229, 239, 0.86);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(12px);
      animation: floatSoft 6s ease-in-out infinite;
    }

    .logo-badge img {
      width: 100%;
      height: auto;
    }

    .phone-stack {
      position: relative;
      width: min(100%, 580px);
      height: 720px;
    }

    .phone {
      position: absolute;
      width: 280px;
      border-radius: 38px;
      padding: 12px;
      background: linear-gradient(180deg, #0e2342 0%, #07182e 100%);
      box-shadow: 0 26px 70px rgba(7, 24, 46, 0.28);
      border: 1px solid rgba(255,255,255,0.07);
      overflow: hidden;
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 7px;
      left: 50%;
      transform: translateX(-50%);
      width: 114px;
      height: 20px;
      background: #07182e;
      border-radius: 0 0 16px 16px;
      z-index: 3;
    }

    .phone::after {
      content: "";
      position: absolute;
      right: -3px;
      top: 120px;
      width: 4px;
      height: 76px;
      border-radius: 3px;
      background: rgba(255,255,255,0.12);
    }

    .phone-screen {
      position: relative;
      z-index: 1;
      border-radius: 30px;
      overflow: hidden;
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    }

    .phone-screen img {
      width: 100%;
      height: auto;
      display: block;
    }

    .phone.main {
      left: 145px;
      top: 52px;
      z-index: 2;
      transform: rotate(-3deg);
      animation: floatMain 7.5s ease-in-out infinite;
    }

    .phone.left {
      left: 8px;
      top: 208px;
      width: 228px;
      z-index: 1;
      transform: rotate(-10deg);
      animation: floatSide 8.5s ease-in-out infinite;
    }

    .phone.right {
      right: 0;
      top: 230px;
      width: 224px;
      z-index: 1;
      transform: rotate(9deg);
      animation: floatSideRight 8s ease-in-out infinite;
    }

    .floating-chip {
      position: absolute;
      z-index: 4;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(220, 229, 239, 0.9);
      box-shadow: 0 12px 30px rgba(8, 56, 102, 0.10);
      font-size: 0.92rem;
      font-weight: 800;
      color: var(--navy-deep);
      backdrop-filter: blur(12px);
      white-space: nowrap;
    }

    .chip-a {
      left: 4px;
      top: 110px;
      animation: floatChip 7s ease-in-out infinite;
    }

    .chip-b {
      right: 10px;
      top: 150px;
      animation: floatChip 8s ease-in-out infinite reverse;
    }

    .chip-c {
      left: 44px;
      bottom: 72px;
      animation: floatChip 9s ease-in-out infinite;
    }

    .section {
      padding: 0 0 74px;
    }

    .section-title {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 28px;
    }

    .section-title h2 {
      margin: 0 0 10px;
      font-size: clamp(1.85rem, 3.4vw, 2.8rem);
      line-height: 1.06;
      letter-spacing: -0.04em;
      color: var(--navy-deep);
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
    }

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

    .feature-card {
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(220, 229, 239, 0.9);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 14px 30px rgba(8, 56, 102, 0.06);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 38px rgba(8, 56, 102, 0.10);
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, rgba(244,177,47,0.14), rgba(11,75,132,0.08));
      border: 1px solid rgba(220, 229, 239, 0.9);
      margin-bottom: 16px;
      color: var(--navy);
      font-size: 1.25rem;
      line-height: 1;
    }

    .feature-icon i {
      display: inline-block;
    }

    .feature-card h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
      color: var(--navy-deep);
      letter-spacing: -0.02em;
    }

    .feature-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .showcase {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 34px;
    }

    .screen-card {
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(220, 229, 239, 0.9);
      border-radius: 28px;
      padding: 22px;
      box-shadow: 0 18px 40px rgba(8, 56, 102, 0.08);
    }

    .screen-card h3 {
      margin: 0 0 8px;
      font-size: 1.16rem;
      color: var(--navy-deep);
      letter-spacing: -0.02em;
    }

    .screen-card p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .mini-phone {
      width: 100%;
      max-width: 310px;
      margin: 0 auto;
      border-radius: 34px;
      background: linear-gradient(180deg, #0e2342 0%, #07182e 100%);
      padding: 10px;
      box-shadow: 0 18px 42px rgba(7, 24, 46, 0.22);
      position: relative;
    }

    .mini-phone::before {
      content: "";
      position: absolute;
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 108px;
      height: 18px;
      background: #07182e;
      border-radius: 0 0 14px 14px;
      z-index: 2;
    }

    .mini-screen {
      border-radius: 26px;
      overflow: hidden;
      background: #fff;
    }

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

    .stat-box {
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(252,253,255,0.9));
      border: 1px solid rgba(220, 229, 239, 0.9);
      border-radius: 20px;
      padding: 18px 16px;
      text-align: center;
      box-shadow: 0 12px 26px rgba(8, 56, 102, 0.06);
    }

    .stat-box strong {
      display: block;
      font-size: 1.35rem;
      color: var(--navy-deep);
      letter-spacing: -0.03em;
      margin-bottom: 6px;
    }

    .stat-box span {
      display: block;
      font-size: 0.92rem;
      color: var(--muted);
    }

    .download-banner {
      margin-top: 34px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 62%, #05162a 100%);
      border-radius: 34px;
      color: #fff;
      padding: 36px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(8, 56, 102, 0.20);
    }

    .download-banner::before,
    .download-banner::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(244, 177, 47, 0.14);
      filter: blur(10px);
    }

    .download-banner::before {
      width: 220px;
      height: 220px;
      top: -80px;
      right: -50px;
    }

    .download-banner::after {
      width: 180px;
      height: 180px;
      bottom: -70px;
      left: -30px;
    }

    .download-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .download-copy h3 {
      margin: 0 0 10px;
      font-size: clamp(1.75rem, 3.1vw, 2.5rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .download-copy p {
      margin: 0;
      max-width: 620px;
      color: rgba(255,255,255,0.84);
    }

    .download-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: flex-end;
    }

    .download-actions .store-btn {
      /*background: rgba(255,255,255,0.96);*/
    }

    .site-footer {
      padding: 10px 0 36px;
    }

    .footer-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      border-top: 1px solid rgba(220, 229, 239, 0.9);
      color: var(--muted);
      font-size: 0.94rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--navy);
    }

    .play-triangle {
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 20px solid var(--gold);
      margin-left: 4px;
      filter: drop-shadow(0 2px 2px rgba(8, 56, 102, 0.08));
    }

    .apple-icon {
      position: relative;
      width: 26px;
      height: 28px;
      color: var(--navy);
    }

    .apple-icon::before,
    .apple-icon::after {
      content: "";
      position: absolute;
      background: currentColor;
    }

    .apple-icon::before {
      width: 9px;
      height: 9px;
      border-radius: 60% 0 60% 0;
      transform: rotate(-35deg);
      top: -1px;
      left: 13px;
    }

    .apple-icon::after {
      width: 22px;
      height: 22px;
      left: 2px;
      top: 6px;
      border-radius: 45% 45% 42% 42% / 42% 42% 58% 58%;
    }

    .gold {
      color: var(--gold);
    }

    @keyframes floatMain {
      0%, 100% { transform: rotate(-3deg) translateY(0); }
      50% { transform: rotate(-2deg) translateY(-12px); }
    }

    @keyframes floatSide {
      0%, 100% { transform: rotate(-10deg) translateY(0); }
      50% { transform: rotate(-11deg) translateY(-10px); }
    }

    @keyframes floatSideRight {
      0%, 100% { transform: rotate(9deg) translateY(0); }
      50% { transform: rotate(8deg) translateY(-11px); }
    }

    @keyframes floatSoft {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes floatChip {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-7px); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.82; }
      50% { transform: scale(1.08); opacity: 1; }
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .download-inner,
      .showcase {
        grid-template-columns: 1fr;
      }

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

      .download-inner {
        display: grid;
        justify-items: start;
      }

      .download-actions {
        justify-content: flex-start;
      }

      .visual-wrap {
        min-height: 760px;
      }
    }

    @media (max-width: 860px) {
      .nav {
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-links {
        justify-content: flex-start;
      }

      .hero-copy {
        padding: 30px;
      }

      .hero-points,
      .feature-grid,
      .stats-strip {
        grid-template-columns: 1fr;
      }

      .phone-stack {
        width: 100%;
        height: 700px;
      }

      .phone.main {
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
      }

      .phone.left {
        left: 0;
        top: 300px;
      }

      .phone.right {
        right: 0;
        top: 320px;
      }

      @keyframes floatMain {
        0%, 100% { transform: translateX(-50%) rotate(-3deg) translateY(0); }
        50% { transform: translateX(-50%) rotate(-2deg) translateY(-10px); }
      }
    }

    @media (max-width: 640px) {
      :root { --container: min(100% - 24px, 1180px); }

      .hero {
        padding-top: 24px;
      }

      .hero-copy,
      .download-banner,
      .screen-card {
        padding: 22px;
      }

      .cta-row,
      .download-actions {
        width: 100%;
      }

      .store-btn {
        /*width: 100%;*/
        min-width: 0;
      }

      .view-counter-strip {
        display: grid;
        width: 100%;
      }

      .view-counter-item {
        min-width: 0;
      }

      .visual-wrap {
        min-height: 640px;
      }

      .logo-badge {
        width: 170px;
        top: 6px;
        right: 4px;
      }

      .phone-stack {
        height: 620px;
      }

      .phone.main {
        width: 238px;
        top: 40px;
      }

      .phone.left,
      .phone.right {
        width: 178px;
        top: 280px;
      }

      .phone.left { left: -2px; }
      .phone.right { right: -2px; }

      .floating-chip {
        font-size: 0.82rem;
        padding: 10px 12px;
      }

      .chip-a { top: 102px; left: 0; }
      .chip-b { right: 0; top: 146px; }
      .chip-c { left: 22px; bottom: 44px; }

      .footer-card {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
    }
