/* web/site.css */

:root {
  --bg1: #0b1020;
  --bg2: #0a0d18;
  --card: rgba(255, 255, 255, 0.04);
  --card2: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --muted2: rgba(255, 255, 255, 0.48);

  --pink: #ff5aa5;
  --pink2: #ff8ac0;
  --orange: #ff7a3d;

  --radius: 18px;
  --radius2: 14px;

  --max: 980px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 50% 35%, rgba(255, 90, 165, 0.18), transparent 60%),
    radial-gradient(900px 600px at 40% 70%, rgba(255, 122, 61, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--pink2); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--pink2); outline-offset: 3px; border-radius: 8px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 46px;
}

.hero {
  text-align: center;
  padding: 26px 0 10px;
}

.logo-badge {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: radial-gradient(circle at 30% 30%, var(--orange), var(--pink));
  box-shadow: 0 14px 40px rgba(255, 90, 165, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 8px;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.6px;
}

.subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.card {
  margin: 22px auto 0;
  max-width: 820px;
  padding: 20px 18px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
}

.content {
  max-width: 820px;
  margin: 18px auto 0;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}

.content h2 {
  margin-top: 18px;
  font-size: 20px;
}

.content p, .content li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 14px 40px rgba(255, 90, 165, 0.22);
  cursor: pointer;
}

.button:hover { filter: brightness(1.03); }
.button:active { transform: translateY(1px); }

/* ✅ NEW: Footer styles that match final footer.html */
.site-footer {
  margin-top: 26px;
  padding-top: 18px;
  text-align: center;
  color: var(--muted2);
}

.site-footer__links {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(255,255,255,0.68);
  font-weight: 700;
  font-size: 13px;
}

/* ✅ Keep old footer styles too (backwards compatible) */
.footer {
  margin-top: 26px;
  padding-top: 18px;
  text-align: center;
  color: var(--muted2);
}

.footer .links {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .links a {
  color: rgba(255,255,255,0.68);
  font-weight: 700;
  font-size: 13px;
}

.small {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}