/* ClaimRush — shared theme
   Palette derived from the app icon (green figure on a tile grid).
   Import this on every page so the whole site stays one brand. */

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

:root {
  --bg:         #0A140D;
  --bg-alt:     #0F1E14;
  --card:       #14261A;
  --card-hi:    #1B3324;
  --border:     #274232;
  --primary:    #35D06A;   /* icon green */
  --primary-lt: #6BE88F;
  --primary-dim:#1F9E43;
  --secondary:  #FF7A3D;   /* warm ember — "raid / defend" contrast */
  --gold:       #FFD35A;   /* the crown / King */
  --strava:     #FC4C02;
  --success:    #35D06A;
  --text:       #E6F5EA;
  --text-sec:   #8FA894;
  --text-muted: #5A7060;
  --radius:     16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── Animated aurora background ─────────────── */
.aurora {
  position: fixed; inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora::before, .aurora::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.aurora::before {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(53,208,106,0.5), transparent 70%);
  top: -180px; left: -120px;
  animation: float1 18s ease-in-out infinite;
}
.aurora::after {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,122,61,0.35), transparent 70%);
  top: 30%; right: -160px;
  animation: float2 22s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(80px,120px) scale(1.15); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-100px,-80px) scale(1.2); }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Brand mark ─────────────────────────────── */
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(53,208,106,0.4);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-word { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
.logo-word span { color: var(--primary); }

/* ── Primary button ─────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dim) 100%);
  color: #04110A;
  font-size: 16px; font-weight: 700;
  border: none; border-radius: 14px;
  padding: 15px 26px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(53,208,106,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(53,208,106,0.6); }
.btn-primary .ph { font-size: 19px; }
