@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local("Inter"), local("Helvetica Neue"), local("Arial");
}

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

html { scroll-behavior: smooth; height: 100%; }

html, body { max-width: 100vw; overflow-x: clip; }

body {
  color: #1f1d29;
  min-height: 100%;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.page {
  --bg: #ffffff;
  --surface: #fff;
  --text: #1f1d29;
  --muted: #5b566e;
  --border: #ececf0;
  --accent: #0a0a0a;
  --accent-dark: #000000;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: var(--bg);
}
.page > .footer { margin-top: auto; }

.header, .hero, .section, .partnerLogoStack, .upcomingStrip {
  width: min(1080px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 0;
}

.brand { display: inline-flex; align-items: center; min-width: 0; }
.brandTitle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.brandTitle a { display: inline-flex; align-items: center; }
.brandLogo, .brandTitleImage { width: 24px; height: 24px; object-fit: contain; }

.nav {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 1rem;
  margin-left: auto;
}
.nav a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  font-size: .95rem;
}
.navIcon { width: 20px; height: 20px; }
.navTab {
  display: inline-flex;
  align-items: center;
  color: var(--accent-dark);
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}
.navTab:hover { border-color: var(--accent); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
  column-gap: 2rem;
  padding: 1.25rem 0 .75rem;
}
.heroText { display: flex; flex-direction: column; gap: .4rem; }
.eyebrow { color: var(--accent-dark); font-weight: 600; margin: 0; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.heroSubhead { font-weight: 500; }
.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: .95rem;
  line-height: 1.5;
}
.ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: .65rem;
  margin-top: .45rem;
}
.primaryCta, .secondaryCta {
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.primaryCta { background: var(--accent); color: #fff; }
.primaryCta:hover { background: var(--accent-dark); }
.secondaryCta { background: #fff; border-color: var(--border); color: var(--text); }
.secondaryCta:hover { border-color: var(--accent); color: var(--accent-dark); }

.heroPhotoPanel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}
.singlePhotoWrap {
  aspect-ratio: 16 / 10;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.singlePhotoWrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photoCaption { color: var(--muted); margin: .45rem 0 0; font-size: .78rem; line-height: 1.4; }

/* Upcoming strip */
.upcomingStrip {
  width: 100%;
  max-width: none;
  margin: 2.5rem auto 1.5rem;
  padding: 0 1.75rem;
  position: relative;
  background: transparent;
  border-radius: 0;
}
.stripHeader {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}
.stripTitle,
.stripMonth {
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.005em;
  color: #0a0a0a;
  margin: 0;
}
.stripViewAll:hover { text-decoration: underline; text-underline-offset: 3px; }

.upcomingScroll {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: 0 .5rem .25rem;
  scrollbar-width: none;
}
.upcomingScroll::-webkit-scrollbar { display: none; }

.upcomingCard {
  flex-shrink: 0;
  width: 11rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: .5rem .65rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  color: var(--text);
}
.upcomingCard:hover { border-color: var(--accent); }
.upcomingCardToday { box-shadow: 0 0 0 1px #0a0a0a59; position: relative; z-index: 1; }
.upcomingCardPast { opacity: .52; filter: grayscale(.22); }
.upcomingCardPast:hover { opacity: .78; filter: grayscale(.08); }
.upcomingCardDateRow { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: .72rem; color: var(--accent-dark); font-weight: 600; }
.upcomingCardTitle { font-size: .78rem; line-height: 1.35; color: var(--text); }
.todayChip {
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: .14rem .38rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
}
.openDayBar {
  background: var(--accent);
  color: #fff;
  letter-spacing: .09em;
  border-radius: 8px 8px 0 0;
  margin: -.5rem -.65rem .35rem;
  padding: .2rem .65rem;
  font-size: .62rem;
  font-weight: 700;
}

/* Sections */
.section {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  margin-top: 2rem;
}
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.section p { color: var(--muted); line-height: 1.6; }

/* Events list */
.eventsList {
  display: grid;
  gap: .45rem;
  list-style: none;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.eventItem {
  border: 1px solid var(--border);
  background: #fafafa;
  border-radius: 10px;
  padding: .5rem .65rem;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--text);
}
.eventItem:hover { border-color: var(--accent); }
.eventDate {
  color: var(--accent-dark);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 6.5rem;
  font-size: .75rem;
  font-weight: 600;
  padding-top: .1em;
}
.eventTitle { font-size: .88rem; color: var(--text); }
.eventLocation { color: var(--muted); font-size: .82rem; display: block; margin-top: .15rem; }
.eventOpenDay {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: .1rem .35rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-right: .35rem;
  vertical-align: middle;
}

/* Cards (3-up) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.card {
  border: 1px solid var(--border);
  background: #fafafa;
  border-radius: 14px;
  padding: 1rem;
}
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .95rem; }

/* Tabs */
.outcomesTabs { display: grid; gap: .8rem; }
.outcomesTabList { display: flex; flex-wrap: wrap; gap: .5rem; }
.outcomesTab, .outcomesTabActive {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: .55rem .85rem;
  font-size: .92rem;
  font-family: inherit;
  cursor: pointer;
}
.outcomesTabActive { background: var(--accent); border-color: var(--accent); color: #fff; }
.outcomesTab:hover { border-color: var(--accent); color: var(--accent-dark); }
.outcomesPanel {
  border: 1px solid var(--border);
  background: #fafafa;
  border-radius: 12px;
  padding: .95rem;
  min-height: 140px;
}

/* List */
.list {
  display: grid;
  gap: .6rem;
  color: var(--muted);
  list-style-position: inside;
  padding-left: .25rem;
}
.list a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq { display: grid; gap: .8rem; }
.faqItem {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
}
.faqQuestion {
  cursor: pointer;
  padding: .85rem;
  font-weight: 600;
  list-style: none;
  display: block;
}
.faqQuestion::-webkit-details-marker { display: none; }
.faqQuestion::before {
  content: "▸";
  color: var(--muted);
  margin-right: .55rem;
  display: inline-block;
  transition: transform .18s;
}
.faqItem[open] .faqQuestion::before { transform: rotate(90deg); }
.faqAnswer {
  color: var(--muted);
  padding: 0 .85rem .85rem;
  line-height: 1.6;
}
.faqAnswer a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Partner logos (marquee replacement — static grid) */
.partnerLogoStack { margin-top: 2rem; }
.partnerLogoStack h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  text-align: center;
  color: var(--muted);
  margin-bottom: .85rem;
  font-weight: 500;
}
.logoMarquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem .85rem;
  margin-bottom: 1.25rem;
}
.logoMarqueeItem {
  display: inline-flex;
  align-items: center;
  padding: .4rem .65rem;
  opacity: .82;
  transition: opacity .2s;
}
.logoMarqueeItem:hover { opacity: 1; }
.logoMarqueeLabel {
  font-family: Inter, sans-serif;
  color: #1a1a1a;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 600;
}
.logoMarqueeImage {
  width: auto;
  height: 3.2rem;
  max-width: min(14rem, 40vw);
  object-fit: contain;
  display: block;
}
.logoMarqueeSubtle .logoMarqueeItem { opacity: .62; }
.logoMarqueeSubtle .logoMarqueeImage {
  height: auto;
  max-height: 1.55rem;
  max-width: min(9.25rem, 28vw);
}
@media (max-width: 640px) {
  .logoMarqueeImage { height: 2.1rem; }
  .logoMarqueeSubtle .logoMarqueeImage { max-height: 1.32rem; max-width: min(7.75rem, 28vw); }
}

/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 1.25rem 1.75rem;
  color: var(--muted);
  font-size: .95rem;
}
.footer p { margin: 0; }
.footerBuilt { text-align: left; margin-right: auto; }
.footerAttribution { text-align: right; font-size: .8rem; margin-left: auto; }
.footer a { text-decoration: underline; text-underline-offset: 3px; }
.footerFlag { vertical-align: -.18em; height: 1.1em; width: auto; margin-right: .35em; }
@media (max-width: 600px) {
  .footer { justify-content: center; text-align: center; padding: 1.25rem 1rem; gap: .65rem; font-size: .82rem; }
  .footerBuilt, .footerAttribution { text-align: center; width: 100%; margin: 0; }
  .footerAttribution { font-size: .72rem; }
}

/* Open Days page */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin: 1rem 0;
}
.galleryItem {
  aspect-ratio: 4 / 3;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
}

/* ===== Scroll reveal (Arbitrum-style) ===== */
.scrollReveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.scrollReveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .scrollReveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Upcoming Events heading ===== */
.upcomingHeading {
  width: 100%;
  margin: 4rem auto 1.5rem;
  padding: 0 1.75rem;
  text-align: center;
}
.upcomingHeadingText {
  font-family: "Special Gothic Condensed One", "special-gothic-condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0;
}
.upcomingHeadingCta {
  display: inline-flex;
  align-items: center;
  background: #0a0a0a;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  margin-top: 1.5rem;
  border: 1px solid #0a0a0a;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.upcomingHeadingCta:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(15, 15, 25, .55);
}
@media (max-width: 600px) {
  .upcomingHeading { margin: 2.5rem auto .75rem; padding: 0 1rem; }
  .upcomingHeadingText { font-size: clamp(2rem, 11vw, 3.25rem); }
  .upcomingHeadingCta { margin-top: 1.25rem; padding: .75rem 1.4rem; font-size: .85rem; }
}

/* ===== Luma calendar embed ===== */
.lumaEmbedSection {
  width: 100%;
  margin: 1.5rem auto 4.5rem;
  padding: 1.5rem 1.75rem 3rem;
  position: relative;
}
.lumaEmbedSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 100%, rgba(15, 15, 25, .08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lumaEmbedSection > * { position: relative; z-index: 1; }

.lumaEmbedFrame {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid #ececf0;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(15, 15, 25, .055) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 0%, rgba(15, 15, 25, .03) 0%, transparent 55%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 70%);
  padding: 1.1rem 1.1rem 1.1rem;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 1px 0 rgba(15, 15, 25, .03),
    0 30px 60px -40px rgba(15, 15, 25, .14),
    0 60px 120px -60px rgba(15, 15, 25, .14);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1),
              box-shadow .4s cubic-bezier(.22, 1, .36, 1),
              border-color .4s ease;
}
.lumaEmbedFrame::before,
.lumaEmbedFrame::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 20px;
  height: 20px;
  border: 1.5px solid #c8c8d0;
  pointer-events: none;
  transition: border-color .4s ease;
}
.lumaEmbedFrame::before {
  left: 14px;
  border-right: none;
  border-bottom: none;
  border-radius: 5px 0 0 0;
}
.lumaEmbedFrame::after {
  right: 14px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 5px 0 0;
}
.lumaEmbedFrame:hover {
  transform: translateY(-3px);
  border-color: #cfcfd6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 1px 0 rgba(15, 15, 25, .03),
    0 36px 70px -36px rgba(15, 15, 25, .18),
    0 70px 130px -50px rgba(15, 15, 25, .26);
}
.lumaEmbedFrame:hover::before,
.lumaEmbedFrame:hover::after { border-color: #0a0a0a; }

/* Meta strip — broadcast row */
.lumaEmbedMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem .85rem 1rem;
  border-bottom: 1px dashed #e5e5ea;
  margin-bottom: 1.1rem;
}
.lumaEmbedStatus {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #56525f;
}
.lumaEmbedStatusLabel { color: #0a0a0a; }
.lumaEmbedStatusSep { opacity: .45; }
.lumaEmbedStatusText { color: #56525f; }
.lumaEmbedDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: 0 0 0 0 rgba(15, 15, 25, .55);
  animation: lumaEmbedPulse 2.2s cubic-bezier(.22, 1, .36, 1) infinite;
}
@keyframes lumaEmbedPulse {
  0%   { box-shadow: 0 0 0 0 rgba(15, 15, 25, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(15, 15, 25, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 15, 25, 0); }
}
.lumaEmbedOpen {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: -.005em;
  color: #0a0a0a;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid #ececf0;
  background: #ffffff;
  transition: border-color .25s ease,
              color .25s ease,
              transform .25s ease,
              box-shadow .25s ease;
}
.lumaEmbedOpen:hover {
  color: #ffffff;
  border-color: #0a0a0a;
  background: linear-gradient(135deg, #0a0a0a 0%, #3a3a44 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -10px rgba(15, 15, 25, .55);
}
.lumaEmbedOpenArrow {
  display: inline-block;
  font-size: .85rem;
  transform: translate(0, 0);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.lumaEmbedOpen:hover .lumaEmbedOpenArrow { transform: translate(2px, -2px); }

/* Inner screen — holds the iframe */
.lumaEmbedScreen {
  width: 100%;
  height: clamp(620px, 86vh, 880px);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .35),
    0 1px 0 rgba(255, 255, 255, .8) inset;
}
.lumaEmbedScreen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0a0a0a;
}

@media (max-width: 900px) {
  .lumaEmbedSection { padding: 0 1rem; }
  .lumaEmbedFrame { padding: .9rem; border-radius: 20px; }
  .lumaEmbedScreen { height: clamp(480px, 70vh, 680px); border-radius: 14px; }
}
@media (max-width: 600px) {
  .lumaEmbedSection { padding: 0 .5rem 1.5rem; margin-bottom: 2.5rem; }
  .lumaEmbedFrame { padding: .65rem; border-radius: 16px; }
  .lumaEmbedFrame::before, .lumaEmbedFrame::after { width: 14px; height: 14px; top: 8px; }
  .lumaEmbedFrame::before { left: 8px; }
  .lumaEmbedFrame::after { right: 8px; }
  .lumaEmbedMeta { padding: .2rem .25rem .7rem; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
  .lumaEmbedStatus { font-size: .56rem; letter-spacing: .1em; gap: .35rem; }
  .lumaEmbedStatusText { display: none; }
  .lumaEmbedStatusSep { display: none; }
  .lumaEmbedOpen { font-size: .72rem; padding: .35rem .65rem; }
  .lumaEmbedScreen { height: clamp(420px, 70dvh, 560px); border-radius: 12px; }
}

/* ===== May 2026 Calendar Grid ===== */
.calendar {
  width: 100%;
  margin: 0 auto 3rem;
  padding: 0 1.75rem;
}
.calWeekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
  padding: 0 4px;
}
.calWeekdays span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #8a869b;
  text-transform: uppercase;
}
.calGrid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.calCell {
  position: relative;
  min-height: 110px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ececf0;
  padding: .65rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  color: #0a0a0a;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
  overflow: hidden;
}
.calCellEmpty {
  background: transparent;
  border: 1px dashed #f1eef7;
  min-height: 110px;
}
.calCellEmpty::before { content: ""; }
.calCell:not(.calCellEmpty):not([href]) {
  background: #fafafb;
  border-color: #f1f0f4;
}
.calCell[href]:hover {
  transform: translateY(-2px);
  border-color: #0a0a0a;
  box-shadow: 0 6px 18px -8px rgba(15, 15, 25, .35);
}
.calNum {
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0a0a0a;
  line-height: 1;
}
.calCell:not([href]) .calNum { color: #b8b3c9; }
.calCellPast .calNum { color: #c9c4d8; }
.calCellEvent {
  background: #fff;
}
.calEventTitle {
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.3;
  color: #5b566e;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}
.calCellEvent:hover .calEventTitle { color: #1f1d29; }

/* Open Day cells: full purple emphasis */
.calCellOpen {
  background: linear-gradient(180deg, #0a0a0a 0%, #5836c9 100%);
  border-color: #5836c9;
  color: #fff;
}
.calCellOpen .calNum { color: #fff; }
.calCellOpen .calEventTitle { color: rgba(255, 255, 255, .82); font-weight: 500; }
.calCellOpen:hover {
  border-color: #1f1d29;
  box-shadow: 0 8px 22px -6px rgba(15, 15, 25, .55);
}
.calCellOpen:hover .calEventTitle { color: #fff; }
.calOpenChip {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  padding: .18rem .42rem;
  border-radius: 999px;
  align-self: flex-start;
  text-transform: uppercase;
  line-height: 1;
}

/* Today highlight */
.calCellToday {
  background: #0a0a0a !important;
  border-color: #0a0a0a !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(15, 15, 25, .25), 0 8px 22px -8px rgba(10, 10, 10, .35);
}
.calCellToday .calNum { color: #fff !important; }
.calCellToday .calEventTitle { color: rgba(255, 255, 255, .8) !important; }
.calCellToday:hover {
  transform: translateY(-2px);
  border-color: #0a0a0a !important;
  box-shadow: 0 0 0 3px rgba(15, 15, 25, .45), 0 12px 26px -8px rgba(15, 15, 25, .5) !important;
}
.calCellToday:hover .calEventTitle { color: #fff !important; }
.calTodayChip {
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #0a0a0a;
  background: #fff;
  padding: .18rem .42rem;
  border-radius: 999px;
  align-self: flex-start;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 600px) {
  .calTodayChip { font-size: 0; padding: 0; width: 6px; height: 6px; background: #0a0a0a; border-radius: 50%; }
}

@media (max-width: 900px) {
  .calendar { padding: 0 1rem; }
  .calCell { min-height: 92px; border-radius: 12px; padding: .5rem .55rem; gap: .25rem; }
  .calNum { font-size: .92rem; }
  .calEventTitle { font-size: .65rem; -webkit-line-clamp: 2; }
  .calOpenChip { font-size: .48rem; padding: .15rem .35rem; }
  .calWeekdays span { font-size: .6rem; }
}
@media (max-width: 600px) {
  .calendar { padding: 0 .75rem; }
  .calGrid, .calWeekdays { gap: 5px; }
  .calCell { min-height: 70px; border-radius: 10px; padding: .35rem .4rem; }
  .calNum { font-size: .82rem; }
  .calEventTitle { display: none; }
  .calOpenChip { font-size: 0; padding: 0; width: 6px; height: 6px; background: #fff; border-radius: 50%; }
  .calCellOpen { padding: .35rem .4rem; }
}

/* ===== Arbitrum-style Header ===== */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid #ececf0;
}

/* Anchor target offset — keep section headings clear of the sticky nav */
html { scroll-behavior: smooth; }
#upcoming,
#partners,
#life,
#faq { scroll-margin-top: 96px; }
.siteHeaderInner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: .85rem clamp(1.25rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.siteHeaderInner > .siteLogo { justify-self: start; }
.siteHeaderInner > .siteHeaderActions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
}
.siteLogo {
  display: inline-flex;
  align-items: center;
  padding-left: .25rem;
}
.siteLogo img {
  height: 26px;
  width: auto;
  display: block;
  transition: transform .3s ease;
}
.siteLogo:hover img { transform: scale(1.04); }
.siteNav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25rem;
}
.siteNavItem {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: #56525f;
  padding: .55rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}
.siteNavItem::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  right: .85rem;
  bottom: .42rem;
  height: 1px;
  background: #0a0a0a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
}
.siteNavItem:hover {
  color: #0a0a0a;
  background: rgba(15, 15, 25, .04);
}
.siteNavItem:hover::after { transform: scaleX(1); }
.siteNavItemActive {
  color: #0a0a0a;
  background: rgba(15, 15, 25, .06);
}
.siteNavItemActive::after { transform: scaleX(1); }
.siteNavDot {
  width: 6px;
  height: 6px;
  border: 1.5px solid #56525f;
  border-radius: 50%;
  display: inline-block;
  transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.siteNavItem:hover .siteNavDot,
.siteNavItemActive .siteNavDot {
  background: #0a0a0a;
  border-color: #0a0a0a;
  transform: scale(1.15);
}
.siteHeaderRight {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.siteSocial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #0a0a0a;
  transition: background .15s, color .15s;
}
.siteSocial:hover {
  background: #f3f3f7;
  color: #0a0a0a;
}
.announcementsCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 999px;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid #d4d4dc;
  box-shadow: 0 4px 12px -6px rgba(15, 15, 25, .2);
  transition: background .25s ease,
              color .25s ease,
              border-color .25s ease,
              transform .25s ease,
              box-shadow .25s ease;
}
.announcementsCtaIcon {
  width: 1.15rem;
  height: 1.15rem;
}
.announcementsCta:hover {
  background: #f6f6f9;
  border-color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(15, 15, 25, .28);
}

.applyCta {
  display: inline-flex;
  align-items: center;
  background: #0a0a0a;
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
  border: 1px solid #0a0a0a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 6px 14px -8px rgba(15, 15, 25, .55);
  transition: background .25s ease,
              color .25s ease,
              border-color .25s ease,
              transform .25s ease,
              box-shadow .25s ease;
}
.applyCta:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 12px 22px -10px rgba(15, 15, 25, .35);
}

@media (max-width: 980px) {
  .siteHeaderInner { grid-template-columns: 1fr auto; gap: 1rem; padding: .75rem 1rem; }
  .siteNav { display: none; }
  .siteHeaderInner > .siteLogo { justify-self: start; }
  .siteHeaderInner > .siteHeaderActions { justify-self: end; }
}
@media (max-width: 540px) {
  .siteSocial { display: none; }
  .announcementsCta { width: 2.05rem; height: 2.05rem; }
  .announcementsCtaIcon { width: 1.05rem; height: 1.05rem; }
  .applyCta { padding: .5rem .85rem; font-size: .68rem; letter-spacing: .08em; }
  .siteHeaderInner { padding: .65rem .85rem; }
  .siteLogo img { height: 20px; }
}
@media (max-width: 380px) {
  .announcementsCta { width: 1.95rem; height: 1.95rem; }
  .announcementsCtaIcon { width: 1rem; height: 1rem; }
  .applyCta { padding: .45rem .7rem; font-size: .64rem; }
  .siteLogo img { height: 18px; }
}

/* ===== Hero v2 (Arbitrum-style framed card) ===== */
.heroV2 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0 clamp(22px, 5vw, 72px);
  box-sizing: border-box;
}
.heroCard {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  border-radius: 18px;
  overflow: hidden;
  height: calc(100dvh - 80px);
  min-height: 480px;
  max-height: 820px;
  display: block;
  /* Corner L-brackets — content shell sits inside bracket + breathing room */
  --hero-bracket-outset: 18px;
  --hero-bracket-arm: 22px;
  --hero-content-inset: max(3rem, calc(var(--hero-bracket-outset) + var(--hero-bracket-arm) + 1rem));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 30px 60px -40px rgba(0, 0, 0, .5);
}
.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.92);
}
.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 38%, rgba(0,0,0,.18) 70%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.32) 70%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}

/* Editorial corner trim — 4 white L-brackets */
.heroCornerTL,
.heroCornerTR,
.heroCornerBL,
.heroCornerBR {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  pointer-events: none;
  opacity: .55;
  transition: opacity .35s ease, transform .5s cubic-bezier(.22, .61, .36, 1);
}
.heroCornerTL { top: 18px; left: 18px; border-top: 1.5px solid #fff; border-left: 1.5px solid #fff; border-radius: 5px 0 0 0; }
.heroCornerTR { top: 18px; right: 18px; border-top: 1.5px solid #fff; border-right: 1.5px solid #fff; border-radius: 0 5px 0 0; }
.heroCornerBL { bottom: 18px; left: 18px; border-bottom: 1.5px solid #fff; border-left: 1.5px solid #fff; border-radius: 0 0 0 5px; }
.heroCornerBR { bottom: 18px; right: 18px; border-bottom: 1.5px solid #fff; border-right: 1.5px solid #fff; border-radius: 0 0 5px 0; }
.heroCard:hover .heroCornerTL,
.heroCard:hover .heroCornerTR,
.heroCard:hover .heroCornerBL,
.heroCard:hover .heroCornerBR { opacity: .9; }

/* Top-right meta chip */
.heroMetaTopRight {
  position: absolute;
  top: 28px;
  right: 56px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}
.heroMetaTopRightArrow { font-size: .75rem; transform: translate(0, 0); }

/* Hard inset from video card edges — all hero copy/CTAs stay inside this box */
.heroContentShell {
  position: absolute;
  z-index: 2;
  top: var(--hero-content-inset);
  right: var(--hero-content-inset);
  bottom: var(--hero-content-inset);
  left: var(--hero-content-inset);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
  pointer-events: none;
}
.heroContentShell .heroContent {
  pointer-events: auto;
}

.heroContent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: min(1280px, 100%);
  min-width: 0;
  max-height: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  align-items: flex-start;
}

/* Eyebrow with pulsing dot */
.heroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: clamp(.7rem, .85vw, .82rem);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 clamp(1rem, 2.5vh, 1.6rem);
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  animation: heroFadeUp .9s cubic-bezier(.22, .61, .36, 1) both;
}

.heroHeadline {
  font-family: "Special Gothic Condensed One", "special-gothic-condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0 0 clamp(1rem, 2.5vh, 1.5rem);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.heroHeadlineLine {
  display: block;
  position: relative;
  min-height: 1.02em;
  white-space: pre-wrap;
}
.heroHeadlineLine.is-typing::after,
.heroHeadlineLine.is-active::after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .9em;
  margin-left: .08em;
  vertical-align: -.05em;
  background: #fff;
  animation: heroCaretBlink 1s steps(2, end) infinite;
}
@keyframes heroCaretBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
.heroSubcopy {
  font-size: clamp(.82rem, .95vw, 1rem);
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
  opacity: .82;
  max-width: 64ch;
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, .22);
  animation: heroFadeUp 1s cubic-bezier(.22, .61, .36, 1) .24s both;
}

.heroCtas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  gap: .65rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-top: clamp(1.1rem, 2.8vh, 2rem);
  animation: heroFadeUp 1s cubic-bezier(.22, .61, .36, 1) .36s both;
}
.heroCta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.005em;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .25s ease,
              color .25s ease,
              border-color .25s ease,
              transform .3s cubic-bezier(.22, .61, .36, 1),
              box-shadow .3s ease;
}
.heroCtaArrow {
  display: inline-block;
  font-size: .95rem;
  transform: translate(0, 0);
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}
.heroCta:hover .heroCtaArrow { transform: translate(3px, 0); }

.heroCtaPrimary {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
  box-shadow: 0 8px 22px -10px rgba(0, 0, 0, .35);
}
.heroCtaPrimary:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .55);
}

