/* ===== Pull Up? — shared styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@800&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --coral: #FF6B6B;
  --coral-deep: #C44569;
  --coral-soft: #FF8E7A;
  --cream: #FFF6F1;
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.75);
  --white: #FFFFFF;
  --line: rgba(255, 255, 255, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--coral);
  color: var(--ink);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--white);
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  border-radius: 8px;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 107, 107, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo .dot { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a { color: var(--white); }
.nav-links a:hover { color: var(--ink); text-decoration: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--coral-deep);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  margin-top: 100px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a { color: var(--white); }
.footer-copy {
  font-size: 14px;
  color: var(--white);
}

/* ---------- Legal pages ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.legal .eyebrow {
  font-weight: 700;
  color: var(--white);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.legal h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 44px;
  margin-bottom: 14px;
}

.legal p, .legal li {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 14px;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal strong { font-weight: 700; }

.legal a { color: var(--white); text-decoration: underline; font-weight: 600; }

.legal .callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: #2B1B18;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}