/* Invite link landing page. Loaded same-origin so it passes the global
   default-src 'self' CSP. Brand palette per brand/brand_guidelines.html. */
:root {
  --black: #000000;
  --grey: #605e5a;
  --beige: #dddad0;
  --crimson: #f92742;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--black);
  color: var(--beige);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.hero {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 24px;
  object-fit: cover;
}

h1 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.desc {
  color: var(--grey);
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.5;
}

.cta {
  font-weight: 700;
  margin: 0 0 16px;
}

.stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.appstore {
  background: var(--crimson);
  color: #ffffff;
}

.playstore {
  background: var(--beige);
  color: var(--black);
}

.weblink {
  display: inline-block;
  margin-top: 20px;
  color: var(--grey);
  font-size: 0.9rem;
}