.heroCtaGhost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.heroCtaGhost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .55);
  transform: translateY(-1px);
}

.heroCtaHackathon {
  position: relative;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  background-size: 200% 200%;
  animation: heroFadeUp 1s cubic-bezier(.22, .61, .36, 1) .42s both,
             heroCtaHackathonShimmer 6s ease-in-out infinite;
  color: #fff;
  border-color: transparent;
  font-weight: 700;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  box-shadow: 0 10px 28px -10px rgba(168, 85, 247, .55),
              0 0 0 0 rgba(236, 72, 153, .55);
}
.heroCtaHackathon:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px -14px rgba(236, 72, 153, .65),
              0 0 0 4px rgba(236, 72, 153, .18);
}
.heroCtaHackathonDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .9);
  animation: heroCtaHackathonPulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.heroCtaHackathonBadge {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .35);
  padding: .15rem .5rem;
  border-radius: 999px;
  margin-left: .15rem;
}
@keyframes heroCtaHackathonShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes heroCtaHackathonPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .9); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .heroCtaHackathon { animation: heroFadeUp 1s cubic-bezier(.22, .61, .36, 1) .42s both; }
  .heroCtaHackathonDot { animation: none; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .heroV2 { padding: 0 clamp(12px, 3.5vw, 28px); }
  .heroCard {
    border-radius: 14px;
    min-height: 460px;
    height: calc(100dvh - 64px);
    max-height: 720px;
    --hero-bracket-outset: 12px;
    --hero-bracket-arm: 16px;
    --hero-content-inset: max(2.5rem, calc(var(--hero-bracket-outset) + var(--hero-bracket-arm) + 1rem));
  }
  .heroMetaTopRight { display: none; }
  .heroCornerTL, .heroCornerTR, .heroCornerBL, .heroCornerBR { width: 16px; height: 16px; }
  .heroCornerTL, .heroCornerTR { top: 12px; }
  .heroCornerBL, .heroCornerBR { bottom: 12px; }
  .heroCornerTL, .heroCornerBL { left: 12px; }
  .heroCornerTR, .heroCornerBR { right: 12px; }
  .heroCtas { margin-top: clamp(1rem, 2.5vh, 1.75rem); }
}
@media (max-width: 540px) {
  .heroV2 { padding: 0 clamp(10px, 3vw, 20px); }
  .heroCard {
    border-radius: 12px;
    min-height: 440px;
    height: calc(100dvh - 56px);
    --hero-bracket-outset: 12px;
    --hero-bracket-arm: 16px;
    --hero-content-inset: max(2rem, calc(var(--hero-bracket-outset) + var(--hero-bracket-arm) + .75rem));
  }
  .heroEyebrow { font-size: .62rem; letter-spacing: .12em; margin-bottom: .85rem; }
  .heroHeadline { font-size: clamp(1.7rem, 8.5vw, 2.4rem); margin-bottom: .9rem; }
  .heroSubcopy { padding-left: .65rem; font-size: .82rem; line-height: 1.5; }
  .heroCtas {
    margin-top: 1rem;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
  }
  .heroCta {
    font-size: .85rem;
    padding: .7rem 1rem;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 380px) {
  .heroHeadline { font-size: 1.55rem; }
  .heroSubcopy { font-size: .78rem; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .heroPhotoPanel { margin-top: 1rem; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header, .hero, .section, .footer, .partnerLogoStack, .upcomingStrip {
    width: min(1080px, 100% - 1.25rem);
  }
  .ctas { flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: .6rem; }
  .primaryCta, .secondaryCta {
    text-align: center;
    border-radius: 999px;
    padding: .75rem 1.2rem;
    font-size: 1rem;
  }
}

/* ===== Our Partners ===== */
.partnersSection {
  width: min(1100px, 100% - 2.5rem);
  margin: 4.5rem auto 4rem;
  text-align: center;
}
.partnersHeading {
  font-family: "Special Gothic Condensed One", "special-gothic-condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 2.5rem;
}
.partnersTierMeta {
  display: block;
  text-align: center;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #0a0a0a;
  margin: 0 0 1.5rem;
}
.partnersTierMetaSep { opacity: .45; margin: 0 .25em; }

.partnersTier {
  display: grid;
  gap: 10px;
  margin: 0 auto;
}
.partnersTierLead {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
  margin-bottom: .9rem;
}
.partnersTierPrimary {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1080px;
}
.partnersTierCommunity {
  grid-template-columns: repeat(11, 1fr);
  max-width: 1080px;
  gap: 8px;
}
.partnerCell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(15, 15, 25, 0) 0%, rgba(15, 15, 25, 0) 60%),
    #ffffff;
  border: 1px solid #ececf0;
  border-radius: 12px;
  padding: 14px 10px;
  min-height: 70px;
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1),
              box-shadow .35s ease,
              border-color .35s ease,
              background .4s ease;
}
.partnerCell::before,
.partnerCell::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, .61, .36, 1);
}
.partnerCell::before {
  top: 6px;
  left: 6px;
  border-top: 1.2px solid #0a0a0a;
  border-left: 1.2px solid #0a0a0a;
  border-radius: 3px 0 0 0;
  transform: translate(2px, 2px);
}
.partnerCell::after {
  bottom: 6px;
  right: 6px;
  border-bottom: 1.2px solid #0a0a0a;
  border-right: 1.2px solid #0a0a0a;
  border-radius: 0 0 3px 0;
  transform: translate(-2px, -2px);
}
.partnerCell:hover {
  transform: translateY(-3px);
  border-color: #cfcfd6;
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(15, 15, 25, .08) 0%, transparent 60%),
    #ffffff;
  box-shadow:
    0 1px 0 rgba(15, 15, 25, .03),
    0 10px 24px -12px rgba(15, 15, 25, .3),
    0 22px 42px -22px rgba(15, 15, 25, .16);
}
.partnerCell:hover::before,
.partnerCell:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}
.partnerCell img {
  width: auto;
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  display: block;
  filter: saturate(1) contrast(1);
}
.partnerCellNsLead {
  min-height: 84px;
  padding: 16px 14px;
  border-width: 1.5px;
  border-color: #d6d6df;
}
.partnerCellNsLead img {
  max-height: 42px;
}
/* Logos that ship with white/light artwork — force dark for visibility on white */
.partnerCell img[src$="ethnslogo.png"],
.partnerCell img[src$="web3privacy.svg"],
.partnerCell img[src$="ayahq.png"],
.partnerCell img[src$="suci-logotype.png"],
.partnerCell img[src$="f-xyz.png"] {
  filter: brightness(0) saturate(100%);
}
/* ENS lock-up is wide — cap width so it matches row scale */
.partnerCell img[src$="ens-lockup-blue.svg"] {
  max-height: 28px;
  max-width: min(5.5rem, 88%);
}
/* Logos rendered as a circular avatar (square source, clipped to circle) */
.partnerCell img[src$="p2pmentor.jpg"],
.partnerCell img[src$="zukascity.png"] {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  height: 100%;
  width: auto;
  object-fit: cover;
}
.partnerCellLabel {
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -.005em;
  white-space: nowrap;
}
.partnersTierCommunity .partnerCell {
  min-height: 56px;
  padding: 10px 8px;
  border-radius: 10px;
}
.partnersTierCommunity .partnerCell img {
  max-height: 22px;
  opacity: .88;
  transition: opacity .2s ease;
}
.partnersTierCommunity .partnerCell:hover img { opacity: 1; }
.partnersTierCommunity .partnerCellLabel {
  font-size: .68rem;
  color: #1a1a1a;
  letter-spacing: -.005em;
}
.partnersDivider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2.25rem auto 1.5rem;
  max-width: 1080px;
  color: #6b6b78;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.partnersDivider::before,
