 :root {
  --ink: #17131f;
  --muted: #655e70;
  --paper: #fffaf5;
  --surface: #ffffff;
  --purple: #6f38ff;
  --pink: #f146a5;
  --orange: #ff7a35;
  --yellow: #ffd74a;
  --mint: #5ce1c2;
  --line: rgba(23, 19, 31, 0.12);
  --shadow: 0 24px 70px rgba(41, 27, 65, 0.14);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 19, 31, 0.07);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Space Grotesk"; font-weight: 700; font-size: 1.35rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  box-shadow: 0 8px 22px rgba(111, 56, 255, 0.26);
}
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: .95rem; }
.main-nav a { transition: opacity .2s ease, transform .2s ease; }
.main-nav a:hover { opacity: .65; transform: translateY(-1px); }
.nav-cta { padding: 11px 18px; border: 1px solid var(--ink); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 90px;
  background:
    radial-gradient(circle at 14% 28%, rgba(255, 215, 74, .40), transparent 25%),
    radial-gradient(circle at 85% 25%, rgba(92, 225, 194, .28), transparent 27%),
    var(--paper);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 78px; align-items: center; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 15px;
}
.hero h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.08; margin-top: 0; }
.hero h1 { font-size: clamp(4rem, 8vw, 7.5rem); letter-spacing: -.065em; margin-bottom: 26px; }
.hero h1 span {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p { font-size: 1.2rem; max-width: 590px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; margin: 34px 0 30px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; padding: 15px 22px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 12px 30px rgba(23, 19, 31, .18); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.65); }
.hero-proof { display: flex; align-items: center; gap: 13px; color: var(--muted); }
.avatar-stack { display: flex; }
.avatar-stack span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: white; border: 2px solid var(--paper); margin-left: -7px; box-shadow: 0 3px 12px rgba(0,0,0,.08); }
.avatar-stack span:first-child { margin-left: 0; }
.hero-proof p { margin: 0; font-size: .9rem; }

