:root {
  --page: #f7fbff;
  --card: rgba(255, 255, 255, 0.78);
  --ink: #07152f;
  --muted: #64748b;
  --blue: #0d64ff;
  --sky: #10b8f6;
  --navy: #061a43;
  --orange: #ff8a00;
  --red: #ff2437;
  --red-dark: #d71328;
  --line: rgba(35, 88, 170, 0.11);
  --shadow: 0 24px 80px rgba(7, 21, 47, 0.16);
  --soft-shadow: 0 14px 34px rgba(12, 48, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(33, 183, 246, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(255, 138, 0, 0.14), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--page) 52%, #eef7ff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 50%;
  width: 125vw;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: cover;
}

body::before {
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='420' viewBox='0 0 1440 420' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150C165 78 266 245 430 163C599 78 710 66 900 145C1092 224 1208 148 1440 68V0H0V150Z' fill='%2314B8F5' fill-opacity='.11'/%3E%3Cpath d='M0 242C206 170 314 330 501 235C660 154 812 170 961 241C1113 313 1276 274 1440 164V0H0V242Z' fill='%230D64FF' fill-opacity='.07'/%3E%3C/svg%3E");
}

body::after {
  bottom: -110px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='420' viewBox='0 0 1440 420' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 262C132 184 295 176 463 236C610 288 763 338 940 242C1124 142 1277 166 1440 242V420H0V262Z' fill='%230D64FF' fill-opacity='.08'/%3E%3Cpath d='M0 319C156 239 306 268 443 310C634 368 760 267 942 272C1136 276 1267 337 1440 270V420H0V319Z' fill='%23FF8A00' fill-opacity='.06'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 14px max(22px, env(safe-area-inset-bottom));
}

.hero-card {
  position: relative;
  width: min(100%, 460px);
  overflow: hidden;
  padding: 24px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(13, 100, 255, 0.08) 42% 43%, transparent 43% 100%),
    linear-gradient(65deg, transparent 0 58%, rgba(255, 138, 0, 0.08) 58% 59%, transparent 59% 100%);
}

.bg-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(22px);
}

.bg-orb-one {
  top: 70px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: rgba(16, 184, 246, 0.28);
}

.bg-orb-two {
  left: -74px;
  bottom: 190px;
  width: 210px;
  height: 210px;
  background: rgba(255, 138, 0, 0.16);
}

.hero-copy {
  text-align: center;
  padding: 4px 8px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 13px;
  margin: 0 0 14px;
  border: 1px solid rgba(13, 100, 255, 0.12);
  border-radius: 999px;
  background: rgba(13, 100, 255, 0.07);
  color: #1257c6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 12vw, 64px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.subtitle {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 4.2vw, 18px);
  line-height: 1.35;
  font-weight: 700;
}

.logo-link {
  position: relative;
  display: grid;
  place-items: center;
  width: min(70vw, 228px);
  margin: 18px auto 18px;
  border-radius: 38px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-link::after {
  content: "";
  position: absolute;
  inset: 10% 7% -2%;
  z-index: -1;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(13, 100, 255, 0.24), rgba(255, 138, 0, 0.22));
  filter: blur(18px);
}

.logo-link:active,
.benefit-card:active,
.rating-card:active,
.download-button:active {
  transform: scale(0.985);
}

.app-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(6, 26, 67, 0.18));
}

.benefits {
  display: grid;
  gap: 11px;
  margin: 0 0 13px;
}

.benefit-card,
.rating-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 13px 13px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(13, 100, 255, 0.05), rgba(255, 138, 0, 0.05));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-card::before,
.rating-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sky), var(--blue), var(--orange));
  opacity: 0.72;
}

.benefit-card:hover,
.rating-card:hover,
.logo-link:hover {
  transform: translateY(-2px);
}

.benefit-card:hover,
.rating-card:hover {
  border-color: rgba(13, 100, 255, 0.22);
  box-shadow: 0 18px 44px rgba(12, 48, 92, 0.16);
}

.icon-wrap {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34), 0 10px 22px rgba(13, 100, 255, 0.18);
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon-speed {
  background: linear-gradient(135deg, #ff9d18, #ff5d00);
}

.icon-location {
  background: linear-gradient(135deg, #18c2ff, #0d64ff);
}

.icon-devices {
  background: linear-gradient(135deg, #0b255f, #0d64ff);
}

.benefit-text {
  min-width: 0;
  flex: 1 1 auto;
}

.benefit-text strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.17;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.benefit-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.arrow {
  flex: 0 0 auto;
  color: rgba(6, 26, 67, 0.35);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.rating-card {
  min-height: 74px;
  margin-top: 2px;
  background:
    linear-gradient(135deg, rgba(13, 100, 255, 0.06), rgba(255, 255, 255, 0.92) 45%, rgba(255, 138, 0, 0.08)),
    #ffffff;
}

.rating-card img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(13, 100, 255, 0.18);
}

.rating-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.rating-copy strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.stars {
  display: inline-block;
  margin-top: 5px;
  color: #ffb000;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 12px rgba(255, 176, 0, 0.28);
}

.rating-score {
  padding: 8px 10px;
  border-radius: 999px;
  color: #0a4fbc;
  background: rgba(13, 100, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.cta-area {
  margin-top: 18px;
  text-align: center;
}

.no-card {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.download-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  border-radius: 23px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), #ff4758 46%, var(--red-dark));
  box-shadow: 0 18px 38px rgba(255, 36, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.download-button::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -42%;
  width: 36%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  transform: rotate(24deg);
  animation: shine 2.7s ease-in-out infinite;
}

.download-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.24);
  pointer-events: none;
}

.download-button span {
  position: relative;
  z-index: 1;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 36, 55, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

@keyframes shine {
  0% { left: -50%; opacity: 0; }
  18% { opacity: 1; }
  48%, 100% { left: 118%; opacity: 0; }
}

@media (min-width: 520px) {
  .page-shell {
    padding: 34px 18px;
  }

  .hero-card {
    padding: 30px 22px 24px;
    border-radius: 40px;
  }

  .benefit-card,
  .rating-card {
    padding-inline: 16px;
  }
}

@media (min-width: 900px) {
  .hero-card {
    width: min(100%, 500px);
  }
}

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