:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #606060;
  --success: #111111;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body { min-height: 100vh; }

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 120px 20px 40px;
}

.content {
  width: min(100%, 720px);
  text-align: center;
}

.logo {
  display: block;
  width: 420px;
  max-width: 85vw;
  height: auto;
  margin: 0 auto 34px;
}

.tagline {
  margin: 0 0 30px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
  font-weight: 400;
}

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Current store buttons are CSS/SVG based.
   Their overall width is now 120px as requested. */
.store-button {
  display: inline-flex;
  align-items: center;
  width: 120px;
  min-width: 120px;
  height: auto;
  min-height: 38px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #050505;
  color: white;
  text-decoration: none;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,.22);
  transition: transform .15s ease, opacity .15s ease;
}

.store-button:hover {
  transform: translateY(-1px);
  opacity: .9;
}

.store-icon {
  width: 23px;
  height: 23px;
  margin-right: 6px;
  flex: 0 0 auto;
}

.store-small {
  display: block;
  font-size: 7px;
  line-height: 1;
  opacity: .95;
}

.store-large {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
}

.confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 3px solid var(--success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
  font-weight: 700;
}

.confirm-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
}

.confirm-text {
  max-width: 480px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.primary-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: #050505;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  opacity: .88;
}

.note {
  margin-top: 18px;
  color: #8a8a8a;
  font-size: 13px;
}

@media (max-width: 520px) {
  .page {
    padding: 80px 18px 32px;
  }

  .logo {
    width: 340px;
    max-width: 88vw;
    margin-bottom: 28px;
  }

  .store-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .store-button {
    width: 120px;
    min-width: 120px;
  }
}