:root {
  --bg: #080b14;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f7f8ff;
  --muted: #aeb6cf;
  --primary: #ff3d6e;
  --primary-2: #6c5cff;
  --accent: #00d4ff;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(108, 92, 255, 0.34), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(0, 212, 255, 0.20), transparent 26%),
    radial-gradient(circle at 70% 75%, rgba(255, 61, 110, 0.25), transparent 28%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
}

.brand__mark,
.mini-logo {
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 800;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.eyebrow {
  margin: 54px 0 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -0.07em;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.7;
}

.download-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  min-width: 205px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  color: #10131f;
  text-decoration: none;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0,0,0,.32);
}

.store-button--outline {
  color: #fff;
  background: var(--panel-strong);
  backdrop-filter: blur(16px);
}

.store-button__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.store-button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-button small,
.store-button strong {
  display: block;
}

.store-button small {
  font-size: 11px;
  line-height: 1.1;
  opacity: .7;
  text-transform: uppercase;
}

.store-button strong {
  margin-top: 2px;
  font-size: 19px;
  line-height: 1.1;
}

.hint {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.phone-card {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,61,110,.55), rgba(0,212,255,.32));
  filter: blur(8px);
  opacity: .55;
}

.phone {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 18.5;
  padding: 18px;
  border-radius: 46px;
  background: linear-gradient(160deg, #272d44, #080a12 48%, #1b1530);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.phone__speaker {
  width: 92px;
  height: 7px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.app-screen {
  height: calc(100% - 23px);
  border-radius: 32px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)),
    #101425;
}

.app-screen__top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.mini-logo {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 13px;
}

.ticket-card {
  margin-top: 38px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 20px 50px rgba(108, 92, 255, .38);
}

.ticket-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  opacity: .78;
}

.ticket-card strong {
  display: block;
  margin-top: 16px;
  font-size: 27px;
  line-height: 1.05;
}

.ticket-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.75);
}

.ticket-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.ticket-list div {
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
}

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

.features article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.features span {
  color: var(--accent);
  font-weight: 800;
}

.features h2 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.features p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 34px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

@media (max-width: 860px) {
  .page-shell {
    padding-top: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .eyebrow {
    margin-top: 38px;
  }

  .phone {
    transform: rotate(0deg);
  }

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

@media (max-width: 540px) {
  .page-shell,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .download-panel,
  .store-button {
    width: 100%;
  }

  .store-button {
    justify-content: center;
  }
}


.brand {
  text-decoration: none;
}

.brand img {
  display: block;
  width: 210px;
  height: 60px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.25) contrast(1.05);
}

.website-link {
  display: inline-flex;
  align-items: center;
  margin: -12px 0 28px;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.website-link:hover,
.footer a:hover {
  color: var(--accent);
}

.logo-showcase {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

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

.logo-grid article {
  min-height: 300px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  color: #202431;
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
}

.logo-grid img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.logo-grid h3 {
  margin: 18px 0 8px;
  font-size: 19px;
}

.logo-grid p {
  margin: 0;
  color: #666f82;
  line-height: 1.6;
}

.footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

@media (max-width: 860px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .brand img {
    width: 190px;
    height: 54px;
  }
}


/* Top logo refinement: transparent cropped horizontal logo */
.hero .brand {
  width: 390px;
  max-width: min(390px, 100%);
  min-height: 78px;
  justify-content: center;
  padding: 10px 34px;
  overflow: hidden;
}

.hero .brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}

@media (max-width: 540px) {
  .hero .brand {
    width: 100%;
    min-height: 72px;
    padding: 10px 24px;
  }

  .hero .brand img {
    height: 52px;
  }
}


/* Top brand text-only version */
.hero .brand--text-only {
  width: 390px;
  max-width: min(390px, 100%);
  min-height: 78px;
  padding: 10px 34px;
  justify-content: center;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.hero .brand--text-only span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .hero .brand--text-only {
    width: 100%;
    min-height: 72px;
    font-size: 30px;
    padding: 10px 20px;
  }
}

/* Download buttons layout: 3 in one row, otherwise vertical */
.download-panel {
  display: grid;
  grid-template-columns: repeat(3, 205px);
  gap: 14px;
  align-items: stretch;
}

.download-panel .store-button {
  width: 205px;
  min-width: 0;
}

@media (max-width: 1120px) {
  .download-panel {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .download-panel .store-button {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Real mobile website screenshot inside phone mockup */
.app-screen--capture {
  padding: 0;
  background: #ffffff;
}

.app-screen--capture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Show the full mobile screenshot including bottom navigation */
.app-screen--capture img {
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
}

/* Keep phone mockup straight so the website screenshot does not look tilted */
.phone {
  transform: rotate(0deg);
}

.store-button__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

button.store-button {
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
}

.qr-modal.is-open {
  display: grid;
}

.qr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 12, .72);
  backdrop-filter: blur(8px);
}

.qr-modal__dialog {
  position: relative;
  width: min(380px, 100%);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.2);
  background: #ffffff;
  color: #111522;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}

.qr-modal__dialog h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.qr-modal__dialog p {
  margin: 0 0 22px;
  color: #697386;
  line-height: 1.6;
}

.qr-modal__dialog img {
  width: 260px;
  max-width: 100%;
  height: auto;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #edf0f7;
}

.qr-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f2f4f8;
  color: #202431;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
