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

:root {
  --navy:        #1B2A4A;
  --navy-dark:   #17273A;
  --navy-surface:#223454;
  --gold:        #D4A34A;
  --gold-hi:     #F1C45E;
  --gold-border: rgba(212,163,74,0.18);
  --text-primary:#F5F7FA;
  --text-secondary:#B8C2D1;
}

html, body {
  height: 100%;
  background: var(--navy-dark);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
  text-align: center;
}

.card {
  background: var(--navy-surface);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 420px;
  width: 100%;
}

.logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
}

.logo svg { display: block; width: 100%; height: 100%; }

/* SVG logo classes — applied to inline SVG from the external sheet */
.logo .s {
  fill: none;
  stroke: #D4A34A;
  stroke-width: 34;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo .f { fill: #D4A34A; stroke: none; }

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.tagline {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.divider {
  margin: 2rem auto;
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background: var(--gold-border);
}

.blurb {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.badge-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  background: var(--navy);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  cursor: default;
  opacity: 0.7;
}

.badge-icon {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  flex-shrink: 0;
}

footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* ── Deep-link landing pages (share-landing, request-landing) ── */

.open-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: #17273A;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
}

.store-section {
  margin-top: 1.5rem;
}

.store-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  background: var(--navy);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.store-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  flex-shrink: 0;
}
