@font-face {
  font-family: Inter;
  src: url('./assets/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --blue: #243dce;
  --yellow: #effa76;
  --paper: #f6f4ec;
  --pink: #eec2d5;
  --ink: #17275b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #e66b37;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
.skip {
  position: fixed;
  top: -100px;
  background: var(--yellow);
  padding: 15px;
  z-index: 40;
}
.skip:focus {
  top: 10px;
}
.demo-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--blue);
  color: white;
  padding: 10px 5%;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.demo-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  gap: 25px;
}
.brand {
  font-size: 38px;
  letter-spacing: -2.3px;
  font-weight: 850;
  color: var(--blue);
}
.brand span {
  font-size: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
  font-weight: 550;
}
.menu-toggle {
  display: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 24px;
  border: 1.5px solid var(--blue);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  color: var(--blue);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 0 #243dce22;
}
.pill.yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}
.pill.blue {
  background: var(--blue);
  color: white;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 5% 75px;
  gap: 5%;
  align-items: center;
  overflow: hidden;
}
.eyebrow {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
h1 {
  font-size: clamp(65px, 7.7vw, 118px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 25px 0 28px;
  color: var(--blue);
}
h1 > span {
  position: relative;
  z-index: 0;
}
h1 > span:after {
  content: '';
  position: absolute;
  bottom: 7px;
  height: 15px;
  left: 0;
  right: 0;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-2deg);
}
.hero-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-footnote {
  font-size: 10px;
  margin-top: 25px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-footnote span {
  font-size: 24px;
}
.hero-art {
  position: relative;
  padding-top: 35px;
}
.hero-art img {
  height: 540px;
  object-fit: cover;
  object-position: 49%;
  border-radius: 46% 46% 8px 8px;
  transform: rotate(3deg);
}
.hero-art > p {
  font: italic 17px Georgia;
  text-align: center;
  margin-top: 25px;
  transform: rotate(3deg);
}
.flower {
  position: absolute;
  top: -50px;
  left: -45px;
  font-size: 180px;
  color: var(--blue);
  line-height: 1;
  z-index: 1;
  transform: rotate(12deg);
}
.sticker {
  position: absolute;
  bottom: 25px;
  right: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  width: 145px;
  height: 145px;
  background: var(--yellow);
  font-size: 24px;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 3px 5px 0 #18275b;
}
.sticker span {
  font-size: 25px;
  margin-top: 4px;
}
.ticker {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
  gap: 40px;
  align-items: center;
  background: var(--blue);
  color: var(--yellow);
  padding: 21px 5%;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -1px;
}
.ticker > span {
  flex-shrink: 0;
  font-size: 20px;
  letter-spacing: 0.03em;
}
.events {
  padding: 95px 5%;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
h2 {
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.section-heading h2 {
  margin-top: 18px;
}
.section-heading h2 span {
  color: var(--blue);
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 330px;
}
.section-heading small {
  display: block;
  font-size: 9px;
  margin-top: 15px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.filters button {
  border: 1px solid #17275b55;
  border-radius: 25px;
  padding: 12px 17px;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
}
.filters button[aria-pressed='true'] {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.event-list article {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1.5px solid #17275b44;
  padding: 30px 0;
}
.event-list article:last-child {
  border-bottom: 1.5px solid #17275b44;
}
.event-list article[hidden] {
  display: none;
}
.date {
  background: var(--yellow);
  width: 95px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 45px 45px 6px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
}
.date strong {
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1;
}
.date > span {
  font-size: 10px;
  font-weight: 650;
  margin-top: 7px;
}
.date.pink {
  background: var(--pink);
  transform: rotate(3deg);
  border-radius: 8px;
}
.date.green {
  background: #b9d3ad;
  border-radius: 50% 50% 50% 5%;
  transform: rotate(-4deg);
}
.tag {
  font-size: 8px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.event-info {
  flex: 1;
}
.event-info h3 {
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -1px;
  margin: 8px 0;
}
.event-info p {
  font-size: 12px;
  line-height: 1.7;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
  font-size: 9px;
}
.event-button {
  border: 0;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  background: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  flex-shrink: 0;
}
.event-button:hover {
  gap: 38px;
}
.event-button span {
  font-size: 23px;
}
.about {
  background: var(--pink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 8%;
  gap: 10%;
  align-items: center;
}
.about-art {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transform: rotate(-7deg);
}
.about-art span {
  font-size: 115px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -10px;
}
.about-art span:first-child {
  background: var(--paper);
  padding: 20px;
  border-radius: 55% 45% 0 30%;
}
.about-art span:nth-child(2) {
  font-size: 80px;
  letter-spacing: 0;
  padding: 10px;
}
.about-art span:nth-child(3) {
  background: var(--yellow);
  border-radius: 50%;
  padding: 20px 30px;
}
.about-art small {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 10px;
}
.about h2 {
  margin: 20px 0 25px;
  color: var(--blue);
}
.about h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.about p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 18px;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 8px 0;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.join {
  padding: 95px 5%;
  text-align: center;
}
.join h2 {
  font-size: clamp(50px, 6.5vw, 90px);
  margin: 20px 0;
}
.join h2 span {
  color: var(--blue);
}
.join > p:not(.eyebrow) {
  font-size: 13px;
}
.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 45px 0 30px;
}
.roles button {
  padding: 30px;
  background: transparent;
  text-align: left;
  border: 1.5px solid #17275b66;
  border-radius: 8px;
  color: var(--blue);
  transition:
    transform 0.2s,
    background 0.2s;
  position: relative;
}
.roles button:nth-child(2) {
  border-radius: 70px 70px 8px 8px;
  background: #eee4dd;
}
.roles button:nth-child(3) {
  background: #e5ebd9;
}
.roles button > span {
  font-size: 50px;
  display: block;
  height: 75px;
}
.roles strong {
  font-size: 38px;
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -1.5px;
  display: block;
}
.roles small {
  display: block;
  font-size: 11px;
  margin-top: 20px;
  color: var(--ink);
}
.roles button:hover {
  transform: translateY(-5px);
}
.roles button[aria-pressed='true'] {
  background: var(--yellow);
  border: 3px solid var(--blue);
  padding: 28.5px;
  box-shadow: 0 5px 0 var(--blue);
}
.roles button[aria-pressed='true']:after {
  content: '✓';
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 25px;
}
.role-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}
.role-result p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 580px;
}
.role-result button {
  flex-shrink: 0;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10%;
  padding: 45px 5% 95px;
}
.faq h2 {
  margin-top: 18px;
}
.faq details {
  border-top: 1px solid #17275b55;
  padding: 22px 0;
}
.faq details:last-child {
  border-bottom: 1px solid #17275b55;
}
.faq summary {
  font-size: 14px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-size: 24px;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 550px;
  padding: 20px 30px 0 0;
}
.closing {
  background: var(--blue);
  color: var(--paper);
  padding: 65px 5% 75px;
  position: relative;
  overflow: hidden;
}
.closing > p {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.closing h2 {
  font-size: clamp(70px, 10vw, 145px);
  line-height: 0.9;
  margin: 35px 0;
  letter-spacing: -0.065em;
  font-weight: 700;
}
.closing h2 em {
  font-family: Georgia;
  font-weight: 400;
  color: var(--yellow);
}
.closing h2 > span {
  position: absolute;
  right: 8%;
  top: 65px;
  font-size: 250px;
  font-weight: 400;
  color: var(--yellow);
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 5%;
  gap: 30px;
  font-size: 10px;
}
footer .brand {
  font-size: 31px;
}
footer > a:last-child {
  text-decoration: underline;
  text-underline-offset: 4px;
}
dialog {
  border: 0;
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 40px;
  max-width: 470px;
  width: calc(100% - 30px);
  max-height: 90svh;
  overflow: auto;
}
dialog::backdrop {
  background: #121c50aa;
  backdrop-filter: blur(4px);
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: none;
  font-size: 30px;
  color: var(--ink);
  width: 40px;
  height: 40px;
}
dialog h2 {
  font-size: 32px;
  margin: 18px 0;
  max-width: 360px;
}
dialog > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.7;
}
dialog form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
dialog label {
  font-size: 11px;
  margin: 15px 0 8px;
}
dialog input {
  border: 1px solid #17275b66;
  background: white;
  border-radius: 5px;
  padding: 13px;
  width: 100%;
  font-size: 14px;
  color: var(--ink);
}
dialog form button {
  margin-top: 25px;
}
dialog .form-status {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 15px;
  min-height: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 950px) {
  .hero-art img {
    height: 440px;
  }
  .flower {
    font-size: 135px;
    top: -20px;
    left: -25px;
  }
  .sticker {
    width: 110px;
    height: 110px;
    font-size: 19px;
    right: -10px;
  }
  .event-list article {
    gap: 20px;
  }
  .event-meta {
    gap: 8px 15px;
  }
  .about {
    padding: 65px 5%;
    gap: 7%;
  }
  .about-art span {
    font-size: 85px;
  }
  .about-art span:nth-child(2) {
    font-size: 55px;
  }
  .about-art small {
    font-size: 27px;
  }
  .roles strong {
    font-size: 32px;
  }
  .roles button {
    padding: 25px;
  }
  .roles button[aria-pressed='true'] {
    padding: 23.5px;
  }
  .role-result {
    flex-direction: column;
  }
  .faq {
    gap: 6%;
  }
  .closing h2 > span {
    font-size: 200px;
  }
}
@media (max-width: 600px) {
  .demo-note {
    font-size: 7px;
    letter-spacing: 0;
  }
  header {
    padding: 20px 5%;
    position: relative;
  }
  .brand {
    font-size: 32px;
  }
  .brand span {
    font-size: 33px;
  }
  nav {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--paper);
    padding: 25px 5%;
    border-bottom: 2px solid var(--blue);
    gap: 22px;
    align-items: stretch;
  }
  nav.open {
    display: flex;
    flex-direction: column;
  }
  .menu-toggle {
    display: block;
    border: 1px solid var(--blue);
    border-radius: 30px;
    padding: 10px 15px;
    background: none;
    color: var(--blue);
    font-size: 11px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 25px 5% 40px;
    gap: 20px;
    align-items: stretch;
  }
  h1 {
    font-size: clamp(60px, 16vw, 94px);
    margin: 18px 0 25px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .hero-footnote {
    margin-top: 17px;
    font-size: 9px;
  }
  .hero-art {
    margin: 30px 15px 0;
    padding-top: 0;
  }
  .hero-art img {
    height: 360px;
    object-position: center;
  }
  .hero-art > p {
    font-size: 14px;
    margin-top: 20px;
  }
  .flower {
    top: -40px;
    left: -25px;
    font-size: 115px;
  }
  .sticker {
    width: 105px;
    height: 105px;
    right: -20px;
    bottom: 35px;
    font-size: 18px;
  }
  .ticker {
    padding: 15px 5%;
    gap: 25px;
    font-size: 26px;
  }
  .ticker > span {
    font-size: 15px;
  }
  .events {
    padding: 55px 5%;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 37px;
    margin: 14px 0 22px;
  }
  .section-heading > p {
    font-size: 11px;
  }
  .section-heading small {
    font-size: 8px;
    margin-top: 8px;
  }
  .filters {
    gap: 7px;
    margin-bottom: 25px;
  }
  .filters button {
    font-size: 9px;
    padding: 11px 13px;
  }
  .event-list article {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 17px;
    padding: 25px 0;
    align-items: start;
  }
  .date {
    width: 65px;
    height: 85px;
    margin-top: 4px;
  }
  .date strong {
    font-size: 31px;
  }
  .date > span {
    font-size: 8px;
  }
  .event-info h3 {
    font-size: 23px;
    letter-spacing: -0.8px;
  }
  .event-info p {
    font-size: 11px;
  }
  .tag {
    font-size: 7px;
  }
  .event-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 8px;
    margin-top: 13px;
  }
  .event-button {
    grid-column: 2;
    justify-self: start;
    font-size: 11px;
    gap: 25px;
    padding: 4px 0;
  }
  .about {
    display: flex;
    flex-direction: column;
    padding: 55px 5%;
    gap: 40px;
  }
  .about-art {
    max-width: 300px;
  }
  .about-art span {
    font-size: 80px;
  }
  .about-art small {
    font-size: 27px;
  }
  .about h2 {
    font-size: 43px;
  }
  .about p:not(.eyebrow) {
    font-size: 12px;
  }
  .join {
    padding: 60px 5%;
    text-align: left;
  }
  .join h2 {
    font-size: 59px;
  }
  .join > p:not(.eyebrow) {
    font-size: 12px;
  }
  .roles {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
  }
  .roles button,
  .roles button:nth-child(2),
  .roles button:nth-child(3) {
    padding: 23px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 5px 20px;
    align-items: center;
  }
  .roles button > span {
    height: auto;
    grid-row: 1/3;
    font-size: 45px;
  }
  .roles strong {
    font-size: 28px;
  }
  .roles strong br {
    display: none;
  }
  .roles small {
    grid-column: 2;
    margin: 4px 0 0;
    font-size: 10px;
  }
  .roles button[aria-pressed='true'] {
    padding: 21.5px;
  }
  .roles button[aria-pressed='true']:after {
    top: 10px;
    right: 10px;
    font-size: 16px;
  }
  .role-result {
    align-items: stretch;
    gap: 20px;
  }
  .role-result p {
    font-size: 11px;
  }
  .role-result .pill {
    justify-content: space-between;
  }
  .faq {
    display: block;
    padding: 10px 5% 60px;
  }
  .faq h2 {
    font-size: 43px;
    margin-bottom: 30px;
  }
  .faq summary {
    font-size: 12px;
  }
  .faq details p {
    font-size: 11px;
  }
  .closing {
    padding: 45px 5% 50px;
  }
  .closing > p {
    font-size: 8px;
  }
  .closing h2 {
    font-size: 76px;
  }
  .closing h2 > span {
    font-size: 100px;
    right: 5%;
    top: 70px;
  }
  footer {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer p {
    order: 3;
    width: 100%;
    font-size: 9px;
  }
  footer > a:last-child {
    font-size: 9px;
  }
  dialog {
    padding: 30px 22px;
  }
  dialog h2 {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
