:root {
      --primary: #014958;
      --primary-dark: #003640;
      --primary-deep: #00262d;
      --primary-light: #0f7182;
      --accent: #26d4c5;
      --accent-soft: #7ff2e6;
      --gold: #f7c96f;
      --text: #eafcff;
      --muted: rgba(234, 252, 255, .68);
      --line: rgba(255, 255, 255, .14);
      --card: rgba(1, 73, 88, .52);
      --shadow: 0 20px 60px rgba(0, 21, 26, .42);
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
  min-height: 100vh;
  color: var(--text);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  position: relative;
  background: #000;
}

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;

    background-image: url("./img/bg.jpg");
    background-repeat: repeat;
    background-size: 60% auto;   /* 图片大小，可调整 */
    background-position: center;

    transform: scale(1.02);
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background: rgba(0, 0, 0, 0.8);   /* 暗色遮罩 */
}

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

    button {
      font: inherit;
    }

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

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .glass {
      background: linear-gradient(
        145deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.045)
      );
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 0;
      background: rgba(0, 38, 45, .68);
      border-bottom: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

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

    .brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 8px 28px rgba(38, 212, 197, .22);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

    .brand-text strong {
      display: block;
      font-size: 19px;
      letter-spacing: 1px;
    }

    .brand-text span {
      display: block;
      margin-top: 2px;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      color: rgba(255,255,255,.8);
      font-size: 14px;
    }

    .nav-links a {
      position: relative;
      transition: .25s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -9px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      transform: translateX(-50%);
      transition: .25s ease;
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

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

    .btn {
      border: 0;
      cursor: pointer;
      min-height: 46px;
      padding: 0 22px;
      border-radius: 14px;
      font-weight: 700;
      transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }

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

    .btn-primary {
      color: #00383f;
      background: linear-gradient(135deg, #78fff0, #25cfc1);
      box-shadow: 0 12px 30px rgba(38, 212, 197, .25);
    }

    .btn-outline {
      color: #fff;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.07);
    }

    /* 主视觉 */
    .hero {
      position: relative;
      min-height: 690px;
      display: flex;
      align-items: center;
      padding: 76px 0 72px;
      overflow: hidden;
      background: transparent;
    }

    .hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.45),
        rgba(0,0,0,.15),
        transparent
    );
    pointer-events:none;
}

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 64px;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 22px;
      padding: 9px 14px;
      border: 1px solid rgba(127, 242, 230, .25);
      border-radius: 999px;
      color: var(--accent-soft);
      background: rgba(38, 212, 197, .08);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .4px;
    }

    .eyebrow i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #70ffe9;
      box-shadow: 0 0 0 6px rgba(112,255,233,.12);
    }

    .hero h1 {
      max-width: 680px;
      font-size: clamp(46px, 5.2vw, 76px);
      line-height: 1.07;
      letter-spacing: -2px;
    }

    .hero h1 .gradient {
      color: transparent;
      background: linear-gradient(90deg, #fff, #80fff1 55%, #36d2c6);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-desc {
      max-width: 620px;
      margin-top: 24px;
      color: var(--muted);
      line-height: 1.9;
      font-size: 17px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-buttons .btn {
      min-width: 150px;
      min-height: 54px;
      border-radius: 16px;
    }

    .hero-stats {
      display: flex;
      gap: 34px;
      margin-top: 40px;
    }

    .stat-item strong {
      display: block;
      font-size: 28px;
      letter-spacing: .4px;
    }

    .stat-item span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
    }

    /* 右侧设备视觉 */
    .device-stage {
      position: relative;
      min-height: 520px;
      display: grid;
      place-items: center;
    }

    .device-halo {
      position: absolute;
      width: 430px;
      height: 430px;
      border-radius: 50%;
      border: 1px solid rgba(127,242,230,.14);
      box-shadow:
        inset 0 0 50px rgba(38,212,197,.05),
        0 0 80px rgba(38,212,197,.12);
      animation: rotate 18s linear infinite;
    }

    .device-halo::before,
    

    .device-halo::before {
      inset: 34px;
    }

    .device-halo::after {
      inset: 82px;
    }

    .phone {
      position: relative;
      width: 265px;
      height: 520px;
      padding: 11px;
      border-radius: 42px;
      background: linear-gradient(150deg, #163d45, #001b20);
      border: 1px solid rgba(255,255,255,.22);
      box-shadow:
        0 36px 85px rgba(0,0,0,.5),
        0 0 0 8px rgba(255,255,255,.025);
      transform: rotate(4deg);
      z-index: 3;
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 17px;
      left: 50%;
      width: 92px;
      height: 23px;
      border-radius: 999px;
      background: #00191e;
      transform: translateX(-50%);
      z-index: 5;
    }

    .phone-screen {
      height: 100%;
      border-radius: 33px;
      overflow: hidden;
      padding: 48px 16px 18px;
      background:
        radial-gradient(circle at 80% 10%, rgba(98,255,235,.28), transparent 31%),
        linear-gradient(175deg, #036175, #013943 66%, #00292f);
    }

    .screen-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .screen-user {
      display: flex;
      gap: 9px;
      align-items: center;
    }

    .avatar {
      width: 34px;
      height: 34px;
      border-radius: 11px;
      background: linear-gradient(145deg, #7ffff0, #1bb8ad);
    }

    .screen-user b {
      display: block;
      font-size: 12px;
    }

    .screen-user small {
      color: rgba(255,255,255,.58);
      font-size: 9px;
    }

    .screen-banner {
      margin-top: 18px;
      padding: 18px;
      min-height: 132px;
      border-radius: 21px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.055)),
        radial-gradient(circle at 90% 20%, rgba(126,255,241,.25), transparent 38%);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }

    .screen-banner span {
      color: var(--accent-soft);
      font-size: 10px;
      font-weight: 700;
    }

    .screen-banner h3 {
      margin-top: 9px;
      font-size: 21px;
      line-height: 1.25;
    }

    .screen-banner button {
      margin-top: 16px;
      border: 0;
      border-radius: 9px;
      padding: 8px 13px;
      color: #00383f;
      background: #78fff0;
      font-size: 10px;
      font-weight: 800;
    }

    .mini-title {
      display: flex;
      justify-content: space-between;
      margin: 18px 2px 10px;
      font-size: 11px;
    }

    .mini-title span:last-child {
      color: var(--accent-soft);
      font-size: 9px;
    }

    .screen-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:12px;
}

.game-card{
    background:#023e48;
    border-radius:18px;
    padding:12px 8px 14px;
    text-align:center;

    box-shadow:
        0 8px 18px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.8);

    transition:.25s;
}

