:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.14);
  --border: rgba(2, 6, 23, 0.08);
  --brand: #16a34a;
  --brand-hover: #15803d;
  --ring: rgba(22, 163, 74, 0.25);
  --chip: rgba(15, 23, 42, 0.05);
  --chip-border: rgba(15, 23, 42, 0.08);
  --gold: #f59e0b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 50% -120px, rgba(22, 163, 74, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 120%, rgba(59, 130, 246, 0.10), transparent 45%),
    var(--bg);
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  width: min(440px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 26px 22px 22px;
  text-align: center;
}

.logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 18px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 23, 0.10);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  background: #fff;
  display: grid;
  place-items: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0 auto 18px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.subtitle strong {
  color: var(--text);
  font-weight: 800;
}

.trust {
  margin: 6px 0 18px;
  display: grid;
  gap: 10px;
}

.stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
}

.score strong {
  color: var(--text);
}

.starRow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.25);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--chip);
  border: 1px solid var(--chip-border);
  color: rgba(15, 23, 42, 0.78);
  font-size: 12.5px;
  line-height: 1;
}

.ctaWrap {
  margin: 2px 0 0;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 14px 16px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--brand), var(--brand-hover));
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.28);
  transition:
    transform 120ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.ctaSub {
  font-weight: 600;
  opacity: 0.9;
  font-size: 12.5px;
}

.ctaRow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ctaArrow {
  display: inline-block;
  opacity: 0.95;
  transform: translateY(0);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

@keyframes ctaArrowNudge {
  0% {
    transform: translateX(0);
    opacity: 0.92;
  }
  50% {
    transform: translateX(3px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.92;
  }
}

@keyframes ctaArrowNudgeLeft {
  0% {
    transform: rotate(180deg) translateX(0);
    opacity: 0.92;
  }
  50% {
    transform: rotate(180deg) translateX(-3px);
    opacity: 1;
  }
  100% {
    transform: rotate(180deg) translateX(0);
    opacity: 0.92;
  }
}

.cta .ctaArrow:first-child {
  transform: rotate(180deg);
}

.cta .ctaArrow {
  animation: ctaArrowNudge 1.4s ease-in-out infinite;
}

.cta .ctaArrow:last-child {
  animation: ctaArrowNudgeLeft 1.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.28);
  }
  50% {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 22px 46px rgba(22, 163, 74, 0.35);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.28);
  }
}

.cta {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px var(--ring), 0 18px 40px rgba(22, 163, 74, 0.28);
}

.cta:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 46px rgba(22, 163, 74, 0.32);
  }
}

.disclaimer {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: rgba(71, 85, 105, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }

  .cta,
  .cta .ctaArrow {
    animation: none !important;
  }
}

@media (min-width: 520px) {
  .cta {
    border-radius: 999px;
    padding: 14px 16px;
    flex-direction: row;
    gap: 10px;
  }

  .ctaSub {
    font-size: 13px;
  }
}
