/* join.art — clean static rewrite */

:root {
  --accent: #cd2653;
  --accent-dark: #a91e44;
  --text: #1a1a1a;
  --muted: #6d6d6d;
  --bg: #ffffff;
  --bg-soft: #f7f5ee;
  --border: #e6e1d4;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo img { height: 32px; width: auto; }
.social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f0ebdc;
  color: var(--text);
  transition: background 0.2s;
}
.social a:hover { background: var(--accent); color: white; }
.social svg { width: 16px; height: 16px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(ellipse 800px 500px at 85% 20%, rgba(205, 38, 83, 0.10), transparent 70%),
    radial-gradient(ellipse 700px 600px at 10% 90%, rgba(122, 0, 223, 0.08), transparent 70%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  overflow: hidden;
}
/* Decorative abstract shapes — pure SVG, no external images */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 360px; height: 360px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, #ffc94d, transparent 70%);
}
.hero::after {
  width: 280px; height: 280px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, #00d4aa, transparent 70%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-illustration {
  position: relative;
}
.hero-illustration img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}
.hero h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--text);
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 540px;
}
.btn {
  display: inline-block;
  padding: 14px 38px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: var(--accent-dark); }
.btn:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline:hover { background: var(--text); color: white; }

/* ===== Owners (badges row) ===== */
.owners {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.owners h2 {
  text-align: center;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
}
.owners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.owner-chip {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.15rem;
  color: var(--text);
  padding: 8px 4px;
  opacity: 0.85;
}
.owner-chip:hover { opacity: 1; color: var(--accent); }

/* ===== Tagline strip ===== */
.tagline {
  padding: 72px 0 24px;
  text-align: center;
}
.tagline h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.35;
}
.tagline h2 strong { color: var(--accent); font-weight: 700; }

/* ===== Features ===== */
.features {
  padding: 56px 0 96px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  text-align: center;
  padding: 16px;
}
.feature img {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
}
.feature h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== Final CTA ===== */
.cta {
  padding: 80px 0;
  background: var(--text);
  color: white;
  text-align: center;
}
.cta h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.cta .btn { background: var(--accent); }
.cta .btn:hover { background: white; color: var(--text); }

/* ===== Partners ===== */
.partners {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.partners h2 {
  text-align: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.partners-row img {
  height: 56px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.partners-row img:hover { opacity: 1; filter: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  color: var(--muted);
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand img { height: 28px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-social svg { width: 14px; height: 14px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-text { text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .hero { padding: 56px 0 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .partners-row { gap: 28px; }
  .partners-row img { height: 42px; }
}

/* ===== Skip link (a11y) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--text);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  z-index: 100;
}
.skip-link:focus { left: 8px; }