.game-card:hover{
    transform:translateY(-4px);
}

.game-card img{
    width: 80%;
    aspect-ratio: 1 / 1;   /* 保持 1:1 正方形 */
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
}

.game-name{
    color:#26d4c5;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.game-card button{
    border:0;
    outline:0;
    cursor:pointer;

    width:90%;
    height:34px;

    border-radius:999px;

    background:linear-gradient(#eef5ff,#d8e9ff);

    color:#003e47;
    font-size:13px;
    font-weight:700;
}

    .screen-card{
    height:108px;
    border-radius:15px;
    padding:8px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.12);
    text-align:center;
}

    .screen-card i {
      display: block;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: linear-gradient(145deg, #75ffed, #18adac);
      box-shadow: 0 8px 18px rgba(0,0,0,.18);
    }

    .screen-card b {
      display: block;
      margin-top: 9px;
      font-size: 10px;
    }

    .screen-card small {
      color: rgba(255,255,255,.54);
      font-size: 8px;
    }

    .float-card {
      position: absolute;
      z-index: 5;
      width: 175px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(0, 43, 51, .78);
      border: 1px solid rgba(127,242,230,.2);
      box-shadow: 0 20px 44px rgba(0,0,0,.28);
      backdrop-filter: blur(14px);
    }

    .float-card strong {
      display: block;
      font-size: 15px;
    }

    .float-card span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 11px;
    }

    .float-card.top {
      top: 76px;
      right: -14px;
      animation: float 4.5s ease-in-out infinite;
    }

    .float-card.bottom {
      bottom: 66px;
      left: -24px;
      animation: float 5.2s ease-in-out infinite reverse;
    }

    /* 快捷线路 */
    .quick-panel {
      position: relative;
      z-index: 10;
      margin-top: -36px;
    }

    .quick-box {
      border-radius: var(--radius-lg);
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 26px;
    }

    .quick-copy {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .quick-icon {
      flex: 0 0 auto;
      width: 54px;
      height: 54px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      color: #003e47;
      background: linear-gradient(145deg, #83fff1, #2bcabd);
      font-size: 24px;
      box-shadow: 0 10px 24px rgba(38,212,197,.2);
    }

    .quick-copy h3 {
      font-size: 18px;
    }

    .quick-copy p {
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    .line-list {
      display: flex;
      gap: 10px;
    }

    .line-item {
      min-width: 118px;
      padding: 13px 16px;
      border-radius: 13px;
      text-align: center;
      cursor: pointer;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      transition: .22s ease;
    }

    .line-item:hover {
      transform: translateY(-2px);
      border-color: rgba(127,242,230,.48);
      background: rgba(38,212,197,.12);
    }

    .line-item b {
      font-size: 13px;
    }

    .line-item span {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 7px;
      color: #71f4df;
      font-size: 11px;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #5dffd8;
      box-shadow: 0 0 0 4px rgba(93,255,216,.1);
    }

    /* 通用区块 */
    .section {
      padding: 100px 0;
    }

    .section-heading {
      max-width: 650px;
      margin: 0 auto 46px;
      text-align: center;
    }

    .section-heading .tag {
      color: var(--accent-soft);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .section-heading h2 {
      margin-top: 12px;
      font-size: clamp(30px, 4vw, 46px);
      letter-spacing: -1px;
    }

    .section-heading p {
      margin-top: 16px;
      color: var(--muted);
      line-height: 1.85;
      font-size: 15px;
    }

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

    .feature-card {
      min-height: 250px;
      padding: 28px 24px;
      border-radius: 22px;
      transition: .25s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      border-color: rgba(127,242,230,.35);
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #003d46;
      font-size: 24px;
      font-weight: 900;
      background: linear-gradient(145deg, #8ffff1, #2bcbbd);
      box-shadow: 0 10px 26px rgba(38,212,197,.18);
    }
    /* 在线客服 */
.online-service{
    position:fixed;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;

    cursor:pointer;
    transition:.25s;
    animation:serviceFloat 2.5s ease-in-out infinite;
}

.online-service img{
    width:100%;
    height:auto;
    display:block;

    filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.online-service:hover{
    transform:translateY(-50%) scale(1.08);
}

/* 手机 */
@media (max-width:768px){

    /* 外层定位 */
.online-service{
    position: fixed;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
}

/* 图片大小 */
.online-service img{
    width: 80%;
    max-width: 100px;   /* 防止图片过大 */
    height: auto;
    display: block;
}

}

@keyframes serviceFloat{

    0%,100%{
        transform:translateY(-50%);
    }

    50%{
        transform:translateY(calc(-50% - 8px));
    }

}
    .feature-card h3 {
      margin-top: 22px;
      font-size: 19px;
    }

    .feature-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
    }

    /* 下载区 */
    .download {
      padding-top: 30px;
    }

    .download-box {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr .82fr;
      align-items: center;
      gap: 54px;
      padding: 62px;
      border-radius: 32px;
    }

    .download-box::before {
      content: "";
      position: absolute;
      width: 440px;
      height: 440px;
      right: -140px;
      bottom: -200px;
      border-radius: 50%;
      background: rgba(38,212,197,.15);
      filter: blur(10px);
    }

    .download-copy {
      position: relative;
      z-index: 2;
    }

    .download-copy h2 {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.18;
    }

    .download-copy p {
      margin-top: 18px;
      color: var(--muted);
      line-height: 1.8;
    }

    .download-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 30px;
    }

    .store-btn {
      min-width: 178px;
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 18px;
      border-radius: 15px;
      background: rgba(255,255,255,.09);
      border: 1px solid rgba(255,255,255,.15);
      transition: .22s ease;
    }

    .store-btn:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.13);
    }

    .store-btn i {
      font-style: normal;
      font-size: 26px;
    }

    .store-btn small {
      display: block;
      color: var(--muted);
      font-size: 9px;
    }

    .store-btn strong {
      display: block;
      margin-top: 2px;
      font-size: 14px;
    }

    .qr-panel {
      position: relative;
      z-index: 2;
      display: grid;
      place-items: center;
    }

    .qr-card {
      width: 250px;
      padding: 22px;
      border-radius: 24px;
      text-align: center;
      color: #003e47;
      background: #eafffc;
      box-shadow: 0 24px 60px rgba(0,0,0,.24);
      transform: rotate(2.5deg);
    }

    .qr-placeholder {
      aspect-ratio: 1;
      padding: 12px;
      border-radius: 15px;
      background:
        repeating-linear-gradient(0deg, #023e48 0 9px, transparent 9px 18px),
        repeating-linear-gradient(90deg, #023e48 0 9px, transparent 9px 18px);
      background-blend-mode: multiply;
      border: 10px solid #fff;
      box-shadow: inset 0 0 0 2px rgba(0,0,0,.08);
    }

    .qr-card b {
      display: block;
      margin-top: 16px;
      font-size: 16px;
    }

    .qr-card span {
      display: block;
      margin-top: 5px;
      color: rgba(0,62,71,.65);
      font-size: 12px;
    }

    /* 底部 */
    .footer {
      margin-top: 100px;
      padding: 38px 0 110px;
      border-top: 1px solid rgba(255,255,255,.1);
      background: rgba(0, 28, 33, .44);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .footer p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.8;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      color: rgba(255,255,255,.7);
      font-size: 13px;
    }
    .hero-title{
    margin:18px 0 28px;
}

.hero-title img{
    width:min(620px,100%);
    display:block;
    filter:
        drop-shadow(0 12px 35px rgba(0,0,0,.45))
        drop-shadow(0 0 25px rgba(0,255,220,.35));
}
.screen-card img{
    width:48px;
    height:48px;
    margin:0 auto;
    object-fit:contain;
}
.hero-copy{
    padding:30px;
    border-radius:28px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);
}
    /* 手机底栏 */
   .mobile-bar{
    position:fixed;
    left:12px;
    right:12px;
    bottom:calc(12px + env(safe-area-inset-bottom));
    z-index:9999;

    display:none;
    grid-template-columns:repeat(2,1fr);
    gap:10px;

    padding:9px;
    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            rgba(0,25,31,.88),
            rgba(1,73,88,.68)
        );

    border:1px solid rgba(255,255,255,.14);

    box-shadow:
        0 18px 45px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.08),
        0 0 30px rgba(38,212,197,.12);

    backdrop-filter:blur(20px) saturate(150%);
    -webkit-backdrop-filter:blur(20px) saturate(150%);

    overflow:hidden;
}

/* 顶部流光 */
.mobile-bar::before{
    content:"";
    position:absolute;
    top:0;
    left:-60%;
    width:45%;
    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(127,242,230,.95),
        transparent
    );

    animation:mobileBarLight 3.2s linear infinite;
}

