:root {
  --navy: #032d6c;
  --ink: #16233f;
  --bg: #f6f8fc;
  --card: #ffffff;
  --muted: #5c6b8a;
  --line: #e4eaf4;
  --wa: #25d366;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(3, 45, 108, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.page { max-width: 1160px; margin: 0 auto; padding: 56px 32px 72px; }

/* Hero */
.hero { text-align: center; margin-bottom: 44px; }
.logo {
  width: 132px; height: 132px; border-radius: 50%;
  object-fit: cover; border: 5px solid #fff;
  box-shadow: 0 12px 32px rgba(3, 45, 108, 0.18);
}
.hero h1 { color: var(--navy); font-size: clamp(32px, 4.5vw, 44px); letter-spacing: -0.02em; margin-top: 20px; }
.tagline { color: var(--muted); font-size: 18px; margin-top: 6px; }

/* Cards */
.groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 36px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.city { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.card h2 { color: var(--navy); font-size: 26px; margin-top: 4px; }
.blurb { color: var(--muted); margin: 8px auto 20px; max-width: 30ch; }
.qr { display: flex; justify-content: center; margin-bottom: 22px; }
.qr svg {
  width: 156px; height: 156px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 10px;
}
.card .btn { margin-top: auto; }

/* Copy row */
.copy-row { display: flex; gap: 10px; margin-top: 14px; width: 100%; }
.copy-row .copy-input {
  flex: 1; width: 100%; min-width: 0; padding: 12px 14px; font-size: 14px; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.copy-row .copy-btn {
  flex-shrink: 0; min-width: 96px; padding: 12px 20px; font-size: 14px; font-weight: 600;
  color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease;
}
.copy-row .copy-btn:hover { background: var(--bg); }
.copy-row .copy-btn.copied { color: #fff; background: var(--wa); border-color: var(--wa); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600;
  text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; box-shadow: 0 8px 20px rgba(204, 35, 102, 0.30);
}

/* Verification state */
.skeleton { min-height: 380px; justify-content: center; color: var(--muted); }
.verify::after {
  content: ""; display: inline-block; width: 14px; height: 14px;
  border: 2px solid var(--line); border-top-color: var(--navy); border-radius: 50%;
  margin-left: 10px; vertical-align: -2px; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile */
@media (max-width: 960px) {
  .page { padding: 40px 20px 56px; }
  .groups { grid-template-columns: 1fr; gap: 20px; }
  .qr svg { width: 150px; height: 150px; }
}