.hero-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.card-topline { display: flex; align-items: center; gap: 9px; color: var(--purple); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 6px rgba(241,70,165,.12); }
blockquote { font-family: "Space Grotesk"; font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.2; letter-spacing: -.035em; margin: 45px 0; }
.spotlight-person { display: flex; align-items: center; gap: 13px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.person-avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: white; background: linear-gradient(135deg, var(--purple), var(--pink)); }
.spotlight-person div:last-child { display: flex; flex-direction: column; }
.spotlight-person span { color: var(--muted); font-size: .88rem; }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.mini-cards div { padding: 15px 10px; border-radius: 15px; background: #faf7ff; }
.mini-cards strong, .mini-cards span { display: block; }
.mini-cards strong { font-size: 1.2rem; }
.mini-cards span { font-size: .72rem; color: var(--muted); }

.ticker { overflow: hidden; background: var(--ink); color: white; padding: 15px 0; }
.ticker-track { min-width: max-content; display: flex; gap: 26px; align-items: center; animation: ticker 24s linear infinite; font-family: "Space Grotesk"; font-weight: 700; letter-spacing: .08em; }
.ticker i { color: var(--yellow); font-style: normal; }
@keyframes ticker { to { transform: translateX(-35%); } }

.section { padding: 110px 0; }
.section-heading { margin-bottom: 42px; }
.split-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-heading h2, .community-grid h2, .join-card h2 { font-size: clamp(2.45rem, 5vw, 4.6rem); letter-spacing: -.05em; margin-bottom: 12px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.text-link { font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 3px; white-space: nowrap; }

.story-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 22px; }
.story-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.story-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(34, 24, 47, .11); }
.story-art { min-height: 230px; position: relative; display: grid; place-items: center; overflow: hidden; }
.story-card-large .story-art { min-height: 310px; }
.gradient-one { background: linear-gradient(135deg, #7b42ff, #ff54a6, #ff9b49); }
.gradient-two { background: linear-gradient(135deg, #5ce1c2, #5288ff, #783eff); }
.gradient-three { background: linear-gradient(135deg, #ffd74a, #ff8b4b, #f146a5); }
.story-tag { position: absolute; top: 18px; left: 18px; background: rgba(255,255,255,.9); padding: 7px 11px; border-radius: 999px; font-size: .75rem; font-weight: 800; }
.art-symbol { font-family: "Space Grotesk"; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: -.08em; transform: rotate(-9deg); }
.story-content { padding: 25px; }
.meta { color: var(--muted); font-size: .8rem; }
.story-content h3 { font-size: 1.5rem; margin: 9px 0 13px; }
.story-content p { color: var(--muted); }
.story-content a { font-weight: 700; font-size: .9rem; }

.community-section { background: var(--ink); color: white; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.community-section .eyebrow { color: var(--mint); }
.large-copy { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 600px; }
.feature-list { margin-top: 40px; display: grid; gap: 22px; }
.feature-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 15px; }
.feature-icon { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; font-size: .78rem; color: var(--mint); }
.feature-list h3 { margin: 0 0 5px; }
.feature-list p { margin: 0; color: rgba(255,255,255,.62); }
.conversation-card { background: #fffaf5; color: var(--ink); padding: 30px; border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.conversation-header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.conversation-header h3 { font-size: 1.7rem; margin: 12px 0 0; }
.status-pill { display: inline-block; color: #13755f; background: rgba(92,225,194,.22); border-radius: 999px; padding: 6px 10px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.message { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.message-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--purple); color: white; font-weight: 800; }
.message-avatar.alt { background: var(--pink); }
.message p { margin: 5px 0 0; color: var(--muted); }
.reply-box { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 8px 9px 8px 18px; color: #8c8692; }
.reply-box button { width: 38px; height: 38px; border: 0; border-radius: 50%; color: white; background: var(--ink); cursor: pointer; }

.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.resource-card { padding: 27px; border-radius: var(--radius-md); border: 1px solid var(--line); background: white; transition: transform .25s ease, border-color .25s ease; }
.resource-card:hover { transform: translateY(-5px); border-color: var(--purple); }
.resource-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: #f1eaff; color: var(--purple); font-size: 1.35rem; }
.resource-card h3 { font-size: 1.3rem; margin: 23px 0 10px; }
.resource-card p { color: var(--muted); min-height: 96px; }
.resource-card > span:last-child { font-weight: 700; font-size: .9rem; }
.support-note { margin-top: 28px; padding: 22px 26px; border-radius: var(--radius-md); background: #fff0f6; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.support-note div { display: flex; flex-direction: column; }
.support-note span { color: var(--muted); }
.support-note a { font-weight: 700; }

.events-section { background: #f1ecff; }
.event-list { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; align-items: center; padding: 28px; border-bottom: 1px solid var(--line); }
.event-row:last-child { border-bottom: 0; }
.event-date { width: 78px; height: 78px; border-radius: 20px; background: var(--ink); color: white; display: grid; place-items: center; align-content: center; line-height: 1; }
.event-date strong { font-size: 1.9rem; }
.event-date span { font-size: .7rem; letter-spacing: .12em; color: var(--yellow); margin-top: 6px; }
.event-type { color: var(--purple); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: .7rem; }
.event-info h3 { margin: 5px 0; font-size: 1.35rem; }
.event-info p { margin: 0; color: var(--muted); }
.event-row > a { font-weight: 700; }

.join-section { padding: 100px 0; background: var(--paper); }
.join-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 65px;
  border-radius: 38px;
  color: white;
  background: linear-gradient(135deg, #5c2cdf, #9d3cff 48%, #f146a5);
  box-shadow: 0 28px 70px rgba(111,56,255,.25);
}
.join-card:after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -110px; top: -150px; border: 55px solid rgba(255,255,255,.1); }
.join-card .eyebrow { color: var(--yellow); }
.join-card h2 { margin-bottom: 15px; }
.join-card p { color: rgba(255,255,255,.75); }
.signup-form { position: relative; z-index: 2; }
.signup-form input { width: 100%; border: 0; padding: 18px 20px; border-radius: 999px; outline: none; }
.signup-form button { width: 100%; margin-top: 10px; border: 0; padding: 16px 20px; border-radius: 999px; font-weight: 800; cursor: pointer; background: var(--yellow); color: var(--ink); }
.signup-form small { display: block; margin-top: 11px; text-align: center; color: rgba(255,255,255,.68); }

footer { background: var(--ink); color: white; padding: 75px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { color: rgba(255,255,255,.58); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 7px; color: var(--yellow); }
.footer-links a { color: rgba(255,255,255,.65); }
.footer-bottom { margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.48); font-size: .84rem; }
.footer-bottom div { display: flex; gap: 20px; }

@media (max-width: 960px) {
  .hero-grid, .community-grid, .join-card { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-grid, .community-grid { gap: 55px; }
  .hero-card { transform: none; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card-large { grid-column: 1 / -1; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .join-card { gap: 35px; padding: 45px; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 26px, 1160px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 13px;
    right: 13px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero h1 { font-size: 4.1rem; }
  .hero-card { padding: 25px; }
  .mini-cards { grid-template-columns: 1fr; }
  .story-grid, .resource-grid { grid-template-columns: 1fr; }
  .story-card-large { grid-column: auto; }
  .split-heading { align-items: start; flex-direction: column; }
  .section { padding: 78px 0; }
  .event-row { grid-template-columns: 78px 1fr; }
  .event-row > a { grid-column: 2; }
  .support-note { flex-direction: column; align-items: flex-start; }
  .join-card { padding: 34px 24px; border-radius: 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}