/* 内部暗光 */
.mobile-bar::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(38,212,197,.12),
            transparent 55%
        );
}

.mobile-bar a{
    position:relative;
    z-index:2;

    min-height:56px;
    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    color:rgba(255,255,255,.9);
    font-size:13px;
    font-weight:700;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.035)
        );

    border:1px solid rgba(255,255,255,.1);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 8px 20px rgba(0,0,0,.18);

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.mobile-bar a:active{
    transform:scale(.96);
}

.mobile-bar a:hover{
    transform:translateY(-2px);
    background:rgba(38,212,197,.14);
    border-color:rgba(127,242,230,.35);

    box-shadow:
        0 10px 24px rgba(0,0,0,.28),
        0 0 18px rgba(38,212,197,.18);
}

.mobile-bar i{
    width:34px;
    height:34px;
    border-radius:12px;

    display:grid;
    place-items:center;

    font-style:normal;
    font-size:18px;

    color:#003b43;

    background:
        linear-gradient(
            145deg,
            #8cfff2,
            #26cfc1
        );

    box-shadow:
        0 8px 18px rgba(38,212,197,.25),
        inset 0 1px 0 rgba(255,255,255,.55);

    animation:mobileIconPulse 2.4s ease-in-out infinite;
}

.mobile-bar span{
    white-space:nowrap;
    letter-spacing:.3px;
}

