@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f8fb;
  --bg-2: #eef2f7;
  --ink: #10131a;
  --muted: #667085;
  --soft: #8a94a6;
  --line: rgba(16, 19, 26, 0.1);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --cyan: #00d8ff;
  --blue: #1677ff;
  --blue-deep: #0b5fea;
  --silver: #d8dee8;
  --shadow: 0 30px 90px rgba(17, 24, 39, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 216, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(170, 185, 210, 0.26), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f6fa 42%, #e9eef5 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 30, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 30, 50, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 52px;
}

.glow {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.55;
  animation: float 8s ease-in-out infinite;
}

.glow.one {
  width: 210px;
  height: 210px;
  left: -78px;
  top: 130px;
  background: rgba(0, 216, 255, 0.18);
}

.glow.two {
  width: 280px;
  height: 280px;
  right: -120px;
  top: 220px;
  background: rgba(255, 255, 255, 0.78);
  animation-delay: -3s;
}

.glow.three {
  width: 170px;
  height: 170px;
  right: 18%;
  bottom: 8%;
  background: rgba(143, 163, 190, 0.2);
  animation-delay: -5s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  box-shadow:
    0 0 0 1px rgba(0, 216, 255, 0.22),
    0 10px 28px rgba(0, 216, 255, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 82px 0 52px;
}

.hero-copy {
  min-width: 0;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 216, 255, 0.28);
  background: rgba(255, 255, 255, 0.7);
  color: #324055;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 14px 34px rgba(0, 216, 255, 0.08);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 216, 255, 0.85);
}

h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 600;
}

.shine-text {
  background: linear-gradient(100deg, #10131a 0%, #657083 34%, #00bfe7 55%, #111827 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 400;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.store-card {
  min-width: 220px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  border-radius: 22px;
  border: 1px solid rgba(16, 19, 26, 0.1);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.store-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.1);
}

.store-card.primary-store {
  color: white;
  border: none;
  background:
    linear-gradient(135deg, #10131a, #303846 58%, #0d95b8);
  box-shadow:
    0 18px 40px rgba(17, 24, 39, 0.2),
    0 0 38px rgba(0, 216, 255, 0.16);
}

.store-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.025em;
  background: rgba(255, 255, 255, 0.18);
}

.store-card:not(.primary-store) .store-mark {
  color: #111827;
  background: rgba(16, 19, 26, 0.06);
}

.store-mark.play {
  font-size: 18px;
}

.store-card small {
  display: block;
  margin-bottom: 1px;
  font-size: 12px;
  line-height: 1.1;
  color: currentColor;
  opacity: 0.68;
  font-weight: 400;
}

.store-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.privacy-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.privacy-note a {
  color: #0d7fa2;
  font-weight: 600;
}

.preview-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(236, 241, 248, 0.56));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(0, 216, 255, 0.16);
  filter: blur(8px);
}

.phone {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  padding: 22px;
  border: 1px solid rgba(19, 26, 39, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(0, 216, 255, 0.16), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.phone-logo {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 216, 255, 0.18);
}

.model-photo {
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.phone-title strong {
  display: block;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.phone-title span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 400;
}

.bubble {
  width: fit-content;
  max-width: 88%;
  margin: 12px 0;
  padding: 14px 16px;
  border-radius: 20px;
  color: #293244;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 19, 26, 0.08);
  line-height: 1.45;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.06);
  font-weight: 400;
}

.bubble.user {
  margin-left: auto;
  color: white;
  background: linear-gradient(135deg, var(--blue), #00b8e6);
  box-shadow:
    0 14px 30px rgba(22, 119, 255, 0.18),
    0 0 24px rgba(0, 216, 255, 0.16);
  font-weight: 400;
}

.mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 30px;
}

.mini-card {
  min-height: 84px;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(226, 233, 243, 0.62));
  border: 1px solid rgba(16, 19, 26, 0.08);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.mini-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #10131a;
  font-weight: 600;
}

.mini-card span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: #7b8496;
  font-weight: 400;
}

.section {
  padding: 34px 0;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
  font-weight: 600;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  position: relative;
  padding: 24px;
  min-height: 188px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(0, 216, 255, 0.08);
}

.card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

/* Interior pages */

.subpage {
  padding: 64px 0 34px;
}

.subpage-hero {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.subpage-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 216, 255, 0.28);
  background: rgba(255, 255, 255, 0.7);
  color: #324055;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 14px 34px rgba(0, 216, 255, 0.08);
}

.subpage-title {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.subpage-copy {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  font-weight: 400;
}

.content-card {
  margin: 24px auto 0;
  padding: clamp(22px, 4vw, 34px);
  max-width: 920px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.info-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 19, 26, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 241, 249, 0.66));
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.info-card h2,
.info-card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.info-card p,
.info-card li {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card ul,
.info-card ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.download-panel {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(16, 19, 26, 0.09);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.download-card-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, #10131a, #303846 58%, #0d95b8);
  box-shadow: 0 16px 36px rgba(0, 216, 255, 0.16);
}

.download-card small {
  display: block;
  color: var(--soft);
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: 400;
}

.download-card strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.download-card .button {
  min-height: 46px;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  color: white;
  border: none;
  background:
    linear-gradient(135deg, #10131a, #303846 58%, #0d95b8);
  box-shadow:
    0 18px 40px rgba(17, 24, 39, 0.22),
    0 0 38px rgba(0, 216, 255, 0.18);
}

.button.secondary {
  color: #1b2433;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-1px);
}

.notice {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #344054;
  background: rgba(0, 216, 255, 0.08);
  border: 1px solid rgba(0, 216, 255, 0.18);
  line-height: 1.6;
  font-weight: 400;
}

.email-link {
  color: #0d7fa2;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 42px;
  padding: 24px 0 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--ink);
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    border-radius: 26px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .phone {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-card .button {
    width: 100%;
  }

  .subpage {
    padding-top: 42px;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 22px, 1120px);
    padding-top: 14px;
  }

  .nav-links {
    gap: 4px;
    font-size: 13px;
  }

  .nav-links a {
    padding: 8px 9px;
  }

  .hero {
    gap: 26px;
  }

  .badge,
  .subpage-kicker {
    font-size: 12px;
  }

  .store-card {
    width: 100%;
  }

  .mini-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}