.partnersDivider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ececf0 30%, #ececf0 70%, transparent);
}
.partnersDivider span { padding: 0 4px; }

@media (max-width: 900px) {
  .partnersTierLead {
    grid-template-columns: minmax(240px, 360px);
  }
  .partnersTierPrimary { grid-template-columns: repeat(4, 1fr); }
  .partnersTierCommunity { grid-template-columns: repeat(7, 1fr); }
}
@media (max-width: 720px) {
  .partnersSection { width: min(1080px, 100% - 1.25rem); margin: 3rem auto 2.5rem; }
  .partnersHeading { margin-bottom: 1.75rem; }
  .partnersTierLead { margin-bottom: .65rem; }
  .partnerCellNsLead { min-height: 62px; padding: 11px 10px; }
  .partnerCellNsLead img { max-height: 28px; }
  .partnersTierPrimary { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .partnersTierCommunity { grid-template-columns: repeat(5, 1fr); gap: 5px; }
  .partnerCell { min-height: 48px; padding: 8px 6px; border-radius: 9px; }
  .partnerCell img { max-height: 20px; }
  .partnerCellLabel { font-size: .68rem; }
  .partnersTierCommunity .partnerCell { min-height: 42px; padding: 6px 4px; border-radius: 8px; }
  .partnersTierCommunity .partnerCell img { max-height: 16px; }
  .partnersTierCommunity .partnerCellLabel { font-size: .54rem; }
  .partnersDivider { margin: 1.25rem auto .85rem; font-size: .58rem; gap: 6px; }
}
@media (max-width: 480px) {
  .partnersTierLead {
    grid-template-columns: minmax(200px, 300px);
  }
  .partnersTierPrimary { grid-template-columns: repeat(3, 1fr); gap: 5px; }
  .partnersTierCommunity { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .partnerCell { min-height: 44px; padding: 6px 4px; }
  .partnerCell img { max-height: 18px; }
  .partnerCellNsLead { min-height: 58px; padding: 9px 8px; }
  .partnerCellNsLead img { max-height: 24px; }
  .partnerCellLabel { font-size: .62rem; }
  .partnersTierCommunity .partnerCell { min-height: 38px; padding: 5px 3px; }
  .partnersTierCommunity .partnerCell img { max-height: 14px; }
  .partnersTierCommunity .partnerCellLabel { font-size: .5rem; }
}
@media (max-width: 360px) {
  .partnersTierPrimary { grid-template-columns: repeat(3, 1fr); }
  .partnersTierCommunity { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Life at Network School ===== */
.lifeNS {
  width: min(1080px, 100% - 2.5rem);
  margin: 4.5rem auto 4.5rem;
  text-align: center;
}
.lifeNSTitle {
  font-family: "Special Gothic Condensed One", "special-gothic-condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 2.5rem;
}
.lifeNSTabs { text-align: left; }
.lifeNSTabs {
  position: relative;
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(15, 15, 25, .055) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 0%, rgba(15, 15, 25, .03) 0%, transparent 55%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 70%);
  border: 1px solid #ececf0;
  border-radius: 24px;
  padding: 2.25rem 1.85rem 2.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 1px 0 rgba(15, 15, 25, .03),
    0 30px 60px -40px rgba(15, 15, 25, .14),
    0 60px 120px -60px rgba(15, 15, 25, .12);
  isolation: isolate;
  overflow: hidden;
}

/* Editorial corner brackets — top-left + top-right of the folio */
.lifeNSTabs::before,
.lifeNSTabs::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 22px;
  height: 22px;
  border: 1.5px solid #c8c8d0;
  pointer-events: none;
}
.lifeNSTabs::before {
  left: 16px;
  border-right: none;
  border-bottom: none;
  border-radius: 5px 0 0 0;
}
.lifeNSTabs::after {
  right: 16px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 5px 0 0;
}

/* Tab list — separated from the panel below by a dashed editorial rule */
.lifeNSTabList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 1.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #e5e5ea;
}
.lifeNSTab {
  position: relative;
  appearance: none;
  background: rgba(255, 255, 255, .8);
  border: 1px solid #ececf0;
  color: #1a1a1a;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: -.005em;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease,
              color .25s ease,
              border-color .25s ease,
              box-shadow .25s ease,
              transform .25s ease;
}
.lifeNSTab:hover {
  border-color: #d9d9e3;
  background: #ffffff;
  transform: translateY(-1px);
}
.lifeNSTabActive {
  background: linear-gradient(135deg, #0a0a0a 0%, #3a3a44 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .25) inset,
    0 8px 18px -10px rgba(15, 15, 25, .55),
    0 16px 32px -18px rgba(15, 15, 25, .45);
}
.lifeNSTabActive:hover {
  background: linear-gradient(135deg, #0a0a0a 0%, #3a3a44 100%);
  border-color: transparent;
  transform: translateY(-1px);
}
.lifeNSPanel[hidden] { display: none; }

.lifeNSCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lifeNSCard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 18px;
  padding: 2rem 1.6rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
  min-height: 220px;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1),
              box-shadow .45s ease,
              border-color .45s ease,
              background .45s ease;
}
/* Editorial corner trim — top-right bracket */
.lifeNSCard > h3 ~ * { z-index: 1; }
.lifeNSCard::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid #d9d9e3;
  border-right: 1.5px solid #d9d9e3;
  border-radius: 0 4px 0 0;
  transition: border-color .4s ease, transform .4s cubic-bezier(.22, .61, .36, 1);
}
/* Animated purple wash — sweeps from bottom-right on hover */
.lifeNSCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 80% at 100% 100%, rgba(15, 15, 25, .14) 0%, rgba(15, 15, 25, .04) 35%, transparent 65%);
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
  z-index: -1;
}
.lifeNSCard:hover {
  transform: translateY(-4px);
  border-color: #cfcfd6;
  box-shadow:
    0 1px 0 rgba(15, 15, 25, .03),
    0 18px 38px -22px rgba(15, 15, 25, .35),
    0 36px 60px -30px rgba(15, 15, 25, .18);
}
.lifeNSCard:hover::before { border-color: #0a0a0a; transform: translate(2px, -2px); }
.lifeNSCard:hover::after { opacity: 1; }

/* Giant editorial numeral — hidden */
.lifeNSCardIndex { display: none; }

/* Icon badge — soft purple chip in the top-left */
.lifeNSCardIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #f4f4f7 0%, #ffffff 100%);
  border: 1px solid #e5e5ea;
  margin-bottom: 1.1rem;
  box-shadow: 0 1px 0 rgba(15, 15, 25, .02);
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1),
              background .35s ease,
              border-color .35s ease,
              box-shadow .35s ease;
}
.lifeNSCard:hover .lifeNSCardIcon {
  transform: rotate(-8deg) scale(1.08);
  background: linear-gradient(135deg, #0a0a0a 0%, #4a4a55 100%);
  border-color: #0a0a0a;
  box-shadow: 0 10px 22px -10px rgba(15, 15, 25, .55);
}

/* Title and body */
.lifeNSCard h3 {
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.022em;
  color: #0a0a0a;
  margin: 0 0 .55rem;
  line-height: 1.2;
}
.lifeNSCard p {
  font-size: .9rem;
  line-height: 1.6;
  color: #56525f;
  margin: 0;
}
.lifeNSCard a { color: #0a0a0a; text-decoration: underline; text-underline-offset: 3px; }

.lifeNSCardArrow { display: none; }

.lifeNSDetails {
  display: block;
  grid-column: 1 / -1;
  min-height: 0;
  overflow: visible;
  cursor: pointer;
  padding: 1.25rem 1.4rem 1.4rem;
}
.lifeNSDetails::before,
.lifeNSDetails::after { display: none; }
.lifeNSDetails[open] { background: #f7f7f9; }
.lifeNSSummary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #0a0a0a;
  list-style: none;
  cursor: pointer;
}
.lifeNSSummary::-webkit-details-marker { display: none; }
.lifeNSSummaryEmoji { margin-left: 8px; }
.lifeNSDetails > p {
  margin: .85rem 0 .5rem;
  color: #46464f;
  font-size: .9rem;
}
.lifeNSList {
  margin: .25rem 0 0;
  padding-left: 1.1rem;
  color: #46464f;
  font-size: .9rem;
  line-height: 1.6;
}
.lifeNSList li { margin-bottom: .2rem; }

/* Everyone Joining — amenity photo cards */
.amenityGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.amenityCard {
  position: relative;
  margin: 0;
  flex: 1 1 calc(22% - 9px);
  min-width: 180px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f8;
  border: 1px solid #ececf0;
  transition: flex-grow .55s cubic-bezier(.22, .61, .36, 1),
              flex-basis .55s cubic-bezier(.22, .61, .36, 1),
              box-shadow .35s ease,
              border-color .35s ease;
}
.amenityCard:hover {
  flex-grow: 6;
  border-color: #d9d9e3;
  box-shadow: 0 22px 44px -20px rgba(15, 15, 25, .28);
  z-index: 2;
}
.amenityImg {
  position: absolute;
  inset: 0;
}
.amenityImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenityCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}
.amenityLabel {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: -.005em;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}
@media (max-width: 900px) {
  .amenityCard { flex-basis: calc(33.333% - 8px); }
}
@media (max-width: 600px) {
  .amenityGrid { gap: 8px; }
  .amenityCard { flex-basis: calc(50% - 4px); min-width: 0; height: 140px; }
  .amenityCard:hover { flex-grow: 1; }
  .amenityLabel { font-size: .72rem; left: 10px; bottom: 8px; }
}
@media (max-width: 380px) {
  .amenityCard { height: 120px; }
}

@media (max-width: 800px) {
  .lifeNSCards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lifeNS { width: min(1080px, 100% - 1.5rem); margin: 2.5rem auto 3rem; }
  .lifeNSTitle { margin-bottom: 1.75rem; }
  .lifeNSTabs { padding: 1.25rem .85rem 1.25rem; border-radius: 16px; }
  .lifeNSTabs::before, .lifeNSTabs::after { display: none; }
  .lifeNSTabList {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    margin: 0 -.85rem 1.25rem;
    padding-left: .85rem;
    padding-right: .85rem;
    gap: 6px;
    scroll-snap-type: x mandatory;
  }
  .lifeNSTabList::-webkit-scrollbar { display: none; }
  .lifeNSTab {
    font-size: .8rem;
    padding: .5rem .85rem;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .lifeNSCards { gap: 10px; }
  .lifeNSCard { padding: 1.4rem 1.15rem 1.2rem; min-height: 0; }
  .lifeNSCard h3 { font-size: 1.05rem; }
  .lifeNSCard p { font-size: .86rem; }
  .lifeNSDetails { padding: 1rem 1.1rem 1.15rem; }
  .lifeNSSummary { font-size: .88rem; gap: .5rem; }
  .lifeNSDetails > p, .lifeNSList { font-size: .85rem; }
  .benefitChip { font-size: .82rem; padding: .45rem .75rem; }
}

/* ===== FAQ — Field Manual ===== */
.faqSection {
  width: min(960px, 100% - 2.5rem);
  margin: 4.5rem auto 4.5rem;
  text-align: center;
}
.faqTitle {
  font-family: "Special Gothic Condensed One", "special-gothic-condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin: 0 0 1rem;
}
.faqList {
  text-align: left;
  border-top: 1px solid #ececf0;
  margin-top: 2.5rem;
}
.faqEntry {
  position: relative;
  border-bottom: 1px solid #ececf0;
  padding: 1.4rem 1.25rem 1.4rem 1.5rem;
  transition: padding-left .35s cubic-bezier(.22, .61, .36, 1),
              background .35s ease;
}
.faqEntry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: linear-gradient(180deg, #0a0a0a, #7a7a85);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.faqEntry:hover {
  background: linear-gradient(90deg, rgba(15, 15, 25, .035) 0%, transparent 70%);
  padding-left: 1.85rem;
}
.faqEntry[open] {
  background: linear-gradient(90deg, rgba(15, 15, 25, .045) 0%, transparent 65%);
  padding-left: 1.85rem;
}
.faqEntry[open]::before {
  transform: scaleY(1);
}

.faqEntrySummary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.15rem;
  cursor: pointer;
  list-style: none;
}
.faqEntrySummary::-webkit-details-marker { display: none; }
.faqEntryText {
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.014em;
  color: #0a0a0a;
  line-height: 1.35;
  transition: color .3s ease;
}
.faqEntry[open] .faqEntryText { color: #0a0a0a; }

/* Plus / minus toggle */
.faqEntryToggle {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid #ececf0;
  border-radius: 50%;
  flex-shrink: 0;
  background: #ffffff;
  transition: background .3s ease,
              border-color .3s ease,
              transform .35s cubic-bezier(.22, .61, .36, 1);
}
.faqEntryToggle::before,
.faqEntryToggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #0a0a0a;
  border-radius: 1px;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1),
              background .3s ease;
}
.faqEntryToggle::before {
  width: 13px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
.faqEntryToggle::after {
  width: 1.6px;
  height: 13px;
  transform: translate(-50%, -50%);
}
.faqEntry:hover .faqEntryToggle {
  border-color: #cfcfd6;
  transform: rotate(90deg);
}
.faqEntry[open] .faqEntryToggle {
  background: #0a0a0a;
  border-color: #0a0a0a;
  transform: rotate(0deg);
  box-shadow: 0 6px 16px -8px rgba(15, 15, 25, .55);
}
.faqEntry[open] .faqEntryToggle::before { background: #ffffff; }
.faqEntry[open] .faqEntryToggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  background: #ffffff;
}

.faqEntryAnswer {
  margin: .95rem 0 .35rem;
  max-width: 64ch;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .92rem;
  line-height: 1.65;
  color: #56525f;
  padding-left: 1.1rem;
  border-left: 1px dashed #e5e5ea;
  animation: faqAnswerFade .45s cubic-bezier(.22, .61, .36, 1);
}
.faqEntryAnswer a {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.faqEntryAnswer a:hover { color: #000000; }

@keyframes faqAnswerFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .faqSection { width: min(960px, 100% - 1.5rem); margin: 3rem auto 3rem; }
  .faqTitle { margin-bottom: .8rem; }
  .faqMeta { margin-bottom: 1.85rem; font-size: .62rem; padding: .3rem .7rem; }
  .faqList { margin-top: 1.75rem; }
  .faqEntry { padding: 1.05rem .25rem 1.05rem .9rem; }
  .faqEntry:hover, .faqEntry[open] { padding-left: 1.15rem; }
  .faqEntrySummary { gap: .75rem; }
  .faqEntryText { font-size: .92rem; }
  .faqEntryToggle { width: 28px; height: 28px; }
  .faqEntryToggle::before { width: 11px; }
  .faqEntryToggle::after { height: 11px; }
  .faqEntryAnswer {
    margin-left: 0;
    padding-left: .9rem;
    font-size: .86rem;
    line-height: 1.6;
  }
}

/* ===== NS photo strip — infinite horizontal marquee ===== */
.nsStrip {
  width: 100vw;
  margin: 4rem 0 2rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.nsStripTrack {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: nsStripScroll 60s linear infinite;
  will-change: transform;
}
.nsStripTrack:hover { animation-play-state: paused; }
.nsStripGroup {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
}
.nsStripItem {
  flex: 0 0 auto;
  width: 230px;
  height: 150px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f8;
  border: 1px solid #ececf0;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}
.nsStripItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -16px rgba(15, 15, 25, .25);
}
.nsStripItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes nsStripScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .nsStripItem { width: 170px; height: 115px; border-radius: 14px; }
  .nsStripTrack { gap: 12px; animation-duration: 45s; }
  .nsStripGroup { gap: 12px; }
  .nsStrip { margin: 3rem 0 1rem; }
}
@media (max-width: 480px) {
  .partnersHeading,
  .lifeNSTitle,
  .faqTitle { font-size: clamp(2rem, 11vw, 3.25rem); }
  .nsStripItem { width: 140px; height: 95px; border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .nsStripTrack { animation: none; }
}