@keyframes mobileBarLight{
    0%{
        left:-60%;
    }

    100%{
        left:120%;
    }
}

@keyframes mobileIconPulse{
    0%,
    100%{
        transform:scale(1);
        box-shadow:
            0 8px 18px rgba(38,212,197,.22),
            0 0 0 rgba(38,212,197,0);
    }

    50%{
        transform:scale(1.06);
        box-shadow:
            0 10px 22px rgba(38,212,197,.32),
            0 0 16px rgba(38,212,197,.18);
    }
}

@media (max-width:760px){
    .mobile-bar{
        display:grid;
    }
}

    
    @media (max-width: 1040px) {
      .nav-links {
        display: none;
      }

      .hero-grid {
        gap: 30px;
      }

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

      .quick-box {
        grid-template-columns: 1fr;
      }

      .line-list {
        width: 100%;
      }

      .line-item {
        flex: 1;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 26px, 680px);
      }

      .site-header {
        padding: 11px 0;
      }

      @media (max-width:760px) {
  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

      .brand-text strong {
        font-size: 16px;
      }

      .brand-text span {
        font-size: 9px;
      }

      .nav-actions .btn-outline {
        display: none;
      }

      .nav-actions .btn-primary {
        min-height: 40px;
        padding: 0 15px;
        border-radius: 12px;
        font-size: 13px;
      }

      .hero {
        min-height: auto;
        padding: 54px 0 38px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: -1.5px;
      }

      .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
      }

      .hero-stats {
        justify-content: center;
        gap: 22px;
      }

      .stat-item strong {
        font-size: 22px;
      }

      .device-stage {
        min-height: 480px;
        margin-top: -12px;
        transform: scale(.9);
      }

      .float-card.top {
        right: 0;
      }

      .float-card.bottom {
        left: 0;
      }

      .quick-panel {
        margin-top: -20px;
      }

      .quick-box {
        padding: 18px;
      }

      .quick-copy {
        align-items: flex-start;
      }

      .line-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }

      .line-item {
        min-width: 0;
        padding: 12px 7px;
      }

      .section {
        padding: 76px 0;
      }

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

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

      .download-box {
        grid-template-columns: 1fr;
        padding: 34px 22px;
        text-align: center;
        gap: 38px;
      }

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

      .qr-card {
        width: 220px;
      }

      .footer {
        margin-top: 70px;
        padding-bottom: 105px;
      }

      .footer-row {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }

      .mobile-bar {
        display: grid;
      }
    }

    @media (max-width: 420px) {
      .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .hero-stats {
        gap: 14px;
      }

      .stat-item {
        flex: 1;
      }

      .device-stage {
        transform: scale(.78);
        margin: -52px 0 -58px;
      }

      .line-list {
        gap: 7px;
      }

      .line-item b {
        font-size: 12px;
      }

      .store-btn {
        width: 100%;
        justify-content: center;
      }
      .hero-title{
        display:flex;
        justify-content:center;
    }

    .hero-title img{
        width:120%;
        max-width:460px;
    }
    }